From: Markus Lehtonen Date: Thu, 12 Jan 2012 13:36:10 +0000 (+0200) Subject: Add 'packaging-tag' option to config.py X-Git-Tag: release/20120807~80 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=78bda7a68a5c7c83b6ba02f9f6c8dfca1972bc8e;p=tools%2Fgit-buildpackage.git Add 'packaging-tag' option to config.py This is the counterpart of 'debian-tag' (basically identical to that) to not confuse rpm maintainers. --- diff --git a/gbp/config.py b/gbp/config.py index 81e667fa..3d9806da 100644 --- a/gbp/config.py +++ b/gbp/config.py @@ -410,12 +410,15 @@ class GbpOptionParserRpm(GbpOptionParser): 'builder' : '', 'cleaner' : '', 'packaging-dir' : '', + 'packaging-tag' : 'packaging/%(version)s', } ) help = dict(GbpOptionParser.help) help.update( { 'packaging-dir': "subdir where packaging files are stored, default is '%(packaging-dir)s'", + 'packaging-tag': + "format string for packaging tags, rpm counterpart of the 'debian-tag' option, default is '%(packaging-tag)s'", } ) # vim:et:ts=4:sw=4:et:sts=4:ai:set list listchars=tab\:»·,trail\:·: