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:
-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()))