1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-01 05:45:45 +00:00

Add support for 6-exp builds (FreeBSD 6.x is our new reference platform)

This commit is contained in:
Kris Kennaway 2006-02-15 07:34:02 +00:00
parent fbfaf7b967
commit 4787e51b8b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=156090
4 changed files with 14 additions and 4 deletions

View File

@ -39,6 +39,12 @@ buildenv () {
export PKGSUFFIX=.tbz
export PKGZIPCMD=bzip2
export INDEXFILE=INDEX-6
export X_WINDOW_SYSTEM=xorg
;;
x6-exp)
export PKGSUFFIX=.tbz
export PKGZIPCMD=bzip2
export INDEXFILE=INDEX-6
export X_WINDOW_SYSTEM=xorg
;;
x7)

View File

@ -9,14 +9,14 @@ home=${pb}/errorlogs
scripts=${pb}/scripts
for ver in latest full; do
for num in 4 4-exp 5 5-exp 6 7; do
for num in 4 4-exp 5 5-exp 6 6-exp 7; do
cd $home/$arch-$num-$ver && ${scripts}/processlogs ${arch}
cd ${pb}/${arch}/${num} && ${scripts}/processfail ${arch} ${num}
done
for num in 4 4-exp 5 5-exp 6 7; do
for num in 4 4-exp 5 5-exp 6 6-exp 7; do
cd $home/$arch-$num-$ver-logs && ${scripts}/processlogs2
done
# for num in 4-exp 5 5-exp 6 7; do
# for num in 5 6 6-exp 7; do
# cd $home && ${scripts}/comparelogs ${arch} $num-$ver 4-$ver
# cd $home && ${scripts}/comparelogs ${arch} 4-$ver $num-$ver
# done

View File

@ -251,7 +251,7 @@ fi
branch=$1
date=$2
if [ "x$branch" != x4 -a "x$branch" != x4-exp -a "x$branch" != x5 -a "x$branch" != x5-exp -a "x$branch" != x6 -a "x$branch" != x7 ]; then
if [ "x$branch" != x4 -a "x$branch" != x4-exp -a "x$branch" != x5 -a "x$branch" != x5-exp -a "x$branch" != x6 -a "x$branch" != x6-exp -a "x$branch" != x7 ]; then
usage
fi

View File

@ -46,6 +46,10 @@ case "x$1" in
branch=6
INDEXFILE=INDEX-6
;;
x6-exp)
branch=6-exp
INDEXFILE=INDEX-6
;;
x7)
branch=7
INDEXFILE=INDEX-7