diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2024-04-17 20:35:48 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2024-04-17 23:41:21 +0200 |
commit | 2953aca3b1196570be74701d97c90c8c0b6b0d51 (patch) | |
tree | f84a47b25feade82fe455fe607531a3a7c0aec35 /source/l | |
parent | 0172ca92cda072648ac2b648be4e3ed0c671b6ab (diff) | |
download | current-2953aca3b1196570be74701d97c90c8c0b6b0d51.tar.gz current-2953aca3b1196570be74701d97c90c8c0b6b0d51.tar.xz |
Wed Apr 17 20:35:48 UTC 202420240417203548
a/kernel-firmware-20240417_e678699-noarch-1.txz: Upgraded.
a/kernel-generic-6.6.28-x86_64-1.txz: Upgraded.
a/kernel-huge-6.6.28-x86_64-1.txz: Upgraded.
a/kernel-modules-6.6.28-x86_64-1.txz: Upgraded.
a/xfsprogs-6.7.0-x86_64-1.txz: Upgraded.
d/kernel-headers-6.6.28-x86-1.txz: Upgraded.
k/kernel-source-6.6.28-noarch-1.txz: Upgraded.
l/pycups-2.0.3-x86_64-1.txz: Upgraded.
l/python-sphinx-7.3.5-x86_64-1.txz: Upgraded.
n/bluez-5.75-x86_64-2.txz: Rebuilt.
Prune duplicate config files. Thanks to audriusk.
x/libXmu-1.2.1-x86_64-1.txz: Upgraded.
x/util-macros-1.20.1-noarch-1.txz: Upgraded.
x/wayland-protocols-1.35-noarch-1.txz: Upgraded.
xap/mozilla-thunderbird-115.10.0-x86_64-1.txz: Upgraded.
This release contains security fixes and improvements.
For more information, see:
https://www.mozilla.org/en-US/thunderbird/115.10.0/releasenotes/
https://www.mozilla.org/en-US/security/known-vulnerabilities/thunderbird/#thunderbird115.10
(* Security fix *)
xfce/xfce4-notifyd-0.9.4-x86_64-2.txz: Rebuilt.
Do not install DBus service files, as these cause xfce4-notifyd to start in
plasma sessions. Thanks to ctrlaltca.
isolinux/initrd.img: Rebuilt.
kernels/*: Upgraded.
usb-and-pxe-installers/usbboot.img: Rebuilt.
Diffstat (limited to 'source/l')
-rwxr-xr-x | source/l/pycups/pycups.SlackBuild | 12 | ||||
-rw-r--r-- | source/l/pycups/pycups.no.bogus.requires.diff | 30 | ||||
-rwxr-xr-x | source/l/python-sphinx/python-sphinx.SlackBuild | 2 |
3 files changed, 38 insertions, 6 deletions
diff --git a/source/l/pycups/pycups.SlackBuild b/source/l/pycups/pycups.SlackBuild index 125b3902c..4b35c4e8d 100755 --- a/source/l/pycups/pycups.SlackBuild +++ b/source/l/pycups/pycups.SlackBuild @@ -1,7 +1,7 @@ #!/bin/bash # Copyright 2008 Heinz Wiesinger, Oggau, AT -# Copyright 2008, 2009, 2010, 2018 Patrick J. Volkerding, Sebeka, MN, USA +# Copyright 2008, 2009, 2010, 2018, 2024 Patrick J. Volkerding, Sebeka, MN, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -27,7 +27,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=pycups VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} -BUILD=${BUILD:-7} +BUILD=${BUILD:-1} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then @@ -65,8 +65,11 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \+ -python3 setup.py install --root=$PKG || exit 1 -make install-rpmhook DESTDIR=$PKG || exit 1 +# Requiring gcc and python3-devel in these files must be a mistake: +cat $CWD/pycups.no.bogus.requires.diff | patch -p1 --verbose || exit 1 + +make || exit 1 +make install DESTDIR=$PKG || exit 1 find $PKG | xargs file | grep -e "shared object" -e "executable" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null @@ -87,4 +90,3 @@ cat $CWD/slack-desc > $PKG/install/slack-desc cd $PKG /sbin/makepkg -l y -c n $TMP/$PKGNAM-$VERSION-$ARCH-$BUILD.txz - diff --git a/source/l/pycups/pycups.no.bogus.requires.diff b/source/l/pycups/pycups.no.bogus.requires.diff new file mode 100644 index 000000000..0b33fc8e7 --- /dev/null +++ b/source/l/pycups/pycups.no.bogus.requires.diff @@ -0,0 +1,30 @@ +--- ./pycups.egg-info/requires.txt.orig 2024-04-17 09:28:43.000000000 -0500 ++++ ./pycups.egg-info/requires.txt 2024-04-17 15:29:21.533926348 -0500 +@@ -1,2 +1 @@ +-gcc +-python3-devel ++ +--- ./setup.py.orig 2024-04-17 09:27:05.000000000 -0500 ++++ ./setup.py 2024-04-17 15:29:36.532925519 -0500 +@@ -61,10 +61,6 @@ + "Programming Language :: Python :: 3", + ], + license="GPLv2+", +- install_requires=[ +- 'gcc', +- 'python3-devel', +- ], + ext_modules=[Extension("cups", + ["cupsmodule.c", "cupsconnection.c", + "cupsppd.c", "cupsipp.c"], +--- ./PKG-INFO.orig 2024-04-17 09:28:43.393506800 -0500 ++++ ./PKG-INFO 2024-04-17 15:29:05.376927242 -0500 +@@ -16,8 +16,6 @@ + Classifier: Programming Language :: Python + Classifier: Programming Language :: Python :: 3 + License-File: COPYING +-Requires-Dist: gcc +-Requires-Dist: python3-devel + + This is a set of Python bindings for the libcups library from the + CUPS project. diff --git a/source/l/python-sphinx/python-sphinx.SlackBuild b/source/l/python-sphinx/python-sphinx.SlackBuild index c55f7aca1..9a9ffd296 100755 --- a/source/l/python-sphinx/python-sphinx.SlackBuild +++ b/source/l/python-sphinx/python-sphinx.SlackBuild @@ -25,7 +25,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=python-sphinx SRCNAM=sphinx VERSION=${VERSION:-$(echo ${SRCNAM}-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} -BUILD=${BUILD:-2} +BUILD=${BUILD:-1} if [ -z "$ARCH" ]; then case "$( uname -m )" in |