-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathepkginfo
executable file
·52 lines (41 loc) · 1.48 KB
/
epkginfo
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
#!/usr/bin/python
#
# Copyright 2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2 or later
"""Shortcut to equery meta"""
__authors__ = (
'Douglas Anderson <[email protected]>: equery meta',
'Ned Ludd <[email protected]>: first full implimentation'
'Eldad Zack <[email protected]>: earch',
'Eric Olinger <EvvL AT RustedHalo DOT net>: metadata'
)
import sys
from gentoolkit import equery, errors
from gentoolkit.equery import mod_usage
from gentoolkit.equery.meta import main, print_help
from portage.exception import AmbiguousPackageName
def print_epkginfo_help():
print(mod_usage(mod_name="epkginfo"))
print()
print_help(with_usage=False)
equery.initialize_configuration()
args = sys.argv[1:]
if not args or {'-h', '--help'}.intersection(args):
print_epkginfo_help()
else:
try:
main(args)
except AmbiguousPackageName as e:
pkgs = e.args[0]
for candidate in pkgs:
print(candidate)
from gentoolkit import pprinter as pp
from os.path import basename # To get the short name
print(file=sys.stderr)
print(pp.error("The short ebuild name '%s' is ambiguous. Please specify" % basename(pkgs[0])),
file=sys.stderr, end="")
pp.die(1, "one of the above fully-qualified ebuild names instead.")
except errors.GentoolkitException as err:
from gentoolkit import pprinter as pp
pp.die(1, str(err))
# vim: set ts=4 sw=4 tw=79: