summaryrefslogtreecommitdiffstats
path: root/libraries
diff options
context:
space:
mode:
author Serban Udrea <s.udrea@gsi.de>2014-12-07 00:53:18 +0700
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2014-12-07 00:53:18 +0700
commitb6d95b138731ff0d53682b4877eb80f338100af1 (patch)
tree0dd24932f22cfca8d891518a41ebb2e31eb5629f /libraries
parent50da1beac18895c493f44554b475aa00942cf631 (diff)
downloadslackbuilds-b6d95b138731ff0d53682b4877eb80f338100af1.tar.gz
slackbuilds-b6d95b138731ff0d53682b4877eb80f338100af1.tar.xz
libraries/matplotlib: Updated for version 1.4.2.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries')
-rw-r--r--libraries/matplotlib/matplotlib.SlackBuild4
-rw-r--r--libraries/matplotlib/matplotlib.info6
-rw-r--r--libraries/matplotlib/setupext.py7
3 files changed, 9 insertions, 8 deletions
diff --git a/libraries/matplotlib/matplotlib.SlackBuild b/libraries/matplotlib/matplotlib.SlackBuild
index b1490276e9..d50fcb6e1b 100644
--- a/libraries/matplotlib/matplotlib.SlackBuild
+++ b/libraries/matplotlib/matplotlib.SlackBuild
@@ -8,11 +8,11 @@
# Updated up to version 1.4.1 by Serban Udrea <S.Udrea@gsi.de>
PRGNAM=matplotlib
-VERSION=${VERSION:-1.4.1}
+VERSION=${VERSION:-1.4.2}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
-TARBALL_VERSION=1.4.1 # Tarball sometimes has a wrong version number
+TARBALL_VERSION=1.4.2 # Tarball sometimes has a wrong version number
DISABLE_TESTS=${DISABLE_TESTS:-Y}
DISABLE_TK_TESTS=${DISABLE_TK_TESTS:-Y}
diff --git a/libraries/matplotlib/matplotlib.info b/libraries/matplotlib/matplotlib.info
index 5a8164c37b..ef42531c11 100644
--- a/libraries/matplotlib/matplotlib.info
+++ b/libraries/matplotlib/matplotlib.info
@@ -1,8 +1,8 @@
PRGNAM="matplotlib"
-VERSION="1.4.1"
+VERSION="1.4.2"
HOMEPAGE="http://matplotlib.org/"
-DOWNLOAD="http://downloads.sourceforge.net/matplotlib/matplotlib-1.4.1.tar.gz"
-MD5SUM="f9bb4d27988f2b4496ddd5447a792c54"
+DOWNLOAD="http://downloads.sourceforge.net/matplotlib/matplotlib-1.4.2.tar.gz"
+MD5SUM="7d22efb6cce475025733c50487bd8898"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="pysetuptools numpy python-dateutil pytz six tornado pyparsing"
diff --git a/libraries/matplotlib/setupext.py b/libraries/matplotlib/setupext.py
index c083627811..1caadeb66c 100644
--- a/libraries/matplotlib/setupext.py
+++ b/libraries/matplotlib/setupext.py
@@ -147,9 +147,10 @@ def get_base_dirs():
return options['basedirlist']
basedir_map = {
- 'win32': ['win32_static',],
- 'darwin': ['/usr/local/', '/usr', '/usr/X11', '/opt/local'],
- 'sunos5': [os.getenv('MPLIB_BASE') or '/usr/local',],
+ 'win32': ['win32_static', ],
+ 'darwin': ['/usr/local/', '/usr', '/usr/X11',
+ '/opt/X11', '/opt/local'],
+ 'sunos5': [os.getenv('MPLIB_BASE') or '/usr/local', ],
'gnu0': ['/usr'],
'aix5': ['/usr/local'],
}