diff options
author | kris <kris@FreeBSD.org> | 2007-11-04 22:28:25 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2007-11-04 22:28:25 +0800 |
commit | 2508a434076bb5ea9b4808b251492120d5855e9d (patch) | |
tree | 3eb717cb850e2f4aa50c7442de3b1e3825a48a1a /Tools | |
parent | 32a025e3b7328c0e705ce4745637c37f44f3c805 (diff) | |
download | freebsd-ports-gnome-2508a434076bb5ea9b4808b251492120d5855e9d.tar.gz freebsd-ports-gnome-2508a434076bb5ea9b4808b251492120d5855e9d.tar.zst freebsd-ports-gnome-2508a434076bb5ea9b4808b251492120d5855e9d.zip |
Add support for 7-exp and 8 branches
Approved by: portmgr (self)
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/portbuild/scripts/dologs | 4 | ||||
-rwxr-xr-x | Tools/portbuild/scripts/dopackages | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Tools/portbuild/scripts/dologs b/Tools/portbuild/scripts/dologs index 5e2125f0bb91..f7d6ca61cbbd 100755 --- a/Tools/portbuild/scripts/dologs +++ b/Tools/portbuild/scripts/dologs @@ -9,11 +9,11 @@ home=${pb}/errorlogs scripts=${pb}/scripts for ver in latest full; do - for num in 5 5-exp 6 6-exp 6-exp2 7; do + for num in 5 5-exp 6 6-exp 6-exp2 7 7-exp 8; do cd $home/$arch-$num-$ver && ${scripts}/processlogs ${arch} cd ${pb}/${arch}/${num} && ${scripts}/processfail ${arch} ${num} done - for num in 5 5-exp 6 6-exp 6-exp2 7; do + for num in 5 5-exp 6 6-exp 6-exp2 7 7-exp 8; do cd $home/$arch-$num-$ver-logs && ${scripts}/processlogs2 done # for num in 5 6 6-exp 7; do diff --git a/Tools/portbuild/scripts/dopackages b/Tools/portbuild/scripts/dopackages index 6be5ec1c7a78..f6f152ec4d3a 100755 --- a/Tools/portbuild/scripts/dopackages +++ b/Tools/portbuild/scripts/dopackages @@ -253,7 +253,7 @@ fi branch=$1 date=$2 -if [ "x$branch" != x5 -a "x$branch" != x5-exp -a "x$branch" != x6 -a "x$branch" != x6-exp -a "x$branch" != "x6-exp2" -a "x$branch" != x7 ]; then +if [ "x$branch" != x5 -a "x$branch" != x5-exp -a "x$branch" != x6 -a "x$branch" != x6-exp -a "x$branch" != "x6-exp2" -a "x$branch" != x7 -a "x$branch" != x7-exp -a "x$branch" != x8 ]; then usage fi |