blob: 3860e9784738e1c30ddd34edba42ef51e4b96a31 (
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
|
#!/bin/bash
# Copyright 2012 Holger Levsen <holger@layer-acht.org>
# released under the GPLv=2
#
# default settings
#
#set -x
set -e
export LC_ALL=C
export MIRROR=http://ftp.de.debian.org/debian
export http_proxy="http://localhost:3128"
export
init_workspace() {
#
# clean
#
cd ..
rm -fv *.deb *.udeb *.dsc *_*.build *_*.changes *_*.tar.gz *_*.tar.bz2 *_*.tar.xz
cd workspace
#
# git clone and pull is done by jenkins job
#
git config -l
git status
}
pdebuild_package() {
#
# check if we need to do anything
#
if [ ! -f debian/control ] ; then
# the Warning: will make the build end in status "unstable" but not "failed"
echo "Warning: A source package without debian/control, so no build will be tried."
return
fi
ARCH=$(dpkg --print-architecture)
EGREP_PATTERN="( all| any| $ARCH)"
if [ ! $(grep "Architecture:" debian/control | egrep "$EGREP_PATTERN" | wc -l ) -gt 0 ] ; then
echo "This package is not to be supposed to be build on $ARCH:"
grep "Architecture:" debian/control
return
fi
#
# prepare build
#
if [ ! -f /var/cache/pbuilder/base.tgz ] ; then
sudo pbuilder --create
else
sudo pbuilder --update
fi
#
# 3.0 quilt is not happy without an upstream tarball
#
if [ "$(cat debian/source/format)" = "3.0 (quilt)" ] ; then
uscan --download-current-version
fi
#
#
# build
#
NUM_CPU=$(cat /proc/cpuinfo |grep ^processor|wc -l)
pdebuild --use-pdebuild-internal --debbuildopts "-j$NUM_CPU"
}
init_workspace
#
# if $1 is not given, build the package normally,
# else...
#
if [ "$1" = "" ] ; then
pdebuild_package
else
echo do something else ; exit 1
fi
|