-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbranchsync.py
executable file
·154 lines (131 loc) · 4.57 KB
/
branchsync.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
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
150
151
152
153
154
#!/usr/bin/env python3
import contextlib
import os
import shlex
import sys
import subprocess
import tempfile
from pathlib import Path
# Branhes to backport to, in order from master, without master
FBRANCHES = ['f34', 'f33', 'f32', 'f31']
# Colors
BLUE = '\033[94m'
GREEN = '\033[92m'
END = '\033[0m'
# Component swaps
COMPONENTS = {
'python3.9': {
'f32': 'python39',
'f31': 'python39',
},
'python3.8': {
'f32': 'python3',
'f31': 'python38',
},
'python3.7': {
'f32': 'python37',
'f31': 'python3',
},
'python3.6': {
'f32': 'python36',
'f31': 'python36',
},
'python3.5': {
'f32': 'python35',
'f31': 'python35',
},
}
def debug(*args, **kwargs):
print(*args, file=sys.stderr, **kwargs)
def run(cmd):
debug(f'{BLUE}$ {cmd}{END}')
cmd = shlex.split(cmd)
out = subprocess.check_output(cmd, text=True).rstrip()
if out:
debug(out)
return out
@contextlib.contextmanager
def in_tmp():
original_location = os. getcwd()
try:
with tempfile.TemporaryDirectory() as d:
os.chdir(d)
yield
finally:
os.chdir(original_location)
def parse_args():
# TODO?: Add more sophisticated argument parsing
# TODO: Get this info from (a link to) Pagure PR
if len(sys.argv) < 3:
print(f'Usage: {sys.argv[0]} COMPONENT BRANCH [ORIGINAL_USERNAME [MY_USERNAME]]')
sys.exit(1)
component = sys.argv[1]
branch = sys.argv[2]
try:
original_username = sys.argv[3]
except IndexError:
original_username = run('whoami')
try:
my_username = sys.argv[4]
except IndexError:
my_username = run('whoami')
return component, branch, original_username, my_username
def source_filenames(sources_path):
for line in Path(sources_path).read_text().splitlines():
yield line.partition('(')[-1].partition(')')[0]
def git_stuff(component, branch, original_username, my_username):
origin = f'ssh://pkgs.fedoraproject.org/rpms/{component}.git'
new = f'ssh://pkgs.fedoraproject.org/forks/{original_username}/rpms/{component}.git'
backport = f'ssh://pkgs.fedoraproject.org/forks/{my_username}/rpms/{component}.git'
run(f'git clone {origin} {component}')
os.chdir(component)
run(f'git remote add new {new} --fetch')
run(f'git remote add backport {backport}')
run(f'git remote -v')
run(f'git switch --track new/{branch}')
branch_ = branch
for fbranch in FBRANCHES:
try:
new_component = COMPONENTS[component][fbranch]
except KeyError:
remote = 'origin'
component_ = component
else:
origin_ = f'ssh://pkgs.fedoraproject.org/rpms/{new_component}.git'
run(f'git remote add origin-{fbranch} {origin_} --fetch')
backport_ = f'ssh://pkgs.fedoraproject.org/forks/{my_username}/rpms/{new_component}.git'
run(f'git remote add backport-{fbranch} {backport_}')
run(f'git remote -v')
remote = f'origin-{fbranch}'
component_ = new_component
try:
run(f'git merge-base --is-ancestor {remote}/{fbranch} {branch_}')
except subprocess.CalledProcessError:
patches = run(f'git format-patch origin/main').splitlines()
if component != component_:
run(f'fedpkg --name {component} sources')
sources = ' '.join(source_filenames('sources'))
run(f'fedpkg --name {component_} new-sources {sources}')
run(f'git switch --track {remote}/{fbranch}')
backport_branch = f'{fbranch}-auto-{original_username}-{branch}'
run(f'git switch -c {backport_branch}')
for patch in patches:
try:
run(f'ferrypick {patch} {component_}')
except subprocess.CalledProcessError:
print('Sorry, this branch needs manual backport :(')
sys.exit(1)
run(f'git push --force -u backport-{fbranch} {backport_branch}')
run(f'git switch {branch}')
branch_ = backport_branch
link = (f'https://src.fedoraproject.org/fork/{my_username}/'
f'rpms/{component_}/diff/{fbranch}..{branch_}')
else:
link = (f'https://src.fedoraproject.org/fork/{original_username}/'
f'rpms/{component_}/diff/{fbranch}..{branch_}')
print(f'{GREEN}{link}{END}')
def main():
with in_tmp():
git_stuff(*parse_args())
if __name__ == '__main__':
main()