summaryrefslogtreecommitdiff
path: root/src/script
diff options
context:
space:
mode:
authorLuca Falavigna <dktrkranz@debian.org>2011-02-10 23:18:10 +0100
committerLuca Falavigna <dktrkranz@debian.org>2011-02-10 23:18:10 +0100
commit84c6f9729dbbc175431874957d0654310410bd6f (patch)
treef1bc4ac49739eaa417eb3c79d794a5c5865dad22 /src/script
parent738149c9bfb9965d013d01ef99f9bb1c2819e7e8 (diff)
Imported Upstream version 2.0.1upstream/2.0.1
Diffstat (limited to 'src/script')
-rw-r--r--src/script/README.txt4
-rw-r--r--src/script/scons-post-install.py2
-rw-r--r--src/script/scons-time.py2
-rw-r--r--src/script/scons.bat6
-rw-r--r--src/script/scons.py12
-rw-r--r--src/script/sconsign.py12
-rw-r--r--src/script/setup.py4
7 files changed, 21 insertions, 21 deletions
diff --git a/src/script/README.txt b/src/script/README.txt
index 1f46437..91e826c 100644
--- a/src/script/README.txt
+++ b/src/script/README.txt
@@ -5,12 +5,12 @@
### A SEPARATE SCRIPT PACKAGE IN THE FUTURE.
###
# Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 The SCons Foundation
-# src/script/README.txt 5023 2010/06/14 22:05:46 scons
+# src/script/README.txt 5134 2010/08/16 23:02:40 bdeegan
SCons - a software construction tool
- Version 2.0.0.final.0
+ Version 2.0.1
This is an alpha release of SCons, a tool for building software (and
diff --git a/src/script/scons-post-install.py b/src/script/scons-post-install.py
index 4b04fec..20cfcbe 100644
--- a/src/script/scons-post-install.py
+++ b/src/script/scons-post-install.py
@@ -31,7 +31,7 @@
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
-__revision__ = "src/script/scons-post-install.py 5023 2010/06/14 22:05:46 scons"
+__revision__ = "src/script/scons-post-install.py 5134 2010/08/16 23:02:40 bdeegan"
import os
import sys
diff --git a/src/script/scons-time.py b/src/script/scons-time.py
index 36c1134..36bdeb5 100644
--- a/src/script/scons-time.py
+++ b/src/script/scons-time.py
@@ -32,7 +32,7 @@
from __future__ import division
from __future__ import nested_scopes
-__revision__ = "src/script/scons-time.py 5023 2010/06/14 22:05:46 scons"
+__revision__ = "src/script/scons-time.py 5134 2010/08/16 23:02:40 bdeegan"
import getopt
import glob
diff --git a/src/script/scons.bat b/src/script/scons.bat
index dbc1e75..33ed144 100644
--- a/src/script/scons.bat
+++ b/src/script/scons.bat
@@ -1,11 +1,11 @@
@REM Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 The SCons Foundation
-@REM src/script/scons.bat 5023 2010/06/14 22:05:46 scons
+@REM src/script/scons.bat 5134 2010/08/16 23:02:40 bdeegan
@echo off
set SCONS_ERRORLEVEL=
if "%OS%" == "Windows_NT" goto WinNT
@REM for 9x/Me you better not have more than 9 args
-python -c "from os.path import join; import sys; sys.path = [ join(sys.prefix, 'Lib', 'site-packages', 'scons-2.0.0.final.0'), join(sys.prefix, 'Lib', 'site-packages', 'scons'), join(sys.prefix, 'scons-2.0.0.final.0'), join(sys.prefix, 'scons')] + sys.path; import SCons.Script; SCons.Script.main()" %1 %2 %3 %4 %5 %6 %7 %8 %9
+python -c "from os.path import join; import sys; sys.path = [ join(sys.prefix, 'Lib', 'site-packages', 'scons-2.0.1'), join(sys.prefix, 'Lib', 'site-packages', 'scons'), join(sys.prefix, 'scons-2.0.1'), join(sys.prefix, 'scons')] + sys.path; import SCons.Script; SCons.Script.main()" %1 %2 %3 %4 %5 %6 %7 %8 %9
@REM no way to set exit status of this script for 9x/Me
goto endscons
@@ -17,7 +17,7 @@ goto endscons
setlocal
@REM ensure the script will be executed with the Python it was installed for
set path=%~dp0;%~dp0..;%path%
-python -c "from os.path import join; import sys; sys.path = [ join(sys.prefix, 'Lib', 'site-packages', 'scons-2.0.0.final.0'), join(sys.prefix, 'Lib', 'site-packages', 'scons'), join(sys.prefix, 'scons-2.0.0.final.0'), join(sys.prefix, 'scons')] + sys.path; import SCons.Script; SCons.Script.main()" %*
+python -c "from os.path import join; import sys; sys.path = [ join(sys.prefix, 'Lib', 'site-packages', 'scons-2.0.1'), join(sys.prefix, 'Lib', 'site-packages', 'scons'), join(sys.prefix, 'scons-2.0.1'), join(sys.prefix, 'scons')] + sys.path; import SCons.Script; SCons.Script.main()" %*
endlocal & set SCONS_ERRORLEVEL=%ERRORLEVEL%
if NOT "%COMSPEC%" == "%SystemRoot%\system32\cmd.exe" goto returncode
diff --git a/src/script/scons.py b/src/script/scons.py
index c95bfac..bf84bf0 100644
--- a/src/script/scons.py
+++ b/src/script/scons.py
@@ -24,17 +24,17 @@
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
-__revision__ = "src/script/scons.py 5023 2010/06/14 22:05:46 scons"
+__revision__ = "src/script/scons.py 5134 2010/08/16 23:02:40 bdeegan"
-__version__ = "2.0.0.final.0"
+__version__ = "2.0.1"
-__build__ = "r5023"
+__build__ = "r5134"
-__buildsys__ = "scons-dev"
+__buildsys__ = "cooldog"
-__date__ = "2010/06/14 22:05:46"
+__date__ = "2010/08/16 23:02:40"
-__developer__ = "scons"
+__developer__ = "bdeegan"
import os
import os.path
diff --git a/src/script/sconsign.py b/src/script/sconsign.py
index c1f9632..adf3d28 100644
--- a/src/script/sconsign.py
+++ b/src/script/sconsign.py
@@ -23,17 +23,17 @@
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-__revision__ = "src/script/sconsign.py 5023 2010/06/14 22:05:46 scons"
+__revision__ = "src/script/sconsign.py 5134 2010/08/16 23:02:40 bdeegan"
-__version__ = "2.0.0.final.0"
+__version__ = "2.0.1"
-__build__ = "r5023"
+__build__ = "r5134"
-__buildsys__ = "scons-dev"
+__buildsys__ = "cooldog"
-__date__ = "2010/06/14 22:05:46"
+__date__ = "2010/08/16 23:02:40"
-__developer__ = "scons"
+__developer__ = "bdeegan"
import os
import sys
diff --git a/src/script/setup.py b/src/script/setup.py
index 36e5e00..68c1c37 100644
--- a/src/script/setup.py
+++ b/src/script/setup.py
@@ -21,7 +21,7 @@
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
-__revision__ = "src/script/setup.py 5023 2010/06/14 22:05:46 scons"
+__revision__ = "src/script/setup.py 5134 2010/08/16 23:02:40 bdeegan"
import os
import os.path
@@ -36,7 +36,7 @@ if head:
from distutils.core import setup
setup(name = "scons-script",
- version = "2.0.0.final.0",
+ version = "2.0.1",
description = "an Open Source software construction tool script",
long_description = """SCons is an Open Source software construction tool--that is, a build tool; an
improved substitute for the classic Make utility; a better way to build