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 |
> |
Patch0: python-2.6.4-dont-detect-dbm |
19 |
|
|
20 |
|
%prep |
21 |
|
%setup -n Python-%realversion |
29 |
– |
#%patch0 |
30 |
– |
#%patch1 |
31 |
– |
#%patch2 |
32 |
– |
#%patch3 |
33 |
– |
#%patch4 |
34 |
– |
#%patch5 |
35 |
– |
#%patch6 |
22 |
|
perl -p -i -e "s|#!.*/usr/local/bin/python|#!/usr/bin/env python|" Lib/cgi.py |
23 |
|
|
24 |
< |
%ifos darwin |
25 |
< |
sed 's|@PREFIX@|%i|g' < %_sourcedir/python-osx | patch -p1 |
26 |
< |
%endif |
24 |
> |
case %cmsplatf in |
25 |
> |
osx*) |
26 |
> |
sed 's|@PREFIX@|%i|g' < %_sourcedir/python-osx | patch -p1 |
27 |
> |
;; |
28 |
> |
esac |
29 |
> |
%patch0 -p1 |
30 |
|
|
31 |
|
%build |
32 |
|
# Python is awkward about passing other include or library directories |
51 |
|
|
52 |
|
dirs="$EXPAT_ROOT $BZ2LIB_ROOT $NCURSES_ROOT $DB4_ROOT $GDBM_ROOT %{extradirs}" |
53 |
|
|
54 |
+ |
# We need to export it because setup.py now uses it to determine the actual |
55 |
+ |
# location of DB4, this was needed to avoid having it picked up from the system. |
56 |
+ |
export DB4_ROOT |
57 |
+ |
|
58 |
|
echo $dirs |
59 |
|
for d in $dirs; do |
60 |
|
for f in $d/include/*; do |
90 |
|
make %makeprocesses |
91 |
|
|
92 |
|
%install |
93 |
+ |
# We need to export it because setup.py now uses it to determine the actual |
94 |
+ |
# location of DB4, this was needed to avoid having it picked up from the system. |
95 |
+ |
export DB4_ROOT |
96 |
|
make install |
97 |
|
%define pythonv %(echo %realversion | cut -d. -f 1,2) |
98 |
|
|
127 |
|
%{i}/lib/python2.6/test/test_bz2.py \ |
128 |
|
%{i}/lib/python2.6/test/test_largefile.py \ |
129 |
|
%{i}/lib/python2.6/test/test_optparse.py |
134 |
– |
rm `find %{i}/lib -maxdepth 1 -mindepth 1 ! -name '*python*'` |
135 |
– |
rm `find %{i}/include -maxdepth 1 -mindepth 1 ! -name '*python*'` |
130 |
|
|
131 |
< |
%if "%online" == "true" |
131 |
> |
find %{i}/lib -maxdepth 1 -mindepth 1 ! -name '*python*' -exec rm {} \; |
132 |
> |
find %{i}/include -maxdepth 1 -mindepth 1 ! -name '*python*' -exec rm {} \; |
133 |
> |
|
134 |
|
# remove tkinter that brings dependency on libtk: |
135 |
|
find %{i}/lib -type f -name "_tkinter.so" -exec rm {} \; |
140 |
– |
%endif |
141 |
– |
|
142 |
– |
# SCRAM ToolBox toolfile |
143 |
– |
mkdir -p %i/etc/scram.d |
144 |
– |
cat << \EOF_TOOLFILE >%i/etc/scram.d/%n |
145 |
– |
<doc type=BuildSystem::ToolDoc version=1.0> |
146 |
– |
<Tool name=%n version=%v> |
147 |
– |
<lib name=python2.6> |
148 |
– |
<Client> |
149 |
– |
<Environment name=PYTHON_BASE default="%i"></Environment> |
150 |
– |
<Environment name=LIBDIR default="$PYTHON_BASE/lib"></Environment> |
151 |
– |
<Environment name=INCLUDE default="$PYTHON_BASE/include/python2.6"></Environment> |
152 |
– |
<Environment name=PYTHON_COMPILE default="$PYTHON_BASE/lib/python2.6/compileall.py"></Environment> |
153 |
– |
</Client> |
154 |
– |
<use name=sockets> |
155 |
– |
<Runtime name=PATH value="$PYTHON_BASE/bin" type=path> |
156 |
– |
</Tool> |
157 |
– |
EOF_TOOLFILE |
136 |
|
|
137 |
|
# Makes sure that executables start with /usr/bin/env perl and not with comments. |
160 |
– |
find %i -type f -perm -555 -name '*.py' -exec perl -p -i -e 'if ($. == 1) {s|^"""|#/usr/bin/env python\n"""|}' {} \; |
161 |
– |
find %i -type f -perm -555 -name '*.py' -exec perl -p -i -e 'if ($. == 1) {s|^\'\'\'|#/usr/bin/env python\n\'\'\'|}' {} \; |
162 |
– |
find %i -type f -perm -555 -name '*.py' -exec perl -p -i -e 'if ($. == 1) {s|/usr/local/bin/python|/usr/bin/env python|}' {} \; |
138 |
|
rm -f %i/share/doc/python/Demo/rpc/test |
139 |
|
|
140 |
+ |
# Generate dependencies-setup.{sh,csh} so init.{sh,csh} picks full environment. |
141 |
+ |
mkdir -p %i/etc/profile.d |
142 |
+ |
: > %i/etc/profile.d/dependencies-setup.sh |
143 |
+ |
: > %i/etc/profile.d/dependencies-setup.csh |
144 |
+ |
for tool in $(echo %{requiredtools} | sed -e's|\s+| |;s|^\s+||'); do |
145 |
+ |
root=$(echo $tool | tr a-z- A-Z_)_ROOT; eval r=\$$root |
146 |
+ |
if [ X"$r" != X ] && [ -r "$r/etc/profile.d/init.sh" ]; then |
147 |
+ |
echo "test X\$$root != X || . $r/etc/profile.d/init.sh" >> %i/etc/profile.d/dependencies-setup.sh |
148 |
+ |
echo "test X\$$root != X || source $r/etc/profile.d/init.csh" >> %i/etc/profile.d/dependencies-setup.csh |
149 |
+ |
fi |
150 |
+ |
done |
151 |
+ |
|
152 |
|
%post |
166 |
– |
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 |
167 |
– |
%{relocateConfig}etc/scram.d/%n |
153 |
|
%{relocateConfig}lib/python2.6/config/Makefile |
154 |
+ |
%{relocateConfig}etc/profile.d/dependencies-setup.*sh |