summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2022-09-08 01:33:19 +0000
committer Eric Hameleers <alien@slackware.com>2022-09-08 07:00:15 +0200
commitd7e739bb58e86a0c43f54b7e2c2972dd5f62b3c3 (patch)
tree88bf131c609a7bbd6656498be96b854c43ae267f /source
parent64fbcd92b6a53a19a394db7fe96fa16cb31c4928 (diff)
downloadcurrent-d7e739bb58e86a0c43f54b7e2c2972dd5f62b3c3.tar.gz
current-d7e739bb58e86a0c43f54b7e2c2972dd5f62b3c3.tar.xz
Thu Sep 8 01:33:19 UTC 202220220908013319
a/hdparm-9.65-x86_64-1.txz: Upgraded. n/samba-4.16.5-x86_64-1.txz: Upgraded. xap/mozilla-thunderbird-102.2.2-x86_64-1.txz: Upgraded. This is a bugfix release. For more information, see: https://www.mozilla.org/en-US/thunderbird/102.2.2/releasenotes/
Diffstat (limited to 'source')
-rwxr-xr-xsource/a/eudev/config/rc.d/rc.udev.new4
-rwxr-xr-xsource/a/eudev/eudev.SlackBuild2
-rw-r--r--source/a/gawk/0001-Add-missing-UPREF.patch24
-rwxr-xr-xsource/a/gawk/gawk.SlackBuild4
-rwxr-xr-xsource/a/grep/grep.SlackBuild9
-rw-r--r--source/a/grep/scripts/egrep4
-rw-r--r--source/a/grep/scripts/fgrep4
-rwxr-xr-xsource/a/hwdata/hwdata.SlackBuild4
-rwxr-xr-xsource/a/pkgtools/pkgtools.SlackBuild2
-rw-r--r--source/a/pkgtools/scripts/setup.80.make-bootdisk4
-rwxr-xr-xsource/ap/linuxdoc-tools/linuxdoc-tools.build8
-rwxr-xr-xsource/d/python3/python3.SlackBuild2
-rwxr-xr-xsource/d/slacktrack/slacktrack.SlackBuild2
-rw-r--r--source/n/samba/samba.url4
14 files changed, 58 insertions, 19 deletions
diff --git a/source/a/eudev/config/rc.d/rc.udev.new b/source/a/eudev/config/rc.d/rc.udev.new
index 1b4e3fe9f..1db93c726 100755
--- a/source/a/eudev/config/rc.d/rc.udev.new
+++ b/source/a/eudev/config/rc.d/rc.udev.new
@@ -95,10 +95,10 @@ case "$1" in
if ! /sbin/pidof udevd 1>/dev/null 2>/dev/null; then # start udevd
echo "Creating static nodes in /dev."
kmod static-nodes -f tmpfiles --output /run/static-nodes
- grep "^d\ " /run/static-nodes | while read line ; do
+ grep "^d " /run/static-nodes | while read line ; do
mkdir -p -m $(echo $line | cut -f 3 -d ' ') $(echo $line | cut -f 2 -d ' ')
done
- grep -v "^d\ " /run/static-nodes | while read line ; do
+ grep -v "^d " /run/static-nodes | while read line ; do
mknod -m $(echo $line | cut -f 3 -d ' ') \
$(echo $line | cut -f 2 -d ' ') \
$(echo $line | cut -b1 ) \
diff --git a/source/a/eudev/eudev.SlackBuild b/source/a/eudev/eudev.SlackBuild
index 89f1a708e..a5451b194 100755
--- a/source/a/eudev/eudev.SlackBuild
+++ b/source/a/eudev/eudev.SlackBuild
@@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd)
PKGNAM=eudev
VERSION=${VERSION:-$(echo eudev-*.tar.* | cut -d - -f 2 | rev | cut -f 3- -d . | rev)}
-BUILD=${BUILD:-1}
+BUILD=${BUILD:-2}
NUMJOBS=${NUMJOBS:-" -j$(expr $(nproc) + 1) "}
diff --git a/source/a/gawk/0001-Add-missing-UPREF.patch b/source/a/gawk/0001-Add-missing-UPREF.patch
new file mode 100644
index 000000000..a9a5cda86
--- /dev/null
+++ b/source/a/gawk/0001-Add-missing-UPREF.patch
@@ -0,0 +1,24 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: "Jan Alexander Steffens (heftig)" <heftig@archlinux.org>
+Date: Mon, 5 Sep 2022 15:33:49 +0000
+Subject: [PATCH] Add missing UPREF.
+
+Fixes: d2e694ad66a379fa128137d19c10b77b942972f2
+Fixes: https://bugs.gentoo.org/868567
+Fixes: https://lists.gnu.org/archive/html/bug-gawk/2022-09/msg00006.html
+---
+ interpret.h | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/interpret.h b/interpret.h
+index 57d060e63f37..268655b2231f 100644
+--- a/interpret.h
++++ b/interpret.h
+@@ -238,6 +238,7 @@ uninitialized_scalar:
+ _("reference to uninitialized argument `%s'") :
+ _("reference to uninitialized variable `%s'"),
+ save_symbol->vname);
++ UPREF(m);
+ PUSH(m);
+ break;
+
diff --git a/source/a/gawk/gawk.SlackBuild b/source/a/gawk/gawk.SlackBuild
index 63d668eb7..7c0d701e0 100755
--- a/source/a/gawk/gawk.SlackBuild
+++ b/source/a/gawk/gawk.SlackBuild
@@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd)
PKGNAM=gawk
VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)}
-BUILD=${BUILD:-1}
+BUILD=${BUILD:-2}
NUMJOBS=${NUMJOBS:-" -j$(expr $(nproc) + 1) "}
@@ -82,6 +82,8 @@ find . \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
-exec chmod 644 {} \+
+zcat $CWD/0001-Add-missing-UPREF.patch.gz | patch -p1 --verbose || exit 1
+
CFLAGS="$SLKCFLAGS" \
./configure \
--prefix=/usr \
diff --git a/source/a/grep/grep.SlackBuild b/source/a/grep/grep.SlackBuild
index 541ffc3ff..b1cb9b460 100755
--- a/source/a/grep/grep.SlackBuild
+++ b/source/a/grep/grep.SlackBuild
@@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd)
PKGNAM=grep
VERSION=${VERSION:-$(echo $PKGNAM-*.tar.xz | rev | cut -f 3- -d . | cut -f 1 -d - | rev)}
-BUILD=${BUILD:-1}
+BUILD=${BUILD:-2}
NUMJOBS=${NUMJOBS:-" -j$(expr $(nproc) + 1) "}
@@ -95,11 +95,16 @@ make install DESTDIR=$PKG || exit 1
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
+# Replace the fgrep/egrep scripts with less annoying versions:
+cat $CWD/scripts/fgrep > $PKG/bin/fgrep
+cat $CWD/scripts/egrep > $PKG/bin/egrep
+chmod 755 $PKG/bin/?grep
+
# Make symlinks in /usr/bin:
mkdir -p $PKG/usr/bin
( cd $PKG/usr/bin
ln -sf ../../bin/grep .
- ln -sf ../../bin/grep -E .
+ ln -sf ../../bin/egrep .
ln -sf ../../bin/fgrep .
)
diff --git a/source/a/grep/scripts/egrep b/source/a/grep/scripts/egrep
new file mode 100644
index 000000000..513835a72
--- /dev/null
+++ b/source/a/grep/scripts/egrep
@@ -0,0 +1,4 @@
+#!/bin/sh
+#cmd=${0##*/}
+#echo "$cmd: warning: $cmd is obsolescent; using grep -E" >&2
+exec grep -E "$@"
diff --git a/source/a/grep/scripts/fgrep b/source/a/grep/scripts/fgrep
new file mode 100644
index 000000000..e8c4df9a1
--- /dev/null
+++ b/source/a/grep/scripts/fgrep
@@ -0,0 +1,4 @@
+#!/bin/sh
+#cmd=${0##*/}
+#echo "$cmd: warning: $cmd is obsolescent; using grep -F" >&2
+exec grep -F "$@"
diff --git a/source/a/hwdata/hwdata.SlackBuild b/source/a/hwdata/hwdata.SlackBuild
index 143ac8c1d..aee55ac3f 100755
--- a/source/a/hwdata/hwdata.SlackBuild
+++ b/source/a/hwdata/hwdata.SlackBuild
@@ -3,7 +3,7 @@
# Slackware build script for hwdata
# Copyright 2015, 2017 Robby Workman, Tuscaloosa, Alabama, USA
-# Copyright 2018 Patrick J. Volkerding, Sebeka, Minnesota, USA
+# Copyright 2018, 2022 Patrick J. Volkerding, Sebeka, Minnesota, USA
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@@ -80,7 +80,7 @@ find . \
# Grab latest copies of pci and usb ids:
rm -f usb.ids pci.ids
-lftpget https://pci-ids.ucw.cz/v2.2/pci.ids https://usb-ids.gowdy.us/usb.ids
+lftpget https://pci-ids.ucw.cz/v2.2/pci.ids http://www.linux-usb.org/usb.ids
./configure --libdir=/lib || exit 1
#make download # grab latest copies of everything
diff --git a/source/a/pkgtools/pkgtools.SlackBuild b/source/a/pkgtools/pkgtools.SlackBuild
index de41b74dc..e6e034e33 100755
--- a/source/a/pkgtools/pkgtools.SlackBuild
+++ b/source/a/pkgtools/pkgtools.SlackBuild
@@ -30,7 +30,7 @@ PKGNAM=pkgtools
# *** UPDATE THESE WITH EACH BUILD:
VERSION=15.1
ARCH=${ARCH:-noarch}
-BUILD=${BUILD:-1}
+BUILD=${BUILD:-2}
# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
# the name of the created package would be, and then exit. This information
diff --git a/source/a/pkgtools/scripts/setup.80.make-bootdisk b/source/a/pkgtools/scripts/setup.80.make-bootdisk
index 0ed8b9a14..d1dffe98f 100644
--- a/source/a/pkgtools/scripts/setup.80.make-bootdisk
+++ b/source/a/pkgtools/scripts/setup.80.make-bootdisk
@@ -36,7 +36,7 @@ while [ 0 ]; do # the bootdisk menu loop
/sbin/rescan-scsi-bus -l 1>$RDIR 2>$RDIR
# Get a list of removable block devices before the USB stick is inserted:
echo "" > $TMP/remov_prior
- for BDEV in $(ls --indicator-style none /sys/block | egrep -v "loop|ram"); do
+ for BDEV in $(ls --indicator-style none /sys/block | grep -E -v "loop|ram"); do
[ -r /sys/block/$BDEV/removable -a "$(cat /sys/block/$BDEV/removable)" == "1" ] \
&& echo $BDEV >> $TMP/remov_prior
done
@@ -64,7 +64,7 @@ WARNING! The existing contents of the USB stick will be erased. \n\
/sbin/rescan-scsi-bus -l 1>$RDIR 2>$RDIR
# Get a list of removable block devices after the USB stick is inserted:
echo "" > $TMP/remov_after
- for BDEV in $(ls --indicator-style none /sys/block | egrep -v "loop|ram"); do
+ for BDEV in $(ls --indicator-style none /sys/block | grep -E -v "loop|ram"); do
[ -r /sys/block/$BDEV/removable -a "$(cat /sys/block/$BDEV/removable)" == "1" ] \
&& echo $BDEV >> $TMP/remov_after
done
diff --git a/source/ap/linuxdoc-tools/linuxdoc-tools.build b/source/ap/linuxdoc-tools/linuxdoc-tools.build
index 7b3962fbb..1f73284e8 100755
--- a/source/ap/linuxdoc-tools/linuxdoc-tools.build
+++ b/source/ap/linuxdoc-tools/linuxdoc-tools.build
@@ -569,7 +569,7 @@ make || exit 1
make install htmldir=/usr/doc/docbook-utils-$DOCBOOKUTILSVER/html || exit 1
# grep-2.7 demands [[:space:]] instead of [:space:]
-if ! fgrep '[[:space:]]' /usr/bin/jw ; then
+if ! grep -F '[[:space:]]' /usr/bin/jw ; then
sed -i "s/\[:space:\]/\[\[:space:\]\]/g" /usr/bin/jw
fi
@@ -1161,7 +1161,7 @@ cd $TMP
cd XML-NamespaceSupport*/ || exit 1
perl Makefile.PL INSTALLDIRS=vendor
# Make sure the man pages go where we want them:
- fgrep -lr -- '/share/man/' . | xargs sed -i 's?/share/man/?/man/?g'
+ grep -F -lr -- '/share/man/' . | xargs sed -i 's?/share/man/?/man/?g'
make || exit 1
make test || exit 1
make pure_install || exit 1 || exit 1 ) || exit 1
@@ -1171,7 +1171,7 @@ cd $TMP
tar xvf XML-SAX-Base-*z
cd XML-SAX-Base-*/ || exit 1
perl Makefile.PL INSTALLDIRS=vendor
- fgrep -lr -- '/share/man/' . | xargs sed -i 's?/share/man/?/man/?g'
+ grep -F -lr -- '/share/man/' . | xargs sed -i 's?/share/man/?/man/?g'
make || exit 1
make test || exit 1
make pure_install || exit 1 ) || exit 1
@@ -1183,7 +1183,7 @@ cd $TMP
patch -p1 < ../perl-XML-SAX-0.99-rt20126.patch || exit 1
# Answer Y to updating ParserDetails.ini:
yes | perl Makefile.PL INSTALLDIRS=vendor
- fgrep -lr -- '/share/man/' . | xargs sed -i 's?/share/man/?/man/?g'
+ grep -F -lr -- '/share/man/' . | xargs sed -i 's?/share/man/?/man/?g'
make || exit 1
make test || exit 1
make pure_install || exit 1
diff --git a/source/d/python3/python3.SlackBuild b/source/d/python3/python3.SlackBuild
index b1090dd89..c437325c4 100755
--- a/source/d/python3/python3.SlackBuild
+++ b/source/d/python3/python3.SlackBuild
@@ -29,7 +29,7 @@ PKGNAM=python3
SRCNAM=Python
VERSION=$(echo $SRCNAM-*.tar.xz | rev | cut -f 3- -d . | cut -f 1 -d - | rev)
BRANCH_VERSION=$(echo $VERSION | cut -f 1,2 -d . )
-BUILD=${BUILD:-2}
+BUILD=${BUILD:-1}
NUMJOBS=${NUMJOBS:-" -j$(expr $(nproc) + 1) "}
diff --git a/source/d/slacktrack/slacktrack.SlackBuild b/source/d/slacktrack/slacktrack.SlackBuild
index 9aff38770..55134dff2 100755
--- a/source/d/slacktrack/slacktrack.SlackBuild
+++ b/source/d/slacktrack/slacktrack.SlackBuild
@@ -6,7 +6,7 @@ if [ "$TMP" = "" ]; then
fi
PKGNAM=slacktrack
-export VERSION=2.22
+export VERSION=2.23
# Automatically determine the architecture we're building on:
case "$( uname -m )" in
i?86) export ARCH=i586
diff --git a/source/n/samba/samba.url b/source/n/samba/samba.url
index 7e59bab02..71a383218 100644
--- a/source/n/samba/samba.url
+++ b/source/n/samba/samba.url
@@ -1,2 +1,2 @@
-https://download.samba.org/pub/samba/stable/samba-4.16.4.tar.gz
-https://download.samba.org/pub/samba/stable/samba-4.16.4.tar.asc
+https://download.samba.org/pub/samba/stable/samba-4.16.5.tar.gz
+https://download.samba.org/pub/samba/stable/samba-4.16.5.tar.asc