From: Greg Price Date: Sat, 20 Dec 2008 06:58:23 +0000 (-0500) Subject: invirt-build-release: separate distribution, architecture X-Git-Tag: 0.0.11~1 X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-dev.git/commitdiff_plain/40aa5327ab362335d9967d207a1b4ab2d528541c invirt-build-release: separate distribution, architecture svn path=/trunk/packages/invirt-dev/; revision=1861 --- diff --git a/debian/changelog b/debian/changelog index 6766d7f..d750b52 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,8 +3,9 @@ invirt-dev (0.0.11) unstable; urgency=low * add i386 to apt repo * extend invirt-build-release to handle amd64 + i386 * invirt-build-release: clean up some shell and some perl + * invirt-build-release: separate distribution, architecture - -- Greg Price Fri, 19 Dec 2008 23:37:02 -0500 + -- Greg Price Sat, 20 Dec 2008 01:57:52 -0500 invirt-dev (0.0.10) unstable; urgency=low diff --git a/invirt-build-release b/invirt-build-release index 480cf36..714061e 100755 --- a/invirt-build-release +++ b/invirt-build-release @@ -19,10 +19,10 @@ for package; do eval $(perl -ne 'print if s/^(Architecture): /\1=/' ${Source}_${Version}.dsc) case $Architecture in all) - sbuild -A -d hardy ${Source}_${Version}.dsc;; + sbuild -d hardy --arch-all ${Source}_${Version}.dsc;; any) - sbuild -d hardy-amd64 ${Source}_${Version}.dsc - sbuild -d hardy-i386 ${Source}_${Version}.dsc;; + sbuild -d hardy --arch amd64 ${Source}_${Version}.dsc + sbuild -d hardy --arch i386 ${Source}_${Version}.dsc;; *) echo "invirt-build-release: arch '$Architecture' unimplemented" >&2 exit 1