diff options
author | nomnombtc <nomnombtc@arcor.de> | 2024-12-23 22:46:21 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-12-24 07:57:13 +0700 |
commit | 61d0d3ba2e71d7cc7d055549a84273b8acec1a26 (patch) | |
tree | 097d8f10ebef1d630dff9a5360dc87d8c8c918ff /python/python3-aiohttp-socks/python3-aiohttp-socks.SlackBuild | |
parent | 366f67d849b42a327afc71d1d5ddf721b0d72949 (diff) |
python/python3-aiohttp-socks: Updated for version 0.10.0.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/python3-aiohttp-socks/python3-aiohttp-socks.SlackBuild')
-rw-r--r-- | python/python3-aiohttp-socks/python3-aiohttp-socks.SlackBuild | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/python/python3-aiohttp-socks/python3-aiohttp-socks.SlackBuild b/python/python3-aiohttp-socks/python3-aiohttp-socks.SlackBuild index 16889936a3..9d4ed7161e 100644 --- a/python/python3-aiohttp-socks/python3-aiohttp-socks.SlackBuild +++ b/python/python3-aiohttp-socks/python3-aiohttp-socks.SlackBuild @@ -26,7 +26,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=python3-aiohttp-socks -VERSION=${VERSION:-0.9.0} +VERSION=${VERSION:-0.10.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -82,7 +82,11 @@ 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 {} \; -python3 setup.py install --root=$PKG +PYVER=$(python3 -c 'import sys; print("%d.%d" % sys.version_info[:2])') +export PYTHONPATH=/opt/python$PYVER/site-packages + +python3 -m build --wheel --no-isolation +python3 -m installer --destdir "$PKG" dist/*.whl 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 |