aboutsummaryrefslogtreecommitdiff
blob: 67cfdbf9a481b3829adc3b1b4e97b6a870051da7 (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
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
#!/usr/bin/env python

import portage
import os
import re
import shlex
import shutil
import subprocess
import sys

from copy import deepcopy
from getopt import gnu_getopt, GetoptError


try:
    opts, args = gnu_getopt(sys.argv[1:], 'ea:pv')
except GetoptError as e:
    print(e)
    sys.exit(1)

arch = None
emerge = False
pause = False
verbose = False
for o, a in opts:
    if o == '-e':
        emerge = True
    elif o == '-a':
        arch = a
    elif o == '-p':
        pause = True
    elif o == '-v':
        verbose = True
    else:
        print('option %s unknown' % o)
if not arch:
    print('no arch privided')
    sys.exit(1)
if not verbose and pause:
    print('can\'t pause without verbose')
    sys.exit(1)

portdb = portage.db["/"]["porttree"].dbapi
gentoo_repo_location = portdb.repositories["gentoo"].location

cp_all = []
if os.path.isfile('desp-1.log'):
    if verbose: print('skipping desp-1.log\n', flush=True)
    with open('desp-1.log', 'r') as f:
        cp_all = [cp.strip() for cp in f.readlines()]
    if pause: input('pause\n')
else:
    if verbose: print('All packages:', flush=True)
    for cp in portdb.cp_all(trees=[gentoo_repo_location]):
            if not cp in cp_all:
                cp_all.append(cp)
                if verbose: print(cp, flush=True)
    with open('desp-1.log', 'w') as f:
        for cp in cp_all:
            f.write('%s\n' % cp)
    if verbose: print('\n', flush=True)
    if pause: input('pause\n')

if os.path.isfile('deps-2.log'):
    if verbose: print('skipping deps-2.log\n', flush=True)
    with open('deps-2.log', 'r') as f:
        cp_all = [cp.strip() for cp in f.readlines()]
    if pause: input('pause\n')
else:
    if verbose: print('Unstable packages:', flush=True)
    cp_copy = deepcopy(cp_all)
    for cp in cp_copy:
        for cpv in portdb.cp_list(cp, mytree=gentoo_repo_location):
            keywords = portdb.aux_get(cpv, ["KEYWORDS"])[0]
            if arch in re.split('\s+', keywords):
                break
        else:
            cp_all.remove(cp)
            if verbose: print(cp, flush=True)
    with open('deps-2.log', 'w') as f:
        for cp in cp_all:
            f.write('%s\n' % cp)
    if verbose: print('\n', flush=True)
    if pause: input('pause\n')

if os.path.isfile('deps-3.log'):
    if verbose: print('skipping deps-3.log\n', flush=True)
    with open('deps-3.log', 'r') as f:
        cp_all = [cp.strip() for cp in f.readlines()]
    if pause: input('pause\n')
else:
    if verbose: print('Dependee packages:', flush=True)
    cp_copy = deepcopy(cp_all)
    for cp in cp_copy:
        for cpv in portdb.cp_list(cp, mytree=gentoo_repo_location):
            deps = portdb.aux_get(cpv, ["DEPEND", "RDEPEND"], myrepo="gentoo")
            deps = portage.dep.use_reduce(deps, matchall=True, flat=True)
            for d in deps:
                try:
                    cp = portage.dep.Atom(d).cp
                    cp_all.remove(cp)
                    if verbose: print(cp, flush=True)
                except portage.exception.InvalidAtom:
                    pass
                except ValueError:
                    pass
    with open('deps-3.log', 'w') as f:
        for cp in cp_all:
            f.write('%s\n' % cp)
    if verbose: print('\n', flush=True)
    if pause: input('pause\n')
if not emerge:
    sys.exit(0)

if os.path.isfile('deps-4.log'):
    if verbose: print('skipping deps-4.log\n', flush=True)
    with open('deps-4.log', 'r') as f:
        cp_all = [cp.strip() for cp in f.readlines()]
    if pause: input('pause\n')
else:
    if verbose: print('Building dependant packages:', flush=True)
    cp_copy = deepcopy(cp_all)
    for cp in cp_copy:
        outdir = os.path.join('packages', cp)
        logfile = os.path.join(outdir, 'emerge.log')
        try:
            os.makedirs(outdir)
        except OSError:
            pass
        cmd = 'emerge -vp %s' % cp
        args = shlex.split(cmd)
        with open(logfile, encoding='utf-8', mode='w') as f:
            proc = subprocess.Popen(args, stdout=f, stderr=f)
            try:
                proc.wait(600)
            except subprocess.TimeoutExpired:
                f.write('TIME OUT\n')
        with open(logfile, encoding='utf-8', mode='r') as f:
            lines=f.readlines()
        if re.search('^Total: ', lines[-1], re.M | re.S):
            os.remove(logfile)
        else:
            cp_all.remove(cp)
            if verbose: print(cp, flush=True)
    with open('deps-4.log', 'w') as f:
        for cp in cp_all:
            f.write('%s\n' % cp)
    if verbose: print('\n', flush=True)
    if pause: input('pause\n')