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:
parent
89f0921b9b
commit
df2f620935
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=125313
@ -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)
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user