diff options
author | Barry J. Grundy <bgrundyat> | 2022-05-20 17:13:36 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-05-21 08:25:27 +0700 |
commit | c3d0f84974dbd976aa50c60048c6fd2292cb34f4 (patch) | |
tree | 54338304763c9d1af834f8a0b81b29f427894449 /python/dfvfs/dfvfs.SlackBuild | |
parent | fdc88f407c5cf122f3a3483f274e85c1a60dfe37 (diff) |
python/dfvfs: Updated for version 20220419.
Signed-off-by: Dave Woodfall <dave@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/dfvfs/dfvfs.SlackBuild')
-rw-r--r-- | python/dfvfs/dfvfs.SlackBuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/python/dfvfs/dfvfs.SlackBuild b/python/dfvfs/dfvfs.SlackBuild index 81a953c2a1..cd8c4249da 100644 --- a/python/dfvfs/dfvfs.SlackBuild +++ b/python/dfvfs/dfvfs.SlackBuild @@ -1,7 +1,7 @@ #!/bin/bash # Slackware build script for dfvfs -# Copyright 2014-2019 Barry Grundy <bgrundy[at]linuxleo.com> +# Copyright 2014-2022 Barry Grundy <bgrundy[at]linuxleo.com> # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -21,12 +21,12 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # -# updated for v20190128, March 2019 +# updated for v20220419 May 2022 cd $(dirname $0) ; CWD=$(pwd) PRGNAM=dfvfs -VERSION=${VERSION:-20190128} +VERSION=${VERSION:-20220419} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -80,13 +80,13 @@ 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 | xargs file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a ACKNOWLEDGEMENTS AUTHORS LICENSE README $PKG/usr/doc/$PRGNAM-$VERSION +cp -a AUTHORS LICENSE README $PKG/usr/doc/$PRGNAM-$VERSION # Remove duplicated docs in /usr/share/doc rm -rf $PKG/usr/share cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild |