diff options
author | Isaac Yu <isaacyu1@isaacyu1.com> | 2022-12-20 23:54:22 -0800 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-12-23 00:12:24 +0700 |
commit | f5b2344e28a2cbb47efcb447726d27aeaf21d2fa (patch) | |
tree | f31357195246cfc1da65e88778155470ff35e953 /python/jsonpointer | |
parent | 36de606fea4413be1c22446cd53f8473ff6272df (diff) |
python/jsonpointer: Update for 2.3 (+new maintainer)
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/jsonpointer')
-rw-r--r-- | python/jsonpointer/jsonpointer.SlackBuild | 12 | ||||
-rw-r--r-- | python/jsonpointer/jsonpointer.info | 10 |
2 files changed, 10 insertions, 12 deletions
diff --git a/python/jsonpointer/jsonpointer.SlackBuild b/python/jsonpointer/jsonpointer.SlackBuild index 413aea70dc1f..41126baf5a68 100644 --- a/python/jsonpointer/jsonpointer.SlackBuild +++ b/python/jsonpointer/jsonpointer.SlackBuild @@ -2,7 +2,8 @@ # Slackware build script for jsonpointer -# Copyright 2020 Alan Aversa +# Copyright 2020 Alan Aversa <alan_avNOersa@lSPAMavabit.com> +# Copyright 2022 Isaac Yu <isaacyu1@isaacyu1.com> # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -25,7 +26,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=jsonpointer -VERSION=${VERSION:-2.0} +VERSION=${VERSION:-2.3} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -79,16 +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 {} \; -if $(python3 -c 'import sys' 2>/dev/null); then - python3 setup.py install --root=$PKG -else - python setup.py install --root=$PKG -fi +python3 setup.py install --root=$PKG find $PKG -print0 | xargs -0 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 AUTHORS LICENSE.txt README.md $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install diff --git a/python/jsonpointer/jsonpointer.info b/python/jsonpointer/jsonpointer.info index af53a5b77c06..5fa5cdd49d3b 100644 --- a/python/jsonpointer/jsonpointer.info +++ b/python/jsonpointer/jsonpointer.info @@ -1,10 +1,10 @@ PRGNAM="jsonpointer" -VERSION="2.0" +VERSION="2.3" HOMEPAGE="https://pypi.org/project/jsonpointer/" -DOWNLOAD="https://files.pythonhosted.org/packages/52/e7/246d9ef2366d430f0ce7bdc494ea2df8b49d7a2a41ba51f5655f68cfe85f/jsonpointer-2.0.tar.gz" -MD5SUM="741b98d0e693b08b5e44e0a9da5a7bb7" +DOWNLOAD="https://files.pythonhosted.org/packages/source/j/jsonpointer/jsonpointer-2.3.tar.gz" +MD5SUM="57fd6581e61d56960d8c2027ff33f5c0" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="" -MAINTAINER="Alan Aversa" -EMAIL="alan_avNOersa@lSPAMavabit.com" +MAINTAINER="Isaac Yu" +EMAIL="isaacyu1@isaacyu1.com" |