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
|
#!/usr/bin/python3
import animation
import subprocess
@animation.wait('resolving dependencies')
def package(pkgname):
areBinaries = []
areSources = []
needsConfig = int()
portageExec = subprocess.Popen(['emerge', '--quiet', '--pretend', '--getbinpkg', '--rebuilt-binaries', '--with-bdeps=y', '--misspell-suggestion=n', '--fuzzy-search=n'] + list(pkgname), stdout=subprocess.PIPE, stderr=subprocess.PIPE)
stdout, stderr = portageExec.communicate()
for portageOutput in stderr.decode('utf-8').splitlines():
if "The following keyword changes are necessary to proceed:" in portageOutput:
needsConfig = int(1)
if "The following mask changes are necessary to proceed:" in portageOutput:
needsConfig = int(1)
if "The following USE changes are necessary to proceed:" in portageOutput:
needsConfig = int(1)
if "The following REQUIRED_USE flag constraints are unsatisfied:" in portageOutput:
needsConfig = int(1)
for portageOutput in stdout.decode('utf-8').splitlines():
if "[binary" in portageOutput:
isBinary = portageOutput.split("]")[1].split("[")[0].strip(" ")
areBinaries.append(isBinary)
if "[ebuild" in portageOutput:
isSource = portageOutput.split("]")[1].split("[")[0].strip(" ")
areSources.append(isSource)
return areBinaries,areSources,needsConfig
@animation.wait('resolving dependencies')
def world():
areBinaries = []
areSources = []
needsConfig = int()
portageExec = subprocess.Popen(['emerge', '--quiet', '--update', '--deep', '--newuse', '--pretend', '--getbinpkg', '--rebuilt-binaries', '--backtrack=100', '--with-bdeps=y', '--misspell-suggestion=n', '--fuzzy-search=n', '@world'], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
stdout, stderr = portageExec.communicate()
for portageOutput in stderr.decode('utf-8').splitlines():
if "The following keyword changes are necessary to proceed:" in portageOutput:
needsConfig = int(1)
if "The following mask changes are necessary to proceed:" in portageOutput:
needsConfig = int(1)
if "The following USE changes are necessary to proceed:" in portageOutput:
needsConfig = int(1)
if "The following REQUIRED_USE flag constraints are unsatisfied:" in portageOutput:
needsConfig = int(1)
for portageOutput in stdout.decode('utf-8').splitlines():
if "[binary" in portageOutput:
isBinary = portageOutput.split("]")[1].split("[")[0].strip(" ")
areBinaries.append(isBinary)
if "[ebuild" in portageOutput:
isSource = portageOutput.split("]")[1].split("[")[0].strip(" ")
areSources.append(isSource)
return areBinaries,areSources,needsConfig
|