aboutsummaryrefslogtreecommitdiffstats
path: root/MgaRepo/commands/log.py
blob: 69058b91e1226dd494a81a9ddacace249e250783 (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
#!/usr/bin/python
from MgaRepo import config, mirror, disable_mirror
from MgaRepo.command import *
from MgaRepo.layout import package_url, checkout_url
from MgaRepo.rpmutil import sync
from MgaRepo.util import execcmd
import sys
import os

HELP = """\
Usage: mgarepo log [OPTIONS] [PACKAGE]

Shows the SVN log for a given package.

Options:
    -h           Show this message
    -v           Show changed paths
    -l LIMIT     Limit of log entries to show    
    -r REV       Show a specific revision
    -M           Do not use the mirror (use the main repository)

Examples:
    mgarepo log mutt
    mgarepo log 2009.1/mutt
"""

def parse_options():
    parser = OptionParser(help=HELP)
    parser.add_option("-v", dest="verbose", action="store_true",
            default=False)
    parser.add_option("-l", "--limit", dest="limit", type="int",
            default=None)
    parser.add_option("-r", dest="revision", type="string", default=None)
    parser.add_option("-M", "--no-mirror", action="callback",
            callback=disable_mirror)
    opts, args = parser.parse_args()
    if len(args):
        opts.pkgdirurl = package_url(args[0])
    else:
        parser.error("log requires a package name")
    return opts

def svn_log(pkgdirurl, verbose=False, limit=None, revision=None):
    mirror.info(pkgdirurl)
    url = checkout_url(pkgdirurl)
    svncmd = config.get("global", "svn-command", "svn")
    args = [svncmd, "log", url]
    if verbose:
        args.append("-v")
    if limit:
        args.append("-l")
        args.append(limit)
    if revision:
        args.append("-r")
        args.append(revision)
    if os.isatty(sys.stdin.fileno()):
        args.append("| less")
    rawcmd = " ".join(args)
    execcmd(rawcmd, show=True)

def main():
    do_command(parse_options, svn_log)