1 |
< |
### RPM external python 2.6.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 |
+ |
%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 "%cmsplatf" != "slc4onl_ia32_gcc346" |
11 |
< |
Requires: zlib openssl |
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/%realversion/Python-%realversion.tgz |
16 |
– |
Patch0: python-Include-pyport.h |
17 |
– |
Patch1: python-Lib-plat-mac-applesingle.py |
18 |
– |
Patch2: python-Lib-site.py |
19 |
– |
Patch3: python-Mac-OSX-Makefile |
20 |
– |
Patch4: python-Makefile.pre.in |
21 |
– |
Patch5: python-configure |
22 |
– |
Patch6: python-setup.py |
23 |
– |
|
18 |
|
|
19 |
|
%prep |
20 |
|
%setup -n Python-%realversion |
27 |
– |
#%patch0 |
28 |
– |
#%patch1 |
29 |
– |
#%patch2 |
30 |
– |
#%patch3 |
31 |
– |
#%patch4 |
32 |
– |
#%patch5 |
33 |
– |
#%patch6 |
21 |
|
perl -p -i -e "s|#!.*/usr/local/bin/python|#!/usr/bin/env python|" Lib/cgi.py |
22 |
|
|
23 |
|
%ifos darwin |
39 |
|
#mkdir -p %i/include %i/lib |
40 |
|
mkdir -p %i/include %i/lib %i/bin |
41 |
|
|
42 |
< |
%if "%cmsplatf" != "slc4onl_ia32_gcc346" |
43 |
< |
%define extradirs $ZLIB_ROOT $OPENSSL_ROOT |
42 |
> |
%if "%online" != "true" |
43 |
> |
%define extradirs $ZLIB_ROOT $OPENSSL_ROOT $SQLITE_ROOT |
44 |
|
%else |
45 |
|
%define extradirs %{nil} |
46 |
|
%endif |
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 {} %i/lib \; |
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.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 |
131 |
– |
rm `find %{i}/lib -maxdepth 1 -mindepth 1 ! -name '*python*'` |
132 |
– |
rm `find %{i}/include -maxdepth 1 -mindepth 1 ! -name '*python*'` |
133 |
– |
|
134 |
– |
# remove tkinter that brings dependency on libtk: |
135 |
– |
# |
119 |
|
|
120 |
< |
rm `find %{i}/lib -type f -name "_tkinter.so"` |
120 |
> |
find %{i}/lib -maxdepth 1 -mindepth 1 ! -name '*python*' -exec rm {} \; |
121 |
> |
find %{i}/include -maxdepth 1 -mindepth 1 ! -name '*python*' -exec rm {} \; |
122 |
|
|
123 |
< |
# SCRAM ToolBox toolfile |
124 |
< |
mkdir -p %i/etc/scram.d |
141 |
< |
cat << \EOF_TOOLFILE >%i/etc/scram.d/%n |
142 |
< |
<doc type=BuildSystem::ToolDoc version=1.0> |
143 |
< |
<Tool name=%n version=%v> |
144 |
< |
<lib name=python2.6> |
145 |
< |
<Client> |
146 |
< |
<Environment name=PYTHON_BASE default="%i"></Environment> |
147 |
< |
<Environment name=LIBDIR default="$PYTHON_BASE/lib"></Environment> |
148 |
< |
<Environment name=INCLUDE default="$PYTHON_BASE/include/python2.6"></Environment> |
149 |
< |
<Environment name=PYTHON_COMPILE default="$PYTHON_BASE/lib/python2.6/compileall.py"></Environment> |
150 |
< |
</Client> |
151 |
< |
<use name=sockets> |
152 |
< |
<Runtime name=PATH value="$PYTHON_BASE/bin" type=path> |
153 |
< |
</Tool> |
154 |
< |
EOF_TOOLFILE |
123 |
> |
# remove tkinter that brings dependency on libtk: |
124 |
> |
find %{i}/lib -type f -name "_tkinter.so" -exec rm {} \; |
125 |
|
|
126 |
|
# Makes sure that executables start with /usr/bin/env perl and not with comments. |
127 |
|
find %i -type f -perm -555 -name '*.py' -exec perl -p -i -e 'if ($. == 1) {s|^"""|#/usr/bin/env python\n"""|}' {} \; |
129 |
|
find %i -type f -perm -555 -name '*.py' -exec perl -p -i -e 'if ($. == 1) {s|/usr/local/bin/python|/usr/bin/env python|}' {} \; |
130 |
|
rm -f %i/share/doc/python/Demo/rpc/test |
131 |
|
|
132 |
+ |
# Setups dependencies environment |
133 |
+ |
rm -rf %i/etc/profile.d |
134 |
+ |
mkdir -p %i/etc/profile.d |
135 |
+ |
for x in %pkgreqs; do |
136 |
+ |
case $x in /* ) continue ;; esac |
137 |
+ |
p=%{instroot}/%{cmsplatf}/$(echo $x | sed 's/\([^+]*\)+\(.*\)+\([A-Z0-9].*\)/\1 \2 \3/' | tr ' ' '/') |
138 |
+ |
echo ". $p/etc/profile.d/init.sh" >> %i/etc/profile.d/dependencies-setup.sh |
139 |
+ |
echo "source $p/etc/profile.d/init.csh" >> %i/etc/profile.d/dependencies-setup.csh |
140 |
+ |
done |
141 |
+ |
|
142 |
|
%post |
143 |
< |
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 |
144 |
< |
%{relocateConfig}etc/scram.d/%n |
143 |
> |
%{relocateConfig}lib/python2.6/config/Makefile |
144 |
> |
%{relocateConfig}etc/profile.d/dependencies-setup.sh |
145 |
> |
%{relocateConfig}etc/profile.d/dependencies-setup.csh |
146 |
> |
|