diff options
author | Per Øyvind Karlsen <proyvind@moondrake.org> | 2016-06-03 18:10:43 +0200 |
---|---|---|
committer | Per Øyvind Karlsen <proyvind@moondrake.org> | 2016-06-03 18:10:43 +0200 |
commit | 06c158c149c5d3e44634135632812d3a65dd255e (patch) | |
tree | 6dd3124ce887aaf724b385b33443956ee24a2844 /MgaRepo/commands | |
parent | 3dac8f9086fdde5a9d5380c454bb9cef85451db6 (diff) | |
download | mgarepo-06c158c149c5d3e44634135632812d3a65dd255e.tar mgarepo-06c158c149c5d3e44634135632812d3a65dd255e.tar.gz mgarepo-06c158c149c5d3e44634135632812d3a65dd255e.tar.bz2 mgarepo-06c158c149c5d3e44634135632812d3a65dd255e.tar.xz mgarepo-06c158c149c5d3e44634135632812d3a65dd255e.zip |
implement support for applying %changelog with 'mgarepo buildrpm -l'
Diffstat (limited to 'MgaRepo/commands')
-rw-r--r-- | MgaRepo/commands/buildrpm.py | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/MgaRepo/commands/buildrpm.py b/MgaRepo/commands/buildrpm.py index 79653e8..337ae2a 100644 --- a/MgaRepo/commands/buildrpm.py +++ b/MgaRepo/commands/buildrpm.py @@ -12,11 +12,13 @@ Builds the binary RPM(s) (.rpm) file(s) of a given package. Options: -bX Build stage option, where X is stage, default is -bb -I Don't automatically try install missing build dependencies - -l Disable rpmlint check of packages built + -L Disable rpmlint check of packages built -P USER Define the RPM packager information to USER -d Use DNF -q Quiet build output -s Jump to specific build stage (--short-circuit) + -l Use subversion log to build rpm %changelog + -F Do not use full name & email for packagers in %changelog """ @@ -24,11 +26,14 @@ def parse_options(): parser = OptionParser(HELP) parser.add_option("-b", dest="build_cmd", default="a") parser.add_option("-I", dest="installdeps", action="store_false", default=True) - parser.add_option("-l", dest="rpmlint", action="store_false", default=True) + parser.add_option("-L", dest="rpmlint", action="store_false", default=True) parser.add_option("-P", dest="packager", default="") parser.add_option("-d", "--dnf", dest="use_dnf", action="store_true", default=False) parser.add_option("-q", "--quiet", dest="verbose", action="store_false", default=True) parser.add_option("-s", "--short-circuit", dest="short_circuit", action="store_true", default=False) + parser.add_option("-l", dest="svnlog", action="store_true", default=False) + parser.add_option("-F", dest="fullnames", default=True, + action="store_false") opts, args = parser.parse_args() return opts |