diff options
author | 2021-10-27 09:39:52 +0300 | |
---|---|---|
committer | 2021-10-27 09:47:59 +0300 | |
commit | 69dac2a123caaa276010346e769481c8fc32ca6c (patch) | |
tree | 692b194a0c605e9ce77f0005229b76f1cf189163 /dev-python/cx_Freeze/files | |
parent | dev-python/django-auth-ldap: enable py3.10 (diff) | |
download | gentoo-69dac2a123caaa276010346e769481c8fc32ca6c.tar.gz gentoo-69dac2a123caaa276010346e769481c8fc32ca6c.tar.bz2 gentoo-69dac2a123caaa276010346e769481c8fc32ca6c.zip |
dev-python/cx_Freeze: add 6.8.2, enable tests, enable py3.10
Bug: https://bugs.gentoo.org/765385
Closes: https://bugs.gentoo.org/812341
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'dev-python/cx_Freeze/files')
-rw-r--r-- | dev-python/cx_Freeze/files/cx_Freeze-6.8.2-buildsystem.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/dev-python/cx_Freeze/files/cx_Freeze-6.8.2-buildsystem.patch b/dev-python/cx_Freeze/files/cx_Freeze-6.8.2-buildsystem.patch new file mode 100644 index 000000000000..760ac42fb942 --- /dev/null +++ b/dev-python/cx_Freeze/files/cx_Freeze-6.8.2-buildsystem.patch @@ -0,0 +1,13 @@ +diff --git a/setup.py b/setup.py +index 3149360..e06a1d3 100755 +--- a/setup.py ++++ b/setup.py +@@ -99,8 +99,6 @@ class build_ext(setuptools.command.build_ext.build_ext): + # macOS on Github Actions + extra_args.append("-Wl,-export_dynamic") + else: +- if not self.debug: +- extra_args.append("-s") + extra_args.append("-Wl,-rpath,$ORIGIN/lib") + extra_args.append("-Wl,-rpath,$ORIGIN/../lib") + self.compiler.link_executable( |