diff options
author | Sebastian Pipping <sebastian@pipping.org> | 2016-06-23 22:51:47 +0200 |
---|---|---|
committer | Sebastian Pipping <sebastian@pipping.org> | 2016-06-23 23:20:20 +0200 |
commit | 951ed36b0df62fd96640eee80c030f169adb5163 (patch) | |
tree | fe767e665a909d95bbd82a3a8b8d4fceccea30ff | |
parent | Sync version to 0.6.4.2 (diff) | |
download | metagen-951ed36b0df62fd96640eee80c030f169adb5163.tar.gz metagen-951ed36b0df62fd96640eee80c030f169adb5163.tar.bz2 metagen-951ed36b0df62fd96640eee80c030f169adb5163.zip |
No longer crash if herds.xml is missing (bug #577148)
-rwxr-xr-x | metagen/main.py | 26 |
1 files changed, 19 insertions, 7 deletions
diff --git a/metagen/main.py b/metagen/main.py index a190733..235fb53 100755 --- a/metagen/main.py +++ b/metagen/main.py @@ -14,11 +14,14 @@ EXAMPLES - man metagen import re import os import sys +import tempfile from argparse import ArgumentParser from commands import getstatusoutput +from textwrap import dedent from portage import config -from portage.output import red, blue +from portage.exception import FileNotFound +from portage.output import red, blue, yellow try: # portage <2.2.22 @@ -32,7 +35,6 @@ from metagen.version import __version__ from metagen import metagenerator PORTDIR = config(local_config=False)["PORTDIR"] -HB = herdbase.make_herd_base(os.path.sep.join([PORTDIR, 'metadata', 'herds.xml'])) # GLEP 67 _MAINTAINER_TYPE_PERSON = 'person' @@ -68,6 +70,20 @@ def parse_echangelog_variable(name, email): name = my_name return name, email +def check_herds(herds): + herds_xml_path = os.path.sep.join([PORTDIR, 'metadata', 'herds.xml']) + try: + HB = herdbase.make_herd_base(herds_xml_path) + except FileNotFound as e: # bug 577148 + print yellow('!!! Warning. Herd names could not be checked ' + 'against the list of known herds as ' + 'file "%s" was not found.' % e.value) + else: + for herd in herds: + if not HB.known_herd(herd): + print red("!!! Error. Herd %s does not exist." % herd) + sys.exit(1) + def generate_xml(options): """Returns metadata.xml text""" @@ -76,12 +92,8 @@ def generate_xml(options): if options.herd: herds = options.herd.split(",") + check_herds(herds) - for herd in herds: - if not HB.known_herd(herd): - print red("!!! Error. Herd %s does not exist." % herd) - sys.exit(1) - metadata.set_herd(herds) if options.echangelog: |