aboutsummaryrefslogtreecommitdiff
path: root/python/python3-rich/python3-rich.SlackBuild
diff options
context:
space:
mode:
Diffstat (limited to 'python/python3-rich/python3-rich.SlackBuild')
-rw-r--r--python/python3-rich/python3-rich.SlackBuild7
1 files changed, 5 insertions, 2 deletions
diff --git a/python/python3-rich/python3-rich.SlackBuild b/python/python3-rich/python3-rich.SlackBuild
index a06d6b5dc9..134b0b612c 100644
--- a/python/python3-rich/python3-rich.SlackBuild
+++ b/python/python3-rich/python3-rich.SlackBuild
@@ -22,11 +22,13 @@
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+# 20230122 46and2: Updated version, changed build process and deps.
+
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=python3-rich
SRCNAM=$(echo $PRGNAM | sed "s/python3-//")
-VERSION=${VERSION:-13.0.0}
+VERSION=${VERSION:-13.2.0}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
@@ -77,7 +79,8 @@ 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
+python3 -m build --no-isolation
+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