diff options
author | Nicolas Vigier <boklm@mageia.org> | 2011-01-04 16:15:53 +0000 |
---|---|---|
committer | Nicolas Vigier <boklm@mageia.org> | 2011-01-04 16:15:53 +0000 |
commit | 88a840788e82289d417983acf4b49f2c2778296d (patch) | |
tree | 2a73dbdb181d05fc5417dbc75baf6fa0a4c73ccb /RepSys/commands/co.py | |
download | mgarepo-88a840788e82289d417983acf4b49f2c2778296d.tar mgarepo-88a840788e82289d417983acf4b49f2c2778296d.tar.gz mgarepo-88a840788e82289d417983acf4b49f2c2778296d.tar.bz2 mgarepo-88a840788e82289d417983acf4b49f2c2778296d.tar.xz mgarepo-88a840788e82289d417983acf4b49f2c2778296d.zip |
fix problem with python threads on 2010.1
Diffstat (limited to 'RepSys/commands/co.py')
-rw-r--r-- | RepSys/commands/co.py | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/RepSys/commands/co.py b/RepSys/commands/co.py new file mode 100644 index 0000000..81e4140 --- /dev/null +++ b/RepSys/commands/co.py @@ -0,0 +1,67 @@ +#!/usr/bin/python +from RepSys import Error, disable_mirror +from RepSys.command import * +from RepSys.rpmutil import checkout +import getopt +import sys + +HELP = """\ +Usage: repsys co [OPTIONS] URL [LOCALPATH] + +Checkout the package source from the Mandriva repository. + +If the 'mirror' option is enabled, the package is obtained from the mirror +repository. + +You can specify the distro branch to checkout from by using distro/pkgname. + +Options: + -d The distribution branch to checkout from + -b The package branch + -r REV Revision to checkout + -S Do not download sources from the binaries repository + -L Do not make symlinks of the binaries downloaded in SOURCES/ + -s Only checkout the SPECS/ directory + -M Do not use the mirror (use the main repository) + --check Check integrity of files fetched from the binary repository + -h Show this message + +Examples: + repsys co pkgname + repsys co -d 2009.0 pkgname + repsys co 2009.0/pkgame + repsys co http://repos/svn/cnc/snapshot/foo + repsys co http://repos/svn/cnc/snapshot/foo foo-pkg +""" + +def parse_options(): + parser = OptionParser(help=HELP) + parser.add_option("-r", dest="revision") + parser.add_option("-S", dest="use_binrepo", default=True, + action="store_false") + parser.add_option("--check", dest="binrepo_check", default=False, + action="store_true") + parser.add_option("-L", dest="binrepo_link", default=True, + action="store_false") + parser.add_option("--distribution", "-d", dest="distro", default=None) + parser.add_option("--branch", "-b", dest="branch", default=None) + parser.add_option("-s", "--spec", dest="spec", default=False, + action="store_true") + parser.add_option("-M", "--no-mirror", action="callback", + callback=disable_mirror) + opts, args = parser.parse_args() + if len(args) not in (1, 2): + raise Error, "invalid arguments" + # here we don't use package_url in order to notify the user we are + # using the mirror + opts.pkgdirurl = args[0] + if len(args) == 2: + opts.path = args[1] + else: + opts.path = None + return opts + +def main(): + do_command(parse_options, checkout) + +# vim:et:ts=4:sw=4 |