diff options
author | Jonas Smedegaard <dr@jones.dk> | 2006-06-22 21:02:15 +0000 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2006-06-22 21:02:15 +0000 |
commit | d4635d1edc4cdc7d28c2728394f9998d04563b6d (patch) | |
tree | 041694fb5aed1d350b3b46ac07c279041160635f /localcowdebuild | |
parent | 9afee29c52f56ea249f9292074d9356c43838268 (diff) |
New wrappers for cowdancer-based pbuilder-based debuild-based packaging.
Diffstat (limited to 'localcowdebuild')
-rwxr-xr-x | localcowdebuild | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/localcowdebuild b/localcowdebuild new file mode 100755 index 0000000..70095f6 --- /dev/null +++ b/localcowdebuild @@ -0,0 +1,62 @@ +#!/bin/sh + +set -e + +function showhelp() { + echo "Usage: $(basename $0) POOL [debbuildopts] [-- pbuilderopts]" + echo "" + echo "Example: $(basename $0) sarge_with_hacks -B" +} + +if [ $# -eq 0 ]; then + showhelp + exit 1 +fi + +pools='' +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 + ;; + -*) + debbuildopts="$debbuildopts $1" + shift + ;; + *) + pools="$pools $1" + shift + ;; + esac +done +pbuilderopts="$pbuilderopts $@" + +for pool in $pools; do + pdebuild \ + --pbuilder cowbuilder \ + --buildresult $HOME/src/pbuild-$pool/ \ + ${debbuildopts:+--debbuildopts $debbuildopts} \ + $pdebuildopts \ + -- \ + --basepath /var/cache/pbuilder/cow-$pool \ + --buildplace /var/cache/pbuilder/build-$pool/cow-$$ \ + --aptcache /var/cache/pbuilder/aptcache-$pool/ \ + --pkgname-logfile \ + $pbuilderopts + +# $pbuilderopts \ +# | tee $HOME/src/pbuild-$pool/buildlog.$$ +done |