diff options
author | peter <peter@FreeBSD.org> | 2000-02-13 04:04:29 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2000-02-13 04:04:29 +0000 |
commit | ce6cf7cfc2dbef573a1771a08f4ed3c3da5c9c32 (patch) | |
tree | 6ecdfdff9697d2b5e06e4ee69d60cd98802f595b /CVSROOT | |
parent | 3116f2842201e6784782aef05dec128a55e65944 (diff) | |
download | FreeBSD-ports-ce6cf7cfc2dbef573a1771a08f4ed3c3da5c9c32.zip FreeBSD-ports-ce6cf7cfc2dbef573a1771a08f4ed3c3da5c9c32.tar.gz |
Update the commit scripts to understand 'Approved by:' and kill cvsedit.
Diffstat (limited to 'CVSROOT')
-rw-r--r-- | CVSROOT/checkoutlist | 1 | ||||
-rw-r--r-- | CVSROOT/editinfo | 2 | ||||
-rwxr-xr-x | CVSROOT/log_accum.pl | 3 | ||||
-rwxr-xr-x | CVSROOT/logcheck | 5 | ||||
-rw-r--r-- | CVSROOT/rcstemplate | 2 |
5 files changed, 7 insertions, 6 deletions
diff --git a/CVSROOT/checkoutlist b/CVSROOT/checkoutlist index 97b0619..5b9d9e6 100644 --- a/CVSROOT/checkoutlist +++ b/CVSROOT/checkoutlist @@ -20,7 +20,6 @@ avail commit_prep.pl commitcheck cvs_acls.pl -cvsedit cvswrappers exclude log_accum.pl diff --git a/CVSROOT/editinfo b/CVSROOT/editinfo index bf11de4..9e12a3a 100644 --- a/CVSROOT/editinfo +++ b/CVSROOT/editinfo @@ -30,5 +30,3 @@ # Note there is no "edit" example script currently available.... # #DEFAULT $CVSROOT/CVSROOT/edit "%s" -# peter's edit post-processor.. (see verifymsg/logcheck now) -#DEFAULT $CVSROOT/CVSROOT/cvsedit diff --git a/CVSROOT/log_accum.pl b/CVSROOT/log_accum.pl index 8b0bccc..80dd20a 100755 --- a/CVSROOT/log_accum.pl +++ b/CVSROOT/log_accum.pl @@ -530,7 +530,8 @@ while (<STDIN>) { if (/^PR:$/i || /^Reviewed by:$/i || /^Submitted by:$/i || - /^Obtained from:$/i) { + /^Obtained from:$/i || + /^Approved by:$/i) { next; } push (@log_lines, $_); diff --git a/CVSROOT/logcheck b/CVSROOT/logcheck index e9e7083..fdec5db 100755 --- a/CVSROOT/logcheck +++ b/CVSROOT/logcheck @@ -18,10 +18,10 @@ $filename = $ARGV[0]; $tmpfile = $filename . "tmp"; open(IN, "< $filename") || - die "cvsedit: Cannot open for reading: $filename: $!\n"; + die "logcheck: Cannot open for reading: $filename: $!\n"; open(OUT, "> $tmpfile") || - die "cvsedit: Cannot open for writing: $tmpfile: $!\n"; + die "logcheck: Cannot open for writing: $tmpfile: $!\n"; # In-place edit the result of the user's edit on the file. $blank = 0; # true if the last line was blank @@ -46,6 +46,7 @@ while(<IN>) { if (/^Reviewed by:$/i || /^Submitted by:$/i || /^Obtained from:$/i || + /^Approved by:$/i || /^PR:$/i) { next; } diff --git a/CVSROOT/rcstemplate b/CVSROOT/rcstemplate index b71a483..8c68bf4 100644 --- a/CVSROOT/rcstemplate +++ b/CVSROOT/rcstemplate @@ -2,9 +2,11 @@ PR: Submitted by: Reviewed by: +Approved by: Obtained from: CVS: ---------------------------------------------------------------------- CVS: PR: Fill this in if a GNATS PR is affected by the change. CVS: Submitted by: Fill this in if someone else sent in the change. CVS: Reviewed by: Fill this in if someone else reviewed your modification. +CVS: Approved by: Fill this in if you needed approval for this commit. CVS: Obtained from: Fill this in if the change is from third party software. |