diff options
Diffstat (limited to 'source/l')
-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 |
5 files changed, 9 insertions, 9 deletions
diff --git a/source/l/cryptopp/cryptopp.SlackBuild b/source/l/cryptopp/cryptopp.SlackBuild index 482e46c7c..af9f353e1 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 dfea34568..2bf7f7399 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 34b45173e..f00ad08b6 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 3991e39f4..871d0c9f9 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 0366a38d3..1401ac7c6 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) "} |