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