[Python-modules-commits] r15735 - in packages/creoleparser/trunk/debian (3 files)

bzed at users.alioth.debian.org bzed at users.alioth.debian.org
Wed Feb 16 21:16:41 UTC 2011


    Date: Wednesday, February 16, 2011 @ 21:16:29
  Author: bzed
Revision: 15735

Remove raise_string_fix.dpatch, applied upstream.

Modified:
  packages/creoleparser/trunk/debian/changelog
  packages/creoleparser/trunk/debian/patches/00list
Deleted:
  packages/creoleparser/trunk/debian/patches/raise_string_fix.dpatch

Modified: packages/creoleparser/trunk/debian/changelog
===================================================================
--- packages/creoleparser/trunk/debian/changelog	2011-02-16 21:12:35 UTC (rev 15734)
+++ packages/creoleparser/trunk/debian/changelog	2011-02-16 21:16:29 UTC (rev 15735)
@@ -2,9 +2,10 @@
 
   * New upstream release.
   * Migrating to dh_python2.
-  * Bumping Standards-Version to 3.9.1, no changes necessary. 
+  * Bumping Standards-Version to 3.9.1, no changes necessary.
+  * Remove raise_string_fix.dpatch, applied upstream.
 
- -- Bernd Zeimetz <bzed at debian.org>  Wed, 16 Feb 2011 22:12:22 +0100
+ -- Bernd Zeimetz <bzed at debian.org>  Wed, 16 Feb 2011 22:16:03 +0100
 
 creoleparser (0.7.2-3) unstable; urgency=low
 

Modified: packages/creoleparser/trunk/debian/patches/00list
===================================================================
--- packages/creoleparser/trunk/debian/patches/00list	2011-02-16 21:12:35 UTC (rev 15734)
+++ packages/creoleparser/trunk/debian/patches/00list	2011-02-16 21:16:29 UTC (rev 15735)
@@ -1,2 +1 @@
 no-setuptools-please.dpatch
-raise_string_fix.dpatch

Deleted: packages/creoleparser/trunk/debian/patches/raise_string_fix.dpatch
===================================================================
--- packages/creoleparser/trunk/debian/patches/raise_string_fix.dpatch	2011-02-16 21:12:35 UTC (rev 15734)
+++ packages/creoleparser/trunk/debian/patches/raise_string_fix.dpatch	2011-02-16 21:16:29 UTC (rev 15735)
@@ -1,37 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## raise_string_fix.dpatch by Bernd Zeimetz <bzed at debian.org>
-##
-## All lines beginning with `## DP:' are a description of the patch.
-## DP: No description.
-
- at DPATCH@
-diff -urNad '--exclude=CVS' '--exclude=.svn' '--exclude=.git' '--exclude=.arch' '--exclude=.hg' '--exclude=_darcs' '--exclude=.bzr' creoleparser~/creoleparser/elements.py creoleparser/creoleparser/elements.py
---- creoleparser~/creoleparser/elements.py	2010-05-08 15:25:30.000000000 +0200
-+++ creoleparser/creoleparser/elements.py	2010-06-08 12:48:33.210944339 +0200
-@@ -536,7 +536,7 @@
-         elif isinstance(value, (basestring,bldr.Fragment,bldr.Element, Stream)):
-             return value
-         else:
--            raise "macros can only return strings and genshi objects" 
-+            raise Exception("macros can only return strings and genshi objects")
-         
- 
- class BodiedMacro(Macro):
-@@ -594,7 +594,7 @@
-         elif isinstance(value, (basestring,bldr.Fragment, Stream)):
-             return [value,tail]
-         else:
--            raise "macros can only return strings and genshi objects"
-+            raise Exception("macros can only return strings and genshi objects")
- 
-        
- 
-@@ -695,7 +695,7 @@
-         elif isinstance(value, bldr.Fragment):
-             return [bldr.tag.p(value), tail]
-         else:
--            raise "macros can only return strings and genshi objects"
-+            raise Exception("macros can only return strings and genshi objects")
-         
-     
- class RawLink(InlineElement):




More information about the Python-modules-commits mailing list