From abfafd0f7843c188583e5c607168320ba2cfbc8b Mon Sep 17 00:00:00 2001 From: Papoteur Date: Tue, 16 Feb 2016 22:11:34 +0100 Subject: add command obsolete as new file obsolete.py --- MgaRepo/commands/obsolete.py | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 MgaRepo/commands/obsolete.py (limited to 'MgaRepo/commands') diff --git a/MgaRepo/commands/obsolete.py b/MgaRepo/commands/obsolete.py new file mode 100644 index 0000000..d155f39 --- /dev/null +++ b/MgaRepo/commands/obsolete.py @@ -0,0 +1,38 @@ +#!/usr/bin/python +# +# This program will try to patch a spec file from a given package url. +# +from MgaRepo import Error +from MgaRepo.rpmutil import obsolete +from MgaRepo.command import * +import getopt +import sys + +HELP = """\ +Usage: mgarepo obsolete [Options] PKG + +It will move the package to obsolete. + +Options: + -d The distribution branch to checkout from + -m LOG Use LOG as log message + -h Show this message + +Examples: + mgarepo obsoletes foo +""" + +def parse_options(): + parser = OptionParser(help=HELP) + parser.add_option("-m", dest="log", default=None) + parser.add_option("--distribution", "-d", dest="distro", default=None) + opts, args = parser.parse_args() + if len(args) != 1: + raise Error("invalid arguments") + opts.pkgdirurl = args[0] + return opts + +def main(): + do_command(parse_options, obsolete) + +# vim:et:ts=4:sw=4 -- cgit v1.2.1