2019-09-30 11:14:35 -04:00
|
|
|
diff --git a/Lib/distutils/command/install.py b/Lib/distutils/command/install.py
|
2020-06-08 20:16:12 +08:00
|
|
|
index c625c95..ae4f915 100644
|
2019-09-30 11:14:35 -04:00
|
|
|
--- a/Lib/distutils/command/install.py
|
|
|
|
|
+++ b/Lib/distutils/command/install.py
|
|
|
|
|
@@ -30,14 +30,14 @@ WINDOWS_SCHEME = {
|
|
|
|
|
INSTALL_SCHEMES = {
|
|
|
|
|
'unix_prefix': {
|
|
|
|
|
'purelib': '$base/lib/python$py_version_short/site-packages',
|
|
|
|
|
- 'platlib': '$platbase/lib/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',
|
|
|
|
|
+ 'platlib': '$base/lib64/python',
|
|
|
|
|
'headers': '$base/include/python/$dist_name',
|
|
|
|
|
'scripts': '$base/bin',
|
|
|
|
|
'data' : '$base',
|
|
|
|
|
diff --git a/Lib/distutils/sysconfig.py b/Lib/distutils/sysconfig.py
|
2020-06-08 20:16:12 +08:00
|
|
|
index b51629e..9a4892a 100644
|
2019-09-30 11:14:35 -04:00
|
|
|
--- a/Lib/distutils/sysconfig.py
|
|
|
|
|
+++ b/Lib/distutils/sysconfig.py
|
2020-06-08 20:16:12 +08:00
|
|
|
@@ -146,8 +146,12 @@ def get_python_lib(plat_specific=0, standard_lib=0, prefix=None):
|
2019-09-30 11:14:35 -04:00
|
|
|
prefix = plat_specific and EXEC_PREFIX or PREFIX
|
|
|
|
|
|
|
|
|
|
if os.name == "posix":
|
|
|
|
|
+ if plat_specific or standard_lib:
|
|
|
|
|
+ lib = "lib64"
|
|
|
|
|
+ else:
|
|
|
|
|
+ lib = "lib"
|
|
|
|
|
libpython = os.path.join(prefix,
|
|
|
|
|
- "lib", "python" + get_python_version())
|
|
|
|
|
+ lib, "python" + get_python_version())
|
|
|
|
|
if standard_lib:
|
|
|
|
|
return libpython
|
|
|
|
|
else:
|
|
|
|
|
diff --git a/Lib/distutils/tests/test_install.py b/Lib/distutils/tests/test_install.py
|
|
|
|
|
index 287ab19..d4c05e0 100644
|
|
|
|
|
--- a/Lib/distutils/tests/test_install.py
|
|
|
|
|
+++ b/Lib/distutils/tests/test_install.py
|
|
|
|
|
@@ -57,8 +57,9 @@ class InstallTestCase(support.TempdirManager,
|
|
|
|
|
self.assertEqual(got, expected)
|
|
|
|
|
|
|
|
|
|
libdir = os.path.join(destination, "lib", "python")
|
|
|
|
|
+ platlibdir = os.path.join(destination, "lib64", "python")
|
|
|
|
|
check_path(cmd.install_lib, libdir)
|
|
|
|
|
- check_path(cmd.install_platlib, libdir)
|
|
|
|
|
+ check_path(cmd.install_platlib, platlibdir)
|
|
|
|
|
check_path(cmd.install_purelib, libdir)
|
|
|
|
|
check_path(cmd.install_headers,
|
|
|
|
|
os.path.join(destination, "include", "python", "foopkg"))
|
|
|
|
|
diff --git a/Lib/site.py b/Lib/site.py
|
2020-06-08 20:16:12 +08:00
|
|
|
index a065ab0..22d53fa 100644
|
2019-09-30 11:14:35 -04:00
|
|
|
--- a/Lib/site.py
|
|
|
|
|
+++ b/Lib/site.py
|
2020-06-08 20:16:12 +08:00
|
|
|
@@ -335,11 +335,15 @@ def getsitepackages(prefixes=None):
|
2019-09-30 11:14:35 -04:00
|
|
|
seen.add(prefix)
|
|
|
|
|
|
|
|
|
|
if os.sep == '/':
|
|
|
|
|
+ sitepackages.append(os.path.join(prefix, "lib64",
|
|
|
|
|
+ "python" + sys.version[:3],
|
|
|
|
|
+ "site-packages"))
|
|
|
|
|
sitepackages.append(os.path.join(prefix, "lib",
|
|
|
|
|
"python%d.%d" % sys.version_info[:2],
|
|
|
|
|
"site-packages"))
|
|
|
|
|
else:
|
|
|
|
|
sitepackages.append(prefix)
|
|
|
|
|
+ sitepackages.append(os.path.join(prefix, "lib64", "site-packages"))
|
|
|
|
|
sitepackages.append(os.path.join(prefix, "lib", "site-packages"))
|
|
|
|
|
return sitepackages
|
|
|
|
|
|
|
|
|
|
diff --git a/Lib/sysconfig.py b/Lib/sysconfig.py
|
2020-06-08 20:16:12 +08:00
|
|
|
index b9e2faf..0ae6d35 100644
|
2019-09-30 11:14:35 -04:00
|
|
|
--- a/Lib/sysconfig.py
|
|
|
|
|
+++ b/Lib/sysconfig.py
|
|
|
|
|
@@ -20,10 +20,10 @@ __all__ = [
|
|
|
|
|
|
|
|
|
|
_INSTALL_SCHEMES = {
|
|
|
|
|
'posix_prefix': {
|
|
|
|
|
- 'stdlib': '{installed_base}/lib/python{py_version_short}',
|
|
|
|
|
- 'platstdlib': '{platbase}/lib/python{py_version_short}',
|
|
|
|
|
+ 'stdlib': '{installed_base}/lib64/python{py_version_short}',
|
|
|
|
|
+ 'platstdlib': '{platbase}/lib64/python{py_version_short}',
|
|
|
|
|
'purelib': '{base}/lib/python{py_version_short}/site-packages',
|
|
|
|
|
- 'platlib': '{platbase}/lib/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':
|
|
|
|
|
@@ -62,10 +62,10 @@ _INSTALL_SCHEMES = {
|
|
|
|
|
'data': '{userbase}',
|
|
|
|
|
},
|
|
|
|
|
'posix_user': {
|
|
|
|
|
- 'stdlib': '{userbase}/lib/python{py_version_short}',
|
|
|
|
|
- 'platstdlib': '{userbase}/lib/python{py_version_short}',
|
|
|
|
|
+ 'stdlib': '{userbase}/lib64/python{py_version_short}',
|
|
|
|
|
+ 'platstdlib': '{userbase}/lib64/python{py_version_short}',
|
|
|
|
|
'purelib': '{userbase}/lib/python{py_version_short}/site-packages',
|
|
|
|
|
- 'platlib': '{userbase}/lib/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}',
|
|
|
|
|
diff --git a/Lib/test/test_site.py b/Lib/test/test_site.py
|
2020-06-08 20:16:12 +08:00
|
|
|
index 1bbc697..9a7e80d 100644
|
2019-09-30 11:14:35 -04:00
|
|
|
--- a/Lib/test/test_site.py
|
|
|
|
|
+++ b/Lib/test/test_site.py
|
2020-06-08 20:16:12 +08:00
|
|
|
@@ -267,8 +267,8 @@ class HelperFunctionsTests(unittest.TestCase):
|
2019-09-30 11:14:35 -04:00
|
|
|
dirs = site.getsitepackages()
|
|
|
|
|
if os.sep == '/':
|
|
|
|
|
# OS X, Linux, FreeBSD, etc
|
|
|
|
|
- self.assertEqual(len(dirs), 1)
|
|
|
|
|
- wanted = os.path.join('xoxo', 'lib',
|
|
|
|
|
+ self.assertEqual(len(dirs), 2)
|
|
|
|
|
+ wanted = os.path.join('xoxo', 'lib64',
|
|
|
|
|
'python%d.%d' % sys.version_info[:2],
|
|
|
|
|
'site-packages')
|
|
|
|
|
self.assertEqual(dirs[0], wanted)
|
|
|
|
|
diff --git a/Makefile.pre.in b/Makefile.pre.in
|
2020-06-08 20:16:12 +08:00
|
|
|
index a914a9c..406a441 100644
|
2019-09-30 11:14:35 -04:00
|
|
|
--- a/Makefile.pre.in
|
|
|
|
|
+++ b/Makefile.pre.in
|
2020-06-08 20:16:12 +08:00
|
|
|
@@ -143,7 +143,7 @@ LIBDIR= @libdir@
|
2019-09-30 11:14:35 -04:00
|
|
|
MANDIR= @mandir@
|
|
|
|
|
INCLUDEDIR= @includedir@
|
|
|
|
|
CONFINCLUDEDIR= $(exec_prefix)/include
|
|
|
|
|
-SCRIPTDIR= $(prefix)/lib
|
|
|
|
|
+SCRIPTDIR= $(prefix)/lib64
|
|
|
|
|
ABIFLAGS= @ABIFLAGS@
|
|
|
|
|
|
|
|
|
|
# Detailed destination directories
|
|
|
|
|
diff --git a/Modules/getpath.c b/Modules/getpath.c
|
2020-06-08 20:16:12 +08:00
|
|
|
index b727f66..a0c5fb6 100644
|
2019-09-30 11:14:35 -04:00
|
|
|
--- a/Modules/getpath.c
|
|
|
|
|
+++ b/Modules/getpath.c
|
2020-06-08 20:16:12 +08:00
|
|
|
@@ -730,7 +730,7 @@ calculate_exec_prefix(PyCalculatePath *calculate, _PyPathConfig *pathconfig,
|
|
|
|
|
if (safe_wcscpy(exec_prefix, calculate->exec_prefix, exec_prefix_len) < 0) {
|
|
|
|
|
return PATHLEN_ERR();
|
|
|
|
|
}
|
|
|
|
|
- status = joinpath(exec_prefix, L"lib/lib-dynload", exec_prefix_len);
|
|
|
|
|
+ status = joinpath(exec_prefix, L"lib64/lib-dynload", exec_prefix_len);
|
|
|
|
|
if (_PyStatus_EXCEPTION(status)) {
|
|
|
|
|
return status;
|
|
|
|
|
}
|
|
|
|
|
@@ -1067,7 +1067,7 @@ calculate_zip_path(PyCalculatePath *calculate, const wchar_t *prefix,
|
|
|
|
|
return PATHLEN_ERR();
|
2019-09-30 11:14:35 -04:00
|
|
|
}
|
|
|
|
|
}
|
2020-06-08 20:16:12 +08:00
|
|
|
- status = joinpath(zip_path, L"lib/python00.zip", zip_path_len);
|
|
|
|
|
+ status = joinpath(zip_path, L"lib64/python00.zip", zip_path_len);
|
|
|
|
|
if (_PyStatus_EXCEPTION(status)) {
|
|
|
|
|
return status;
|
2019-09-30 11:14:35 -04:00
|
|
|
}
|
2020-06-08 20:16:12 +08:00
|
|
|
@@ -1197,7 +1197,7 @@ calculate_init(PyCalculatePath *calculate, const PyConfig *config)
|
|
|
|
|
if (!calculate->exec_prefix) {
|
2019-09-30 11:14:35 -04:00
|
|
|
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);
|
|
|
|
|
}
|
2020-06-08 20:16:12 +08:00
|
|
|
diff --git a/configure b/configure
|
|
|
|
|
index 8886561..78867c6 100755
|
|
|
|
|
--- a/configure
|
|
|
|
|
+++ b/configure
|
|
|
|
|
@@ -15214,9 +15214,9 @@ fi
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
|
|
|
index d8de9d4..477a5ff 100644
|
|
|
|
|
--- a/configure.ac
|
|
|
|
|
+++ b/configure.ac
|
|
|
|
|
@@ -4689,9 +4689,9 @@ fi
|
|
|
|
|
dnl define LIBPL after ABIFLAGS and LDVERSION is defined.
|
|
|
|
|
AC_SUBST(PY_ENABLE_SHARED)
|
|
|
|
|
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
|
|
|
|
|
AC_SUBST(LIBPL)
|
|
|
|
|
|
2019-09-30 11:14:35 -04:00
|
|
|
diff --git a/setup.py b/setup.py
|
2020-06-08 20:16:12 +08:00
|
|
|
index b168ed4..8628b9d 100644
|
2019-09-30 11:14:35 -04:00
|
|
|
--- a/setup.py
|
|
|
|
|
+++ b/setup.py
|
2020-06-08 20:16:12 +08:00
|
|
|
@@ -649,7 +649,7 @@ class PyBuildExt(build_ext):
|
2019-09-30 11:14:35 -04:00
|
|
|
# directories (i.e. '.' and 'Include') must be first. See issue
|
|
|
|
|
# 10520.
|
2020-06-08 20:16:12 +08:00
|
|
|
if not CROSS_COMPILING:
|
2019-09-30 11:14:35 -04:00
|
|
|
- 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
|
2020-06-08 20:16:12 +08:00
|
|
|
if CROSS_COMPILING:
|
|
|
|
|
@@ -953,11 +953,11 @@ class PyBuildExt(build_ext):
|
2019-09-30 11:14:35 -04:00
|
|
|
elif curses_library:
|
|
|
|
|
readline_libs.append(curses_library)
|
2020-06-08 20:16:12 +08:00
|
|
|
elif self.compiler.find_library_file(self.lib_dirs +
|
2019-09-30 11:14:35 -04:00
|
|
|
- ['/usr/lib/termcap'],
|
|
|
|
|
+ ['/usr/lib64/termcap'],
|
|
|
|
|
'termcap'):
|
|
|
|
|
readline_libs.append('termcap')
|
2020-06-08 20:16:12 +08:00
|
|
|
self.add(Extension('readline', ['readline.c'],
|
|
|
|
|
- library_dirs=['/usr/lib/termcap'],
|
|
|
|
|
+ library_dirs=['/usr/lib64/termcap'],
|
|
|
|
|
extra_link_args=readline_extra_link_args,
|
|
|
|
|
libraries=readline_libs))
|
2019-09-30 11:14:35 -04:00
|
|
|
else:
|
2020-06-08 20:16:12 +08:00
|
|
|
--
|
|
|
|
|
1.8.3.1
|
|
|
|
|
|