diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2019-08-28 21:29:41 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2019-08-29 08:59:47 +0200 |
commit | 4dce2a46ca603e244644b58f7e18cf6af37589c3 (patch) | |
tree | 2c63017affffa9d5bafa32b753a89b743e372c43 /source | |
parent | cc5195c37e13a9ffec9980276168266320ef4e41 (diff) | |
download | current-4dce2a46ca603e244644b58f7e18cf6af37589c3.tar.gz |
Wed Aug 28 21:29:41 UTC 201920190828212941
a/haveged-1.9.6-x86_64-1.txz: Upgraded.
a/sysvinit-scripts-2.1-noarch-27.txz: Rebuilt.
rc.6, rc.K: recognize partition type nfs4
Thanks to Yoga the Yogin.
ap/gutenprint-5.3.3-x86_64-1.txz: Upgraded.
ap/hplip-3.19.8-x86_64-1.txz: Upgraded.
ap/man-db-2.8.7-x86_64-1.txz: Upgraded.
d/meson-0.51.2-x86_64-1.txz: Upgraded.
d/ruby-2.6.4-x86_64-1.txz: Upgraded.
n/dovecot-2.3.7.2-x86_64-1.txz: Upgraded.
n/php-7.3.9-x86_64-1.txz: Upgraded.
This update fixes bugs and a security issue:
MBString: Fixed bug #78380 (Oniguruma 6.9.3 fixes CVEs). (CVE-2019-13224)
For more information, see:
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-13224
(* Security fix *)
Diffstat (limited to 'source')
-rwxr-xr-x | source/a/haveged/haveged.SlackBuild | 2 | ||||
-rw-r--r-- | source/a/sysvinit-scripts/scripts/rc.6 | 6 | ||||
-rw-r--r-- | source/a/sysvinit-scripts/scripts/rc.K | 4 | ||||
-rwxr-xr-x | source/a/sysvinit-scripts/sysvinit-scripts.SlackBuild | 2 | ||||
-rwxr-xr-x | source/ap/gutenprint/gutenprint.SlackBuild | 2 | ||||
-rw-r--r-- | source/ap/gutenprint/slack-desc | 2 | ||||
-rw-r--r-- | source/l/libffi/libffi.url | 1 | ||||
-rwxr-xr-x | source/n/php/fetch-php.sh | 4 | ||||
-rwxr-xr-x | source/xap/seamonkey/seamonkey.SlackBuild | 2 |
9 files changed, 13 insertions, 12 deletions
diff --git a/source/a/haveged/haveged.SlackBuild b/source/a/haveged/haveged.SlackBuild index 69d86e4f..20e87a86 100755 --- a/source/a/haveged/haveged.SlackBuild +++ b/source/a/haveged/haveged.SlackBuild @@ -25,7 +25,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=haveged VERSION=${VERSION:-$(echo $PKGNAM-*.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 diff --git a/source/a/sysvinit-scripts/scripts/rc.6 b/source/a/sysvinit-scripts/scripts/rc.6 index e3986db8..405773d1 100644 --- a/source/a/sysvinit-scripts/scripts/rc.6 +++ b/source/a/sysvinit-scripts/scripts/rc.6 @@ -124,7 +124,7 @@ fi # Kill any processes (typically gam) that would otherwise prevent # unmounting NFS volumes: unset FUSER_DELAY -for dir in $(/bin/mount | grep 'type nfs ' | sed -e 's|.* on ||g' | cut -d ' ' -f 1) ; do +for dir in $(/bin/mount | grep -e 'type nfs ' -e 'type nfs4 ' | sed -e 's|.* on ||g' | cut -d ' ' -f 1) ; do echo "Killing processes holding NFS mount $dir open..." # Background this to prevent fuser from also blocking shutdown: /usr/bin/fuser -k -M -m "$dir" & @@ -137,7 +137,7 @@ fi # Unmount any NFS, SMB, or CIFS filesystems: echo "Unmounting remote filesystems:" -/bin/umount -v -a -l -f -r -t nfs,smbfs,cifs | tr -d ' ' | grep successfully | sed "s/:successfullyunmounted/ has been successfully unmounted./g" +/bin/umount -v -a -l -f -r -t nfs,nfs4,smbfs,cifs | tr -d ' ' | grep successfully | sed "s/:successfullyunmounted/ has been successfully unmounted./g" # Try to shut down pppd: PS="$(ps ax)" @@ -156,7 +156,7 @@ fi # Bring down the networking system, but first make sure that this # isn't a diskless client with the / partition mounted via NFS: -if ! /bin/mount | /bin/grep -q 'on / type nfs' ; then +if ! /bin/mount | /bin/grep -q -e 'on / type nfs' -e 'on / type nfs4' ; then if [ -x /etc/rc.d/rc.inet1 ]; then /etc/rc.d/rc.inet1 stop fi diff --git a/source/a/sysvinit-scripts/scripts/rc.K b/source/a/sysvinit-scripts/scripts/rc.K index b8ed352d..4ea4b884 100644 --- a/source/a/sysvinit-scripts/scripts/rc.K +++ b/source/a/sysvinit-scripts/scripts/rc.K @@ -60,7 +60,7 @@ fi # Kill any processes (typically gam) that would otherwise prevent # unmounting NFS volumes: unset FUSER_DELAY -for dir in $(/bin/mount | grep 'type nfs ' | sed -e 's|.* on ||g' | cut -d ' ' -f 1) ; do +for dir in $(/bin/mount | grep -e 'type nfs ' -e 'type nfs4 ' | sed -e 's|.* on ||g' | cut -d ' ' -f 1) ; do echo "Killing processes holding NFS mount $dir open..." # Background this to prevent fuser from also blocking shutdown: /usr/bin/fuser -k -M -m "$dir" & @@ -73,7 +73,7 @@ fi # Unmount any NFS, SMB, or CIFS filesystems: echo "Unmounting remote filesystems:" -/bin/umount -v -a -l -f -r -t nfs,smbfs,cifs | tr -d ' ' | grep successfully | sed "s/:successfullyunmounted/ has been successfully unmounted./g" +/bin/umount -v -a -l -f -r -t nfs,nfs4,smbfs,cifs | tr -d ' ' | grep successfully | sed "s/:successfullyunmounted/ has been successfully unmounted./g" # Shut down PCMCIA devices: if [ -x /etc/rc.d/rc.pcmcia ] ; then diff --git a/source/a/sysvinit-scripts/sysvinit-scripts.SlackBuild b/source/a/sysvinit-scripts/sysvinit-scripts.SlackBuild index 4f2588ea..bc86441b 100755 --- a/source/a/sysvinit-scripts/sysvinit-scripts.SlackBuild +++ b/source/a/sysvinit-scripts/sysvinit-scripts.SlackBuild @@ -25,7 +25,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=sysvinit-scripts VERSION=${VERSION:-2.1} ARCH=noarch -BUILD=${BUILD:-26} +BUILD=${BUILD:-27} # 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/ap/gutenprint/gutenprint.SlackBuild b/source/ap/gutenprint/gutenprint.SlackBuild index 4f7eba07..6c3361c8 100755 --- a/source/ap/gutenprint/gutenprint.SlackBuild +++ b/source/ap/gutenprint/gutenprint.SlackBuild @@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=gutenprint VERSION=${VERSION:-$(echo gutenprint-*.tar.?z* | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} -BUILD=${BUILD:-2} +BUILD=${BUILD:-1} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then diff --git a/source/ap/gutenprint/slack-desc b/source/ap/gutenprint/slack-desc index 7f5ab853..9122f8eb 100644 --- a/source/ap/gutenprint/slack-desc +++ b/source/ap/gutenprint/slack-desc @@ -15,5 +15,5 @@ gutenprint: in many cases equal to or better than proprietary vendor-supplied gutenprint: drivers. Gutenprint also includes an enhanced print plug-in for the gutenprint: GIMP image editor. gutenprint: -gutenprint: +gutenprint: Homepage: http://gimp-print.sourceforge.net/ gutenprint: diff --git a/source/l/libffi/libffi.url b/source/l/libffi/libffi.url new file mode 100644 index 00000000..1fbd28a9 --- /dev/null +++ b/source/l/libffi/libffi.url @@ -0,0 +1 @@ +ftp://sourceware.org/pub/libffi diff --git a/source/n/php/fetch-php.sh b/source/n/php/fetch-php.sh index b7adf592..edda2dc8 100755 --- a/source/n/php/fetch-php.sh +++ b/source/n/php/fetch-php.sh @@ -1,2 +1,2 @@ -lftpget http://us.php.net/distributions/php-7.3.8.tar.xz.asc -lftpget http://us.php.net/distributions/php-7.3.8.tar.xz +lftpget http://us.php.net/distributions/php-7.3.9.tar.xz.asc +lftpget http://us.php.net/distributions/php-7.3.9.tar.xz diff --git a/source/xap/seamonkey/seamonkey.SlackBuild b/source/xap/seamonkey/seamonkey.SlackBuild index 87082818..f4b2de70 100755 --- a/source/xap/seamonkey/seamonkey.SlackBuild +++ b/source/xap/seamonkey/seamonkey.SlackBuild @@ -72,7 +72,7 @@ export CXX=${CXX:-"g++ -B$(pwd)/gold"} # -fno-delete-null-pointer-checks disables gcc6 optimization that # leads to instability export CFLAGS="-Wformat -Wno-format-overflow -fno-delete-null-pointer-checks" -export CXXFLAGS="-Wformat -Wno-format-overflow -fno-delete-null-pointer-checks" +export CXXFLAGS="-Wformat -Wno-format-overflow -fno-delete-null-pointer-checks -fpermissive" NUMJOBS=${NUMJOBS:-" -j$(expr $(nproc) + 1) "} |