2019-02-21 00:59:17 +01:00
|
|
|
--- ./configure.orig 2018-12-23 15:37:36.000000000 -0600
|
|
|
|
+++ ./configure 2019-02-19 16:02:14.585002930 -0600
|
|
|
|
@@ -15149,9 +15149,9 @@
|
2018-05-28 21:12:29 +02:00
|
|
|
|
|
|
|
|
2019-02-21 00:59:17 +01:00
|
|
|
if test x$PLATFORM_TRIPLET = x; then
|
|
|
|
- LIBPL='$(prefix)'"/lib/python${VERSION}/config-${LDVERSION}"
|
|
|
|
+ LIBPL='$(prefix)'"/lib64/python${VERSION}/config-${LDVERSION}"
|
|
|
|
else
|
|
|
|
- LIBPL='$(prefix)'"/lib/python${VERSION}/config-${LDVERSION}-${PLATFORM_TRIPLET}"
|
|
|
|
+ LIBPL='$(prefix)'"/lib64/python${VERSION}/config-${LDVERSION}-${PLATFORM_TRIPLET}"
|
|
|
|
fi
|
2018-05-28 21:12:29 +02:00
|
|
|
|
2019-02-21 00:59:17 +01:00
|
|
|
|
|
|
|
--- ./Makefile.pre.in.orig 2018-12-23 15:37:36.000000000 -0600
|
|
|
|
+++ ./Makefile.pre.in 2019-02-19 16:02:14.576002930 -0600
|
|
|
|
@@ -142,7 +142,7 @@
|
|
|
|
MANDIR= @mandir@
|
|
|
|
INCLUDEDIR= @includedir@
|
|
|
|
CONFINCLUDEDIR= $(exec_prefix)/include
|
|
|
|
-SCRIPTDIR= $(prefix)/lib
|
|
|
|
+SCRIPTDIR= $(prefix)/lib64
|
|
|
|
ABIFLAGS= @ABIFLAGS@
|
|
|
|
|
|
|
|
# Detailed destination directories
|
|
|
|
--- ./Lib/sysconfig.py.orig 2018-12-23 15:37:36.000000000 -0600
|
|
|
|
+++ ./Lib/sysconfig.py 2019-02-19 16:02:14.574002930 -0600
|
2018-05-28 21:12:29 +02:00
|
|
|
@@ -20,10 +20,10 @@
|
|
|
|
|
|
|
|
_INSTALL_SCHEMES = {
|
|
|
|
'posix_prefix': {
|
|
|
|
- 'stdlib': '{installed_base}/lib/python{py_version_short}',
|
|
|
|
- 'platstdlib': '{platbase}/lib/python{py_version_short}',
|
|
|
|
- 'purelib': '{base}/lib/python{py_version_short}/site-packages',
|
|
|
|
- 'platlib': '{platbase}/lib/python{py_version_short}/site-packages',
|
|
|
|
+ 'stdlib': '{installed_base}/lib64/python{py_version_short}',
|
|
|
|
+ 'platstdlib': '{platbase}/lib64/python{py_version_short}',
|
|
|
|
+ 'purelib': '{base}/lib64/python{py_version_short}/site-packages',
|
|
|
|
+ 'platlib': '{platbase}/lib64/python{py_version_short}/site-packages',
|
|
|
|
'include':
|
|
|
|
'{installed_base}/include/python{py_version_short}{abiflags}',
|
|
|
|
'platinclude':
|
|
|
|
@@ -32,10 +32,10 @@
|
|
|
|
'data': '{base}',
|
|
|
|
},
|
|
|
|
'posix_home': {
|
|
|
|
- 'stdlib': '{installed_base}/lib/python',
|
|
|
|
- 'platstdlib': '{base}/lib/python',
|
|
|
|
- 'purelib': '{base}/lib/python',
|
|
|
|
- 'platlib': '{base}/lib/python',
|
|
|
|
+ 'stdlib': '{installed_base}/lib64/python',
|
|
|
|
+ 'platstdlib': '{base}/lib64/python',
|
|
|
|
+ 'purelib': '{base}/lib64/python',
|
|
|
|
+ 'platlib': '{base}/lib64/python',
|
|
|
|
'include': '{installed_base}/include/python',
|
|
|
|
'platinclude': '{installed_base}/include/python',
|
|
|
|
'scripts': '{base}/bin',
|
2019-02-21 00:59:17 +01:00
|
|
|
@@ -62,10 +62,10 @@
|
2018-05-28 21:12:29 +02:00
|
|
|
'data': '{userbase}',
|
|
|
|
},
|
|
|
|
'posix_user': {
|
|
|
|
- 'stdlib': '{userbase}/lib/python{py_version_short}',
|
|
|
|
- 'platstdlib': '{userbase}/lib/python{py_version_short}',
|
|
|
|
- 'purelib': '{userbase}/lib/python{py_version_short}/site-packages',
|
|
|
|
- 'platlib': '{userbase}/lib/python{py_version_short}/site-packages',
|
|
|
|
+ 'stdlib': '{userbase}/lib64/python{py_version_short}',
|
|
|
|
+ 'platstdlib': '{userbase}/lib64/python{py_version_short}',
|
|
|
|
+ 'purelib': '{userbase}/lib64/python{py_version_short}/site-packages',
|
|
|
|
+ 'platlib': '{userbase}/lib64/python{py_version_short}/site-packages',
|
|
|
|
'include': '{userbase}/include/python{py_version_short}',
|
|
|
|
'scripts': '{userbase}/bin',
|
|
|
|
'data': '{userbase}',
|
2019-02-21 00:59:17 +01:00
|
|
|
--- ./Lib/site.py.orig 2018-12-23 15:37:36.000000000 -0600
|
|
|
|
+++ ./Lib/site.py 2019-02-19 16:02:14.572002930 -0600
|
|
|
|
@@ -334,7 +334,7 @@
|
|
|
|
seen.add(prefix)
|
2018-05-28 21:12:29 +02:00
|
|
|
|
2019-02-21 00:59:17 +01:00
|
|
|
if os.sep == '/':
|
|
|
|
- sitepackages.append(os.path.join(prefix, "lib",
|
|
|
|
+ sitepackages.append(os.path.join(prefix, "lib64",
|
|
|
|
"python%d.%d" % sys.version_info[:2],
|
|
|
|
"site-packages"))
|
|
|
|
else:
|
|
|
|
--- ./Lib/distutils/command/install.py.orig 2018-12-23 15:37:36.000000000 -0600
|
|
|
|
+++ ./Lib/distutils/command/install.py 2019-02-19 16:02:14.567002930 -0600
|
|
|
|
@@ -29,15 +29,15 @@
|
2018-05-28 21:12:29 +02:00
|
|
|
|
2019-02-21 00:59:17 +01:00
|
|
|
INSTALL_SCHEMES = {
|
|
|
|
'unix_prefix': {
|
|
|
|
- 'purelib': '$base/lib/python$py_version_short/site-packages',
|
|
|
|
- 'platlib': '$platbase/lib/python$py_version_short/site-packages',
|
|
|
|
+ 'purelib': '$base/lib64/python$py_version_short/site-packages',
|
|
|
|
+ 'platlib': '$platbase/lib64/python$py_version_short/site-packages',
|
|
|
|
'headers': '$base/include/python$py_version_short$abiflags/$dist_name',
|
|
|
|
'scripts': '$base/bin',
|
|
|
|
'data' : '$base',
|
|
|
|
},
|
|
|
|
'unix_home': {
|
|
|
|
- 'purelib': '$base/lib/python',
|
|
|
|
- 'platlib': '$base/lib/python',
|
|
|
|
+ 'purelib': '$base/lib64/python',
|
|
|
|
+ 'platlib': '$base/lib64/python',
|
|
|
|
'headers': '$base/include/python/$dist_name',
|
|
|
|
'scripts': '$base/bin',
|
|
|
|
'data' : '$base',
|
|
|
|
--- ./Lib/distutils/sysconfig.py.orig 2018-12-23 15:37:36.000000000 -0600
|
|
|
|
+++ ./Lib/distutils/sysconfig.py 2019-02-19 16:02:14.570002930 -0600
|
|
|
|
@@ -130,7 +130,7 @@
|
|
|
|
|
|
|
|
if os.name == "posix":
|
|
|
|
libpython = os.path.join(prefix,
|
|
|
|
- "lib", "python" + get_python_version())
|
|
|
|
+ "lib64", "python" + get_python_version())
|
|
|
|
if standard_lib:
|
|
|
|
return libpython
|
|
|
|
else:
|
|
|
|
--- ./Modules/getpath.c.orig 2019-02-19 16:02:14.580002930 -0600
|
|
|
|
+++ ./Modules/getpath.c 2019-02-19 16:06:51.535002940 -0600
|
|
|
|
@@ -500,7 +500,7 @@
|
2018-05-28 21:12:29 +02:00
|
|
|
"Could not find platform dependent libraries <exec_prefix>\n");
|
2019-02-21 00:59:17 +01:00
|
|
|
}
|
|
|
|
wcsncpy(exec_prefix, calculate->exec_prefix, MAXPATHLEN);
|
2018-05-28 21:12:29 +02:00
|
|
|
- joinpath(exec_prefix, L"lib/lib-dynload");
|
|
|
|
+ joinpath(exec_prefix, L"lib64/lib-dynload");
|
|
|
|
}
|
|
|
|
/* If we found EXEC_PREFIX do *not* reduce it! (Yet.) */
|
2019-02-21 00:59:17 +01:00
|
|
|
}
|
|
|
|
@@ -742,7 +742,7 @@
|
|
|
|
else {
|
|
|
|
wcsncpy(calculate->zip_path, calculate->prefix, MAXPATHLEN);
|
|
|
|
}
|
|
|
|
- joinpath(calculate->zip_path, L"lib/python00.zip");
|
|
|
|
+ joinpath(calculate->zip_path, L"lib64/python00.zip");
|
2018-05-28 21:12:29 +02:00
|
|
|
|
2019-02-21 00:59:17 +01:00
|
|
|
/* Replace "00" with version */
|
|
|
|
size_t bufsz = wcslen(calculate->zip_path);
|
|
|
|
@@ -867,7 +867,7 @@
|
|
|
|
if (!calculate->prefix) {
|
|
|
|
return DECODE_LOCALE_ERR("EXEC_PREFIX define", len);
|
|
|
|
}
|
|
|
|
- calculate->lib_python = Py_DecodeLocale("lib/python" VERSION, &len);
|
|
|
|
+ calculate->lib_python = Py_DecodeLocale("lib64/python" VERSION, &len);
|
|
|
|
if (!calculate->lib_python) {
|
|
|
|
return DECODE_LOCALE_ERR("EXEC_PREFIX define", len);
|
|
|
|
}
|
|
|
|
--- ./setup.py.orig 2018-12-23 15:37:36.000000000 -0600
|
|
|
|
+++ ./setup.py 2019-02-19 16:02:14.587002930 -0600
|
|
|
|
@@ -546,7 +546,7 @@
|
2018-05-28 21:12:29 +02:00
|
|
|
# directories (i.e. '.' and 'Include') must be first. See issue
|
|
|
|
# 10520.
|
|
|
|
if not cross_compiling:
|
|
|
|
- add_dir_to_list(self.compiler.library_dirs, '/usr/local/lib')
|
|
|
|
+ add_dir_to_list(self.compiler.library_dirs, '/usr/local/lib64')
|
|
|
|
add_dir_to_list(self.compiler.include_dirs, '/usr/local/include')
|
|
|
|
# only change this for cross builds for 3.3, issues on Mageia
|
|
|
|
if cross_compiling:
|