summaryrefslogtreecommitdiffstats
path: root/libraries/Botan
diff options
context:
space:
mode:
author Markus Reichelt2022-10-14 19:44:55 +0200
committer Willy Sudiarto Raharjo2022-10-15 05:47:37 +0200
commit998c818e0457083b48ee4fa383edd00ea223ea8b (patch)
treea67198d1f54c6f32538cd07b9f029b8b3c7dbefc /libraries/Botan
parent044e58d956775d3a0bb71a5e8eca3b2510bf49bf (diff)
downloadslackbuilds-998c818e0457083b48ee4fa383edd00ea223ea8b.tar.gz
libraries/Botan: Updated for version 2.19.2.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/Botan')
-rw-r--r--libraries/Botan/Botan.SlackBuild18
-rw-r--r--libraries/Botan/Botan.info6
-rw-r--r--libraries/Botan/README2
3 files changed, 14 insertions, 12 deletions
diff --git a/libraries/Botan/Botan.SlackBuild b/libraries/Botan/Botan.SlackBuild
index 414d63cb09..c71b7b53af 100644
--- a/libraries/Botan/Botan.SlackBuild
+++ b/libraries/Botan/Botan.SlackBuild
@@ -2,7 +2,7 @@
# Slackware build script for Botan
-# Copyright (c) 2010-2021 Markus Reichelt, Aachen, DE
+# Copyright (c) 2010-2022 Markus Reichelt, Aachen, DE
# All rights reserved.
#
# Permission to use, copy, modify, and distribute this software for
@@ -31,8 +31,8 @@
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=Botan
-VERSION=${VERSION:-2.17.3}
-BUILD=${BUILD:-2}
+VERSION=${VERSION:-2.19.2}
+BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
@@ -80,14 +80,14 @@ cd $PRGNAM-$VERSION
chown -R root:root .
find -L . \
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
- -o -perm 511 \) -exec chmod 755 {} \+ -o \
+ -o -perm 511 \) -exec chmod 755 {} \; -o \
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
- -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \+
+ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
LDFLAGS="$LDFLAGS" \
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
-python configure.py \
+python3 configure.py \
--prefix=/usr \
--docdir=doc \
--libdir=lib$LIBDIRSUFFIX \
@@ -97,9 +97,9 @@ python configure.py \
make
#make check
-#in addition to running 'make check' as an alternative way to invoke the testsuite
-#is to uncomment the following line
+#as an alternative way to invoke the testsuite uncomment the following
#LD_LIBRARY_PATH=. ./botan-test
+
make install DESTDIR=$PKG
gzip -9 $PKG/usr/man/man*/*
@@ -110,7 +110,7 @@ find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | gr
# 20220416 bkw: 'make install' uses the wrong name for the doc dir,
# lowercase "botan". our doc dir must match the SlackBuild's name.
mv $PKG/usr/doc/$PRGNAMI-$VERSION $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a *.rst *.txt $PKG/usr/doc/$PRGNAM-$VERSION/
+cp -a license.txt $PKG/usr/doc/$PRGNAM-$VERSION/
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
diff --git a/libraries/Botan/Botan.info b/libraries/Botan/Botan.info
index a7ab7f4c1c..1c69e956e7 100644
--- a/libraries/Botan/Botan.info
+++ b/libraries/Botan/Botan.info
@@ -1,8 +1,8 @@
PRGNAM="Botan"
-VERSION="2.17.3"
+VERSION="2.19.2"
HOMEPAGE="https://botan.randombit.net/"
-DOWNLOAD="https://botan.randombit.net/releases/Botan-2.17.3.tar.xz"
-MD5SUM="ada7bc7dc7451f356e1e80433c675f6b"
+DOWNLOAD="https://botan.randombit.net/releases/Botan-2.19.2.tar.xz"
+MD5SUM="711e7eb98ecc4a7b468dd0a0d9193d63"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES=""
diff --git a/libraries/Botan/README b/libraries/Botan/README
index df7215a24c..f356d36ede 100644
--- a/libraries/Botan/README
+++ b/libraries/Botan/README
@@ -3,3 +3,5 @@ applications with the ability to use a number of cryptographic
algorithms, as well as SSL/TLS, X.509 certificates and CRLs, PKCS
#10 certificate requests, a filter/pipe message processing system,
and a wide variety of other features.
+
+Botan relies on Python3 for its compilation configuration.