blob: a357ef9bb048a2eba2ab4e8ca45cf233ee8fe03b (
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
38
|
#!/usr/bin/python
from RepSys import Error, disable_mirror
from RepSys.command import *
from RepSys.layout import package_url
from RepSys.rpmutil import get_spec
import getopt
import sys
HELP = """\
Usage: repsys getspec [OPTIONS] REPPKGURL
Prints the .spec file of a given package.
Options:
-t DIR Use DIR as target for spec file (default is ".")
-M Do not use the mirror (use the main repository)
-h Show this message
Examples:
repsys getspec pkgname
repsys getspec svn+ssh://svn.mandriva.com/svn/packages/cooker/pkgname
"""
def parse_options():
parser = OptionParser(help=HELP)
parser.add_option("-t", dest="targetdir", default=".")
parser.add_option("-M", "--no-mirror", action="callback",
callback=disable_mirror)
opts, args = parser.parse_args()
if len(args) != 1:
raise Error, "invalid arguments"
opts.pkgdirurl = package_url(args[0])
return opts
def main():
do_command(parse_options, get_spec)
# vim:et:ts=4:sw=4
|