Skip to content

Commit

Permalink
Add a tool for identifiying packages without packaging repos
Browse files Browse the repository at this point in the history
  • Loading branch information
jon-turney committed Dec 29, 2023
1 parent 3cd8857 commit 2f50dae
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions calm/missing-repos.py
Original file line number Diff line number Diff line change
@@ -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()))

0 comments on commit 2f50dae

Please sign in to comment.