summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xlocalpdebuild55
1 files changed, 50 insertions, 5 deletions
diff --git a/localpdebuild b/localpdebuild
index 4842db9..3ff5a4c 100755
--- a/localpdebuild
+++ b/localpdebuild
@@ -1,18 +1,63 @@
#!/bin/sh
-if [ $# -eq 0 ]; then
- echo "Usage: $(basename $0) POOL"
+set -e
+
+function showhelp() {
+ echo "Usage: $(basename $0) POOL [debbuildopts] [-- pbuilderopts]"
echo ""
- echo "Example: $(basename $0) sarge_with_hacks"
+ echo "Example: $(basename $0) sarge_with_hacks -B"
+}
+
+if [ $# -eq 0 ]; then
+ showhelp
exit 1
fi
buildhost=`hostname -s`
-pool=$1
+pool=$1; shift
+
+pbuilderopts=''
+pdebuildopts=''
+debbuildopts=''
+while [ $# -gt 0 ]; do
+ case $1 in
+ -h|--help)
+ showhelp
+ exit 0
+ ;;
+ --)
+ shift
+ break
+ ;;
+ --*)
+ echo "ERROR: Unknown argument \"$1\"!" &>2
+ showhelp
+ exit 1
+ ;;
+ -B)
+ debbuildopts="$debbuildopts $1"
+ pdebuildopts="$pdebuildopts --use-pdebuild-internal"
+ shift
+ ;;
+ -*)
+ debbuildopts="$debbuildopts $1"
+ shift
+ ;;
+ *)
+ echo "ERROR: Unknown argument \"$1\"!" &>2
+ showhelp
+ exit 1
+ ;;
+ esac
+done
+pbuilderopts="$pbuilderopts $@"
pdebuild \
--buildresult $HOME/pub/debian-$buildhost/pbuild-$pool/ \
+ ${debbuildopts:+--debbuildopts $debbuildopts} \
+ $pdebuildopts \
-- \
--basetgz /var/cache/pbuilder/base-$pool.tgz \
--buildplace /var/cache/pbuilder/build-$pool/ \
- --aptcache /var/cache/pbuilder/aptcache-$pool/
+ --aptcache /var/cache/pbuilder/aptcache-$pool/ \
+ $pbuilderopts