Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/cygwin-apps/calm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Turney <jon.turney@dronecode.org.uk>2023-12-29 17:31:51 +0300
committerJon Turney <jon.turney@dronecode.org.uk>2023-12-29 17:32:28 +0300
commit2f50daec7162c918b480f90c5973b1f600956f36 (patch)
tree1a9079685f7232db8ba9e9f1a6a56cf0ee8938e0
parent3cd885722e8914b63d4752427df9943b9936a0e5 (diff)
Add a tool for identifiying packages without packaging repos
-rw-r--r--calm/missing-repos.py12
1 files changed, 12 insertions, 0 deletions
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()))