diff options
author | erwin <erwin@FreeBSD.org> | 2009-09-15 17:40:44 +0800 |
---|---|---|
committer | erwin <erwin@FreeBSD.org> | 2009-09-15 17:40:44 +0800 |
commit | b3a926244ac595456d249a12c7cbb6527a5d2564 (patch) | |
tree | 056713c14d0615f21e447de991c5eb98b990f05f /CVSROOT/cfg.pm | |
parent | a5279fef43090ff6373b4bfa96ff055f354806c8 (diff) | |
download | freebsd-ports-gnome-b3a926244ac595456d249a12c7cbb6527a5d2564.tar.gz freebsd-ports-gnome-b3a926244ac595456d249a12c7cbb6527a5d2564.tar.zst freebsd-ports-gnome-b3a926244ac595456d249a12c7cbb6527a5d2564.zip |
Add a new tag Feature safe: that needs to be set explicitly to yes
when FEATURE_FREEZE is turned on. This is an alternative to having
explicit approval from "approvers".
Diffstat (limited to 'CVSROOT/cfg.pm')
-rwxr-xr-x | CVSROOT/cfg.pm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/CVSROOT/cfg.pm b/CVSROOT/cfg.pm index e783c624e985..4a4df213483d 100755 --- a/CVSROOT/cfg.pm +++ b/CVSROOT/cfg.pm @@ -20,6 +20,7 @@ use vars qw( $MAILCMD $MAIL_BRANCH_HDR $MAIL_ON_DIR_CREATION $MAIL_TRANSFORM $MINCVSVERSION $MAX_DIFF_SIZE $NO_DOS_LINEBREAKS $PID $PROG_CVS $PROG_MV %TEMPLATE_HEADERS $TMPDIR $TZ $UNEXPAND_RCSID $WARN_HEADERS + $FEATURE_FREEZE ); use POSIX qw(tzset); @@ -39,6 +40,9 @@ $PID = getpgrp(); # Debug level, 0 = off, 1 = on. $DEBUG = 0; +# Feature freeze, 0 = off, 1 = on. +$FEATURE_FREEZE = 0; + # Location of temporary directory. $TMPDIR = "/tmp/"; @@ -113,7 +117,8 @@ $AVAIL_FILE = "$CVSROOT/CVSROOT/avail"; # "Approved by" => '.*', # "PR" => '.*', # "MFC after" => '\d+(\s+(days?|weeks?|months?))?', -# "Security" => '.*' +# "Security" => '.*', +# "Feature safe" => '.*' ); |