All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
3 # mbuild - automate builds with sbuild and dinstall the result
5 # Copyright (c) 2008 martin f. krafft <madduck@debian.org>
6 # Released under the terms of the Artistic Licence 2.0.
12 BUILDDIR="$(mktemp -dt $ME.XXXXXXXX)"
13 trap "cd / && rm -R '$BUILDDIR'" 0
15 BUNDLE_DIR="${TMPDIR:-/tmp}"
18 echo "Copying files destined for $1 back to $TARGET_DIR..."
19 dcmd cp -v "$2" "$TARGET_DIR"
24 MBUILDRCS="/etc/mbuild/rc $HOME/.mbuildrc $HOME/.mbuild/rc"
25 for rc in $MBUILDRCS; do
26 [ -r "$rc" ] && . "$rc"
29 if [ -z "$KEYID" ]; then
30 echo "E: \$KEYID is not defined in rc file." >&2
34 DEB_BUILD_ARCH="$(dpkg-architecture -qDEB_BUILD_ARCH)"
38 echo "$ME -- wrapper for sbuild"
39 echo "Copyright © martin f. krafft <madduck@debian.org>"
40 echo "Released under the terms of the Artistic Licence 2.0"
47 echo "Usage: $ME [options] [sbuild_options] file_source.changes"
49 echo "Valid options are:"
50 cat <<-_eof | column -s\& -t
51 --dist & specify the target distribution (default: sid)
52 --arch & specify the target architecture (default: $DEB_BUILD_ARCH)
53 -h|--help & show this output.
54 -V|--version & show version information.
64 -h|--help) usage; exit 0;;
65 -V|--version) about; exit 0;;
66 --arch=*) arch="${opt#--arch=}";;
67 --dist=*) dist="${opt#--dist=}";;
68 -sa) sbuild_args="${sbuild_args:+$sbuild_args }--force-orig-source";;
69 --*) sbuild_args="${sbuild_args:+$sbuild_args }$opt";;
71 if [ -z "$schangesfile" ]; then
72 if [ -f "$opt" ] && [ -r "$opt" ]; then
75 echo "E: file does not exist: $opt" >&2
79 echo "E: cannot pass more than one source changes file: $opt" >&2
84 echo "E: unknown option: $opt" >&1
90 if [ -z "$schangesfile" ]; then
95 [ -z "$arch" ] && arch="$DEB_BUILD_ARCH"
96 [ -z "$dist" ] && dist="unstable"
98 schangesfile_basename="${schangesfile##*/}"
99 packagenameversion="${schangesfile_basename%_*}"
101 case "$schangesfile" in
102 */*) cd "${schangesfile%/*}";;
105 dcmd cp "${schangesfile##*/}" "$BUILDDIR"
106 schangesfile="$schangesfile_basename"
110 sbuild $sbuild_args --arch="$arch" --arch-all --dist="$dist" --keyid=$KEYID \
111 "$packagenameversion".dsc
113 changesfile="${packagenameversion}_${arch}.changes"
115 dinstall "$dist" "$schangesfile"
116 dinstall "$dist" "$changesfile"
118 mv "$changesfile" "${changesfile}.binonly"
119 mergechanges "$schangesfile" "${changesfile}.binonly" > "$changesfile"
120 rm "${changesfile}.binonly" "$schangesfile"
122 DATESTR="$(date +%Y.%m.%d.%H%M%S)"
123 BUILD_PREFIX="${packagenameversion}_${arch}.${DATESTR}"
125 mv current "${BUILD_PREFIX}".buildlog
128 bundle="${BUNDLE_DIR}/${BUILD_PREFIX}".bundle.tar
134 echo "Bundle available at $bundle ."