我正在尝试编写一个 python 程序来获取可用于使用 python Yum API 的包的依赖项列表。
以下是我获取类似于“yum deplist chkconfig-1.3.49.3-2.el6”的依赖项列表的代码。无论系统上已安装的列表如何,这都会产生所有需要的软件包的列表。
但我正在尝试编写一个与此命令“yum update chkconfig-1.3.49.3-2.el6”等效的包装器。此命令会产生未安装在系统上但需要的依赖项。
以下是我迄今为止尝试过的代码。还有没有其他方法可以访问 python Yum API 来满足我们的需求。这是实际的函数“customMethod”。其他的“比较”和“列表比较”用于比较列表中的 rpm 并获取其中最新的。
import sys, re
import yum, rpm
from yum import _
sys.path.insert(0, '/usr/share/yum-cli')
import output
class YumFrame(yum.YumBase, output.YumOutput):
def __init__(self):
try:
yum.YumBase.__init__(self)
output.YumOutput.__init__(self)
except Exception, e:
raise e
self.pattern1 = re.compile(r'^([a-zA-Z0-9_\-\+]*)-([a-zA-Z0-9_\.]*)-([a-zA-Z0-9_\.]*)')
def compare(self, pkg1, pkg2):
Info1 = self.pattern1.search(pkg1).groups()
Info2 = self.pattern1.search(pkg2).groups()
n1, v1, r1 = Info1
n2, v2, r2 = Info2
if n1 == n2:
return rpm.labelCompare(('1', v1, r1), ('1', v2, r2))
else:
return 2
def listCompare(self, input):
latest = input[0]
refinedList = []
for index, item in enumerate(input):
result = self.compare(item, latest)
if result == 1:
latest = item
elif result == 2:
refinedList.append(item)
refinedList.append(latest)
return refinedList
def customMethod(self, package):
pkgs = []
completeList = []
ematch, match, unmatch = self.pkgSack.matchPackageNames([package])
for po in ematch + match:
pkgs.append(po)
print "Matched Object: " + str(pkgs)
results = self.findDeps(pkgs)
for value in results.itervalues():
for packageObject in value.itervalues():
actualList = []
for item in packageObject:
completeList.append(item.name + "-" + item.ver + "-" + item.rel)
completeList = self.listCompare(completeList)
completeList = list(set(completeList))
return completeList
if __name__ == "__main__":
yumObj = YumFrame()
print yumObj.customMethod("chkconfig-1.3.49.3-2.el6")
提前致谢,
公羊