aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Marakasov <amdmi3@FreeBSD.org>2021-11-10 20:01:42 +0000
committerDmitry Marakasov <amdmi3@FreeBSD.org>2021-11-10 20:01:53 +0000
commitf667fd98f21f1d274dbeab2c886952fb33aa530a (patch)
tree3cc5ac79a130be3a613e5d107352c6b50697928b
parent54647d7870792bdb2ddaaa0cea443e6e50f00cf4 (diff)
downloadports-f667fd98f21f1d274dbeab2c886952fb33aa530a.tar.gz
ports-f667fd98f21f1d274dbeab2c886952fb33aa530a.zip
devel/py-pyinstaller: fix build with python 3.10
Update internal help2rst.py script to support output of from python 3.10 argparse Approved by: portmgr blanket
-rw-r--r--devel/py-pyinstaller/files/patch-doc_help2rst.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/devel/py-pyinstaller/files/patch-doc_help2rst.py b/devel/py-pyinstaller/files/patch-doc_help2rst.py
new file mode 100644
index 000000000000..a3be2b618b1a
--- /dev/null
+++ b/devel/py-pyinstaller/files/patch-doc_help2rst.py
@@ -0,0 +1,12 @@
+--- doc/help2rst.py.orig 2019-07-09 19:14:04 UTC
++++ doc/help2rst.py
+@@ -63,6 +63,9 @@ def process(program, generate_headings, headings_chara
+ elif '\noptional arguments:' in help:
+ # argparse style
+ help = help.split('\noptional arguments:', 1)[1]
++ elif '\noptions:' in help:
++ # argparse style, since python 3.10
++ help = help.split('\noptions:', 1)[1]
+ else:
+ raise SystemError('unexpected format of output for --help')
+ # Remove any obsolete options