Show
Ignore:
Timestamp:
11/29/05 11:23:34 (3 years ago)
Author:
nk
Message:

[psybases] update AP sources to include python-glade dep and some other fixes in python-xml and python (apparently)

Location:
trunk/autopackage/@python.org
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/autopackage/@python.org/python/skeleton.1

    r1321 r4521  
    1212 
    1313[Test] 
    14 SOFTWARE_VERSIONS=$( locateCommand python -V 2>&1 ) 
     14SOFTWARE_VERSIONS=$( locateCommand python -V 2>&1 | cut -f2 -d' ' ) 
    1515if [[ "$?" != "0" ]]; then 
    1616    INTERFACE_VERSIONS="" 
    1717else 
    18     local v 
    19     v=$( echo $SOFTWARE_VERSIONS | awk '{print $2}' | awk -F. '{print $1 "." $2}' ) 
    20     INTERFACE_VERSIONS=$( countDownVersions $v ) 
     18    INTERFACE_VERSIONS=$( echo $SOFTWARE_VERSIONS | awk -F. '{print $1 "." $2}' ) 
    2119fi 
    2220 
  • trunk/autopackage/@python.org/python-xml/skeleton.1

    r4380 r4521  
    99 
    1010[Notes] 
    11  
     11Distros like SuSE split some features of core python (like xml) to python-xml e.t.c 
     12So python-xml must have the same versions as python 
    1213 
    1314[Test] 
    14  
    15 SOFTWARE_VERSIONS=$( locateCommand python -V 2>&1 ) 
     15SOFTWARE_VERSIONS=$( locateCommand python -V 2>&1 | cut -f2 -d' ' ) 
    1616testForPythonModule xml 
    1717if [[ "$?" != "0" ]]; then 
    1818    INTERFACE_VERSIONS="" 
    1919else 
    20     local v 
    21     v=$( echo $SOFTWARE_VERSIONS | awk '{print $2}' | awk -F. '{print $1 "." $2}' ) 
    22     INTERFACE_VERSIONS=$( countDownVersions $v ) 
     20    INTERFACE_VERSIONS=$( echo $SOFTWARE_VERSIONS | awk -F. '{print $1 "." $2}' ) 
    2321fi