From: Geoffrey Thomas Date: Sat, 9 Jul 2011 02:07:37 +0000 (-0400) Subject: Call sbuild with --apt-update and --apt-distupgrade X-Git-Tag: 0.1.9^0 X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-dev.git/commitdiff_plain/44a65c386e69be7b78cf3343c2bbb2a09acd459a Call sbuild with --apt-update and --apt-distupgrade --- diff --git a/debian/changelog b/debian/changelog index df32b55..cf0d736 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +invirt-dev (0.1.9) unstable; urgency=low + + * Call sbuild with --apt-update and --apt-distupgrade + + -- Geoffrey Thomas Fri, 08 Jul 2011 22:06:58 -0400 + invirt-dev (0.1.8.1) unstable; urgency=low * Further improve reporting scripts diff --git a/invirtibuilder b/invirtibuilder index b6d4eb8..c8d083f 100755 --- a/invirtibuilder +++ b/invirtibuilder @@ -126,7 +126,8 @@ def aptCopy(package, commit, dst_pocket, src_pocket): def sbuild(package, ref, arch, workdir, arch_all=False): """Build a package for a particular architecture.""" - args = ['sbuild', '-v', '-d', DISTRIBUTION, '--arch', arch] + args = ['sbuild', '-v', '-d', DISTRIBUTION, '--arch', arch, + '--apt-update', '--apt-distupgrade'] if arch_all: args.append('-A') args.append(getDscName(package, ref))