Update the bin/restore.sh script for more complete conversion of substituted __*__...
authorstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Sun, 18 Dec 2005 16:22:43 +0000 (16:22 +0000)
committerstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Sun, 18 Dec 2005 16:22:43 +0000 (16:22 +0000)
git-svn-id: http://scons.tigris.org/svn/scons/trunk@1405 fdb21ef1-2011-0410-befe-b5e4ea1792b1

bin/restore.sh
src/engine/SCons/Scanner/LaTeXTests.py

index d23d1d0c0ba9fb5148fbe99f32eeb5bc7caec9d5..0ed181df6c4b28713fb32a5341886c3d438e271f 100644 (file)
@@ -1,8 +1,8 @@
 #!/usr/bin/env sh
 #
-# Simple hack script to restore __revision__ and __COPYRIGHT_ lines
-# to what gets checked in to source.  This comes in handy when people
-# send in diffs based on the released source.
+# Simple hack script to restore __revision__, __COPYRIGHT_, __VERSION__
+# and other similar variables to what gets checked in to source.  This
+# comes in handy when people send in diffs based on the released source.
 #
 
 if test "X$*" = "X"; then
@@ -11,27 +11,79 @@ else
     DIRS="$*"
 fi
 
+SEPARATOR="================================================================================"
+
+header() {
+    arg_space="$1 "
+    dots=`echo "$arg_space" | sed 's/./\./g'`
+    echo "$SEPARATOR" | sed "s;$dots;$arg_space;"
+}
+
 for i in `find $DIRS -name '*.py'`; do
-ed $i <<EOF
+    header $i
+    ed $i <<EOF
+g/Copyright (c) 2001.*SCons Foundation/s//__COPYRIGHT__/p
+w
 /^__revision__ = /s/= .*/= "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"/p
-/Copyright (c) 2001.*SCons Foundation.*/s//__COPYRIGHT__/p
+w
+q
+EOF
+done
+
+for i in `find $DIRS -name 'scons.bat'`; do
+    header $i
+    ed $i <<EOF
+g/Copyright (c) 2001.*SCons Foundation/s//__COPYRIGHT__/p
+w
+/^@REM src\/script\/scons.bat/s/@REM .* knight/@REM __FILE__ __REVISION__ __DATE__ __DEVELOPER__/p
+w
+q
+EOF
+done
+
+for i in `find $DIRS -name '__init__.py' -o -name 'scons.py' -o -name 'sconsign.py'`; do
+    header $i
+    ed $i <<EOF
+/^__version__ = /s/= .*/= "__VERSION__"/p
+w
+/^__build__ = /s/= .*/= "__BUILD__"/p
+w
+/^__buildsys__ = /s/= .*/= "__BUILDSYS__"/p
+w
+/^__date__ = /s/= .*/= "__DATE__"/p
+w
+/^__developer__ = /s/= .*/= "__DEVELOPER__"/p
+w
+q
+EOF
+done
+
+for i in `find $DIRS -name 'setup.py'`; do
+    header $i
+    ed $i <<EOF
+/^ *version = /s/= .*/= "__VERSION__",/p
 w
 q
 EOF
 done
 
 for i in `find $DIRS -name '*.txt'`; do
-ed $i <<EOF
+    header $i
+    ed $i <<EOF
+g/Copyright (c) 2001.*SCons Foundation/s//__COPYRIGHT__/p
+w
 /# [^ ]* 0.96.[CD][0-9]* [0-9\/]* [0-9:]* knight$/s/.*/# __FILE__ __REVISION__ __DATE__ __DEVELOPER__/p
-/Copyright (c) 2001.*SCons Foundation.*/s//__COPYRIGHT__/p
+w
+/Version [0-9][0-9]*\.[0-9][0-9]*/s//Version __VERSION__/p
 w
 q
 EOF
 done
 
 for i in `find $DIRS -name '*.xml'`; do
-ed $i <<EOF
-/^<!-- Copyright (c) 2001.*SCons Foundation -->$/s/.*/<!-- __COPYRIGHT__ -->/p
+    header $i
+    ed $i <<EOF
+g/Copyright (c) 2001.*SCons Foundation/s//__COPYRIGHT__/p
 w
 q
 EOF
index 1f1861e8fb1f4485570d86785ca5a1dc14521a65..45a387a88df4a86a39676c34bd942fff76d4e900 100644 (file)
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2005 The SCons Foundation
+# __COPYRIGHT__
 #
 # Permission is hereby granted, free of charge, to any person obtaining
 # a copy of this software and associated documentation files (the
@@ -21,7 +21,7 @@
 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 #
 
-__revision__ = ""
+__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
 
 import os.path
 import string