This repository was archived by the owner on Feb 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdpt-repos-check.py
255 lines (199 loc) · 11.4 KB
/
dpt-repos-check.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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
import datetime
import logging
import os
import re
import sys
from collections import defaultdict
from datetime import timedelta
import gitlab
import requests
import requests_cache
from debian.changelog import Changelog
from debian.deb822 import Deb822
from debian.debian_support import Version
from debian.watch import WatchFile
__version__ = '0.3.0'
class Violations(object):
"""
Maintain the list of violations in a centralize place
"""
def __init__(self):
self.per_repo = defaultdict(list)
self.per_violation = defaultdict(list)
def add(self, repo, violation, extra_data=''):
# this is a trick to just write `violations` if no `extra_data` is present
# and if it's populated, then separate it from `violation` with a semicolon
self.per_repo[repo].append(f'{violation}{"; " if extra_data else ""}{extra_data}')
self.per_violation[violation].append(repo)
def get_violations(self):
_data = [
'Stats:',
f" Repositories with violations: {len(self.per_repo.keys())}",
f" Violations types detected: {len(self.per_violation.keys())}",
f' Total violations: {sum(len(x) for x in self.per_repo.values())}',
'',
'Per repository violations:',
'',
]
for _repo, _violations in self.per_repo.items():
_data.append(f"{_repo} ({len(_violations)})")
for _violation in _violations:
_data.append(f" {_violation}")
_data.append('\nPer violation repositories:')
for _violation, _repos in self.per_violation.items():
_data.append(f"{_violation} ({len(_repos)})")
for _repo in _repos:
_data.append(f" {_repo}")
return '\n'.join(_data)
def get_sid_version(srcpkg):
# get the current version in Sid, from madison
# example output:
#
# https://qa.debian.org/madison.php?package=matplotlib&text=on&s=sid&a=source,all,amd64
# matplotlib | 3.5.0-1 | sid | source
madison = requests.get(f"https://qa.debian.org/madison.php?package={srcpkg}&text=on&s=sid&a=source,all,amd64")
if not madison.text:
return None
try:
# rough but gets the job done
return Version(madison.text.splitlines()[0].split(' | ')[1].strip())
except Exception as e:
logging.exception(e)
return None
logging.basicConfig(format='%(asctime)s %(message)s', stream=sys.stdout, level=logging.DEBUG)
# TODO: remove, this is only for development
requests_cache.install_cache(
'dpt_repos_check_cache',
cache_control=False,
expire_after=timedelta(days=15),
backend='filesystem',
serializer='json',
)
SALSA_TOKEN = os.environ.get('SALSA_TOKEN', None)
# 9360 is the group_id for python-team/packages subgroup, it could be automatically obtained
# from https://salsa.debian.org/api/v4/groups/python-team/subgroups/ but meh
GROUPID = 9360
logging.info("Gather DPT projects from Salsa")
salsa = gitlab.Gitlab('https://salsa.debian.org/', private_token=SALSA_TOKEN)
group = salsa.groups.get(GROUPID)
group_projects = group.projects.list(all=True, order_by='name', sort='asc', as_list=True)
violations = Violations()
# TODO: pristine-tar: obtain the tarball and compare with the archive
# TODO: check for packages no longer in debian but with repo still in the team
# TODO: check for packages referring the team in maint/upl but with no repo in the team
# TODO: check for packages removed from debian
for group_project in group_projects:
project = salsa.projects.get(group_project.id)
logging.info(f"CHECKING {project.name}...")
# Branches checks
branches = {x.name for x in project.branches.list()}
if not branches:
violations.add(project.name, 'ERROR: appears to be an empty repository')
continue
# DEP-14 is the recommendation doc for git layout: https://dep-team.pages.debian.net/deps/dep14/
if not branches.intersection({'master', 'debian/master', 'debian/unstable', 'debian/latest'}):
if branches.intersection({'sid', 'debian/sid'}):
violations.add(project.name, f'WARNING: uncommon debian master branch (DEP-14)', extra_data=f'available branches={sorted(branches)}')
else:
violations.add(project.name, f'ERROR: no valid Debian master branch', extra_data=f'available branches={sorted(branches)}')
if not branches.intersection({'upstream', 'upstream/latest'}):
violations.add(project.name, f'ERROR: no upstream branch', extra_data=f'available branches={sorted(branches)}')
if 'pristine-tar' not in branches:
violations.add(project.name, f'ERROR: no pristine-tar branch', extra_data=f'available branches={sorted(branches)}')
# debian/ exists check
debian_directory_exists = any([x['name'] == 'debian' for x in project.repository_tree()])
if not debian_directory_exists:
violations.add(project.name, f'ERROR: theres no debian/ directory in the default branch, which should contain a development branch, see DEP-14; all other checks are skipped',
extra_data=f'default branch={project.default_branch}')
continue
# debian/control checks
d_control_id = [d['id'] for d in project.repository_tree(path='debian', all=True) if d['name'] == 'control'][0]
d_control = Deb822(project.repository_raw_blob(d_control_id))
if project.name != d_control["Source"]:
violations.add(project.name, f'ERROR: repo name does not match the package source name', extra_data=f'repo name={project.name}, src name={d_control["Source"]}')
if 'Uploaders' not in d_control:
violations.add(project.name, 'WARNING: Uploaders is missing from debian/control, that doesnt seem right')
maints = d_control['Maintainer']+d_control.get('Uploaders', '')
if all(
x not in maints
for x in (
)
):
violations.add(project.name, 'ERROR: DPT is not in Maintainer or Uploaders fields')
elif '[email protected]' not in maints:
violations.add(project.name, 'WARNING: still using the old team email address')
if not (vcs_browser := d_control.get('Vcs-Browser')):
violations.add(project.name, f'ERROR: Vcs-Browser field is missing from debian/control')
elif vcs_browser != project.web_url:
violations.add(project.name, f'ERROR: Vcs-Browser field doesnt match the repo web URL', extra_data=f'Vcs-Browser={vcs_browser}, repo web URL={project.web_url}')
if not (vcs_git := d_control.get('Vcs-Git')):
violations.add(project.name, f'ERROR: Vcs-Git field is missing from debian/control')
elif vcs_git != project.http_url_to_repo:
violations.add(project.name, f'ERROR: Vcs-Git field doesnt match the repo git URL', extra_data=f'Vcs-Git={vcs_git}, repo git URL={project.http_url_to_repo}')
# debian/watch checks
d_watch_id = [d['id'] for d in project.repository_tree(path='debian', all=True) if d['name'] == 'watch']
if d_watch_id:
d_watch = project.repository_raw_blob(d_watch_id[0]).decode().lower()
try:
watchfile = WatchFile.from_lines(d_watch.splitlines())
for w_entry in watchfile.entries:
if 'pypi.python.org' in w_entry.url or 'pypi.debian.net' in w_entry.url:
violations.add(project.name, 'WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html')
except:
violations.add(project.name, 'ERROR: unable to parse debian/watch')
else:
violations.add(project.name, 'ERROR: debian/watch is missing')
# sid version check
sid_version = get_sid_version(d_control["Source"])
if not sid_version:
violations.add(project.name, 'WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?')
else:
# tags checks
tags = [x.name for x in project.tags.list()]
if (debian_tag := f'debian/{sid_version.full_version}') not in tags:
violations.add(project.name, f"ERROR: there's no debian tag in the repo corresponding to the sid version", extra_data=f'sid version={sid_version}, missing tag={debian_tag}')
if (upstream_tag := f'upstream/{sid_version.upstream_version}') not in tags:
violations.add(project.name, f"ERROR: there's no upstream tag in the repo corresponding to the sid version", extra_data=f'sid version={sid_version}, missing tag={upstream_tag}')
# debian/changelog checks
d_changelog_id = [d['id'] for d in project.repository_tree(path='debian', all=True) if d['name'] == 'changelog'][0]
d_changelog = Changelog(project.repository_raw_blob(d_changelog_id))
if not any(x.version == sid_version for x in d_changelog._blocks):
violations.add(project.name, f"ERROR: debian/changelog doesnt contain an entry for the version in sid", extra_data=f"sid version={sid_version}")
# webhooks checks
if SALSA_TOKEN:
hooks = project.hooks.list()
if not any('tagpending' in x.url for x in hooks):
violations.add(project.name, f"WARNING: tagpending webhook missing")
if not any('http://kgb.debian.net:9418/' in x.url for x in hooks):
violations.add(project.name, f"WARNING: IRC notification (aka KGB) webhook missing")
# services (aka integrations) checks
if SALSA_TOKEN:
services = project.services.list()
services_titles = [x.title for x in services]
if 'Emails on push' not in services_titles:
violations.add(project.name, f"WARNING: email on push integration missing")
if 'Irker (IRC gateway)' in services_titles:
violations.add(project.name, f"WARNING: Irker integration still active, migrate to KGB webhook instead")
# pristine-tar checks
if sid_version and 'pristine-tar' in branches:
pristine_fnames = [x['name'] for x in project.repository_tree(ref='pristine-tar', all=True)]
# expected files: 'SRC_VERSION.orig.tar.EXT.delta'
if not list(filter(lambda v: re.match(f'{d_control["Source"]}_{re.escape(sid_version.upstream_version)}\.orig\.tar\.[^\.]+\.delta', v), pristine_fnames)):
violations.add(project.name, f"ERROR: pristine-tar branch doesnt contain .delta for the current version",
extra_data=f'expected: {d_control["Source"]}_{sid_version.upstream_version}.orig.tar.*.delta')
# expected files: 'SRC_VERSION.orig.tar.EXT.id'
if not list(filter(lambda v: re.match(f'{d_control["Source"]}_{re.escape(sid_version.upstream_version)}\.orig\.tar\.[^\.]+\.id', v), pristine_fnames)):
violations.add(project.name, f"ERROR: pristine-tar branch doesnt contain .id for the current version",
extra_data=f'expected: {d_control["Source"]}_{sid_version.upstream_version}.orig.tar.*.id')
# PEP 517
pyproject_toml_exists = any([x['name'] == 'pyproject.toml' for x in project.repository_tree()])
if pyproject_toml_exists and not 'dh-python-pep517' in d_control['Build-Depends']:
violations.add(project.name, f"WARNING: pyproject.toml detected, but package not build via PEP517 tools")
# Write violations report
with open('violations.txt', 'w') as f:
f.write(f"Report generated on: {datetime.datetime.now()}\n")
f.write(f'Total repositories processed: {len(group_projects)}\n\n')
f.write(violations.get_violations())