aboutsummaryrefslogtreecommitdiffstats
path: root/MgaRepo/commands/patchspec.py
blob: 2fd8da4a3ea97287dcac817191b4561eea45bbad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#
# This program will try to patch a spec file from a given package url.
#
from MgaRepo import Error
from MgaRepo.rpmutil import patch_spec
from MgaRepo.command import *
from MgaRepo.layout import package_url
import getopt
import sys

HELP = """\
Usage: mgarepo patchspec [OPTIONS] REPPKGURL PATCHFILE

It will try to patch a spec file from a given package url.

Options:
    -l LOG  Use LOG as log message
    -h      Show this message

Examples:
    mgarepo patchspec http://repos/svn/cnc/snapshot/foo
"""

def parse_options():
    parser = OptionParser(help=HELP)
    parser.add_option("-l", dest="log", default="")
    opts, args = parser.parse_args()
    if len(args) != 2:
        raise Error("invalid arguments")
    opts.pkgdirurl = package_url(args[0], mirrored=False)
    opts.patchfile = args[1]
    return opts

def main():
    do_command(parse_options, patch_spec)

# vim:et:ts=4:sw=4