blob: a4e3a204ed815aa591a71e72f50a31b640a9340f (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
#! /bin/bash
export LANG=C
export LC_ALL=C
function copydsc () {
local DSCFILE="$1"
local TARGET="$2"
for FILE in \
"$DSCFILE" \
$(echo "$DSCFILE" | sed 's/^\(.*\)\.dsc$/\1/' ).diff.gz \
$(echo "$DSCFILE" | sed 's/^\(.*\)\.dsc$/\1/').tar.gz \
$(echo "$DSCFILE" | sed 's/\(.*\)-[^-]*\.dsc$/\1/').orig.tar.gz ; do
cp "$FILE" "$TARGET" ;
done
}
function checkbuilddep_internal () {
# fall back to this function if checkbuilddeps is not available.
local ARCH=$(dpkg --print-architecture)
echo " -> Attempting to parse the build-deps by myself"
for INSTALLPKG in $(grep "^Build-Depends\(-Indep\|\): " "$BUILDPLACE/"tmp/buildd/*/debian/control | \
sed 's/^[^:]*: \(.*\)$/\1/' | \
awk 'BEGIN{RS=","} {print $1}'); do
echo " -> Considering $INSTALLPKG"
if echo "$INSTALLPKG" | grep '\[' > /dev/null ; then
# this package has arch-deps.
if echo "$INSTALLPKG" | sed 's/.*\(\[.*\]\)/\1/' | grep "[[ ]!$ARCH[] ]" > /dev/null; then
# don't install this on this arch
continue;
fi
if ! echo "$INSTALLPKG" | sed 's/.*\(\[.*\]\)/\1/' | grep "[[ ]$ARCH[] ]" > /dev/null; then
# this arch is not listed.
continue;
fi
fi
echo " -> Installing $INSTALLPKG"
$CHROOTEXEC usr/bin/apt-get -y install $(echo "$INSTALLPKG" | awk '{print $1}')
done;
for INSTALLPKG in $(grep "^Build-Conflicts\(-Indep\|\): " "$BUILDPLACE/"tmp/buildd/*/debian/control | \
sed 's/^[^:]*: \(.*\)$/\1/' | \
awk 'BEGIN{RS=","} {print $1}'); do
echo " -> Considering $INSTALLPKG"
if echo "$INSTALLPKG" | grep '\[' > /dev/null ; then
# this package has arch-deps.
if echo "$INSTALLPKG" | sed 's/.*\(\[.*\]\)/\1/' | grep "[[ ]!$ARCH[] ]" > /dev/null; then
# don't install this on this arch
continue;
fi
if ! echo "$INSTALLPKG" | sed 's/.*\(\[.*\]\)/\1/' | grep "[[ ]$ARCH[] ]" > /dev/null; then
# this arch is not listed.
continue;
fi
fi
echo " -> Removing $INSTALLPKG"
$CHROOTEXEC usr/bin/apt-get -y remove $(echo "$INSTALLPKG" | awk '{print $1}')
done;
}
function checkbuilddep_using_dpkgcheckbuilddeps () {
for INSTALLPKG in $($CHROOTEXEC bin/sh -c "(cd tmp/buildd/*/; dpkg-checkbuilddeps)" 2>&1 | \
grep "^dpkg-checkbuilddeps: Unmet build dependencies: " | \
sed 's/^[^:]*:[^:]*: \(.*\)$/\1/' | \
awk 'BEGIN{RS=", "} {print $1}'); do
echo " -> Installing $INSTALLPKG"
$CHROOTEXEC usr/bin/apt-get -y install "$INSTALLPKG"
done;
for REMOVEPKG in $($CHROOTEXEC bin/sh -c "(cd tmp/buildd/*/; dpkg-checkbuilddeps)" 2>&1 | \
grep "^dpkg-checkbuilddeps: Build conflicts: " | \
sed 's/^[^:]*:[^:]*: \(.*\)$/\1/' | \
awk 'BEGIN{RS=", "} {print $1}'); do
echo " -> Removing $REMOVEPKG"
$CHROOTEXEC usr/bin/apt-get -y remove "$REMOVEPKG"
done;
}
function checkbuilddep () {
if [ -x "$BUILDPLACE/usr/bin/dpkg-checkbuilddeps" ]; then
checkbuilddep_using_dpkgcheckbuilddeps;
else
checkbuilddep_internal;
fi
}
. /usr/lib/pbuilder/pbuilder-checkparams
PACKAGENAME="$1"
CHROOTEXEC="chroot $BUILDPLACE "
if [ ! -f "$PACKAGENAME" ]; then
echo "Command line parameter [$PACKAGENAME] is not a valid .dsc file name" >&2
exit 1;
fi;
extractbuildplace
echo Copying source file
copydsc "$PACKAGENAME" "$BUILDPLACE/tmp/buildd"
echo Extracting source
$CHROOTEXEC /bin/bash -c "( cd tmp/buildd; /usr/bin/dpkg-source -x $(basename $PACKAGENAME) )"
echo Installing the build-deps
checkbuilddep
echo Building the package
$CHROOTEXEC /bin/sh -c "(cd tmp/buildd/*/; dpkg-buildpackage)"
umountproc
test -n "$BUILDRESULT" && (
mkdir -p "$BUILDRESULT"
if [ -d "$BUILDRESULT" ]; then
cp "$BUILDPLACE"/tmp/buildd/* "$BUILDRESULT"
else
echo "Error: BUILDRESULT=[$BUILDRESULT] and is not a directory." >&2
fi
)
cleanbuildplace
|