libraries/matplotlib: Updated for version 1.4.1.

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Serban Udrea 2014-10-28 08:47:36 +07:00 committed by Willy Sudiarto Raharjo
parent 6d094eec3f
commit ad3dfffac0
4 changed files with 2207 additions and 23 deletions

View File

@ -1,5 +1,14 @@
Matplotlib strives to produce publication quality 2D graphics for
interactive graphing, scientific publishing, user interface
development and web application servers targeting multiple user
interfaces and hardcopy output formats. There is a 'pylab' mode which
emulates matlab graphics
interfaces and hardcopy output formats. The 'pylab' mode
of ipython uses matplotlib to emulate matlab graphics.
NOTES: If you want to enable the optional subpackages tests and
toolkits_tests you need to install nose and mock before
matplotlib.
To enable the above mentioned subpackages you have to set
the variables DISABLE_TESTS and DISABLE_TK_TESTS respectively
to "no".
toolkits_tests doesn't get installed, if test and/or toolkits
are disabled. The installation of toolkits is done automatically.

View File

@ -5,14 +5,16 @@
# Written by Aleksandar Samardzic <asamardzic@gmail.com>
# Updated to 0.99.1.2 by João Felipe Santos <joao.eel@gmail.com>
# Patch for libpng borrowed from Arch Linux
# Updated up to version 1.1.1 by Serban Udrea <S.Udrea@gsi.de>
# Updated up to version 1.4.1 by Serban Udrea <S.Udrea@gsi.de>
PRGNAM=matplotlib
VERSION=${VERSION:-1.1.1}
VERSION=${VERSION:-1.4.1}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
TARBALL_VERSION=1.1.1 # Tarball sometimes has a wrong version number
TARBALL_VERSION=1.4.1 # Tarball sometimes has a wrong version number
DISABLE_TESTS=${DISABLE_TESTS:-Y}
DISABLE_TK_TESTS=${DISABLE_TK_TESTS:-Y}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
@ -37,27 +39,46 @@ tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
cd $PRGNAM-$TARBALL_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 {} \;
# patch -p1 < $CWD/libpng-1.4.patch # Does not seem to be needed anymore
# Use setup.cfg to decide about the optional subpackages tests and
# toolkits_tests
cat setup.cfg.template > setup.cfg
# Use setup.cfg to tell setup.py not to install pytz and dateutil
mv setup.cfg.template setup.cfg
sed -i "s|#pytz|pytz|" setup.cfg
sed -i "s|#dateutil|dateutil|" setup.cfg
DISABLE_TESTS=$(echo "$DISABLE_TESTS"|cut -b 1|tr a-z A-Z)
DISABLE_TK_TESTS=$(echo "$DISABLE_TK_TESTS"|cut -b 1|tr a-z A-Z)
python setup.py install --root $PKG
if [ "$DISABLE_TESTS" = "Y" ]
then
sed -i "s|#tests = True|tests = False|" setup.cfg
else
python -c "import nose, mock" > /dev/null 2>&1 || \
{ echo "ERROR: Missing requirements nose and/or mock!" && exit 1; }
fi
if [ "$DISABLE_TK_TESTS" = "Y" ]
then
sed -i "s|#toolkits_tests = auto|toolkits_tests = False|" setup.cfg
elif [ "$DISABLE_TESTS" = "Y" ]
then
echo "ERROR: Cannot enable toolkits_tests if tests are disabled!" && exit 1
fi
# Use modified setupext.py to make sure that the build process gets
# interrupted if requirements are not fulfilled
cat "${CWD}/setupext.py" > setupext.py
python setup.py install --root $PKG # > ${CWD}/SETUP.OUTPUT 2>&1
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a \
CHANGELOG INSTALL README.txt TODO \
$PKG/usr/doc/$PRGNAM-$VERSION
cp -a CHANGELOG INSTALL $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/install

View File

@ -1,10 +1,10 @@
PRGNAM="matplotlib"
VERSION="1.1.1"
HOMEPAGE="http://matplotlib.sourceforge.net/"
DOWNLOAD="http://downloads.sourceforge.net/matplotlib/matplotlib-1.1.1.tar.gz"
MD5SUM="8cbeaae8ba9da703d926e74c3e7c8a57"
VERSION="1.4.1"
HOMEPAGE="http://matplotlib.org/"
DOWNLOAD="http://downloads.sourceforge.net/matplotlib/matplotlib-1.4.1.tar.gz"
MD5SUM="f9bb4d27988f2b4496ddd5447a792c54"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="numpy python-dateutil pytz"
REQUIRES="pysetuptools numpy python-dateutil pytz six tornado pyparsing"
MAINTAINER="Serban Udrea"
EMAIL="S.Udrea@gsi.de"

File diff suppressed because it is too large Load Diff