summaryrefslogtreecommitdiffstats
path: root/examples/debbisect_buildsrc.sh
diff options
context:
space:
mode:
Diffstat (limited to 'examples/debbisect_buildsrc.sh')
-rwxr-xr-xexamples/debbisect_buildsrc.sh17
1 files changed, 17 insertions, 0 deletions
diff --git a/examples/debbisect_buildsrc.sh b/examples/debbisect_buildsrc.sh
new file mode 100755
index 0000000..df27538
--- /dev/null
+++ b/examples/debbisect_buildsrc.sh
@@ -0,0 +1,17 @@
+#!/bin/sh
+#
+# use this script to build a source package with debbisect like this:
+#
+# $ DEBIAN_BISECT_SRCPKG=mysrc ./debbisect --cache=./cache "two years ago" yesterday /usr/share/doc/devscripts/examples/debbisect_buildsrc.sh
+#
+# copy this script and edit it if you want to customize it
+
+set -eu
+
+mmdebstrap --variant=apt unstable \
+--aptopt='Apt::Key::gpgvcommand "/usr/share/debuerreotype/scripts/.gpgv-ignore-expiration.sh"' \
+--aptopt='Acquire::Check-Valid-Until "false"' \
+--customize-hook='chroot "$1" apt-get --yes build-dep '"$DEBIAN_BISECT_SRCPKG" \
+--customize-hook="chroot \"\$1\" dpkg-query --showformat '\${binary:Package}=\${Version}\n' --show" \
+--customize-hook='chroot "$1" apt-get source --build '"$DEBIAN_BISECT_SRCPKG" \
+/dev/null $DEBIAN_BISECT_MIRROR "deb-src $DEBIAN_BISECT_MIRROR unstable main"