Skip to content

Commit 6713af0

Browse files
committed
fix sage buildbot; add support for MPLSETUPCFG env var
svn path=/trunk/matplotlib/; revision=8616
1 parent 7bd41c2 commit 6713af0

6 files changed

+106
-14
lines changed

CHANGELOG

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2010-08-03 Add support for MPLSETUPCFG variable for custom setup.cfg
2+
filename. Used by sage buildbot to build an mpl w/ no gui
3+
support - JDH
4+
15
2010-08-01 Create directory specified by MPLCONFIGDIR if it does
26
not exist. - ADS
37

make.osx

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# build mpl into a local install dir with
22
# PREFIX=/Users/jdhunter/dev make -f make.osx fetch deps mpl_install
3-
3+
MPLVERSION=1.0rc1
44
PYVERSION=2.6
55
PYTHON=python${PYVERSION}
66
ZLIBVERSION=1.2.3
@@ -102,6 +102,6 @@ binaries:
102102
export CFLAGS=${CFLAGS} &&\
103103
export LDFLAGS=${LDFLAGS} &&\
104104
rm -f ${PREFIX}/lib/*.dylib &&\
105-
/Library/Frameworks/Python.framework/Versions/${PYVERSION}/bin/bdist_mpkg --readme=ReadMe.txt &&\
106-
hdiutil create -srcdir dist/matplotlib-${MPLVERSION}-py${PYVERSION}-macosx10.5.mpkg dist/matplotlib-${MPLVERSION}-py${PYVERSION}-macosx10.5.dmg &&\
107-
${PYTHON} setupegg.py bdist_egg
105+
VERSIONER_PYTHON_PREFER_32_BIT=yes bdist_mpkg --readme=ReadMe.txt &&\
106+
hdiutil create -srcdir dist/matplotlib-${MPLVERSION}-py${PYVERSION}-macosx${OSX_SDK_VER}.mpkg dist/matplotlib-${MPLVERSION}-py${PYVERSION}-macosx${OSX_SDK_VER}.dmg &&\
107+
VERSIONER_PYTHON_PREFER_32_BIT=yes ${PYTHON} setupegg.py bdist_egg

setupegg.py

+2-5
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,5 @@
66
execfile('setup.py',
77
{'additional_params' :
88
{'namespace_packages' : ['mpl_toolkits'],
9-
'entry_points': {'nose.plugins':
10-
[
11-
'KnownFailure = matplotlib.testing.noseclasses:KnownFailure',
12-
]
13-
}}})
9+
#'entry_points': {'nose.plugins': ['KnownFailure = matplotlib.testing.noseclasses:KnownFailure', ] }
10+
}})

setupext.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -138,10 +138,11 @@
138138
('PY_ARRAY_UNIQUE_SYMBOL', 'MPL_ARRAY_API'),
139139
('PYCXX_ISO_CPP_LIB', '1')]
140140

141+
setup_cfg = os.environ.get('MPLSETUPCFG', 'setup.cfg')
141142
# Based on the contents of setup.cfg, determine the build options
142-
if os.path.exists("setup.cfg"):
143+
if os.path.exists(setup_cfg):
143144
config = configparser.SafeConfigParser()
144-
config.read("setup.cfg")
145+
config.read(setup_cfg)
145146

146147
try: options['display_status'] = not config.getboolean("status", "suppress")
147148
except: pass

test/_buildbot_mac_sage.sh

+10-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,19 @@
11
#!/bin/bash
22
set -e
3-
rm -rf ${HOME}/.matplotlib/*
43
rm -rf build
54

5+
export MPLCONFIGDIR=${HOME}/.matplotlib_buildbot
66
export PATH=${HOME}/dev/bin:$PATH
7-
export PYTHON=${HOME}/dev/bin/python
8-
export PREFIX=${HOME}/devbb
7+
export PYTHON=/usr/bin/python2.6
8+
export PREFIX=${HOME}/devbb
99
export PYTHONPATH=${PREFIX}/lib/python2.6/site-packages:${HOME}/dev/lib/python2.6/site-packages
10+
export LD_LIBRARY_PATH=${PREFIX}/lib
11+
export MPLSETUPCFG=test/setup.sageosx.cfg
12+
rm -rf ${MPLCONFIGDIR}/*
13+
rm -rf ${PREFIX}/lib/python2.6/site-packages/matplotlib*
14+
echo 'backend : Agg' > $MPLCONFIGDIR/matplotlibrc
15+
16+
1017

1118
make -f make.osx mpl_install
1219
echo ${PYTHONPATH}

test/setup.sageosx.cfg

+83
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
# Rename this file to setup.cfg to modify matplotlib's
2+
# build options.
3+
4+
[egg_info]
5+
tag_svn_revision = 1
6+
7+
[directories]
8+
# Uncomment to override the default basedir in setupext.py.
9+
# This can be a single directory or a space-delimited list of directories.
10+
#basedirlist = /usr
11+
12+
[status]
13+
# To suppress display of the dependencies and their versions
14+
# at the top of the build log, uncomment the following line:
15+
#suppress = True
16+
#
17+
# Uncomment to insert lots of diagnostic prints in extension code
18+
#verbose = True
19+
20+
[provide_packages]
21+
# By default, matplotlib checks for a few dependencies and
22+
# installs them if missing. This feature can be turned off
23+
# by uncommenting the following lines. Acceptible values are:
24+
# True: install, overwrite an existing installation
25+
# False: do not install
26+
# auto: install only if the package is unavailable. This
27+
# is the default behavior
28+
#
29+
## Date/timezone support:
30+
#pytz = False
31+
#dateutil = False
32+
33+
[gui_support]
34+
# Matplotlib supports multiple GUI toolkits, including Cocoa,
35+
# GTK, Fltk, MacOSX, Qt, Qt4, Tk, and WX. Support for many of
36+
# these toolkits requires AGG, the Anti-Grain Geometry library,
37+
# which is provided by matplotlib and built by default.
38+
#
39+
# Some backends are written in pure Python, and others require
40+
# extension code to be compiled. By default, matplotlib checks
41+
# for these GUI toolkits during installation and, if present,
42+
# compiles the required extensions to support the toolkit. GTK
43+
# support requires the GTK runtime environment and PyGTK. Wx
44+
# support requires wxWidgets and wxPython. Tk support requires
45+
# Tk and Tkinter. The other GUI toolkits do not require any
46+
# extension code, and can be used as long as the libraries are
47+
# installed on your system.
48+
#
49+
# You can uncomment any the following lines if you know you do
50+
# not want to use the GUI toolkit. Acceptible values are:
51+
# True: build the extension. Exits with a warning if the
52+
# required dependencies are not available
53+
# False: do not build the extension
54+
# auto: build if the required dependencies are available,
55+
# otherwise skip silently. This is the default
56+
# behavior
57+
#
58+
gtk = False
59+
gtkagg = False
60+
tkagg = False
61+
wxagg = False
62+
macosx = False
63+
64+
[rc_options]
65+
# User-configurable options
66+
#
67+
# Default backend, one of: Agg, Cairo, CocoaAgg, GTK, GTKAgg, GTKCairo,
68+
# FltkAgg, MacOSX, Pdf, Ps, QtAgg, Qt4Agg, SVG, TkAgg, WX, WXAgg.
69+
#
70+
# The Agg, Ps, Pdf and SVG backends do not require external
71+
# dependencies. Do not choose GTK, GTKAgg, GTKCairo, MacOSX, TkAgg or WXAgg
72+
# if you have disabled the relevent extension modules. Agg will be used
73+
# by default.
74+
#
75+
backend = Agg
76+
#
77+
# The numerix module was historically used to provide
78+
# compatibility between the Numeric, numarray, and NumPy array
79+
# packages. Now that NumPy has emerge as the universal array
80+
# package for python, numerix is not really necessary and is
81+
# maintained to provide backward compatibility. Do not change
82+
# this unless you have a compelling reason to do so.
83+
#numerix = numpy

0 commit comments

Comments
 (0)