summaryrefslogtreecommitdiffstats
path: root/Tools/portbuild/scripts/makeduds
blob: aaef16e3664babb961ce96154ce8f394f9f93b27 (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
36
37
38
39
40
#!/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
index=${PORTSDIR}/${INDEXFILE}

unset DISPLAY

export PACKAGE_BUILDING=1
cd ${PORTSDIR}
make -j${DUDSJOBS} ignorelist ECHO_MSG=true > ${duds} || exit 1
sort ${duds} > ${duds}.tmp
mv -f ${duds}.tmp ${duds}

cp ${duds} ${duds}.orig
grep -Ff ${duds}.orig ${index} | cut -f 1 -d \| > ${duds}.full 
OpenPOWER on IntegriCloud