summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python-matplotlib/fix_setupext.patch
diff options
context:
space:
mode:
authorTim Orling <ticotimo@gmail.com>2014-10-12 22:02:22 -0700
committerMartin Jansa <Martin.Jansa@gmail.com>2014-10-14 11:48:58 +0200
commitfd1c5b8dc5c9f412036f0356cc2036803d0a41c1 (patch)
tree7d45a0589cd77bf9e815181742356400e450b94a /meta-python/recipes-devtools/python/python-matplotlib/fix_setupext.patch
parent19692ba37a82253fa8d2922f9c8fc716bd12734e (diff)
downloadmeta-openembedded-fd1c5b8dc5c9f412036f0356cc2036803d0a41c1.tar.gz
python-matplotlib: add dateutil & pytz to DEPENDS/RDEPENDS
python-matplotlib is currently providing its own dateutil and pytz Add dateutil and pytz as DEPENDS/RDEPENDS. Patch setupext.py to no longer provide its own dateutil and pytz. Remove python-matplotlib from blacklist. Signed-off-by: Tim Orling <TicoTimo@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python-matplotlib/fix_setupext.patch')
-rw-r--r--meta-python/recipes-devtools/python/python-matplotlib/fix_setupext.patch19
1 files changed, 15 insertions, 4 deletions
diff --git a/meta-python/recipes-devtools/python/python-matplotlib/fix_setupext.patch b/meta-python/recipes-devtools/python/python-matplotlib/fix_setupext.patch
index e07159552..9a13a1850 100644
--- a/meta-python/recipes-devtools/python/python-matplotlib/fix_setupext.patch
+++ b/meta-python/recipes-devtools/python/python-matplotlib/fix_setupext.patch
@@ -1,9 +1,20 @@
1This fixes the numpy import problem in setupext.py using a hard-coded path. 1This fixes the numpy import problem in setupext.py using a hard-coded path.
2 2
3diff --git a/setupext.py b/setupext.py 3Index: matplotlib-1.1.0/setupext.py
4index 962cedc..82297c4 100644 4===================================================================
5--- a/setupext.py 5--- matplotlib-1.1.0.orig/setupext.py
6+++ b/setupext.py 6+++ matplotlib-1.1.0/setupext.py
7@@ -122,8 +122,8 @@ numpy_inc_dirs = []
8 # matplotlib build options, which can be altered using setup.cfg
9 options = {'display_status': True,
10 'verbose': False,
11- 'provide_pytz': 'auto',
12- 'provide_dateutil': 'auto',
13+ 'provide_pytz': False,
14+ 'provide_dateutil': False,
15 'build_agg': True,
16 'build_gtk': 'auto',
17 'build_gtkagg': 'auto',
7@@ -176,10 +176,7 @@ if os.path.exists(setup_cfg): 18@@ -176,10 +176,7 @@ if os.path.exists(setup_cfg):
8 except: pass 19 except: pass
9 20