Browse Source

Stefan Paletta: added runpysetup to fix the compilation of python

Rene Rebe:  documented pyconfopt


git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@1376 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc
rocklinux
Stefan Paletta 21 years ago
parent
commit
5d9fad9de2
5 changed files with 10 additions and 2 deletions
  1. +5
    -0
      Documentation/Developers/CHANGELOG-RENE
  2. +2
    -0
      Documentation/Developers/PKG-BUILD-VARS
  3. +1
    -0
      package/base/python/python.conf
  4. +1
    -1
      scripts/Build-Pkg
  5. +1
    -1
      scripts/functions

+ 5
- 0
Documentation/Developers/CHANGELOG-RENE

@ -1,4 +1,9 @@
*) 2003-09-11 (2.0.0-rc1 - 2.0.0-rc2)
- Stefan Paletta: added runpysetup to fix the compilation of python
- documented pyconfopt
*) 2003-09-10 (2.0.0-rc1 - 2.0.0-rc2)
- Alejandro Mery: fixed xfree config.in, fixed typo in Build-Tools and

+ 2
- 0
Documentation/Developers/PKG-BUILD-VARS

@ -77,9 +77,11 @@ confopt ....... options for GNU autoconf './configure'
extraconfopt .. options which should be appended to $confopt by set_confopt()
configprefix .. variable declarations only for GNU autoconf './configure'
configscript .. script file name of the GNU autoconf configure script
pyconfopt ..... options for 'setup.py' - Python setup scripts
runxmkmf ...... set to '0' if you want to skip running 'xmkmf'
runmkpl ....... set to '0' if you want to skip running 'perl Makefile.PL'
runpysetup .... set to '0' if you want to skip running 'python setup.py'
premake ....... command to execute before running 'make'
makeopt ....... options for 'make' (default = ' ')

+ 1
- 0
package/base/python/python.conf

@ -34,6 +34,7 @@ enable_tcltk() {
fi
}
runpysetup=0
premake="enable_tcltk"
confopt="$confopt --with-threads"

+ 1
- 1
scripts/Build-Pkg

@ -415,7 +415,7 @@ srcdir=auto ; srctar=auto
taropt="--use-compress-program=bzip2 -xf"
mainfunction="build_this_package"
runconf=1 ; runxmkmf=1 ; runmkpl=1 ; autopatch=1
runconf=1 ; runxmkmf=1 ; runmkpl=1 ; runpysetup=1 ; autopatch=1
autoextract=1 ; chownsrcdir=1 ; patchopt="-bfp1 -z .orig"
createprefix=1 ; createdocs="" ; rmemptydir=""

+ 1
- 1
scripts/functions

@ -527,7 +527,7 @@ build_this_package() {
# automated package build
# styles without make run first:
if [ -f setup.py ] ; then
if [ -f setup.py -a $runpysetup = 1 ] ; then
pyconfopt="${pyconfopt:=--prefix $root/$prefix}"
eval python setup.py build install $pyconfopt
else # styles that include a make run

Loading…
Cancel
Save