aboutsummaryrefslogtreecommitdiffstats
path: root/MgaRepo/commands/co.py
blob: 8044c86680308e45a9d9c17eac9c7e2f8814b8a0 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#!/usr/bin/python
from MgaRepo import Error, disable_mirror
from MgaRepo.command import *
from MgaRepo.rpmutil import checkout
import getopt
import sys

HELP = """\
Usage: mgarepo co [OPTIONS] URL [LOCALPATH]

Checkout the package source from the Mageia 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
    -R REV  binrepo 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:
    mgarepo co pkgname
    mgarepo co -d 2009.0 pkgname
    mgarepo co 2009.0/pkgame
    mgarepo co http://repos/svn/cnc/snapshot/foo
    mgarepo 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("-R", dest="binrev")
    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