1 |
< |
### RPM external python 2.4.2-CMS19 |
1 |
> |
### RPM external python 2.6.2 |
2 |
|
## INITENV +PATH PATH %i/bin |
3 |
|
## INITENV +PATH LD_LIBRARY_PATH %i/lib |
4 |
|
# OS X patches and build fudging stolen from fink |
49 |
|
# see above for the commented-out list of packages that could be |
50 |
|
# linked specifically, or could be built by ourselves, depending on |
51 |
|
# whether we like to pick up system libraries or want total control. |
52 |
< |
mkdir -p %i/include %i/lib |
52 |
> |
#mkdir -p %i/include %i/lib |
53 |
> |
mkdir -p %i/include %i/lib %i/bin |
54 |
|
|
55 |
|
%if "%cmsplatf" != "slc4onl_ia32_gcc346" |
56 |
|
%define extradirs $ZLIB_ROOT $OPENSSL_ROOT |
121 |
|
|
122 |
|
perl -p -i -e "s|^#!.*python|#!/usr/bin/env python|" %{i}/bin/idle \ |
123 |
|
%{i}/bin/pydoc \ |
124 |
+ |
%{i}/bin/python-config \ |
125 |
+ |
%{i}/bin/python2.6-config \ |
126 |
|
%{i}/bin/smtpd.py \ |
127 |
< |
%{i}/lib/python2.4/bsddb/dbshelve.py \ |
128 |
< |
%{i}/lib/python2.4/test/test_bz2.py \ |
129 |
< |
%{i}/lib/python2.4/test/test_largefile.py \ |
130 |
< |
%{i}/lib/python2.4/test/test_optparse.py |
127 |
> |
%{i}/lib/python2.6/bsddb/dbshelve.py \ |
128 |
> |
%{i}/lib/python2.6/test/test_bz2.py \ |
129 |
> |
%{i}/lib/python2.6/test/test_largefile.py \ |
130 |
> |
%{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 |
|
|
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.4> |
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.4"></Environment> |
149 |
< |
<Environment name=PYTHON_COMPILE default="$PYTHON_BASE/lib/python2.4/compileall.py"></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 |
155 |
|
|
156 |
+ |
# Makes sure that executables start with /usr/bin/env perl and not with comments. |
157 |
+ |
find %i -type f -perm -555 -name '*.py' -exec perl -p -i -e 'if ($. == 1) {s|^"""|#/usr/bin/env python\n"""|}' {} \; |
158 |
+ |
find %i -type f -perm -555 -name '*.py' -exec perl -p -i -e 'if ($. == 1) {s|^\'\'\'|#/usr/bin/env python\n\'\'\'|}' {} \; |
159 |
+ |
find %i -type f -perm -555 -name '*.py' -exec perl -p -i -e 'if ($. == 1) {s|/usr/local/bin/python|/usr/bin/env python|}' {} \; |
160 |
+ |
rm -f %i/share/doc/python/Demo/rpc/test |
161 |
+ |
|
162 |
|
%post |
163 |
|
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 |
164 |
|
%{relocateConfig}etc/scram.d/%n |