From 2f50daec7162c918b480f90c5973b1f600956f36 Mon Sep 17 00:00:00 2001 From: Jon Turney Date: Fri, 29 Dec 2023 14:31:51 +0000 Subject: Add a tool for identifiying packages without packaging repos --- calm/missing-repos.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 calm/missing-repos.py diff --git a/calm/missing-repos.py b/calm/missing-repos.py new file mode 100644 index 0000000..af6407e --- /dev/null +++ b/calm/missing-repos.py @@ -0,0 +1,12 @@ +import os + +from . import common_constants +from . import maintainers + + +pl = maintainers.pkg_list(common_constants.PKGMAINT) + +for p in pl.values(): + repo = '/git/cygwin-packages/%s.git' % p + if not os.path.exists(repo): + print('package %s, maintainer(s) %s' % (p, p.maintainers())) -- cgit v1.2.3