diff options
author | Benjamin Trigona-Harany <slackbuilds@jaxartes.net> | 2020-01-04 11:53:43 -0800 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2020-01-12 08:47:53 +0700 |
commit | a9af6452629b1b2216f4658be7f76ddda43341b3 (patch) | |
tree | ae9c475a566eb92b49d53cfedba036b0e7712283 /python/ipython | |
parent | e67db9c492dec634e9edd63eff7278563cb3ffb9 (diff) |
python/ipython: Rename executable to ipython2.
Python 2 is not at end of life, so default should be Python 3.
Signed-off-by: Benjamin Trigona-Harany <slackbuilds@jaxartes.net>
Diffstat (limited to 'python/ipython')
-rw-r--r-- | python/ipython/ipython.SlackBuild | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/python/ipython/ipython.SlackBuild b/python/ipython/ipython.SlackBuild index 4af705431ed4..c2e72529af24 100644 --- a/python/ipython/ipython.SlackBuild +++ b/python/ipython/ipython.SlackBuild @@ -25,7 +25,7 @@ PRGNAM=ipython VERSION=${VERSION:-5.8.0} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -57,12 +57,15 @@ 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 {} \; -python setup.py install --root="$PKG" +python2 setup.py install --root="$PKG" +rm $PKG/usr/bin/ipython +rm $PKG/usr/bin/iptest* 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 -mv $PKG/usr/share/man $PKG/usr +mkdir -p $PKG/usr/man/man1 +mv $PKG/usr/share/man/man1/$PRGNAM.1 $PKG/usr/man/man1/${PRGNAM}2.1 find $PKG/usr/man -type f -exec gzip -9 {} \; for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done |