Update version numbers, etc., to 0.02.
authorstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Fri, 14 Dec 2001 20:08:06 +0000 (20:08 +0000)
committerstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Fri, 14 Dec 2001 20:08:06 +0000 (20:08 +0000)
git-svn-id: http://scons.tigris.org/svn/scons/trunk@155 fdb21ef1-2011-0410-befe-b5e4ea1792b1

Construct
HOWTO/change.txt
HOWTO/release.txt
config
debian/changelog
debian/scons.postinst
rpm/scons.spec

index f28d0824ae6c754555e5892b11805c793736988b..f39bcb3eb604edd8c97e52ac5d74a0ab6d602b87 100644 (file)
--- a/Construct
+++ b/Construct
@@ -41,7 +41,7 @@ sub cons::whereis {
     my $file = shift;
     foreach my $dir (split(/$Config{path_sep}/, $ENV{PATH})) {
        $f = File::Spec->catfile($dir, $file);
-       return $f if -x $f;
+       return $f if -x $f && ! -d $f;
     }
     return undef
 }
@@ -85,7 +85,7 @@ $developer = $ARG{developer} || $ENV{USERNAME} || $ENV{LOGNAME} || $ENV{USER};
 
 $revision = $ARG{version};
 chomp($revision = `$aesub '\$version' 2>/dev/null`) if $aesub && ! $revision;
-$revision = '0.01' if ! $revision;
+$revision = '0.02' if ! $revision;
 
 $change = $ARG{change};
 chomp($change = `$aesub '\$change' 2>/dev/null`) if $aesub && ! $change;
index 8080a124ea1ffcdbd3bf257693a1bf1c7dc01b78..9e7d12a6688ecf547a238e03c88697f3f7628d16 100644 (file)
@@ -30,28 +30,28 @@ Handling a change set:
 
     -- Distribute the change to scons-aedist:
 
-               aedist -s -p scons.0.1 {cnum} > scons.0.1.C{cnum}.ae
-               pine -attach scons.0.1.C{cnum}.ae scons-aedist@lists.sourceforge.net
-                       Subject: scons.0.1 - {SUMMARY}
-                       Body:  aegis -l -p scons.0.1 -c {cnum} cd
+               aedist -s -p scons.0.2 {cnum} > scons.0.2.C{cnum}.ae
+               pine -attach scons.0.2.C{cnum}.ae scons-aedist@lists.sourceforge.net
+                       Subject: scons.0.2 - {SUMMARY}
+                       Body:  aegis -l -p scons.0.2 -c {cnum} cd
 
-               rm scons.0.1.C{cnum}.ae
+               rm scons.0.2.C{cnum}.ae
 
        [This will eventually be automated.]
 
     -- Update the aedist baseline on the web site:
 
-               aedist -s -bl -p scons.0.1 > scons.0.1.ae
-               scp scons.0.1.ae stevenknight@scons.sourceforge.net:/home/groups/s/sc/scons/htdocs/scons.0.1.ae
-               rm scons.0.1.ae
+               aedist -s -bl -p scons.0.2 > scons.0.2.ae
+               scp scons.0.2.ae stevenknight@scons.sourceforge.net:/home/groups/s/sc/scons/htdocs/scons.0.2.ae
+               rm scons.0.2.ae
 
        [This will eventually be automated.]
 
     -- Distribute the change to CVS:
 
                export CVS_RSH=ssh
-               ae2cvs -n -aegis -p scons.0.1 -c {cnum} -u ~/SCons/scons
-               ae2cvs -X -aegis -p scons.0.1 -c {cnum} -u ~/SCons/scons
+               ae2cvs -n -aegis -p scons.0.2 -c {cnum} -u ~/SCons/scons
+               ae2cvs -X -aegis -p scons.0.2 -c {cnum} -u ~/SCons/scons
 
         If you need the "ae2cvs" Perl script, you can find a copy
         checked in to the bin/subdirectory.
index 0adc94ea0c9dbcfa7559ae0d2489d25ee9a0e17d..2668499b3aeead705d5b66777748a88f01e7bc74 100644 (file)
@@ -17,6 +17,15 @@ Things to do to release a version of SCons:
 
        START THE NEW BRANCH (need more info)
 
+               aenc -p {newbranch}
+               aedb
+               aecp Construct debian/changelog rpm/scons.spec
+               [optional] aecp HOWTO/change.txt debian/scons.postinst
+               aeb
+               aet -reg
+               aede
+               etc.
+
 
 
        Read through the FAQ for any updates
@@ -27,6 +36,7 @@ Things to do to release a version of SCons:
                announcement on the home page
                new packages in the download page
                checkin new scons-doc.tar.gz on the web site
+               update the CHANGES.txt file
 
 
 
diff --git a/config b/config
index 9ecf0137f7957b7626870f9a0f76529bd0b7f270..44e99ce4c7658a3b7cefb150cc3830f704891e0a 100644 (file)
--- a/config
+++ b/config
@@ -242,7 +242,7 @@ diff_command =
  * written to conform to Perl conventions) and Aegis' expectations.
  * See the comments in the test.pl script itself for details.
  */
-test_command = "python runtest.py -b aegis -q -v ${VERsion} ${File_Name}";
+test_command = "python ${Source runtest.py} -b aegis -q -v ${VERsion} ${File_Name}";
 
 new_test_filename = "test/CHANGETHIS.py";
 
index 1570b26904071a7a083ad3795305460b58cf0315..cd638a1978107d83e3aede7e54b337a50a83d419 100644 (file)
@@ -1,3 +1,10 @@
+scons (0.02-1) unstable; urgency=low
+
+  * Second Release.
+
+ -- Steven Knight <knight@baldmt.com>  Fri, 14 Dec 2001 13:23:03 -0600
+
+
 scons (0.01-1) unstable; urgency=low
 
   * Initial Release.
index 34d87abcf8df48125c008470117d4f09d7895bc8..8b36fd35d30e7b5c884c9eb445a9bb51412fbd3c 100644 (file)
@@ -6,7 +6,7 @@
 #
 
 PACKAGE=scons
-DIRLIST="/usr/lib/scons-0.01"
+DIRLIST="/usr/lib/scons-0.02"
 
 case "$1" in
     configure|abort-upgrade|abort-remove|abort-deconfigure)
index 5c760c620664a5d2f6e7756cb259ec123cad80d9..c8feb9c7f8eb2a62205b5324e0546e8a2b248b39 100644 (file)
@@ -1,5 +1,5 @@
 %define name scons
-%define version 0.01
+%define version 0.02
 %define release 1
 
 Summary: an Open Source software construction tool