diff options
author | Steven Knight <knight@baldmt.com> | 2008-08-14 12:21:39 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2008-08-14 12:21:39 (GMT) |
commit | 29f24368b0b236f816e6bc124547c1a155c00ad6 (patch) | |
tree | 688990289b4e87381f59ce7316c2aeb338dd0153 /bin | |
parent | 6426897104128875124931dc350a106bd1d0754c (diff) | |
download | SCons-29f24368b0b236f816e6bc124547c1a155c00ad6.zip SCons-29f24368b0b236f816e6bc124547c1a155c00ad6.tar.gz SCons-29f24368b0b236f816e6bc124547c1a155c00ad6.tar.bz2 |
Update for latest versions of Python and SCons.
Diffstat (limited to 'bin')
-rw-r--r-- | bin/install-python.sh | 9 | ||||
-rw-r--r-- | bin/install-scons.sh | 7 |
2 files changed, 11 insertions, 5 deletions
diff --git a/bin/install-python.sh b/bin/install-python.sh index 65e3fe4..a0a0ecc 100644 --- a/bin/install-python.sh +++ b/bin/install-python.sh @@ -62,10 +62,10 @@ if test "X${ALL}" != "X"; then 2.0.1 2.1.3 2.2 - 2.3.6 - 2.4.4 + 2.3.7 + 2.4.5 " - # 2.5.1 + # 2.5.2 fi Command() @@ -76,7 +76,6 @@ Command() } for VERSION in $VERSIONS; do - DIR=`expr "$VERSION" : '\(...\)'` PYTHON=Python-${VERSION} TAR_GZ=${PYTHON}.tgz @@ -84,7 +83,7 @@ for VERSION in $VERSIONS; do if test ! -d ${DOWNLOADS}; then Command mkdir ${DOWNLOADS} fi - Command "( cd ${DOWNLOADS} && wget ${DOWNLOADS_URL}/${DIR}/${TAR_GZ} )" + Command "( cd ${DOWNLOADS} && wget ${DOWNLOADS_URL}/${VERSION}/${TAR_GZ} )" fi Command tar zxf ${DOWNLOADS}/${TAR_GZ} diff --git a/bin/install-scons.sh b/bin/install-scons.sh index 50c1cce..1ffd3c2 100644 --- a/bin/install-scons.sh +++ b/bin/install-scons.sh @@ -104,6 +104,13 @@ if test "X${ALL}" != "X"; then 0.97.0d20070809 0.97.0d20070918 0.97.0d20071212 + 0.98.0 + 0.98.1 + 0.98.2 + 0.98.3 + 0.98.4 + 0.98.5 + 1.0.0 " fi |