Mercurial > treepkg
view bin/treepkginfo.py @ 557:9824e409388b
Refactor git branching
If a checkout is already available and the branch is changed in
the config git command would always fail because it doesn't know
the branch to track. Therefore always check if the branch is
locally available and if not checkout the remote branch
author | Bjoern Ricks <bricks@intevation.de> |
---|---|
date | Fri, 02 Sep 2011 08:45:28 +0000 |
parents | 2d31eea39f70 |
children |
line wrap: on
line source
#! /usr/bin/python # Copyright (C) 2010 by Intevation GmbH # Authors: # Bjoern Ricks <bjoern.ricks@intevation.de> # # This program is free software under the GPL (>=v2) # Read the file COPYING coming with the software for details. """Receive the status of a treepkg""" import treepkgcmd from treepkg.info import status from treepkg.options import create_parser def parse_commandline(): parser = create_parser() parser.set_defaults(newest=-1) parser.add_option("--newest", type="int", help=("Number of newest revisions to list.")) parser.add_option("--only-successful", action="store_true", help=("Show only successful builds"), dest="success") parser.add_option("--pretty", action="store_true", help=("Show XML pretty" " output.")) return parser.parse_args() def main(): options, args = parse_commandline() tpkginfo = status.TreepkgInfo(options.config_file, options.newest, options.success) if options.pretty: print tpkginfo.toxml().toprettyxml() else: print tpkginfo.toxml().toxml() main()