mirror of
git://slackware.nl/current.git
synced 2024-12-28 09:59:53 +01:00
2f2ecd3ca0
a/kernel-generic-5.19.3-x86_64-1.txz: Upgraded. a/kernel-huge-5.19.3-x86_64-1.txz: Upgraded. a/kernel-modules-5.19.3-x86_64-1.txz: Upgraded. d/gcc-12.2.0-x86_64-1.txz: Upgraded. d/gcc-g++-12.2.0-x86_64-1.txz: Upgraded. d/gcc-gdc-12.2.0-x86_64-1.txz: Upgraded. d/gcc-gfortran-12.2.0-x86_64-1.txz: Upgraded. d/gcc-gnat-12.2.0-x86_64-1.txz: Upgraded. d/gcc-go-12.2.0-x86_64-1.txz: Upgraded. d/gcc-objc-12.2.0-x86_64-1.txz: Upgraded. d/kernel-headers-5.19.3-x86-1.txz: Upgraded. d/libtool-2.4.7-x86_64-3.txz: Rebuilt. Recompiled to update embedded GCC version number. d/python-setuptools-65.1.1-x86_64-1.txz: Upgraded. Make libdir = platlib to agree with the paths in python3. k/kernel-source-5.19.3-noarch-1.txz: Upgraded. xfce/xfce4-panel-4.16.5-x86_64-1.txz: Upgraded. xfce/xfdesktop-4.16.1-x86_64-1.txz: Upgraded. isolinux/initrd.img: Rebuilt. /etc/rc.d/rc.S: Added support for setting the Installer's root password from a kernel cmdline key value pair: instrootpw=yourpassword This is intended for network installations where otherwise the root password would be unset. Note: this does not configure the OS root password. Thanks to Stuart Winter. kernels/*: Upgraded. usb-and-pxe-installers/usbboot.img: Rebuilt. /etc/rc.d/rc.S: Added support for setting the Installer's root password from a kernel cmdline key value pair: instrootpw=yourpassword This is intended for network installations where otherwise the root password would be unset. Note: this does not configure the OS root password. Thanks to Stuart Winter.
31 lines
1.5 KiB
Diff
31 lines
1.5 KiB
Diff
--- ./setuptools/_distutils/sysconfig.py.orig 2022-08-21 02:05:13.000000000 -0500
|
|
+++ ./setuptools/_distutils/sysconfig.py 2022-08-21 13:33:52.738969315 -0500
|
|
@@ -234,7 +234,7 @@
|
|
libdir = getattr(sys, "platlibdir", "lib")
|
|
else:
|
|
# Pure Python
|
|
- libdir = "lib"
|
|
+ libdir = "lib64"
|
|
implementation = 'pypy' if IS_PYPY else 'python'
|
|
libpython = os.path.join(prefix, libdir, implementation + get_python_version())
|
|
return _posix_lib(standard_lib, libpython, early_prefix, prefix)
|
|
--- ./setuptools/_distutils/command/install.py.orig 2022-08-21 13:33:52.738969315 -0500
|
|
+++ ./setuptools/_distutils/command/install.py 2022-08-21 13:35:11.919964935 -0500
|
|
@@ -34,7 +34,7 @@
|
|
|
|
INSTALL_SCHEMES = {
|
|
'posix_prefix': {
|
|
- 'purelib': '{base}/lib/{implementation_lower}{py_version_short}/site-packages',
|
|
+ 'purelib': '{base}/lib64/{implementation_lower}{py_version_short}/site-packages',
|
|
'platlib': '{platbase}/{platlibdir}/{implementation_lower}'
|
|
'{py_version_short}/site-packages',
|
|
'headers': '{base}/include/{implementation_lower}'
|
|
@@ -43,7 +43,7 @@
|
|
'data': '{base}',
|
|
},
|
|
'posix_home': {
|
|
- 'purelib': '{base}/lib/{implementation_lower}',
|
|
+ 'purelib': '{base}/lib64/{implementation_lower}',
|
|
'platlib': '{base}/{platlibdir}/{implementation_lower}',
|
|
'headers': '{base}/include/{implementation_lower}/{dist_name}',
|
|
'scripts': '{base}/bin',
|