diff options
Diffstat (limited to 'RepSys/commands/log.py')
-rw-r--r-- | RepSys/commands/log.py | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/RepSys/commands/log.py b/RepSys/commands/log.py deleted file mode 100644 index 28df27d..0000000 --- a/RepSys/commands/log.py +++ /dev/null @@ -1,62 +0,0 @@ -#!/usr/bin/python -from RepSys import config, mirror, disable_mirror -from RepSys.command import * -from RepSys.layout import package_url, checkout_url -from RepSys.rpmutil import sync -from RepSys.util import execcmd -import sys -import os - -HELP = """\ -Usage: repsys 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: - repsys log mutt - repsys 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) |