diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2021-05-23 19:31:03 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2021-05-24 08:59:55 +0200 |
commit | b9175b1b398693aa45f4b0a28c0606f50987c879 (patch) | |
tree | bbf768c99cac2dc202a713bd5426ce97f25db1dd /source/a | |
parent | bd882e8606f2311f83ec3f7a60627a797e7677f7 (diff) | |
download | current-b9175b1b398693aa45f4b0a28c0606f50987c879.tar.gz current-b9175b1b398693aa45f4b0a28c0606f50987c879.tar.xz |
Sun May 23 19:31:03 UTC 202120210523193103
a/mcelog-176-x86_64-2.txz: Rebuilt.
Fixed size syntax in logrotate config file. Thanks to ecd102.
d/parallel-20210522-noarch-1.txz: Upgraded.
d/python-pip-21.1.2-x86_64-1.txz: Upgraded.
d/python-setuptools-57.0.0-x86_64-1.txz: Upgraded.
l/elfutils-0.185-x86_64-1.txz: Upgraded.
l/expat-2.4.1-x86_64-1.txz: Upgraded.
This update provides new mitigations against the "billion laughs" denial
of service attack.
For more information, see:
https://github.com/libexpat/libexpat/blob/R_2_4_1/expat/Changes
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-0340
(* Security fix *)
l/imagemagick-7.0.11_13-x86_64-2.txz: Rebuilt.
Recompiled against perl-5.34.0.
n/httpd-2.4.46-x86_64-4.txz: Rebuilt.
Fixed size syntax in logrotate config file. Thanks to ecd102.
Diffstat (limited to 'source/a')
-rwxr-xr-x | source/a/mcelog/mcelog.SlackBuild | 4 | ||||
-rw-r--r-- | source/a/mcelog/mcelog.logrotate.size.syntax.diff | 11 |
2 files changed, 14 insertions, 1 deletions
diff --git a/source/a/mcelog/mcelog.SlackBuild b/source/a/mcelog/mcelog.SlackBuild index 542858c96..84ac0ed12 100755 --- a/source/a/mcelog/mcelog.SlackBuild +++ b/source/a/mcelog/mcelog.SlackBuild @@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=mcelog VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then @@ -57,6 +57,8 @@ rm -rf $PKGNAM-$VERSION tar xvf $CWD/$PKGNAM-$VERSION.tar.?z || exit 1 cd $PKGNAM-$VERSION || exit 1 +zcat $CWD/mcelog.logrotate.size.syntax.diff.gz | patch -p1 --verbose || exit 1 + chown -R root:root . find . \ \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ diff --git a/source/a/mcelog/mcelog.logrotate.size.syntax.diff b/source/a/mcelog/mcelog.logrotate.size.syntax.diff new file mode 100644 index 000000000..49a511a57 --- /dev/null +++ b/source/a/mcelog/mcelog.logrotate.size.syntax.diff @@ -0,0 +1,11 @@ +--- ./mcelog.logrotate.orig 2021-04-30 09:44:57.000000000 -0500 ++++ ./mcelog.logrotate 2021-05-23 14:16:45.606004778 -0500 +@@ -3,7 +3,7 @@ + dateext + maxage 365 + rotate 99 +- size=+2048k ++ size 2048k + notifempty + missingok + copytruncate |