1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-27 00:57:50 +00:00

Support 5-exp builds

This commit is contained in:
Kris Kennaway 2004-12-28 04:28:38 +00:00
parent 89f0921b9b
commit df2f620935
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=125313
4 changed files with 14 additions and 4 deletions

View File

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

View File

@ -15,14 +15,14 @@ if [ -f $lock ]; then exit; fi
echo ${arch} > $lock
for ver in latest full; do
for num in 4 4-exp 5 6; do
for num in 4 4-exp 5 5-exp 6; 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 6; do
for num in 4 4-exp 5 5-exp 6; do
cd $home/$arch-$num-$ver-logs && ${scripts}/processlogs2
done
# for num in 4-exp 5 6; do
# for num in 4-exp 5 5-exp 6; do
# cd $home && ${scripts}/comparelogs ${arch} $num-$ver 4-$ver
# cd $home && ${scripts}/comparelogs ${arch} 4-$ver $num-$ver
# done

View File

@ -38,6 +38,10 @@ case "x$1" in
branch=5
INDEXFILE=INDEX-5
;;
x5-exp)
branch=5-exp
INDEXFILE=INDEX-5
;;
x6)
branch=6
INDEXFILE=INDEX-6

View File

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