[Python-modules-commits] r28145 - in packages/pydot/trunk/debian (3 files)
morph at users.alioth.debian.org
morph at users.alioth.debian.org
Tue Mar 11 19:01:04 UTC 2014
Date: Tuesday, March 11, 2014 @ 19:01:02
Author: morph
Revision: 28145
* debian/patches/support-pyparsing-v2.patch
- support pyparsing v2 module; Closes: #729085
Added:
packages/pydot/trunk/debian/patches/support-pyparsing-v2.patch
Modified:
packages/pydot/trunk/debian/changelog
packages/pydot/trunk/debian/patches/series
Modified: packages/pydot/trunk/debian/changelog
===================================================================
--- packages/pydot/trunk/debian/changelog 2014-03-11 16:43:32 UTC (rev 28144)
+++ packages/pydot/trunk/debian/changelog 2014-03-11 19:01:02 UTC (rev 28145)
@@ -23,13 +23,15 @@
* debian/{pycompat, pyversions}
- removed, no longer needed
* Switch to dh_python2
+ * debian/patches/support-pyparsing-v2.patch
+ - support pyparsing v2 module; Closes: #729085
[ Jakub Wilk ]
* Use canonical URIs for Vcs-* fields.
* Remove DM-Upload-Allowed; it's no longer used by the archive
software.
- -- Sandro Tosi <morph at debian.org> Thu, 06 Mar 2014 21:37:12 +0100
+ -- Sandro Tosi <morph at debian.org> Tue, 11 Mar 2014 20:00:23 +0100
pydot (1.0.2-1) unstable; urgency=low
Modified: packages/pydot/trunk/debian/patches/series
===================================================================
--- packages/pydot/trunk/debian/patches/series 2014-03-11 16:43:32 UTC (rev 28144)
+++ packages/pydot/trunk/debian/patches/series 2014-03-11 19:01:02 UTC (rev 28145)
@@ -1 +1,2 @@
01-setup-py-nodata.patch
+support-pyparsing-v2.patch
Added: packages/pydot/trunk/debian/patches/support-pyparsing-v2.patch
===================================================================
--- packages/pydot/trunk/debian/patches/support-pyparsing-v2.patch (rev 0)
+++ packages/pydot/trunk/debian/patches/support-pyparsing-v2.patch 2014-03-11 19:01:02 UTC (rev 28145)
@@ -0,0 +1,20 @@
+Description: Support pyparsing v2
+Author: grizzly.nyo at gmail.com
+Origin: upstream
+Bug: https://code.google.com/p/pydot/issues/detail?id=81#c9
+Last-Update: 2014-03-10
+---
+This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
+--- a/dot_parser.py
++++ b/dot_parser.py
+@@ -25,8 +25,9 @@ from pyparsing import __version__ as pyp
+ from pyparsing import ( nestedExpr, Literal, CaselessLiteral, Word, Upcase, OneOrMore, ZeroOrMore,
+ Forward, NotAny, delimitedList, oneOf, Group, Optional, Combine, alphas, nums,
+ restOfLine, cStyleComment, nums, alphanums, printables, empty, quotedString,
+- ParseException, ParseResults, CharsNotIn, _noncomma, dblQuotedString, QuotedString, ParserElement )
++ ParseException, ParseResults, CharsNotIn, dblQuotedString, QuotedString, ParserElement )
+
++_noncomma = "".join( [ c for c in printables if c != "," ] )
+
+ class P_AttrList:
+
More information about the Python-modules-commits
mailing list