blob: d5c4b614c2c36cfd62d1d4c29eeac9dbbb4fddb9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#!/bin/sh
# usage: $0 arch branch
# configurable variables
pb=/var/portbuild
arch=$1
shift
. ${pb}/${arch}/portbuild.conf
. ${pb}/scripts/buildenv
# -j# to make duds
DUDSJOBS=4
usage () {
echo "usage: makeduds branch"
exit 1
}
if [ $# != 1 ]; then
usage
fi
branch=$1
buildenv ${pb} ${arch} ${branch}
duds=${pb}/${arch}/${branch}/duds
unset DISPLAY
cd ${PORTSDIR}
make -j${DUDSJOBS} ignorelist ECHO_MSG=true > ${duds} || exit 1
sort ${duds} > ${duds}.tmp
mv -f ${duds}.tmp ${duds}
|