1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
Description: adapt to python3 multiarch soabi
python3 soabi contains multiarch but does not export it via SOABI. So hardcode
it and disable a test. get_shared_lib_extension can't be properly fixed:
doko: we still want this as the default for people building extensions not
only for the distribution
Nothing in debian uses it to get the python extension.
Author: Julian Taylor <jtaylor@ubuntu.com>
Forwarded: not-needed, debian specific
--- a/numpy/ctypeslib.py
+++ b/numpy/ctypeslib.py
@@ -107,6 +107,14 @@ else:
so_ext2 = get_shared_lib_extension(is_python_ext=True)
if not so_ext2 == so_ext:
libname_ext.insert(0, libname + so_ext2)
+ try:
+ import sysconfig
+ so_ext3 = '.%s-%s.so' % (sysconfig.get_config_var('SOABI'),
+ sysconfig.get_config_var('MULTIARCH'))
+ libname_ext.insert(0, libname + so_ext3)
+ except (KeyError, ImportError):
+ pass
+
else:
libname_ext = [libname]
--- a/numpy/tests/test_ctypeslib.py
+++ b/numpy/tests/test_ctypeslib.py
@@ -25,6 +25,7 @@ class TestLoadLibrary(TestCase):
" (import error was: %s)" % str(e)
print(msg)
+ @dec.skipif(True, 'Skipped as per debian/patches/python3-soabi.patch')
@dec.skipif(not _HAS_CTYPE, "ctypes not available on this python installation")
@dec.knownfailureif(sys.platform=='cygwin', "This test is known to fail on cygwin")
def test_basic2(self):
|