15 |
|
# FIXME: gmp, panel, tk/tcl, x11 |
16 |
|
|
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 |
21 |
– |
Patch3: python-Mac-OSX-Makefile |
22 |
– |
Patch4: python-Makefile.pre.in |
23 |
– |
Patch5: python-configure |
24 |
– |
Patch6: python-setup.py |
25 |
– |
|
18 |
|
|
19 |
|
%prep |
20 |
|
%setup -n Python-%realversion |
29 |
– |
#%patch0 |
30 |
– |
#%patch1 |
31 |
– |
#%patch2 |
32 |
– |
#%patch3 |
33 |
– |
#%patch4 |
34 |
– |
#%patch5 |
35 |
– |
#%patch6 |
21 |
|
perl -p -i -e "s|#!.*/usr/local/bin/python|#!/usr/bin/env python|" Lib/cgi.py |
22 |
|
|
23 |
|
%ifos darwin |
147 |
|
find %i -type f -perm -555 -name '*.py' -exec perl -p -i -e 'if ($. == 1) {s|/usr/local/bin/python|/usr/bin/env python|}' {} \; |
148 |
|
rm -f %i/share/doc/python/Demo/rpc/test |
149 |
|
|
150 |
+ |
# Setups dependencies environment |
151 |
+ |
rm -rf %i/etc/profile.d |
152 |
+ |
mkdir -p %i/etc/profile.d |
153 |
+ |
for x in %pkgreqs; do |
154 |
+ |
case $x in /* ) continue ;; esac |
155 |
+ |
p=%{instroot}/%{cmsplatf}/$(echo $x | sed 's/\([^+]*\)+\(.*\)+\([A-Z0-9].*\)/\1 \2 \3/' | tr ' ' '/') |
156 |
+ |
echo ". $p/etc/profile.d/init.sh" >> %i/etc/profile.d/dependencies-setup.sh |
157 |
+ |
echo "source $p/etc/profile.d/init.csh" >> %i/etc/profile.d/dependencies-setup.csh |
158 |
+ |
done |
159 |
+ |
|
160 |
|
%post |
161 |
|
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 |
162 |
|
%{relocateConfig}etc/scram.d/%n |
163 |
|
%{relocateConfig}lib/python2.6/config/Makefile |
164 |
+ |
|
165 |
+ |
# Relocation for dependencies |
166 |
+ |
%{relocateConfig}etc/profile.d/dependencies-setup.sh |
167 |
+ |
%{relocateConfig}etc/profile.d/dependencies-setup.csh |
168 |
+ |
|