Revision: 119537 https://trac.macports.org/changeset/119537 Author: snc@macports.org Date: 2014-04-29 09:56:48 -0700 (Tue, 29 Apr 2014) Log Message: ----------- dot2tex: update for py-parsing changes, 43516 Modified Paths: -------------- trunk/dports/python/dot2tex/Portfile Added Paths: ----------- trunk/dports/python/dot2tex/files/ trunk/dports/python/dot2tex/files/patch-dot2tex-dotparsing.py.diff Modified: trunk/dports/python/dot2tex/Portfile =================================================================== --- trunk/dports/python/dot2tex/Portfile 2014-04-29 16:47:17 UTC (rev 119536) +++ trunk/dports/python/dot2tex/Portfile 2014-04-29 16:56:48 UTC (rev 119537) @@ -5,7 +5,7 @@ name dot2tex version 2.8.7 -revision 1 +revision 2 categories graphics print python platforms darwin license MIT @@ -19,6 +19,8 @@ homepage https://code.google.com/p/dot2tex/ master_sites googlecode +patchfiles patch-dot2tex-dotparsing.py.diff + checksums rmd160 b57981fc01ce151da101c6d8c46702a14d733a54 \ sha256 899168d976faff8768115648a1371bcb92c81e14cf371cafec056eff398d56d7 Added: trunk/dports/python/dot2tex/files/patch-dot2tex-dotparsing.py.diff =================================================================== --- trunk/dports/python/dot2tex/files/patch-dot2tex-dotparsing.py.diff (rev 0) +++ trunk/dports/python/dot2tex/files/patch-dot2tex-dotparsing.py.diff 2014-04-29 16:56:48 UTC (rev 119537) @@ -0,0 +1,11 @@ +--- dot2tex/dotparsing.py.orig 2009-10-05 12:57:02.000000000 +0100 ++++ dot2tex/dotparsing.py 2014-04-28 18:01:42.000000000 +0100 +@@ -26,7 +26,7 @@ + from pyparsing import (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, + Suppress,Regex,removeQuotes) + + dot_keywords = ['graph', 'subgraph', 'digraph', 'node', 'edge', 'strict']