blob: c324d08898b421ac7ac51b6dadca3249a9e08109 (
plain)
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
|
#!/usr/bin/python
import sys
sys.path.append('/usr/bin/')
sys.path.append('/usr/share/yum-cli')
import yum
import yummain
def mySimpleList(self, pkg):
print "<Package name='%s' version='%s'/>" % (pkg.name, pkg.printVer())
def myListPkgs(self, lst, description, outputType):
"""outputs based on whatever outputType is. Current options:
'list' - simple pkg list
'info' - similar to rpm -qi output"""
if outputType in ['list', 'info']:
thingslisted = 0
if len(lst) > 0:
thingslisted = 1
#print '%s' % description
from yum.misc import sortPkgObj
lst.sort(sortPkgObj)
for pkg in lst:
if outputType == 'list':
self.simpleList(pkg)
elif outputType == 'info':
self.infoOutput(pkg)
else:
pass
if thingslisted == 0:
return 1, ['No Packages to list']
yummain.cli.output.YumOutput.listPkgs = myListPkgs
yummain.cli.output.YumOutput.simpleList = mySimpleList
try:
sys.argv = [sys.argv[0],'-d','0','list']
yummain.main(sys.argv[1:])
except KeyboardInterrupt, e:
print >> sys.stderr, "\n\nExiting on user cancel."
sys.exit(1)
|