diff options
author | Benjamin Trigona-Harany <bosth@alumni.sfu.ca> | 2018-05-11 09:30:49 -0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2018-05-12 06:58:30 +0700 |
commit | d835f292b80f204bad7674dc689aa8cb4ea2642d (patch) | |
tree | ad67dd59a3dabe75e2cc78bbfa5d4cead91a01d3 /python/ipython | |
parent | f2f00a2b4d2129a63683220eef07b89f6fbba30d (diff) | |
download | slackbuilds-d835f292b80f204bad7674dc689aa8cb4ea2642d.tar.gz |
python/ipython: Upgraded for version 5.7.0.
Diffstat (limited to 'python/ipython')
-rw-r--r-- | python/ipython/ipython.SlackBuild | 24 | ||||
-rw-r--r-- | python/ipython/ipython.info | 6 |
2 files changed, 16 insertions, 14 deletions
diff --git a/python/ipython/ipython.SlackBuild b/python/ipython/ipython.SlackBuild index ad5058cba7..34e9d4063d 100644 --- a/python/ipython/ipython.SlackBuild +++ b/python/ipython/ipython.SlackBuild @@ -3,6 +3,7 @@ # SlackBuild for IPython # Copyright 2008-2011 Carlos Corbacho <carlos@strangeworlds.co.uk> +# Copyright 2013-2018 Benjamin Trigona-Harany <slackbuilds@jaxartes.net> # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -22,10 +23,8 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -# Maintained by Benjamin-Trigona-Harany - PRGNAM=ipython -VERSION=${VERSION:-5.6.0} +VERSION=${VERSION:-5.7.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -51,15 +50,17 @@ cd $TMP rm -rf $PRGNAM-$VERSION tar xvf $CWD/$PRGNAM-$VERSION.tar.gz cd $PRGNAM-$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 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; + \( -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 {} \; python setup.py install --root="$PKG" -rm $PKG/usr/bin/ipython2 + +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 find $PKG/usr/man -type f -exec gzip -9 {} \; @@ -69,8 +70,9 @@ for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; r rm -rf $PKG/usr/share mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION - -cp COPYING.rst README.rst $PKG/usr/doc/$PRGNAM-$VERSION +cp \ + COPYING.rst README.rst \ + $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install diff --git a/python/ipython/ipython.info b/python/ipython/ipython.info index 8112bb866a..62582b542a 100644 --- a/python/ipython/ipython.info +++ b/python/ipython/ipython.info @@ -1,8 +1,8 @@ PRGNAM="ipython" -VERSION="5.6.0" +VERSION="5.7.0" HOMEPAGE="http://ipython.org" -DOWNLOAD="https://files.pythonhosted.org/packages/source/i/ipython/ipython-5.6.0.tar.gz" -MD5SUM="dd9d62b4219ee6a1e38df045a41cfd02" +DOWNLOAD="https://files.pythonhosted.org/packages/source/i/ipython/ipython-5.7.0.tar.gz" +MD5SUM="ccf4f85bab1b086a439c1f9256e30c9a" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="decorator jedi pexpect pickleshare prompt_toolkit Pygments shutil_get_terminal_size simplegeneric traitlets" |