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.41 by ratnik, Tue May 13 17:29:46 2008 UTC vs.
Revision 1.85 by diego, Thu Apr 19 14:05:13 2012 UTC

# Line 1 | Line 1
1 < ### RPM external python 2.4.2-CMS19
1 > ### RPM external python 2.6.8
2   ## INITENV +PATH PATH %i/bin
3   ## INITENV +PATH LD_LIBRARY_PATH %i/lib
4 + ## INITENV SETV PYTHON_LIB_SITE_PACKAGES lib/python%{python_major_version}/site-packages
5 + ## INITENV SETV PYTHONHASHSEED random
6   # OS X patches and build fudging stolen from fink
7 + %{expand:%%define python_major_version %(echo %realversion | cut -d. -f1,2)}
8 + %define online %(case %cmsplatf in (*onl_*_*) echo true;; (*) echo false;; esac)
9  
10   Requires: expat bz2lib db4 gdbm
11  
12 < %if "%cmsplatf" != "slc4onl_ia32_gcc346"
13 < Requires: zlib openssl
12 > %if "%online" != "true"
13 > Requires: zlib openssl sqlite
14   %endif
15  
16   # FIXME: readline, crypt
17   # FIXME: gmp, panel, tk/tcl, x11
18  
19   Source0: http://www.python.org/ftp/%n/%realversion/Python-%realversion.tgz
20 < Patch0: python-Include-pyport.h
21 < Patch1: python-Lib-plat-mac-applesingle.py
18 < Patch2: python-Lib-site.py
19 < Patch3: python-Mac-OSX-Makefile
20 < Patch4: python-Makefile.pre.in
21 < Patch5: python-configure
22 < Patch6: python-setup.py
23 <
20 > Patch0: python-dont-detect-dbm
21 > Patch1: python-fix-macosx-relocation
22  
23   %prep
24   %setup -n Python-%realversion
25 < #%patch0
26 < #%patch1
27 < #%patch2
28 < #%patch3
29 < #%patch4
30 < #%patch5
31 < #%patch6
34 < perl -p -i -e "s|#!.*/usr/local/bin/python|#!/usr/bin/env python|" Lib/cgi.py
35 <
36 < %ifos darwin
37 < sed 's|@PREFIX@|%i|g' < %_sourcedir/python-osx | patch -p1
38 < %endif
25 > find . -type f | while read f; do
26 >  if head -n1 $f | grep -q /usr/local; then
27 >    perl -p -i -e "s|#!.*/usr/local/bin/python|#!/usr/bin/env python|" $f
28 >  else :; fi
29 > done
30 > %patch0 -p0
31 > %patch1 -p0
32  
33   %build
34   # Python is awkward about passing other include or library directories
# Line 49 | Line 42 | perl -p -i -e "s|#!.*/usr/local/bin/pyth
42   # see above for the commented-out list of packages that could be
43   # linked specifically, or could be built by ourselves, depending on
44   # whether we like to pick up system libraries or want total control.
45 < mkdir -p %i/include %i/lib
45 > #mkdir -p %i/include %i/lib
46 > mkdir -p %i/include %i/lib %i/bin
47  
48 < %if "%cmsplatf" != "slc4onl_ia32_gcc346"
49 < %define extradirs $ZLIB_ROOT $OPENSSL_ROOT
48 > %if "%online" != "true"
49 > %define extradirs $ZLIB_ROOT $OPENSSL_ROOT $SQLITE_ROOT
50   %else
51   %define extradirs %{nil}
52   %endif
53  
54   dirs="$EXPAT_ROOT $BZ2LIB_ROOT $NCURSES_ROOT $DB4_ROOT $GDBM_ROOT %{extradirs}"
55  
56 + # We need to export it because setup.py now uses it to determine the actual
57 + # location of DB4, this was needed to avoid having it picked up from the system.
58 + export DB4_ROOT
59 +
60 + # Python's configure parses LDFLAGS and CPPFLAGS to look for aditional library and include directories
61   echo $dirs
62 + LDFLAGS=""
63 + CPPFLAGS=""
64   for d in $dirs; do
65 <  for f in $d/include/*; do
66 <    [ -e $f ] || continue
66 <    rm -f %i/include/$(basename $f)
67 <    ln -s $f %i/include
68 <  done
69 <  for f in $d/lib/*; do
70 <    [ -e $f ] || continue
71 <    rm -f %i/lib/$(basename $f)
72 <    ln -s $f %i/lib
73 <  done
65 >  LDFLAGS="$LDFLAGS -L $d/lib"
66 >  CPPFLAGS="$CPPFLAGS -I $d/include"
67   done
68 + export LDFLAGS
69 + export CPPFLAGS
70  
71   additionalConfigureOptions=""
72   case %cmsplatf in
# Line 83 | Line 78 | esac
78   ./configure --prefix=%i $additionalConfigureOptions --enable-shared \
79              --without-tkinter --disable-tkinter
80  
86 # The following is a kludge around the fact that the /usr/lib/libreadline.so
87 # symlink (for 32-bit lib) is missing on the 64bit machines
88 %if "%cmsplatf" == "slc4_ia32_gcc345"
89  mkdir -p %{i}/lib
90  ln -s /usr/lib/libreadline.so.4.3 %{i}/lib/libreadline.so
91 %endif
92 %if "%cmsplatf" == "slc4_ia32_gcc412"
93  mkdir -p %{i}/lib
94  ln -s /usr/lib/libreadline.so.4.3 %{i}/lib/libreadline.so
95 %endif
81   make %makeprocesses
82  
83   %install
84 + # We need to export it because setup.py now uses it to determine the actual
85 + # location of DB4, this was needed to avoid having it picked up from the system.
86 + export DB4_ROOT
87   make install
88   %define pythonv %(echo %realversion | cut -d. -f 1,2)
89  
90 < #if [ $(uname) = Darwin ]; then
91 <  # make install prefix=%i
92 <  # (cd Misc; /bin/rm -rf RPM)
93 <  # mkdir -p %i/share/doc/%n
94 <  # cp -R Demo Doc %i/share/doc/%n
95 <  # cp -R Misc Tools %i/lib/python%{pythonv}
96 < #  gcc -dynamiclib -all_load -single_module \
97 < #    -framework System -framework CoreServices -framework Foundation \
98 < #    %i/lib/python%{pythonv}/config/libpython%{pythonv}.a \
99 < #    -undefined dynamic_lookup \
100 < #    -o %i/lib/python%{pythonv}/config/libpython%{pythonv}.dylib \
101 < #    -install_name %i/lib/python%{pythonv}/config/libpython%{pythonv}.dylib \
102 < #    -current_version %{pythonv} -compatibility_version %{pythonv} -ldl
103 < #  ln -s libpython%{pythonv}.dylib %i/lib/python%{pythonv}/config/libpython%{pythonv}.dylib # for boost
104 <  # (cd %i/lib/python%{pythonv}/config; mv Makefile Makefile.orig;
105 <  #  sed 's|-fno-common||g' < Makefile.orig > Makefile; /bin/rm -f Makefile.orig)
106 < #fi
107 <
108 < perl -p -i -e "s|^#!.*python|#!/usr/bin/env python|" %{i}/bin/idle \
109 <                    %{i}/bin/pydoc \
122 <                    %{i}/bin/smtpd.py \
123 <                    %{i}/lib/python2.4/bsddb/dbshelve.py \
124 <                    %{i}/lib/python2.4/test/test_bz2.py \
125 <                    %{i}/lib/python2.4/test/test_largefile.py \
126 <                    %{i}/lib/python2.4/test/test_optparse.py
127 < # boost.spec rfio.spec
128 < #
129 < #
130 < rm  `find %{i}/lib -maxdepth 1 -mindepth 1 ! -name '*python*'`
131 < rm  `find %{i}/include -maxdepth 1 -mindepth 1 ! -name '*python*'`
90 > case %cmsplatf in
91 >  osx*)
92 >   make install prefix=%i
93 >   (cd Misc; /bin/rm -rf RPM)
94 >   mkdir -p %i/share/doc/%n
95 >   cp -R Demo Doc %i/share/doc/%n
96 >   cp -R Misc Tools %i/lib/python%{pythonv}
97 >   gcc -dynamiclib -all_load -single_module \
98 >    -framework System -framework CoreServices -framework Foundation \
99 >    %i/lib/python%{pythonv}/config/libpython%{pythonv}.a \
100 >    -undefined dynamic_lookup \
101 >    -o %i/lib/python%{pythonv}/config/libpython%{pythonv}.dylib \
102 >    -install_name %i/lib/python%{pythonv}/config/libpython%{pythonv}.dylib \
103 >    -current_version %{pythonv} -compatibility_version %{pythonv} -ldl
104 >   (cd %i/lib/python%{pythonv}/config
105 >    perl -p -i -e 's|-fno-common||g' Makefile)
106 >
107 >   find %i/lib/python%{pythonv}/config -name 'libpython*' -exec mv -f {} %i/lib \;
108 >  ;;
109 > esac
110  
111 < # SCRAM ToolBox toolfile
112 < mkdir -p %i/etc/scram.d
113 < cat << \EOF_TOOLFILE >%i/etc/scram.d/%n
114 < <doc type=BuildSystem::ToolDoc version=1.0>
115 < <Tool name=%n version=%v>
116 < <lib name=python2.4>
117 < <Client>
118 < <Environment name=PYTHON_BASE default="%i"></Environment>
119 < <Environment name=LIBDIR default="$PYTHON_BASE/lib"></Environment>
120 < <Environment name=INCLUDE default="$PYTHON_BASE/include/python2.4"></Environment>
121 < <Environment name=PYTHON_COMPILE default="$PYTHON_BASE/lib/python2.4/compileall.py"></Environment>
122 < </Client>
123 < <use name=sockets>
124 < <Runtime name=PATH value="$PYTHON_BASE/bin" type=path>
125 < </Tool>
126 < EOF_TOOLFILE
111 > perl -p -i -e "s|^#!.*python|#!/usr/bin/env python|" %{i}/bin/idle \
112 >                     %{i}/bin/pydoc \
113 >                     %{i}/bin/python-config \
114 >                     %{i}/bin/2to3 \
115 >                     %{i}/bin/python2.6-config \
116 >                     %{i}/bin/smtpd.py \
117 >                     %{i}/lib/python2.6/bsddb/dbshelve.py \
118 >                     %{i}/lib/python2.6/test/test_bz2.py \
119 >                     %{i}/lib/python2.6/test/test_largefile.py \
120 >                     %{i}/lib/python2.6/test/test_optparse.py
121 >
122 > find %{i}/lib -maxdepth 1 -mindepth 1 ! -name '*python*' -exec rm {} \;
123 > find %{i}/include -maxdepth 1 -mindepth 1 ! -name '*python*' -exec rm {} \;
124 >
125 > # remove executable permission anything which is *.py script,
126 > # is executable, but does not start with she-bang so not valid
127 > # executable; this avoids problems with rpm 4.8+ find-requires
128 > find %i -name '*.py' -perm +0111 | while read f; do
129 >  if head -n1 $f | grep -q '"'; then chmod -x $f; else :; fi
130 > done
131 >
132 > # remove tkinter that brings dependency on libtk:
133 > find %{i}/lib -type f -name "_tkinter.so" -exec rm {} \;
134 >
135 > # Remove documentation, examples and test files.
136 > %define drop_files { %i/share %{i}/lib/python%{pythonv}/test \
137 >                   %{i}/lib/python%{pythonv}/distutils/tests \
138 >                   %{i}/lib/python%{pythonv}/json/tests \
139 >                   %{i}/lib/python%{pythonv}/ctypes/test \
140 >                   %{i}/lib/python%{pythonv}/sqlite3/test \
141 >                   %{i}/lib/python%{pythonv}/bsddb/test \
142 >                   %{i}/lib/python%{pythonv}/email/test \
143 >                   %{i}/lib/python%{pythonv}/lib2to3/tests }
144 >
145 > # Remove .pyo files
146 > find %i -name '*.pyo' -exec rm {} \;
147 >
148 > # Generate dependencies-setup.{sh,csh} so init.{sh,csh} picks full environment.
149 > mkdir -p %i/etc/profile.d
150 > : > %i/etc/profile.d/dependencies-setup.sh
151 > : > %i/etc/profile.d/dependencies-setup.csh
152 > for tool in $(echo %{requiredtools} | sed -e's|\s+| |;s|^\s+||'); do
153 >  root=$(echo $tool | tr a-z- A-Z_)_ROOT; eval r=\$$root
154 >  if [ X"$r" != X ] && [ -r "$r/etc/profile.d/init.sh" ]; then
155 >    echo "test X\$$root != X || . $r/etc/profile.d/init.sh" >> %i/etc/profile.d/dependencies-setup.sh
156 >    echo "test X\$$root != X || source $r/etc/profile.d/init.csh" >> %i/etc/profile.d/dependencies-setup.csh
157 >  fi
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
161 > %{relocateConfig}lib/python2.6/config/Makefile
162 > %{relocateConfig}etc/profile.d/dependencies-setup.*sh

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines