diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2020-04-21 02:45:06 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2020-04-21 08:59:53 +0200 |
commit | 72b3c9e90fc0aaa9889f6be69da37f506cabeba2 (patch) | |
tree | a352ce07c0e6d2ee838fb9d34ad0d2010bc402d8 /source/l/oniguruma | |
parent | a4a9ee5efe6ec1f8cc7c5fd48c5df766fc74f3f3 (diff) | |
download | current-72b3c9e90fc0aaa9889f6be69da37f506cabeba2.tar.gz current-72b3c9e90fc0aaa9889f6be69da37f506cabeba2.tar.xz |
Tue Apr 21 02:45:06 UTC 202020200421024506
d/python-2.7.17-x86_64-2.txz: Removed.
d/python2-2.7.18-x86_64-1.txz: Added.
OK, I know a few people got excited seeing python-2 removed in the previous
entry, but it's just being renamed to python2 for consistency with the
python3 package. It's DOA though, and is the final release of the already EOL
python 2 branch (a "commemorative" release as they say in the announcement).
l/M2Crypto-0.35.2-x86_64-3.txz: Rebuilt.
Added python3 modules. Thanks to sombragris and ponce.
l/harfbuzz-2.6.5-x86_64-1.txz: Upgraded.
l/imagemagick-7.0.10_7-x86_64-1.txz: Upgraded.
l/libuv-1.37.0-x86_64-1.txz: Upgraded.
l/libyaml-0.2.4-x86_64-1.txz: Upgraded.
l/oniguruma-6.9.5-x86_64-1.txz: Upgraded.
x/pixman-0.40.0-x86_64-1.txz: Upgraded.
Diffstat (limited to 'source/l/oniguruma')
-rwxr-xr-x | source/l/oniguruma/oniguruma.SlackBuild | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/source/l/oniguruma/oniguruma.SlackBuild b/source/l/oniguruma/oniguruma.SlackBuild index 2699ab611..68573881b 100755 --- a/source/l/oniguruma/oniguruma.SlackBuild +++ b/source/l/oniguruma/oniguruma.SlackBuild @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright 2019 Patrick J. Volkerding, Sebeka, Minnesota, USA +# Copyright 2019, 2020 Patrick J. Volkerding, Sebeka, Minnesota, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -23,7 +23,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=oniguruma -SRCNAM=onig +SRCNAM=oniguruma VERSION=${VERSION:-$(echo $SRCNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} BUILD=${BUILD:-1} @@ -86,6 +86,10 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \+ +if [ ! -r configure ]; then + NOCONFIGURE=1 ./autogen.sh +fi + # Configure, build, and install: CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ |