blob: 12c479fd3e64f24b1e8df78d15c889fab0959d6e (
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
|
#!/bin/bash
set -e -o pipefail
# print the current slave hostname
hostname
for hashfile in bootstrap.sha bootstrap-functions.sha
do
echo -n "${hashfile}: "
if [ -f /etc/${hashfile} ];then
cat /etc/${hashfile}
else
echo "Cannot find ${hashfile}"
fi
done
echo "sha1sum of script [${0}]: " $(sha1sum $0)
MISSING_PKGS=$(dpkg-checkbuilddeps |& perl -pe 's/^.+://g; s/\(.*?\)//g; s/\|\s+\S+//g;')
MISSING_PKGS="devscripts pristine-tar ${MISSING_PKGS}"
if [ -n "${MISSING_PKGS}" ]
then
echo "*******************************************************************"
echo "* ADD MISSING DEPENDENCIES TO RESPIN SCRIPT:"
echo "${MISSING_PKGS}"
echo "*******************************************************************"
fi
sudo apt-get update
sudo apt-get install -y ${MISSING_PKGS}
pkg_version=$(dpkg-parsechangelog --show-field Version)
orig_version=$(echo ${pkg_version} | perl -pe 's/-.+$//; s/~/-/') # remove debian suffix, replace ~rc1 with -rc1, for instance
orig_tarball=$(git ls-tree remotes/origin/pristine-tar | perl -ne "print /(dpdk_${orig_version}.orig.+).id/")
pristine-tar checkout ${orig_tarball}
mv ${orig_tarball} ..
debuild -uc -us -j4
# No fail on lintian errors
set +e
lintian --info --no-tag-display-limit "dpdk_${pkg_version}_source.changes"
echo "*******************************************************************"
echo "* DEB_DPDK BUILD SUCCESSFULLY COMPLETED"
echo "*******************************************************************"
|