ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/CMSDIST/python.spec
(Generate patch)

Comparing COMP/CMSDIST/python.spec (file contents):
Revision 1.55 by elmer, Tue Nov 3 15:04:08 2009 UTC vs.
Revision 1.68 by lat, Fri Sep 10 16:25:11 2010 UTC

# Line 8 | Line 8
8   Requires: expat bz2lib db4 gdbm
9  
10   %if "%online" != "true"
11 < Requires: zlib openssl
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
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
# Line 55 | Line 40 | perl -p -i -e "s|#!.*/usr/local/bin/pyth
40   mkdir -p %i/include %i/lib %i/bin
41  
42   %if "%online" != "true"
43 < %define extradirs $ZLIB_ROOT $OPENSSL_ROOT
43 > %define extradirs $ZLIB_ROOT $OPENSSL_ROOT $SQLITE_ROOT
44   %else
45   %define extradirs %{nil}
46   %endif
# Line 117 | Line 102 | case %cmsplatf in
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  
# Line 131 | Line 116 | perl -p -i -e "s|^#!.*python|#!/usr/bin/
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
134 rm  `find %{i}/lib -maxdepth 1 -mindepth 1 ! -name '*python*'`
135 rm  `find %{i}/include -maxdepth 1 -mindepth 1 ! -name '*python*'`
119  
120 < %if "%online" == "true"
121 < # remove tkinter that brings dependency on libtk:
139 < rm  `find %{i}/lib -type f -name "_tkinter.so"`
140 < %endif
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
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
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"""|}' {} \;
# Line 162 | Line 129 | find %i -type f -perm -555 -name '*.py'
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 + # Generate dependencies-setup.{sh,csh} so init.{sh,csh} picks full environment.
133 + mkdir -p %i/etc/profile.d
134 + : > %i/etc/profile.d/dependencies-setup.sh
135 + : > %i/etc/profile.d/dependencies-setup.csh
136 + for tool in $(echo %{requiredtools} | sed -e's|\s+| |;s|^\s+||'); do
137 +  root=$(echo $tool | tr a-z- A-Z_)_ROOT; eval r=\$$root
138 +  if [ X"$r" != X ] && [ -r "$r/etc/profile.d/init.sh" ]; then
139 +    echo "test X\$$root != X || . $r/etc/profile.d/init.sh" >> %i/etc/profile.d/dependencies-setup.sh
140 +    echo "test X\$$root != X || source $r/etc/profile.d/init.csh" >> %i/etc/profile.d/dependencies-setup.csh
141 +  fi
142 + done
143 +
144   %post
145 < 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
146 < %{relocateConfig}etc/scram.d/%n
145 > %{relocateConfig}lib/python2.6/config/Makefile
146 > %{relocateConfig}etc/profile.d/dependencies-setup.*sh

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines