From: Guido Günther Date: Sat, 24 Aug 2013 09:10:20 +0000 (+0200) Subject: pq: exclude patches from Debian packaging branch X-Git-Tag: debian/0.6.3~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f793ed0e733cc7ed910bca6ac1e1ef8b59bc090b;p=tools%2Fgit-buildpackage.git pq: exclude patches from Debian packaging branch When regenerating the patch queue including patches from the Debian branch is not useful. Addresses parts of See #680705. Thanks: Benjamin Cama for the detailed analysis --- diff --git a/gbp/scripts/pq.py b/gbp/scripts/pq.py index 1ca9ca5c..78f061a0 100755 --- a/gbp/scripts/pq.py +++ b/gbp/scripts/pq.py @@ -54,8 +54,10 @@ def export_patches(repo, branch, options): else: gbp.log.debug("%s does not exist." % PATCH_DIR) - patches = repo.format_patches(branch, pq_branch, PATCH_DIR, - signature=False) + patches = repo.format_patches(branch, + pq_branch, PATCH_DIR, + signature=False, + symmetric=False) if patches: f = file(SERIES_FILE, 'w') gbp.log.info("Regenerating patch queue in '%s'." % PATCH_DIR)