From 7be2235ddc86388428d6add91e2da6fdac33fdd8 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Mon, 19 Sep 2011 17:20:59 +0200 Subject: [PATCH] no source packages anymore --- lib/git_buildpackage.py | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) 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 -- 2.39.5