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 |
119 |
|
rm `find %{i}/lib -maxdepth 1 -mindepth 1 ! -name '*python*'` |
120 |
|
rm `find %{i}/include -maxdepth 1 -mindepth 1 ! -name '*python*'` |
121 |
|
|
137 |
– |
%if "%online" == "true" |
122 |
|
# remove tkinter that brings dependency on libtk: |
123 |
|
find %{i}/lib -type f -name "_tkinter.so" -exec rm {} \; |
140 |
– |
%endif |
124 |
|
|
125 |
|
# SCRAM ToolBox toolfile |
126 |
|
mkdir -p %i/etc/scram.d |
127 |
< |
cat << \EOF_TOOLFILE >%i/etc/scram.d/%n |
128 |
< |
<doc type=BuildSystem::ToolDoc version=1.0> |
129 |
< |
<Tool name=%n version=%v> |
130 |
< |
<lib name=python2.6> |
131 |
< |
<Client> |
132 |
< |
<Environment name=PYTHON_BASE default="%i"></Environment> |
133 |
< |
<Environment name=LIBDIR default="$PYTHON_BASE/lib"></Environment> |
134 |
< |
<Environment name=INCLUDE default="$PYTHON_BASE/include/python2.6"></Environment> |
135 |
< |
<Environment name=PYTHON_COMPILE default="$PYTHON_BASE/lib/python2.6/compileall.py"></Environment> |
136 |
< |
</Client> |
137 |
< |
<use name=sockets> |
138 |
< |
<Runtime name=PATH value="$PYTHON_BASE/bin" type=path> |
156 |
< |
</Tool> |
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. |
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 |
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 |
+ |
|