gentoo/dev-python/kconfiglib/files/kconfiglib-12.12.1-setup.patch
Tim Harder a671de2f9e
dev-python/kconfiglib: fix build with py2
Closes: https://bugs.gentoo.org/690182

Signed-off-by: Tim Harder <radhermit@gentoo.org>
2019-07-18 17:57:10 -06:00

17 lines
463 B
Diff

Python2's ConfigParser module used by setuptools throws parsing errors when
encountering tab characters.
--- Kconfiglib-12.12.1/setup.cfg
+++ Kconfiglib-12.12.1/setup.cfg
@@ -1,6 +1,6 @@
[bdist_wheel]
- # We support both Python 2 and Python 3
- universal = 1
+# We support both Python 2 and Python 3
+universal = 1
[metadata]
- # Include the license file in wheels
- license_file = LICENSE.txt
+# Include the license file in wheels
+license_file = LICENSE.txt