aboutsummaryrefslogtreecommitdiff
path: root/python/python3-libtmux
diff options
context:
space:
mode:
Diffstat (limited to 'python/python3-libtmux')
-rw-r--r--python/python3-libtmux/README2
-rw-r--r--python/python3-libtmux/python3-libtmux.SlackBuild8
2 files changed, 5 insertions, 5 deletions
diff --git a/python/python3-libtmux/README b/python/python3-libtmux/README
index 5daeb6338c..3d96f7a0cb 100644
--- a/python/python3-libtmux/README
+++ b/python/python3-libtmux/README
@@ -1,2 +1,4 @@
libtmux is the library that powers tmuxp, a tool that helps tmux
users manage their workspaces. Take control of tmux via python.
+
+NOTE: libtmux 0.46.2 is the last version to support python3.9
diff --git a/python/python3-libtmux/python3-libtmux.SlackBuild b/python/python3-libtmux/python3-libtmux.SlackBuild
index 9de9bae9d1..77f8686d33 100644
--- a/python/python3-libtmux/python3-libtmux.SlackBuild
+++ b/python/python3-libtmux/python3-libtmux.SlackBuild
@@ -61,11 +61,9 @@ rm -rf $SRCNAM-$VERSION
tar xvf $CWD/$SRCNAM-$VERSION.tar.gz
cd $SRCNAM-$VERSION
chown -R root:root .
-find -L . \
- \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
- -o -perm 511 \) -exec chmod 755 {} \+ -o \
- \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
- -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \+
+find . ! -type l -a \
+ \( -perm /111 -a ! -perm 755 -a -exec chmod -f 755 {} + \) -o \
+ \( ! -perm /111 -a ! -perm 644 -a -exec chmod -f 644 {} + \)
PYVER=$(python3 -c 'import sys; print("%d.%d" % sys.version_info[:2])')
export PYTHONPATH=/opt/python$PYVER/site-packages