diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2021-01-02 20:36:24 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2021-01-03 08:59:48 +0100 |
commit | 4f5caa67e6249f03459f2f09ff518ca5fffdc694 (patch) | |
tree | 5335c056d78585a81989e1ba22b606781774ebd0 /source | |
parent | c53e3a413a82eaadc7b59568a4aea8fa33951525 (diff) | |
download | current-4f5caa67e6249f03459f2f09ff518ca5fffdc694.tar.gz |
Sat Jan 2 20:36:24 UTC 202120210102203624
a/smartmontools-7.2-x86_64-1.txz: Upgraded.
l/cryptopp-8.4.0-x86_64-1.txz: Upgraded.
l/shared-mime-info-2.1-x86_64-1.txz: Upgraded.
xfce/xfce4-whiskermenu-plugin-2.5.1-x86_64-1.txz: Upgraded.
Diffstat (limited to 'source')
-rwxr-xr-x | source/a/smartmontools/smartmontools.SlackBuild | 6 | ||||
-rwxr-xr-x | source/l/cryptopp/cryptopp.SlackBuild | 2 | ||||
-rw-r--r-- | source/l/cryptopp/cryptopp.url | 2 | ||||
-rwxr-xr-x | source/l/glibc/glibc.SlackBuild | 6 | ||||
-rwxr-xr-x | source/l/shared-mime-info/fetch-shared-mime-info.sh | 4 | ||||
-rwxr-xr-x | source/l/shared-mime-info/shared-mime-info.SlackBuild | 4 |
6 files changed, 13 insertions, 11 deletions
diff --git a/source/a/smartmontools/smartmontools.SlackBuild b/source/a/smartmontools/smartmontools.SlackBuild index 17d1c48e..7e0b554d 100755 --- a/source/a/smartmontools/smartmontools.SlackBuild +++ b/source/a/smartmontools/smartmontools.SlackBuild @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright 2008, 2009, 2011, 2017, 2018 Patrick J. Volkerding, Sebeka, Minnesota, USA +# Copyright 2008, 2009, 2011, 2017, 2018, 2021 Patrick J. Volkerding, Sebeka, Minnesota, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -44,6 +44,8 @@ if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then exit 0 fi +NUMJOBS=${NUMJOBS:-" -j $(expr $(nproc) + 1) "} + if [ "$ARCH" = "x86_64" ]; then LIBDIRSUFFIX="64" else @@ -70,7 +72,7 @@ chown -R root:root . --docdir=/usr/doc/smartmontools-$VERSION \ --build=$ARCH-slackware-linux || exit 1 -make || exit 1 +make $NUMJOBS || make || exit 1 make install DESTDIR=$PKG || exit 1 # Don't use the included init script: diff --git a/source/l/cryptopp/cryptopp.SlackBuild b/source/l/cryptopp/cryptopp.SlackBuild index 482e46c7..af9f353e 100755 --- a/source/l/cryptopp/cryptopp.SlackBuild +++ b/source/l/cryptopp/cryptopp.SlackBuild @@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=cryptopp -VERSION=${VERSION:-8.3.0} +VERSION=${VERSION:-8.4.0} SRCVER=$(echo $VERSION | tr -d '.') BUILD=${BUILD:-1} diff --git a/source/l/cryptopp/cryptopp.url b/source/l/cryptopp/cryptopp.url index dfea3456..2bf7f739 100644 --- a/source/l/cryptopp/cryptopp.url +++ b/source/l/cryptopp/cryptopp.url @@ -1 +1 @@ -https://www.cryptopp.com/cryptopp830.zip +https://www.cryptopp.com/cryptopp840.zip diff --git a/source/l/glibc/glibc.SlackBuild b/source/l/glibc/glibc.SlackBuild index 34b45173..f00ad08b 100755 --- a/source/l/glibc/glibc.SlackBuild +++ b/source/l/glibc/glibc.SlackBuild @@ -54,13 +54,13 @@ fi NUMJOBS=${NUMJOBS:-" -j$(expr $(nproc) + 1) "} -# Work around -Werror failure with gcc-8.2.0. +# Work around -Werror failure with gcc-10.2.0. # NOTE: Until the next glibc release takes care of this issue, this will # likely need to be updated with every new gcc release's version. Yes, we # could pass --disable-werror by default, but I'd rather not just shove a # stick in it like that. -if [ "$(gcc -dumpversion)" = "8.2.0" ]; then - if [ "$VERSION" = "2.27" ]; then +if [ "$(gcc -dumpversion)" = "10.2.0" ]; then + if [ "$VERSION" = "2.30" ]; then WERROR="--disable-werror" fi fi diff --git a/source/l/shared-mime-info/fetch-shared-mime-info.sh b/source/l/shared-mime-info/fetch-shared-mime-info.sh index 3991e39f..871d0c9f 100755 --- a/source/l/shared-mime-info/fetch-shared-mime-info.sh +++ b/source/l/shared-mime-info/fetch-shared-mime-info.sh @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright 2019 Patrick J. Volkerding, Sebeka, Minnesota, USA +# Copyright 2019, 2021 Patrick J. Volkerding, Sebeka, Minnesota, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -26,7 +26,7 @@ rm -rf shared-mime-info # Clone repository: git clone https://gitlab.freedesktop.org/xdg/shared-mime-info.git -VERSION=$(cd shared-mime-info && grep "^AC_INIT(\[shared-mime-info" configure.ac | cut -f 2 -d , | tr -d [ | tr -d ]) +VERSION=$(cd shared-mime-info && grep -w 'version:' meson.build | head -n 1 | cut -f 2 -d \') # Cleanup. We're not packing up the whole git repo. ( cd shared-mime-info && find . -type d -name ".git*" -exec rm -rf {} \; 2> /dev/null ) diff --git a/source/l/shared-mime-info/shared-mime-info.SlackBuild b/source/l/shared-mime-info/shared-mime-info.SlackBuild index 0366a38d..1401ac7c 100755 --- a/source/l/shared-mime-info/shared-mime-info.SlackBuild +++ b/source/l/shared-mime-info/shared-mime-info.SlackBuild @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright 2008, 2009, 2010, 2012, 2016, 2018 Patrick J. Volkerding, Sebeka, MN, USA +# Copyright 2008, 2009, 2010, 2012, 2016, 2018, 2021 Patrick J. Volkerding, Sebeka, MN, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=shared-mime-info VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} -BUILD=${BUILD:-2} +BUILD=${BUILD:-1} NUMJOBS=${NUMJOBS:-" -j$(expr $(nproc) + 1) "} |