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

missing-repos.py « calm - cygwin.com/git/cygwin-apps/calm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: af6407e5cae5d0046b4c08144e9af85ff4c01a0b (plain)
1
2
3
4
5
6
7
8
9
10
11
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()))