SHA256
1
0
forked from pool/python

- Switch to using the system libexpat (bsc#1219559,

CVE-2023-52425)
- Make sure to remove all embedded versions of other packages
  (including expat).

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:Factory/python?expand=0&rev=414
This commit is contained in:
Matej Cepl 2024-05-11 05:48:37 +00:00 committed by Git OBS Bridge
parent 40186bcd83
commit 773b5da2c2
4 changed files with 37 additions and 0 deletions

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Sat May 11 05:46:55 UTC 2024 - Matej Cepl <mcepl@cepl.eu>
- Switch to using the system libexpat (bsc#1219559,
CVE-2023-52425)
- Make sure to remove all embedded versions of other packages
(including expat).
-------------------------------------------------------------------
Tue Apr 16 15:39:24 UTC 2024 - Matej Cepl <mcepl@cepl.eu>

View File

@ -346,6 +346,19 @@ cp -p %{SOURCE1} macros.python2
sed -i -e 's/python2_package_prefix python2/python2_package_prefix python/' macros.python2
%endif
# Ensure that we're using the system copy of various libraries, rather than
# copies shipped by upstream in the tarball:
# Remove embedded copy of expat:
rm -r Modules/expat || exit 1
# Remove embedded copy of libffi:
for SUBDIR in darwin libffi libffi_arm_wince libffi_msvc libffi_osx ; do
rm -r Modules/_ctypes/$SUBDIR || exit 1 ;
done
# Remove embedded copy of zlib:
rm -r Modules/zlib || exit 1
%build
%define _lto_cflags %{nil}
# -std=gnu89 option is needed to build with gcc14, bsc#1220970

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Sat May 11 05:46:55 UTC 2024 - Matej Cepl <mcepl@cepl.eu>
- Switch to using the system libexpat (bsc#1219559,
CVE-2023-52425)
- Make sure to remove all embedded versions of other packages
(including expat).
-------------------------------------------------------------------
Tue Apr 16 15:39:24 UTC 2024 - Matej Cepl <mcepl@cepl.eu>

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Sat May 11 05:46:55 UTC 2024 - Matej Cepl <mcepl@cepl.eu>
- Switch to using the system libexpat (bsc#1219559,
CVE-2023-52425)
- Make sure to remove all embedded versions of other packages
(including expat).
-------------------------------------------------------------------
Tue Apr 16 15:39:24 UTC 2024 - Matej Cepl <mcepl@cepl.eu>