diff options
author | Per Øyvind Karlsen <proyvind@moondrake.org> | 2016-05-30 18:17:05 +0200 |
---|---|---|
committer | Per Øyvind Karlsen <proyvind@moondrake.org> | 2016-05-30 18:17:05 +0200 |
commit | 512584f8b2cdedb5076e3981cd4cbd7248594beb (patch) | |
tree | 2ad5badcf9ab168a18a8f6e86b808aa1f1aad809 /MgaRepo/commands | |
parent | 681e44a9c70a3fe704d81bc33c563243c9c8ad63 (diff) | |
download | mgarepo-512584f8b2cdedb5076e3981cd4cbd7248594beb.tar mgarepo-512584f8b2cdedb5076e3981cd4cbd7248594beb.tar.gz mgarepo-512584f8b2cdedb5076e3981cd4cbd7248594beb.tar.bz2 mgarepo-512584f8b2cdedb5076e3981cd4cbd7248594beb.tar.xz mgarepo-512584f8b2cdedb5076e3981cd4cbd7248594beb.zip |
add --short-circuit support with buildrpm -s
Diffstat (limited to 'MgaRepo/commands')
-rw-r--r-- | MgaRepo/commands/buildrpm.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/MgaRepo/commands/buildrpm.py b/MgaRepo/commands/buildrpm.py index fe4adc9..76fa41e 100644 --- a/MgaRepo/commands/buildrpm.py +++ b/MgaRepo/commands/buildrpm.py @@ -13,16 +13,18 @@ Options: -bX Build stage option, where X is stage, default is -bb -l Disable rpmlint check of packages built -P USER Define the RPM packager information to USER - -q Silent build output + -q Quiet build output + -s Jump to specific build stage (--short-circuit) """ def parse_options(): parser = OptionParser(HELP) parser.add_option("-b", dest="build_cmd", default="a") + parser.add_option("-l", dest="rpmlint", action="store_false", default=True) parser.add_option("-P", dest="packager", default="") parser.add_option("-q", "--quiet", dest="verbose", action="store_false", default=True) - parser.add_option("-l", dest="rpmlint", action="store_false", default=True) + parser.add_option("-s", "--short-circuit", dest="short_circuit", action="store_true", default=False) opts, args = parser.parse_args() return opts |