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
|
"""module for extracting packages from a package/architecture list """
import subprocess
from .gentooPackage import gentooPackage as gP
def findPackages (s, arch, repo, bugnum):
""" Given a string s,
and a string arch
return all gentooPackages from that string that need actioning on that arch """
packages = []
if bugnum:
print("Using Nattka to process the bug")
output = subprocess.check_output(['nattka', '--repo', repo, 'apply', '-a', arch, '-n', bugnum, '--ignore-sanity-check', '--ignore-dependencies'])
output = output.decode("utf8").split("\n")
output = [line for line in output if not line.startswith("#")]
output = [line.split(" ")[0] for line in output]
else:
print("Manually processing")
output = s.splitlines()
for line in output:
if not line:
continue
atom, _, arches = line.replace('\t', ' ').partition(' ')
archlist = arches.split(' ')
if not arches or arch in archlist or ('~' + arch) in archlist:
packages.append(gP(atom))
return(packages)
|