summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2020-06-24 20:06:50 +0000
committer Eric Hameleers <alien@slackware.com>2020-06-25 08:59:53 +0200
commit0e47cd9c3d8c60b9f63c41b525e7c857c67bdf4d (patch)
tree39232e1c6fda8a70552b5f45a4d5590e798cb124 /source
parent98fd2cebdfc0c61485e38b2d04bc8dc763c65db2 (diff)
downloadcurrent-0e47cd9c3d8c60b9f63c41b525e7c857c67bdf4d.tar.gz
current-0e47cd9c3d8c60b9f63c41b525e7c857c67bdf4d.tar.xz
Wed Jun 24 20:06:50 UTC 202020200624200650
ap/mariadb-10.5.4-x86_64-1.txz: Upgraded. d/guile-3.0.4-x86_64-1.txz: Upgraded. Shared library .so-version bump. Looks like the previous bump was a mistake: This release fixes the SONAME of libguile-3.0.so, which was erroneously bumped in 3.0.3 compared to 3.0.2. Distributions are strongly encouraged to use 3.0.4 instead of 3.0.3. d/make-4.2.1-x86_64-7.txz: Rebuilt. Recompiled against guile-3.0.4. l/libjpeg-turbo-2.0.5-x86_64-1.txz: Upgraded. This update fixes bugs and a security issue: Fixed an issue in the PPM reader that caused a buffer overrun in cjpeg, TJBench, or the `tjLoadImage()` function if one of the values in a binary PPM/PGM input file exceeded the maximum value defined in the file's header and that maximum value was less than 255. For more information, see: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13790 (* Security fix *) n/ModemManager-1.14.0-x86_64-1.txz: Upgraded. n/curl-7.71.0-x86_64-1.txz: Upgraded. This update fixes security issues: curl overwrite local file with -J [111] Partial password leak over DNS on HTTP redirect [48] For more information, see: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-8177 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-8169 (* Security fix *) n/gnutls-3.6.14-x86_64-3.txz: Rebuilt. Recompiled against guile-3.0.4. n/mutt-1.14.5-x86_64-1.txz: Upgraded. x/libwacom-1.4-x86_64-1.txz: Upgraded.
Diffstat (limited to 'source')
-rw-r--r--source/ap/mariadb/doinst.sh2
-rwxr-xr-xsource/ap/mariadb/mariadb.SlackBuild4
-rwxr-xr-xsource/ap/neofetch/neofetch.SlackBuild5
-rwxr-xr-xsource/d/make/make.SlackBuild2
-rwxr-xr-xsource/n/gnutls/gnutls.SlackBuild2
5 files changed, 8 insertions, 7 deletions
diff --git a/source/ap/mariadb/doinst.sh b/source/ap/mariadb/doinst.sh
index 545f6a9f5..12bad9bb9 100644
--- a/source/ap/mariadb/doinst.sh
+++ b/source/ap/mariadb/doinst.sh
@@ -23,7 +23,9 @@ config etc/mysqlaccess.conf.new
config etc/my.cnf.new
config etc/my.cnf.d/client.cnf.new
config etc/my.cnf.d/mysql-clients.cnf.new
+config etc/my.cnf.d/s3.cnf.new
config etc/my.cnf.d/server.cnf.new
+config etc/my.cnf.d/spider.cnf.new
config etc/logrotate.d/mysql.new
# Not supported in every $ARCH:
diff --git a/source/ap/mariadb/mariadb.SlackBuild b/source/ap/mariadb/mariadb.SlackBuild
index 75604f7a2..2291bb573 100755
--- a/source/ap/mariadb/mariadb.SlackBuild
+++ b/source/ap/mariadb/mariadb.SlackBuild
@@ -30,7 +30,7 @@ cd $(dirname $0) ; CWD=$(pwd)
PKGNAM=mariadb
VERSION=${VERSION:-$(echo ${PKGNAM}-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)}
-BUILD=${BUILD:-3}
+BUILD=${BUILD:-1}
# To reduce the package size, the embedded server may be omitted. Currently
# only amarok uses this. To build without embedded support, set this to NO.
@@ -216,7 +216,7 @@ install -m 644 scripts/mysqlaccess.conf $PKG/etc/mysqlaccess.conf.new
# Mark config files under /etc as .new
mv $PKG/etc/my.cnf $PKG/etc/my.cnf.new
mv $PKG/etc/logrotate.d/mysql $PKG/etc/logrotate.d/mysql.new
-for i in client mysql-clients server tokudb; do
+for i in client mysql-clients s3 server spider tokudb; do
mv $PKG/etc/my.cnf.d/$i.cnf $PKG/etc/my.cnf.d/$i.cnf.new
done
diff --git a/source/ap/neofetch/neofetch.SlackBuild b/source/ap/neofetch/neofetch.SlackBuild
index 47d24064c..6bd5c7001 100755
--- a/source/ap/neofetch/neofetch.SlackBuild
+++ b/source/ap/neofetch/neofetch.SlackBuild
@@ -40,7 +40,7 @@ fi
# the name of the created package would be, and then exit. This information
# could be useful to other scripts.
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
- echo "$PKGNAM-$VERSION-$ARCH-$BUILD.txz"
+ echo "$PKGNAM-$VERSION-noarch-$BUILD.txz"
exit 0
fi
@@ -105,5 +105,4 @@ mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
cd $PKG
-/sbin/makepkg -l y -c n $TMP/${PKGNAM}-$VERSION-$ARCH-$BUILD.txz
-
+/sbin/makepkg -l y -c n $TMP/${PKGNAM}-$VERSION-noarch-$BUILD.txz
diff --git a/source/d/make/make.SlackBuild b/source/d/make/make.SlackBuild
index 685bd2a3e..6bed1e971 100755
--- a/source/d/make/make.SlackBuild
+++ b/source/d/make/make.SlackBuild
@@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd)
PKGNAM=make
VERSION=${VERSION:-$(echo $PKGNAM-*.tar.bz2 | rev | cut -f 3- -d . | cut -f 1 -d - | rev)}
-BUILD=${BUILD:-6}
+BUILD=${BUILD:-7}
# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then
diff --git a/source/n/gnutls/gnutls.SlackBuild b/source/n/gnutls/gnutls.SlackBuild
index 2db9928cf..da32dc5eb 100755
--- a/source/n/gnutls/gnutls.SlackBuild
+++ b/source/n/gnutls/gnutls.SlackBuild
@@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd)
PKGNAM=gnutls
VERSION=${VERSION:-$(echo gnutls-*.tar.xz | rev | cut -f 3- -d . | cut -f 1 -d - | rev)}
-BUILD=${BUILD:-2}
+BUILD=${BUILD:-3}
# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then