aboutsummaryrefslogtreecommitdiff
path: root/python/python3-autobahn/python3-autobahn.SlackBuild
diff options
context:
space:
mode:
authorArn0 <yth@ythogtha.org>2025-11-12 14:52:49 +0100
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2025-11-13 18:05:31 +0700
commit00e76b8646f9ea524ad69234924acf6fc35c2478 (patch)
tree8a4e9b066d789d16c7d652c243e1e7e3a9142a94 /python/python3-autobahn/python3-autobahn.SlackBuild
parent3752f3202d36e3b5d0793abe334276733bf8c5f1 (diff)
python/python3-autobahn: updated for version 25.10.2
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/python3-autobahn/python3-autobahn.SlackBuild')
-rw-r--r--python/python3-autobahn/python3-autobahn.SlackBuild8
1 files changed, 6 insertions, 2 deletions
diff --git a/python/python3-autobahn/python3-autobahn.SlackBuild b/python/python3-autobahn/python3-autobahn.SlackBuild
index a29fddd5e3..c6a2e18c15 100644
--- a/python/python3-autobahn/python3-autobahn.SlackBuild
+++ b/python/python3-autobahn/python3-autobahn.SlackBuild
@@ -26,7 +26,7 @@ cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=python3-autobahn
SRCNAM=${PRGNAM#python3-*}
-VERSION=${VERSION:-24.4.2}
+VERSION=${VERSION:-25.10.2}
BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
@@ -83,7 +83,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 --no-isolation --skip-dependency-check
+python3 -m installer -d "$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