forked from autotest/virt-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkoji_pkgspec.py
executable file
·131 lines (102 loc) · 4.01 KB
/
koji_pkgspec.py
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
#!/usr/bin/env python
'''
This is a tool for that makes it easy to understand what a given KojiPkgSpec
syntax will expand to.
The main use case is making sure the packages specified in a KojiInstaller
will match the packages you intended to install.
'''
import sys
import optparse
import common
from virttest import cartesian_config
try:
from virttest.staging import utils_koji
except ImportError:
from autotest.client.shared import utils_koji
class OptionParser(optparse.OptionParser):
'''
KojiPkgSpec App option parser
'''
def __init__(self):
optparse.OptionParser.__init__(self,
usage=('Usage: %prog [options] '
'[koji-pkg-spec]'))
general = optparse.OptionGroup(self, 'GENERAL OPTIONS')
general.add_option('-a', '--arch', dest='arch', default='x86_64',
help=('architecture of packages to list, together '
'with "noarch". defaults to "x86_64"'))
general.add_option('-t', '--tag', dest='tag', help='default koji tag')
self.add_option_group(general)
cartesian_config = optparse.OptionGroup(self, 'CARTESIAN CONFIG')
cartesian_config.add_option('-c', '--config', dest='config',
help=('use a cartesian configuration file '
'for fetching package values'))
self.add_option_group(cartesian_config)
class App:
'''
KojiPkgSpec app
'''
def __init__(self):
self.opt_parser = OptionParser()
def usage(self):
self.opt_parser.print_help()
sys.exit(1)
def parse_cmdline(self):
self.options, self.args = self.opt_parser.parse_args()
# Check for a control file if not in prebuild mode.
if (len(self.args) < 1) and not self.options.config:
print "Missing Package Specification!"
self.usage()
def get_koji_qemu_kvm_tag_pkgs(self, config_file):
tag = None
pkgs = None
parser = cartesian_config.Parser(config_file)
for d in parser.get_dicts():
if tag is not None and pkgs is not None:
break
if d.has_key('koji_qemu_kvm_tag'):
if tag is None:
tag = d.get('koji_qemu_kvm_tag')
if d.has_key('koji_qemu_kvm_pkgs'):
if pkgs is None:
pkgs = d.get('koji_qemu_kvm_pkgs')
return (tag, pkgs)
def check_koji_pkg_spec(self, koji_pkg_spec):
if not koji_pkg_spec.is_valid():
print 'ERROR:', koji_pkg_spec.describe_invalid()
sys.exit(-1)
def print_koji_pkg_spec_info(self, koji_pkg_spec):
info = self.koji_client.get_pkg_info(koji_pkg_spec)
if not info:
print 'ERROR: could not find info about "%s"' % koji_pkg_spec.to_text()
return
name = info.get('name', 'unknown')
pkgs = self.koji_client.get_pkg_rpm_file_names(koji_pkg_spec,
arch=self.options.arch)
print 'Package name: %s' % name
print 'Package files:'
for p in pkgs:
print '\t* %s' % p
print
def main(self):
self.parse_cmdline()
self.koji_client = utils_koji.KojiClient()
pkgs = []
if self.options.tag:
utils_koji.set_default_koji_tag(self.options.tag)
if self.options.config:
tag, pkgs = self.get_koji_qemu_kvm_tag_pkgs(self.options.config)
if tag is not None:
utils_koji.set_default_koji_tag(tag)
if pkgs is not None:
pkgs = pkgs.split()
else:
pkgs = self.args
if pkgs:
for p in pkgs:
koji_pkg_spec = utils_koji.KojiPkgSpec(p)
self.check_koji_pkg_spec(koji_pkg_spec)
self.print_koji_pkg_spec_info(koji_pkg_spec)
if __name__ == '__main__':
app = App()
app.main()