forked from hroncok/rpm-list-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdirty-rebuild-script.py
54 lines (44 loc) · 1.69 KB
/
dirty-rebuild-script.py
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
import yaml
AUTHOR = 'Python Maint <python-maint@redhat.com>'
def r(cmd):
print(cmd)
with open('../python310.yaml') as f:
pkgs = yaml.safe_load(f)['python310']['packages']
for pkg in pkgs:
macros = {}
replaced = {}
chaneglog = 'Rebuilt for Python 3.10'
if isinstance(pkg, dict):
assert len(pkg) == 1
chaneglog = 'Bootstrap for Python 3.10'
for key, val in pkg.items():
pkg = key
macros = val.get('macros', {})
replaced = val.get('replaced_macros', {})
patch = f'../{pkg}.patch'
r(f'fedpkg clone {pkg} -- --branch rawhide')
r(f'cd {pkg}')
r(f'test -f {patch} && patch -R -p1 < {patch} && rm {patch} '
f'&& git add {pkg}.spec')
for macro, value in macros.items():
r(fr"sed -i '1s;^;%global {macro} {value}\n;' {pkg}.spec")
for macro, value in replaced.items():
r(fr"sed -i -r -E 's/%(define|global)(\s+){macro}(\s+)"
fr"([^\s]+)/%\1\2{macro}\3{value}/' {pkg}.spec")
if macros or replaced:
r(f'git diff > {patch}')
r(f'rpmdev-bumpspec -c "{chaneglog}" --userstring="{AUTHOR}" {pkg}.spec')
r(f'git commit -m "{chaneglog}" --author="{AUTHOR}" {pkg}.spec')
r(f'git --no-pager show')
r(f'sleep 3')
r(f'git push')
r(f'fedpkg build --fail-fast --target=f35-python || :')
r(f'koji regen-repo f35-python --nowait')
r(f'while ! /usr/bin/koji wait-repo f35-python --build='
f'$(rpm --define \'_sourcedir .\' --define \'fedora 35\' -q '
f'--qf "%{{NAME}}-%{{VERSION}}-'
f'%{{RELEASE}}\\n" --specfile {pkg}.spec | head -n1); '
f'do sleep 15; done | tee -a ../../wait-times')
r(f'cd ..')
r(f'rm -rf {pkg}')
r(f'')