mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-24 10:02:29 +01:00
development/ipython: Added to 12.1 repository
This commit is contained in:
parent
a482db8c57
commit
8185df7f6b
4 changed files with 121 additions and 0 deletions
10
development/ipython/README
Normal file
10
development/ipython/README
Normal file
|
@ -0,0 +1,10 @@
|
|||
IPython is a multiplatform, Free Software project (BSD licensed) that offers:
|
||||
|
||||
* An enhanced Python shell designed for efficient interactive work. It includes
|
||||
many enhancements over the default Python shell, including the ability for
|
||||
controlling interactively all major GUI toolkits in a non-blocking manner.
|
||||
* A library to build customized interactive environments using Python as the
|
||||
basic language (but with the possibility of having extended or alternate
|
||||
syntaxes).
|
||||
* A system for interactive distributed and parallel computing (this is part of
|
||||
IPython's new development).
|
84
development/ipython/ipython.SlackBuild
Normal file
84
development/ipython/ipython.SlackBuild
Normal file
|
@ -0,0 +1,84 @@
|
|||
#!/bin/sh
|
||||
|
||||
# SlackBuild for IPython
|
||||
|
||||
# Copyright 2008 Carlos Corbacho <carlos AT strangeworlds.co.uk>
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
# permitted provided that the following conditions are met:
|
||||
#
|
||||
# 1. Redistributions of this script must retain the above copyright
|
||||
# notice, this list of conditions and the following disclaimer.
|
||||
#
|
||||
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
||||
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
||||
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
||||
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
PKGNAM=ipython
|
||||
VERSION=${VERSION:-0.8.4}
|
||||
ARCH=${ARCH:-noarch}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
|
||||
cd $TMP || exit 1
|
||||
rm -rf $PKGNAM-$VERSION
|
||||
tar xvf $CWD/$PKGNAM-$VERSION.tar.gz || exit 1
|
||||
cd $PKGNAM-$VERSION || exit 1
|
||||
find . \
|
||||
\( -perm 777 -o -perm 775 -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 {} \;
|
||||
|
||||
python setup.py \
|
||||
install \
|
||||
--root="$PKG" \
|
||||
|| exit 1
|
||||
|
||||
mkdir -p $PKG/usr/doc
|
||||
mv $PKG/usr/share/doc/ipython $PKG/usr/doc/ipython-$VERSION
|
||||
chmod -R 644 $PKG/usr/doc/$PKGNAM-$VERSION/*
|
||||
|
||||
mv $PKG/usr/share/man $PKG/usr
|
||||
if [ -d $PKG/usr/man ]; then
|
||||
( cd $PKG/usr/man
|
||||
for manpagedir in $(find . -type d -name "man*") ; do
|
||||
( cd $manpagedir
|
||||
for eachpage in $( find . -type l -maxdepth 1) ; do
|
||||
ln -s $( readlink $eachpage ).gz $eachpage.gz
|
||||
rm $eachpage
|
||||
done
|
||||
gzip -9 *.?
|
||||
)
|
||||
done
|
||||
)
|
||||
fi
|
||||
rm -rf $PKG/usr/share
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PKGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
|
||||
|
||||
# Clean up the extra stuff:
|
||||
if [ "$1" = "--cleanup" ]; then
|
||||
rm -rf $TMP/$PKGNAM-$VERSION
|
||||
rm -rf $PKG
|
||||
fi
|
8
development/ipython/ipython.info
Normal file
8
development/ipython/ipython.info
Normal file
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="ipython"
|
||||
VERSION="0.8.4"
|
||||
HOMEPAGE="http://ipython.scipy.org/"
|
||||
DOWNLOAD="http://ipython.scipy.org/dist/ipython-0.8.4.tar.gz"
|
||||
MD5SUM="9b8b439d295defa694b9fbf799203680"
|
||||
MAINTAINER="Carlos Corbacho"
|
||||
EMAIL="carlos@strangeworlds.co.uk"
|
||||
APPROVED="rworkman"
|
19
development/ipython/slack-desc
Normal file
19
development/ipython/slack-desc
Normal file
|
@ -0,0 +1,19 @@
|
|||
# HOW TO EDIT THIS FILE:
|
||||
# The "handy ruler" below makes it easier to edit a package description. Line
|
||||
# up the first '|' above the ':' following the base package name, and the '|' on
|
||||
# the right side marks the last column you can put a character in. You must make
|
||||
# exactly 11 lines for the formatting to be correct. It's also customary to
|
||||
# leave one space after the ':'.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
ipython: ipython (an enhanced Python shell)
|
||||
ipython:
|
||||
ipython: IPython is a multiplatform, Free Software project (BSD licensed) that
|
||||
ipython: offers:
|
||||
ipython: * An enhanced Python shell designed for efficient interactive work.
|
||||
ipython: * A library to build customized interactive environments using
|
||||
ipython: Python as the basic language
|
||||
ipython: * A system for interactive distributed and parallel computing
|
||||
ipython:
|
||||
ipython: Home Page: http://ipython.scipy.org/moin/
|
||||
ipython:
|
Loading…
Reference in a new issue