[Python-checkins] cpython (2.7): Deprecate unused scripts in Tools/buildbot.

zach.ware python-checkins at python.org
Wed Jun 17 17:11:09 CEST 2015


https://hg.python.org/cpython/rev/a8e24d776e99
changeset:   96611:a8e24d776e99
branch:      2.7
user:        Zachary Ware <zachary.ware at gmail.com>
date:        Tue Jun 16 10:56:14 2015 -0500
summary:
  Deprecate unused scripts in Tools/buildbot.

I would just outright delete them, but the readme in PCbuild recommended
their use, so I figure it would be nice to leave them there for a while.

files:
  Tools/buildbot/build-amd64.bat    |  5 ++++-
  Tools/buildbot/clean-amd64.bat    |  5 ++++-
  Tools/buildbot/external-amd64.bat |  1 +
  Tools/buildbot/external.bat       |  1 +
  Tools/buildbot/test-amd64.bat     |  6 +++++-
  5 files changed, 15 insertions(+), 3 deletions(-)


diff --git a/Tools/buildbot/build-amd64.bat b/Tools/buildbot/build-amd64.bat
--- a/Tools/buildbot/build-amd64.bat
+++ b/Tools/buildbot/build-amd64.bat
@@ -1,2 +1,5 @@
- at rem Used by the buildbot "compile" step.
+ at rem Formerly used by the buildbot "compile" step.
+ at echo This script is no longer used and may be removed in the future.
+ at echo To get the same effect as this script, use
+ at echo     PCbuild\build.bat -d -e -k -p x64
 call "%~dp0build.bat" -p x64 %*
diff --git a/Tools/buildbot/clean-amd64.bat b/Tools/buildbot/clean-amd64.bat
--- a/Tools/buildbot/clean-amd64.bat
+++ b/Tools/buildbot/clean-amd64.bat
@@ -1,2 +1,5 @@
- at rem Used by the buildbot "clean" step.
+ at rem Formerly used by the buildbot "clean" step.
+ at echo This script is no longer used and may be removed in the future.
+ at echo To get the same effect as this script, use `clean.bat` from this
+ at echo directory and pass `-p x64` as two arguments.
 call "%~dp0clean.bat" -p x64 %*
diff --git a/Tools/buildbot/external-amd64.bat b/Tools/buildbot/external-amd64.bat
--- a/Tools/buildbot/external-amd64.bat
+++ b/Tools/buildbot/external-amd64.bat
@@ -1,2 +1,3 @@
+ at echo This script is no longer used and may be removed in the future.
 @echo Please use PCbuild\get_externals.bat instead.
 @"%~dp0..\..\PCbuild\get_externals.bat" %*
diff --git a/Tools/buildbot/external.bat b/Tools/buildbot/external.bat
--- a/Tools/buildbot/external.bat
+++ b/Tools/buildbot/external.bat
@@ -1,2 +1,3 @@
+ at echo This script is no longer used and may be removed in the future.
 @echo Please use PCbuild\get_externals.bat instead.
 @"%~dp0..\..\PCbuild\get_externals.bat" %*
diff --git a/Tools/buildbot/test-amd64.bat b/Tools/buildbot/test-amd64.bat
--- a/Tools/buildbot/test-amd64.bat
+++ b/Tools/buildbot/test-amd64.bat
@@ -1,2 +1,6 @@
- at rem Used by the buildbot "test" step.
+ at rem Formerly used by the buildbot "test" step.
+ at echo This script is no longer used and may be removed in the future.
+ at echo To get the same effect as this script, use
+ at echo     PCbuild\rt.bat -q -d -x64 -uall -rwW
+ at echo or use `test.bat` in this directory and pass `-x64` as an argument.
 call "%~dp0test.bat" -x64 %*

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list