From ad7fb7807ceaee96521d779993a5e1b28650723f Mon Sep 17 00:00:00 2001 From: Nicolas Vigier Date: Tue, 11 Jan 2011 00:35:59 +0000 Subject: rename repsys to mgarepo, RepSys to MgaRepo, and update docs and examples for Mageia --- RepSys/commands/getspec.py | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 RepSys/commands/getspec.py (limited to 'RepSys/commands/getspec.py') diff --git a/RepSys/commands/getspec.py b/RepSys/commands/getspec.py deleted file mode 100644 index a357ef9..0000000 --- a/RepSys/commands/getspec.py +++ /dev/null @@ -1,38 +0,0 @@ -#!/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 -- cgit v1.2.1