mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
- Use ${arch} and rename html files accordingly
- Call processfail to produce 'new port failures' page - Comment out the 'comparelogs' calls for now until I make them aware of architectures that don't have 4.x support
This commit is contained in:
parent
934f3cece0
commit
dda0014b14
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=73925
@ -1,8 +1,9 @@
|
||||
#!/bin/sh
|
||||
|
||||
pb=/var/portbuild
|
||||
arch=$1
|
||||
|
||||
. ${pb}/portbuild.conf
|
||||
. ${pb}/${arch}/portbuild.conf
|
||||
|
||||
home=${pb}/errorlogs
|
||||
scripts=${pb}/scripts
|
||||
@ -11,20 +12,21 @@ lock=$home/lock
|
||||
|
||||
if [ -f $lock ]; then exit; fi
|
||||
|
||||
touch $lock
|
||||
echo ${arch} > $lock
|
||||
|
||||
for ver in latest full; do
|
||||
for num in 4 4-exp 5; do
|
||||
cd $home/$num-$ver && ${scripts}/processlogs
|
||||
cd $home/$arch-$num-$ver && ${scripts}/processlogs ${arch}
|
||||
cd ${pb}/${arch}/${num} && ${scripts}/processfail ${arch} ${num}
|
||||
done
|
||||
for num in 4 4-exp 5; do
|
||||
cd $home/$num-$ver-logs && ${scripts}/processlogs2
|
||||
cd $home/$arch-$num-$ver-logs && ${scripts}/processlogs2
|
||||
done
|
||||
for num in 4-exp 5; do
|
||||
cd $home && ${scripts}/comparelogs $num-$ver 4-$ver
|
||||
cd $home && ${scripts}/comparelogs 4-$ver $num-$ver
|
||||
done
|
||||
cd $home && ${scripts}/bothlogs [45]-$ver
|
||||
# for num in 4-exp 5; do
|
||||
# cd $home && ${scripts}/comparelogs ${arch} $num-$ver 4-$ver
|
||||
# cd $home && ${scripts}/comparelogs ${arch} 4-$ver $num-$ver
|
||||
# done
|
||||
cd $home && ${scripts}/bothlogs ${arch} [45]-$ver
|
||||
done
|
||||
|
||||
rm -f $lock
|
||||
|
Loading…
Reference in New Issue
Block a user