]> git.proxmox.com Git - debcargo-conf.git/blame - build.sh
new upstream release of fd-find
[debcargo-conf.git] / build.sh
CommitLineData
987288b3 1#!/bin/bash
1057693c
XL
2set -e
3
4abort() { local x=$1; shift; for i in "$@"; do echo >&2 "$0: abort: $i"; done; exit "$x"; }
5
6if [ "$(basename "$PWD")" != "build" ]; then
7 abort 1 "This script is only meant to be run from the build/ directory."
8fi
9
10if [ -n "$DEBCARGO" ]; then
11 true
12elif which debcargo >/dev/null; then
13 DEBCARGO=$(which debcargo)
14elif [ -f "$HOME/.cargo/bin/debcargo" ]; then
15 DEBCARGO="$HOME/.cargo/bin/debcargo"
16else
17 abort 1 "debcargo not found, run \`cargo install debcargo\` or set DEBCARGO to point to it"
18fi
19
20CRATE="$1"
21VER="$2"
987288b3
XL
22if test -z "$VER" -o -f "$VER"; then
23 VER=""
24 shift
25else
26 shift 2
27fi
1057693c
XL
28DISTRIBUTION="${DISTRIBUTION:-unstable}"
29
30PKGNAME=$($DEBCARGO deb-src-name "$CRATE" $VER || abort 1 "couldn't find crate $CRATE")
31DEBVER=$(dpkg-parsechangelog -l $PKGNAME/debian/changelog -SVersion)
32DEBSRC=$(dpkg-parsechangelog -l $PKGNAME/debian/changelog -SSource)
33DEBDIST=$(dpkg-parsechangelog -l $PKGNAME/debian/changelog -SDistribution)
34DEB_HOST_ARCH=$(dpkg-architecture -q DEB_HOST_ARCH)
35if [ -z "$CHROOT" ] && schroot -i -c "debcargo-unstable-${DEB_HOST_ARCH}-sbuild" >/dev/null 2>&1; then
36 CHROOT="debcargo-unstable-${DEB_HOST_ARCH}-sbuild"
37fi
38
39shouldbuild() {
40 local dst="$1"
41 local src="$2"
42 test ! -e "$dst" -o "$src" -nt "$dst"
43}
44
45if shouldbuild ${DEBSRC}_${DEBVER}.dsc "$PKGNAME/debian/changelog" ]; then
46 ( cd "$PKGNAME" && dpkg-buildpackage -d -S --no-sign )
2f1d8dc5
XL
47 if [ "$REUSE_EXISTING_ORIG_TARBALL" = 1 ]; then
48 UPSVER="${DEBVER%-*}"
49 mv "${DEBSRC}_${UPSVER}.orig.tar.gz" "${DEBSRC}_${UPSVER}.orig.tar.gz.new"
50 apt-get -t unstable source "${DEBSRC}" # "=${DEBVER}"
51 # check that old tarball contains same contents as new tarball
52 diff -q <(zcat "${DEBSRC}_${UPSVER}.orig.tar.gz.new") <(zcat "${DEBSRC}_${UPSVER}.orig.tar.gz")
53 ( cd "$PKGNAME" && dpkg-buildpackage -d -S --no-sign )
54 fi
1057693c
XL
55 # sign if not UNRELEASED
56 if echo "$DEBDIST" | grep -qv UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; then
57 debsign ${DEBSRC}_${DEBVER}_source.changes
58 fi
59fi
60
61check_build_deps() {
62 mkdir -p dpkg-dummy
63 if shouldbuild dpkg-dummy/status /var/cache/apt/pkgcache.bin; then
64 # pretend dpkg status file that marks all packages as installed
65 # this is because dpkg-checkbuilddeps only works on installed pkgs
60864af1 66 apt-cache dumpavail -o APT::Default-Release=unstable | \
1057693c
XL
67 sed -e 's/Package: .*/\0\nStatus: install ok installed/g' > dpkg-dummy/status
68 fi
c7386c93 69 ( cd "$PKGNAME" && dpkg-checkbuilddeps --admindir=../dpkg-dummy )
1057693c
XL
70}
71
72if ! check_build_deps; then
581335d2
XL
73 if [ "$IGNORE_MISSING_BUILD_DEPS" != 1 ]; then
74 abort 1 "Missing build-dependencies, but maybe try '{apt,cargo} update'"
75 fi
1057693c
XL
76fi
77
78if [ "$SOURCEONLY" = 1 ]; then
79 exit
80fi
81
987288b3
XL
82sbuild --no-source --arch-any --arch-all \
83 ${CHROOT:+-c $CHROOT} \
84 ${DISTRIBUTION:+-d $DISTRIBUTION} \
85 ${@/#/--extra-package=} \
86 ${DEBSRC}_${DEBVER}.dsc
1057693c
XL
87changestool ${DEBSRC}_${DEBVER}_${DEB_HOST_ARCH}.changes adddsc ${DEBSRC}_${DEBVER}.dsc
88
89# sign if not UNRELEASED
90if echo "$DEBDIST" | grep -qv UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; then
91 debsign ${DEBSIGN_KEYID:+-k $DEBSIGN_KEYID }--no-re-sign ${DEBSRC}_${DEBVER}_${DEB_HOST_ARCH}.changes
92fi