summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2022-01-24 20:08:30 +0000
committerSam James <sam@gentoo.org>2022-01-24 20:08:39 +0000
commit48e07ea8abd7fe63bf7c276eae7ffa956f9f64b6 (patch)
tree49589c403d4174bc2b1b8580605c8ac86bc0ce1e /dev-python/pydot/files/pydot-1.4.2-pyparsing-3.patch
parentsys-libs/glibc: Remove old (diff)
downloadgentoo-48e07ea8abd7fe63bf7c276eae7ffa956f9f64b6.tar.gz
gentoo-48e07ea8abd7fe63bf7c276eae7ffa956f9f64b6.tar.bz2
gentoo-48e07ea8abd7fe63bf7c276eae7ffa956f9f64b6.zip
dev-python/pydot: workaround pyparsing-3 issue
Closes: https://bugs.gentoo.org/830676 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-python/pydot/files/pydot-1.4.2-pyparsing-3.patch')
-rw-r--r--dev-python/pydot/files/pydot-1.4.2-pyparsing-3.patch22
1 files changed, 22 insertions, 0 deletions
diff --git a/dev-python/pydot/files/pydot-1.4.2-pyparsing-3.patch b/dev-python/pydot/files/pydot-1.4.2-pyparsing-3.patch
new file mode 100644
index 000000000000..09d4c654ac17
--- /dev/null
+++ b/dev-python/pydot/files/pydot-1.4.2-pyparsing-3.patch
@@ -0,0 +1,22 @@
+https://github.com/pydot/pydot/pull/281
+https://bugs.gentoo.org/830676
+
+(rebased)
+
+From 4ab2c033c0dd67cab87be9a9392c558359caf80c Mon Sep 17 00:00:00 2001
+From: Anton Bolshakov <blshkv@users.noreply.github.com>
+Date: Tue, 4 Jan 2022 16:05:51 +0800
+Subject: [PATCH] Update dot_parser.py
+
+https://github.com/pydot/pydot/issues/277
+--- a/dot_parser.py
++++ b/dot_parser.py
+@@ -439,6 +439,8 @@ def graph_definition():
+
+ noncomma = "".join([c for c in printables if c != ","])
+ alphastring_ = OneOrMore(CharsNotIn(noncomma + ' '))
++ # override pyparsing tightened whitespace-skipping logic
++ alphastring_.skipWhitespace = True
+
+ def parse_html(s, loc, toks):
+ return '<%s>' % ''.join(toks[0])