1 |
< |
### RPM external python 2.4.2 |
1 |
> |
### RPM external python 2.4.2-CMS19 |
2 |
|
## INITENV +PATH PATH %i/bin |
3 |
|
## INITENV +PATH LD_LIBRARY_PATH %i/lib |
4 |
|
# OS X patches and build fudging stolen from fink |
5 |
< |
Requires: zlib expat openssl bz2lib db4 gdbm openssl |
5 |
> |
%define closingbrace ) |
6 |
> |
%define online %(case %cmsplatf in *onl_*_*%closingbrace echo true;; *%closingbrace echo flase;; esac) |
7 |
> |
|
8 |
> |
Requires: expat bz2lib db4 gdbm |
9 |
> |
|
10 |
> |
%if "%online" != "true" |
11 |
> |
Requires: zlib openssl |
12 |
> |
%endif |
13 |
> |
|
14 |
|
# FIXME: readline, crypt |
15 |
|
# FIXME: gmp, panel, tk/tcl, x11 |
16 |
|
|
17 |
< |
Source0: http://www.python.org/ftp/%n/%v/Python-%v.tgz |
17 |
> |
Source0: http://www.python.org/ftp/%n/%realversion/Python-%realversion.tgz |
18 |
|
Patch0: python-Include-pyport.h |
19 |
|
Patch1: python-Lib-plat-mac-applesingle.py |
20 |
|
Patch2: python-Lib-site.py |
23 |
|
Patch5: python-configure |
24 |
|
Patch6: python-setup.py |
25 |
|
|
26 |
+ |
|
27 |
|
%prep |
28 |
< |
%setup -n Python-%v |
28 |
> |
%setup -n Python-%realversion |
29 |
|
#%patch0 |
30 |
|
#%patch1 |
31 |
|
#%patch2 |
52 |
|
# linked specifically, or could be built by ourselves, depending on |
53 |
|
# whether we like to pick up system libraries or want total control. |
54 |
|
mkdir -p %i/include %i/lib |
55 |
< |
dirs="$ZLIB_ROOT $EXPAT_ROOT $OPENSSL_ROOT $BZ2LIB_ROOT $NCURSES_ROOT $DB4_ROOT $GDBM_ROOT" |
55 |
> |
|
56 |
> |
%if "%online" != "true" |
57 |
> |
%define extradirs $ZLIB_ROOT $OPENSSL_ROOT |
58 |
> |
%else |
59 |
> |
%define extradirs %{nil} |
60 |
> |
%endif |
61 |
> |
|
62 |
> |
dirs="$EXPAT_ROOT $BZ2LIB_ROOT $NCURSES_ROOT $DB4_ROOT $GDBM_ROOT %{extradirs}" |
63 |
> |
|
64 |
> |
echo $dirs |
65 |
|
for d in $dirs; do |
66 |
|
for f in $d/include/*; do |
67 |
< |
[ -f $f ] || continue |
67 |
> |
[ -e $f ] || continue |
68 |
|
rm -f %i/include/$(basename $f) |
69 |
|
ln -s $f %i/include |
70 |
|
done |
71 |
|
for f in $d/lib/*; do |
72 |
< |
[ -f $f ] || continue |
72 |
> |
[ -e $f ] || continue |
73 |
|
rm -f %i/lib/$(basename $f) |
74 |
|
ln -s $f %i/lib |
75 |
|
done |
76 |
|
done |
77 |
|
|
78 |
< |
./configure --prefix=%i --enable-shared --without-tkinter --disable-tkinter --without-readline |
78 |
> |
additionalConfigureOptions="" |
79 |
> |
case %cmsplatf in |
80 |
> |
osx105* ) |
81 |
> |
additionalConfigureOptions="--disable-readline" |
82 |
> |
;; |
83 |
> |
esac |
84 |
> |
|
85 |
> |
./configure --prefix=%i $additionalConfigureOptions --enable-shared \ |
86 |
> |
--without-tkinter --disable-tkinter |
87 |
> |
|
88 |
> |
# The following is a kludge around the fact that the /usr/lib/libreadline.so |
89 |
> |
# symlink (for 32-bit lib) is missing on the 64bit machines |
90 |
> |
%if "%cmsplatf" == "slc4_ia32_gcc345" |
91 |
> |
mkdir -p %{i}/lib |
92 |
> |
ln -s /usr/lib/libreadline.so.4.3 %{i}/lib/libreadline.so |
93 |
> |
%endif |
94 |
> |
%if "%cmsplatf" == "slc4_ia32_gcc412" |
95 |
> |
mkdir -p %{i}/lib |
96 |
> |
ln -s /usr/lib/libreadline.so.4.3 %{i}/lib/libreadline.so |
97 |
> |
%endif |
98 |
|
make %makeprocesses |
99 |
|
|
100 |
|
%install |
101 |
|
make install |
102 |
< |
%define pythonv %(echo %v | cut -d. -f 1,2) |
102 |
> |
%define pythonv %(echo %realversion | cut -d. -f 1,2) |
103 |
|
|
104 |
|
#if [ $(uname) = Darwin ]; then |
105 |
|
# make install prefix=%i |
129 |
|
# boost.spec rfio.spec |
130 |
|
# |
131 |
|
# |
132 |
+ |
rm `find %{i}/lib -maxdepth 1 -mindepth 1 ! -name '*python*'` |
133 |
+ |
rm `find %{i}/include -maxdepth 1 -mindepth 1 ! -name '*python*'` |
134 |
+ |
|
135 |
+ |
%if "%online" == "true" |
136 |
+ |
# remove tkinter that brings dependency on libtk: |
137 |
+ |
rm `find %{i}/lib -type f -name "_tkinter.so"` |
138 |
+ |
%endif |
139 |
+ |
|
140 |
+ |
# SCRAM ToolBox toolfile |
141 |
+ |
mkdir -p %i/etc/scram.d |
142 |
+ |
cat << \EOF_TOOLFILE >%i/etc/scram.d/%n |
143 |
+ |
<doc type=BuildSystem::ToolDoc version=1.0> |
144 |
+ |
<Tool name=%n version=%v> |
145 |
+ |
<lib name=python2.4> |
146 |
+ |
<Client> |
147 |
+ |
<Environment name=PYTHON_BASE default="%i"></Environment> |
148 |
+ |
<Environment name=LIBDIR default="$PYTHON_BASE/lib"></Environment> |
149 |
+ |
<Environment name=INCLUDE default="$PYTHON_BASE/include/python2.4"></Environment> |
150 |
+ |
<Environment name=PYTHON_COMPILE default="$PYTHON_BASE/lib/python2.4/compileall.py"></Environment> |
151 |
+ |
</Client> |
152 |
+ |
<use name=sockets> |
153 |
+ |
<Runtime name=PATH value="$PYTHON_BASE/bin" type=path> |
154 |
+ |
</Tool> |
155 |
+ |
EOF_TOOLFILE |
156 |
+ |
|
157 |
+ |
%post |
158 |
+ |
find $RPM_INSTALL_PREFIX/%pkgrel/lib -type l | xargs ls -la | sed -e "s|.*[ ]\(/.*\) -> \(.*\)| \2 \1|;s|[ ]/[^ ]*/external| $RPM_INSTALL_PREFIX/%cmsplatf/external|g" | xargs -n2 ln -sf |
159 |
+ |
%{relocateConfig}etc/scram.d/%n |