1 |
< |
### RPM external py2-matplotlib 0.87.4 |
2 |
< |
## INITENV +PATH PYTHONPATH %i/lib/python$(echo $PYTHON_VERSION | cut -d. -f 1,2)/site-packages |
1 |
> |
### RPM external py2-matplotlib 0.98.5.3 |
2 |
> |
## INITENV +PATH PYTHONPATH %i/lib/python`echo $PYTHON_VERSION | cut -d. -f 1,2`/site-packages |
3 |
|
%define downloadn matplotlib |
4 |
< |
Source: http://switch.dl.sourceforge.net/sourceforge/%downloadn/%downloadn-%v.tar.gz |
5 |
< |
Patch: py2-matplotlib.patch |
4 |
> |
Source: http://switch.dl.sourceforge.net/sourceforge/%downloadn/%downloadn-%realversion.tar.gz |
5 |
|
Requires: python |
6 |
< |
# Requires: zlib |
6 |
> |
Requires: zlib |
7 |
|
# Requires: agg |
8 |
|
# Requires: cairo |
9 |
< |
Requires: py2-numarray |
9 |
> |
Requires: py2-numpy |
10 |
> |
# py2-numpy is now built using its internal lapack_lite. |
11 |
> |
# uncomment if otherwise. |
12 |
> |
# Requires: atlas lapack |
13 |
|
Requires: libpng |
14 |
|
# Requires: freetype |
15 |
+ |
|
16 |
|
%prep |
17 |
< |
%setup -n %downloadn-%v |
18 |
< |
%patch |
19 |
< |
pythonv=$(echo $PYTHON_VERSION | cut -d. -f 1,2) |
20 |
< |
perl -p -i -e "s,numarray_inc_dirs =.*,numarray_inc_dirs = ['$PY2_NUMARRAY_ROOT/include/python$pythonv']," setupext.py |
17 |
> |
%setup -n %downloadn-%realversion |
18 |
> |
cat >> setup.cfg <<- EOF |
19 |
> |
[build_ext] |
20 |
> |
include_dirs = $LIBPNG_ROOT/include:$ZLIB_ROOT/include |
21 |
> |
library_dirs = $LIBPNG_ROOT/lib:$ZLIB_ROOT/lib |
22 |
> |
EOF |
23 |
|
|
24 |
|
%build |
25 |
+ |
python setup.py build |
26 |
+ |
|
27 |
|
%install |
28 |
+ |
python -c 'import numpy' |
29 |
|
python setup.py install --prefix=%i |
30 |
< |
perl -p -i -e "s|^#!.*python(.*)|#!/usr/bin/env python$1|" `grep -r -e "#\!.*python" %i | cut -d: -f1` |
30 |
> |
egrep -r -l '^#!.*python' %i | xargs perl -p -i -e 's{^#!.*python.*}{#!/usr/bin/env python}' |
31 |
> |
find %i -name '*.egg-info' -exec rm {} \; |
32 |
> |
|