From: Holger Levsen Date: Mon, 19 Sep 2011 15:20:59 +0000 (+0200) Subject: no source packages anymore X-Git-Url: https://git.uhu-banane.org/?a=commitdiff_plain;h=7be2235ddc86388428d6add91e2da6fdac33fdd8;p=profitbricks%2Fjenkins-build-scripts.git no source packages anymore --- diff --git a/lib/git_buildpackage.py b/lib/git_buildpackage.py index bba3c97..01adfb9 100644 --- a/lib/git_buildpackage.py +++ b/lib/git_buildpackage.py @@ -29,8 +29,18 @@ class GitBuildPackage(object): BIN_GIT_BUILDPACKAGE, '--git-upstream-branch=%s' %(self.upstream_branch), '--git-debian-branch=%s' %(self.debian_branch), - '--git-ignore-new' + '--git-ignore-new', + '-b' # don't build source packages... see directly below ] + # if we would build orig.tar.gz we would need to be able to access + # them later, which we probably could achieve with using pristine-tar + # and storing that in the git repo - but this has the downside that + # the jenkins build job would need to push this back into the git repo + # (so this makes things complicated) and then still, we could not + # gurantee that this orig.tar.gz actually reflects the git repo at + # that point. + # So in summary, it would be expensive and buys as nothing, as we + # can always generate the source from said git repos... env = os.environ env['DIST'] = self.dist