1 |
< |
### RPM external python 2.4.2 |
1 |
> |
### RPM external python 2.6.4 |
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 false;; esac) |
7 |
> |
|
8 |
> |
Requires: expat bz2lib db4 gdbm |
9 |
> |
|
10 |
> |
%if "%online" != "true" |
11 |
> |
Requires: zlib openssl sqlite |
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 |
10 |
< |
Patch0: python-Include-pyport.h |
11 |
< |
Patch1: python-Lib-plat-mac-applesingle.py |
12 |
< |
Patch2: python-Lib-site.py |
13 |
< |
Patch3: python-Mac-OSX-Makefile |
14 |
< |
Patch4: python-Makefile.pre.in |
15 |
< |
Patch5: python-configure |
16 |
< |
Patch6: python-setup.py |
17 |
> |
Source0: http://www.python.org/ftp/%n/%realversion/Python-%realversion.tgz |
18 |
|
|
19 |
|
%prep |
20 |
< |
%setup -n Python-%v |
20 |
< |
#%patch0 |
21 |
< |
#%patch1 |
22 |
< |
#%patch2 |
23 |
< |
#%patch3 |
24 |
< |
#%patch4 |
25 |
< |
#%patch5 |
26 |
< |
#%patch6 |
20 |
> |
%setup -n Python-%realversion |
21 |
|
perl -p -i -e "s|#!.*/usr/local/bin/python|#!/usr/bin/env python|" Lib/cgi.py |
22 |
|
|
23 |
|
%ifos darwin |
36 |
|
# see above for the commented-out list of packages that could be |
37 |
|
# linked specifically, or could be built by ourselves, depending on |
38 |
|
# whether we like to pick up system libraries or want total control. |
39 |
< |
mkdir -p %i/include %i/lib |
40 |
< |
dirs="$ZLIB_ROOT $EXPAT_ROOT $OPENSSL_ROOT $BZ2LIB_ROOT $NCURSES_ROOT $DB4_ROOT $GDBM_ROOT" |
39 |
> |
#mkdir -p %i/include %i/lib |
40 |
> |
mkdir -p %i/include %i/lib %i/bin |
41 |
> |
|
42 |
> |
%if "%online" != "true" |
43 |
> |
%define extradirs $ZLIB_ROOT $OPENSSL_ROOT $SQLITE_ROOT |
44 |
> |
%else |
45 |
> |
%define extradirs %{nil} |
46 |
> |
%endif |
47 |
> |
|
48 |
> |
dirs="$EXPAT_ROOT $BZ2LIB_ROOT $NCURSES_ROOT $DB4_ROOT $GDBM_ROOT %{extradirs}" |
49 |
> |
|
50 |
> |
echo $dirs |
51 |
|
for d in $dirs; do |
52 |
|
for f in $d/include/*; do |
53 |
< |
[ -f $f ] || continue |
53 |
> |
[ -e $f ] || continue |
54 |
|
rm -f %i/include/$(basename $f) |
55 |
|
ln -s $f %i/include |
56 |
|
done |
57 |
|
for f in $d/lib/*; do |
58 |
< |
[ -f $f ] || continue |
58 |
> |
[ -e $f ] || continue |
59 |
|
rm -f %i/lib/$(basename $f) |
60 |
|
ln -s $f %i/lib |
61 |
|
done |
62 |
|
done |
63 |
|
|
64 |
< |
./configure --prefix=%i --enable-shared --without-tkinter --disable-tkinter --without-readline |
64 |
> |
additionalConfigureOptions="" |
65 |
> |
case %cmsplatf in |
66 |
> |
osx105* ) |
67 |
> |
additionalConfigureOptions="--disable-readline" |
68 |
> |
;; |
69 |
> |
esac |
70 |
> |
|
71 |
> |
./configure --prefix=%i $additionalConfigureOptions --enable-shared \ |
72 |
> |
--without-tkinter --disable-tkinter |
73 |
> |
|
74 |
> |
# The following is a kludge around the fact that the /usr/lib/libreadline.so |
75 |
> |
# symlink (for 32-bit lib) is missing on the 64bit machines |
76 |
> |
case %cmsplatf in |
77 |
> |
slc4_ia32* ) |
78 |
> |
mkdir -p %{i}/lib |
79 |
> |
ln -s /usr/lib/libreadline.so.4.3 %{i}/lib/libreadline.so |
80 |
> |
;; |
81 |
> |
esac |
82 |
|
make %makeprocesses |
83 |
|
|
84 |
|
%install |
85 |
|
make install |
86 |
< |
%define pythonv %(echo %v | cut -d. -f 1,2) |
86 |
> |
%define pythonv %(echo %realversion | cut -d. -f 1,2) |
87 |
|
|
88 |
< |
#if [ $(uname) = Darwin ]; then |
89 |
< |
# make install prefix=%i |
90 |
< |
# (cd Misc; /bin/rm -rf RPM) |
91 |
< |
# mkdir -p %i/share/doc/%n |
92 |
< |
# cp -R Demo Doc %i/share/doc/%n |
93 |
< |
# cp -R Misc Tools %i/lib/python%{pythonv} |
94 |
< |
# gcc -dynamiclib -all_load -single_module \ |
95 |
< |
# -framework System -framework CoreServices -framework Foundation \ |
96 |
< |
# %i/lib/python%{pythonv}/config/libpython%{pythonv}.a \ |
97 |
< |
# -undefined dynamic_lookup \ |
98 |
< |
# -o %i/lib/python%{pythonv}/config/libpython%{pythonv}.dylib \ |
99 |
< |
# -install_name %i/lib/python%{pythonv}/config/libpython%{pythonv}.dylib \ |
100 |
< |
# -current_version %{pythonv} -compatibility_version %{pythonv} -ldl |
101 |
< |
# ln -s libpython%{pythonv}.dylib %i/lib/python%{pythonv}/config/libpython%{pythonv}.dylib # for boost |
102 |
< |
# (cd %i/lib/python%{pythonv}/config; mv Makefile Makefile.orig; |
103 |
< |
# sed 's|-fno-common||g' < Makefile.orig > Makefile; /bin/rm -f Makefile.orig) |
104 |
< |
#fi |
88 |
> |
case %cmsplatf in |
89 |
> |
osx*) |
90 |
> |
make install prefix=%i |
91 |
> |
(cd Misc; /bin/rm -rf RPM) |
92 |
> |
mkdir -p %i/share/doc/%n |
93 |
> |
cp -R Demo Doc %i/share/doc/%n |
94 |
> |
cp -R Misc Tools %i/lib/python%{pythonv} |
95 |
> |
gcc -dynamiclib -all_load -single_module \ |
96 |
> |
-framework System -framework CoreServices -framework Foundation \ |
97 |
> |
%i/lib/python%{pythonv}/config/libpython%{pythonv}.a \ |
98 |
> |
-undefined dynamic_lookup \ |
99 |
> |
-o %i/lib/python%{pythonv}/config/libpython%{pythonv}.dylib \ |
100 |
> |
-install_name %i/lib/python%{pythonv}/config/libpython%{pythonv}.dylib \ |
101 |
> |
-current_version %{pythonv} -compatibility_version %{pythonv} -ldl |
102 |
> |
(cd %i/lib/python%{pythonv}/config |
103 |
> |
perl -p -i -e 's|-fno-common||g' Makefile) |
104 |
> |
|
105 |
> |
find %i/lib/python%{pythonv}/config -name 'libpython*' -exec mv -f {} %i/lib \; |
106 |
> |
;; |
107 |
> |
esac |
108 |
|
|
109 |
|
perl -p -i -e "s|^#!.*python|#!/usr/bin/env python|" %{i}/bin/idle \ |
110 |
|
%{i}/bin/pydoc \ |
111 |
+ |
%{i}/bin/python-config \ |
112 |
+ |
%{i}/bin/2to3 \ |
113 |
+ |
%{i}/bin/python2.6-config \ |
114 |
|
%{i}/bin/smtpd.py \ |
115 |
< |
%{i}/lib/python2.4/bsddb/dbshelve.py \ |
116 |
< |
%{i}/lib/python2.4/test/test_bz2.py \ |
117 |
< |
%{i}/lib/python2.4/test/test_largefile.py \ |
118 |
< |
%{i}/lib/python2.4/test/test_optparse.py |
115 |
> |
%{i}/lib/python2.6/bsddb/dbshelve.py \ |
116 |
> |
%{i}/lib/python2.6/test/test_bz2.py \ |
117 |
> |
%{i}/lib/python2.6/test/test_largefile.py \ |
118 |
> |
%{i}/lib/python2.6/test/test_optparse.py |
119 |
> |
rm `find %{i}/lib -maxdepth 1 -mindepth 1 ! -name '*python*'` |
120 |
> |
rm `find %{i}/include -maxdepth 1 -mindepth 1 ! -name '*python*'` |
121 |
> |
|
122 |
> |
# remove tkinter that brings dependency on libtk: |
123 |
> |
find %{i}/lib -type f -name "_tkinter.so" -exec rm {} \; |
124 |
> |
|
125 |
> |
# SCRAM ToolBox toolfile |
126 |
> |
mkdir -p %i/etc/scram.d |
127 |
> |
cat << \EOF_TOOLFILE >%i/etc/scram.d/%n.xml |
128 |
> |
<tool name="%n" version="%v"> |
129 |
> |
<lib name="python2.6"/> |
130 |
> |
<client> |
131 |
> |
<environment name="PYTHON_BASE" default="%i"/> |
132 |
> |
<environment name="LIBDIR" default="$PYTHON_BASE/lib"/> |
133 |
> |
<environment name="INCLUDE" default="$PYTHON_BASE/include/python2.6"/> |
134 |
> |
<environment name="PYTHON_COMPILE" default="$PYTHON_BASE/lib/python2.6/compileall.py"/> |
135 |
> |
</client> |
136 |
> |
<runtime name="PATH" value="$PYTHON_BASE/bin" type="path"/> |
137 |
> |
<use name="sockets"/> |
138 |
> |
</tool> |
139 |
> |
EOF_TOOLFILE |
140 |
> |
|
141 |
> |
# Makes sure that executables start with /usr/bin/env perl and not with comments. |
142 |
> |
find %i -type f -perm -555 -name '*.py' -exec perl -p -i -e 'if ($. == 1) {s|^"""|#/usr/bin/env python\n"""|}' {} \; |
143 |
> |
find %i -type f -perm -555 -name '*.py' -exec perl -p -i -e 'if ($. == 1) {s|^\'\'\'|#/usr/bin/env python\n\'\'\'|}' {} \; |
144 |
> |
find %i -type f -perm -555 -name '*.py' -exec perl -p -i -e 'if ($. == 1) {s|/usr/local/bin/python|/usr/bin/env python|}' {} \; |
145 |
> |
rm -f %i/share/doc/python/Demo/rpc/test |
146 |
> |
|
147 |
> |
# Setups dependencies environment |
148 |
> |
rm -rf %i/etc/profile.d |
149 |
> |
mkdir -p %i/etc/profile.d |
150 |
> |
for x in %pkgreqs; do |
151 |
> |
case $x in /* ) continue ;; esac |
152 |
> |
p=%{instroot}/%{cmsplatf}/$(echo $x | sed 's/\([^+]*\)+\(.*\)+\([A-Z0-9].*\)/\1 \2 \3/' | tr ' ' '/') |
153 |
> |
echo ". $p/etc/profile.d/init.sh" >> %i/etc/profile.d/dependencies-setup.sh |
154 |
> |
echo "source $p/etc/profile.d/init.csh" >> %i/etc/profile.d/dependencies-setup.csh |
155 |
> |
done |
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.xml |
160 |
> |
%{relocateConfig}lib/python2.6/config/Makefile |
161 |
> |
|
162 |
> |
# Relocation for dependencies |
163 |
> |
%{relocateConfig}etc/profile.d/dependencies-setup.sh |
164 |
> |
%{relocateConfig}etc/profile.d/dependencies-setup.csh |
165 |
> |
|