diff options
author | Markus Reichelt <slackbuilds@mareichelt.de> | 2022-10-14 18:55:13 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-10-15 10:47:37 +0700 |
commit | 9b4c32b0f9d22ea5b3bc63c5bc20081df1aff491 (patch) | |
tree | 95753f071b46c3f71b3104ad50055523aa331bec /python | |
parent | 9e2db000f731a2a8c4d0cb030c8d39fa10c4093e (diff) |
python/vanguards: Updated for version 0.3.1.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python')
-rw-r--r-- | python/vanguards/README | 5 | ||||
-rw-r--r-- | python/vanguards/vanguards.SlackBuild | 8 |
2 files changed, 3 insertions, 10 deletions
diff --git a/python/vanguards/README b/python/vanguards/README index 50f8d7b3c6473..f2e35083e34c0 100644 --- a/python/vanguards/README +++ b/python/vanguards/README @@ -5,8 +5,3 @@ soon as possible, ahead of their official Tor-code releases. Having Tor installed is not required for building. The Tor installation does not have to be from SBo. -Vanguards requires Tor 0.3.3.x or above, and Tor 0.3.5.x is -preferred. - -A python 3 module will be compiled if python 3 is installed on -the system during compile time. diff --git a/python/vanguards/vanguards.SlackBuild b/python/vanguards/vanguards.SlackBuild index cb5a9f3d81289..619c276b95c7f 100644 --- a/python/vanguards/vanguards.SlackBuild +++ b/python/vanguards/vanguards.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for vanguards -# Copyright 2019, Markus Reichelt, Aachen, DE +# Copyright 2019-2022, Markus Reichelt, Aachen, DE # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -28,7 +28,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=vanguards VERSION=${VERSION:-0.3.1} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -81,7 +81,6 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; -python2 setup.py install --root=$PKG python3 setup.py install --root=$PKG find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ @@ -94,8 +93,7 @@ cp -a \ cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild cat $PRGNAM.1 > $PKG/usr/man/man1/$PRGNAM.1 -find $PKG/usr/man -type f -exec gzip -9 {} \; -for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done +gzip -9 $PKG/usr/man/man1/* mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc |