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.36 by elmer, Sat Nov 3 00:57:16 2007 UTC vs.
Revision 1.69 by eulisse, Thu Sep 16 09:22:00 2010 UTC

# Line 1 | Line 1
1 < ### RPM external python 2.4.2-CMS18
1 > ### RPM external python 2.6.4
2   ## INITENV +PATH PATH %i/bin
3   ## INITENV +PATH LD_LIBRARY_PATH %i/lib
4   # OS X patches and build fudging stolen from fink
5 + %define closingbrace )
6 + %define online %(case %cmsplatf in *onl_*_*%closingbrace echo true;; *%closingbrace echo false;; esac)
7  
8   Requires: expat bz2lib db4 gdbm
9  
10 < %if "%{?online_release:set}" != "set"
11 < Requires: zlib openssl
10 > %if "%online" != "true"
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
17 < 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 <
18 > Patch0: python-2.6.4-dont-detect-dbm
19  
20   %prep
21   %setup -n Python-%realversion
27 #%patch0
28 #%patch1
29 #%patch2
30 #%patch3
31 #%patch4
32 #%patch5
33 #%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
# Line 49 | Line 40 | perl -p -i -e "s|#!.*/usr/local/bin/pyth
40   # see above for the commented-out list of packages that could be
41   # linked specifically, or could be built by ourselves, depending on
42   # whether we like to pick up system libraries or want total control.
43 < mkdir -p %i/include %i/lib
43 > #mkdir -p %i/include %i/lib
44 > mkdir -p %i/include %i/lib %i/bin
45  
46 < %if "%{?online_release:set}" != "set"
47 < %define extradirs $ZLIB_ROOT $OPENSSL_ROOT
46 > %if "%online" != "true"
47 > %define extradirs $ZLIB_ROOT $OPENSSL_ROOT $SQLITE_ROOT
48   %else
49   %define extradirs %{nil}
50   %endif
# Line 73 | Line 65 | for d in $dirs; do
65    done
66   done
67  
68 < ./configure --prefix=%i --enable-shared --without-tkinter --disable-tkinter
68 > additionalConfigureOptions=""
69 > case %cmsplatf in
70 >    osx105* )
71 >    additionalConfigureOptions="--disable-readline"
72 >    ;;
73 > esac
74 >
75 > ./configure --prefix=%i $additionalConfigureOptions --enable-shared \
76 >            --without-tkinter --disable-tkinter
77 >
78   # The following is a kludge around the fact that the /usr/lib/libreadline.so
79   # symlink (for 32-bit lib) is missing on the 64bit machines
80 < %if "%cmsplatf" == "slc4_ia32_gcc345"
81 <  mkdir -p %{i}/lib
82 <  ln -s /usr/lib/libreadline.so.4.3 %{i}/lib/libreadline.so
83 < %endif
84 < %if "%cmsplatf" == "slc4_ia32_gcc412"
85 <  mkdir -p %{i}/lib
85 <  ln -s /usr/lib/libreadline.so.4.3 %{i}/lib/libreadline.so
86 < %endif
80 > case %cmsplatf in
81 >  slc4_ia32* )
82 >    mkdir -p %{i}/lib
83 >    ln -s /usr/lib/libreadline.so.4.3 %{i}/lib/libreadline.so
84 >  ;;
85 > esac
86   make %makeprocesses
87  
89
88   %install
89   make install
90   %define pythonv %(echo %realversion | cut -d. -f 1,2)
91  
92 < #if [ $(uname) = Darwin ]; then
93 <  # make install prefix=%i
94 <  # (cd Misc; /bin/rm -rf RPM)
95 <  # mkdir -p %i/share/doc/%n
96 <  # cp -R Demo Doc %i/share/doc/%n
97 <  # cp -R Misc Tools %i/lib/python%{pythonv}
98 < #  gcc -dynamiclib -all_load -single_module \
99 < #    -framework System -framework CoreServices -framework Foundation \
100 < #    %i/lib/python%{pythonv}/config/libpython%{pythonv}.a \
101 < #    -undefined dynamic_lookup \
102 < #    -o %i/lib/python%{pythonv}/config/libpython%{pythonv}.dylib \
103 < #    -install_name %i/lib/python%{pythonv}/config/libpython%{pythonv}.dylib \
104 < #    -current_version %{pythonv} -compatibility_version %{pythonv} -ldl
105 < #  ln -s libpython%{pythonv}.dylib %i/lib/python%{pythonv}/config/libpython%{pythonv}.dylib # for boost
106 <  # (cd %i/lib/python%{pythonv}/config; mv Makefile Makefile.orig;
107 <  #  sed 's|-fno-common||g' < Makefile.orig > Makefile; /bin/rm -f Makefile.orig)
108 < #fi
92 > case %cmsplatf in
93 >  osx*)
94 >   make install prefix=%i
95 >   (cd Misc; /bin/rm -rf RPM)
96 >   mkdir -p %i/share/doc/%n
97 >   cp -R Demo Doc %i/share/doc/%n
98 >   cp -R Misc Tools %i/lib/python%{pythonv}
99 >   gcc -dynamiclib -all_load -single_module \
100 >    -framework System -framework CoreServices -framework Foundation \
101 >    %i/lib/python%{pythonv}/config/libpython%{pythonv}.a \
102 >    -undefined dynamic_lookup \
103 >    -o %i/lib/python%{pythonv}/config/libpython%{pythonv}.dylib \
104 >    -install_name %i/lib/python%{pythonv}/config/libpython%{pythonv}.dylib \
105 >    -current_version %{pythonv} -compatibility_version %{pythonv} -ldl
106 >   (cd %i/lib/python%{pythonv}/config
107 >    perl -p -i -e 's|-fno-common||g' Makefile)
108 >
109 >   find %i/lib/python%{pythonv}/config -name 'libpython*' -exec mv -f {} %i/lib \;
110 >  ;;
111 > esac
112  
113   perl -p -i -e "s|^#!.*python|#!/usr/bin/env python|" %{i}/bin/idle \
114                      %{i}/bin/pydoc \
115 +                    %{i}/bin/python-config \
116 +                    %{i}/bin/2to3 \
117 +                    %{i}/bin/python2.6-config \
118                      %{i}/bin/smtpd.py \
119 <                    %{i}/lib/python2.4/bsddb/dbshelve.py \
120 <                    %{i}/lib/python2.4/test/test_bz2.py \
121 <                    %{i}/lib/python2.4/test/test_largefile.py \
122 <                    %{i}/lib/python2.4/test/test_optparse.py
123 < # boost.spec rfio.spec
124 < #
125 < #
126 < rm  `find %{i}/lib -maxdepth 1 -mindepth 1 ! -name '*python*'`
127 < rm  `find %{i}/include -maxdepth 1 -mindepth 1 ! -name '*python*'`
128 <
129 < # SCRAM ToolBox toolfile
130 < mkdir -p %i/etc/scram.d
131 < cat << \EOF_TOOLFILE >%i/etc/scram.d/%n
132 < <doc type=BuildSystem::ToolDoc version=1.0>
133 < <Tool name=%n version=%v>
134 < <lib name=python2.4>
135 < <Client>
136 < <Environment name=PYTHON_BASE default="%i"></Environment>
137 < <Environment name=LIBDIR default="$PYTHON_BASE/lib"></Environment>
138 < <Environment name=INCLUDE default="$PYTHON_BASE/include/python2.4"></Environment>
139 < <Environment name=PYTHON_COMPILE default="$PYTHON_BASE/lib/python2.4/compileall.py"></Environment>
140 < </Client>
141 < <use name=sockets>
142 < <Runtime name=PATH value="$PYTHON_BASE/bin" type=path>
143 < </Tool>
144 < EOF_TOOLFILE
119 >                    %{i}/lib/python2.6/bsddb/dbshelve.py \
120 >                    %{i}/lib/python2.6/test/test_bz2.py \
121 >                    %{i}/lib/python2.6/test/test_largefile.py \
122 >                    %{i}/lib/python2.6/test/test_optparse.py
123 >
124 > find %{i}/lib -maxdepth 1 -mindepth 1 ! -name '*python*' -exec rm {} \;
125 > find %{i}/include -maxdepth 1 -mindepth 1 ! -name '*python*' -exec rm {} \;
126 >
127 > # remove tkinter that brings dependency on libtk:
128 > find %{i}/lib -type f -name "_tkinter.so" -exec rm {} \;
129 >
130 > # Makes sure that executables start with /usr/bin/env perl and not with comments.
131 > find %i -type f -perm -555 -name '*.py' -exec perl -p -i -e 'if ($. == 1) {s|^"""|#/usr/bin/env python\n"""|}' {} \;
132 > find %i -type f -perm -555 -name '*.py' -exec perl -p -i -e 'if ($. == 1) {s|^\'\'\'|#/usr/bin/env python\n\'\'\'|}' {} \;
133 > find %i -type f -perm -555 -name '*.py' -exec perl -p -i -e 'if ($. == 1) {s|/usr/local/bin/python|/usr/bin/env python|}' {} \;
134 > rm -f %i/share/doc/python/Demo/rpc/test
135 >
136 > # Generate dependencies-setup.{sh,csh} so init.{sh,csh} picks full environment.
137 > mkdir -p %i/etc/profile.d
138 > : > %i/etc/profile.d/dependencies-setup.sh
139 > : > %i/etc/profile.d/dependencies-setup.csh
140 > for tool in $(echo %{requiredtools} | sed -e's|\s+| |;s|^\s+||'); do
141 >  root=$(echo $tool | tr a-z- A-Z_)_ROOT; eval r=\$$root
142 >  if [ X"$r" != X ] && [ -r "$r/etc/profile.d/init.sh" ]; then
143 >    echo "test X\$$root != X || . $r/etc/profile.d/init.sh" >> %i/etc/profile.d/dependencies-setup.sh
144 >    echo "test X\$$root != X || source $r/etc/profile.d/init.csh" >> %i/etc/profile.d/dependencies-setup.csh
145 >  fi
146 > done
147  
148   %post
149 < 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
150 < %{relocateConfig}etc/scram.d/%n
149 > %{relocateConfig}lib/python2.6/config/Makefile
150 > %{relocateConfig}etc/profile.d/dependencies-setup.*sh

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines