Skip to content
Commits on Source (4)
......@@ -37,7 +37,9 @@ BLENDSGROUPS={ '3dprinter' : '3dprinting-team'
}
# Do not parse these projects which are no real packages
BLACKLIST = [ 'bio-linux'
BLACKLIST = [ '1epic'
, 'AliothRewriter'
, 'bio-linux'
, 'communication'
, 'helper-scripts'
, 'maintenance-utilities'
......@@ -45,6 +47,7 @@ BLACKLIST = [ 'bio-linux'
, 'papers'
, 'perl.debian.net'
, 'policy'
, 'r-bioc-000-dependency-scheme'
, 'scripts'
, 'test'
, 'website'
......@@ -95,7 +98,20 @@ def output_metadata(project, subdir, metadata):
print("%s/%s does not seem to have dir %s (%s)" % (gpath, name, subdir, str(err)), file=sys.stderr)
return None
except:
print("%s/%s does not seem to have dir %s. PLEASE VERIFY THIS SINCE IT IS SUSPICIOUS! " % (gpath, name, subdir), file=sys.stderr)
branches = project.branches.list()
sid_branch = 'debian/sid'
if sid_branch in branches:
try:
items = project.repository_tree(path=subdir, recursive=False, ref=sid_branch)
except:
print("%s/%s does not seem to have dir %s. PLEASE VERIFY THIS SINCE IT IS SUSPICIOUS! Even Branch %s was inspected." % (gpath, name, subdir, sid_branch), file=sys.stderr)
else:
otherbranches = []
for b in branches:
if b in ['master', 'pristine-tar', 'upstream', sid_branch]:
continue
otherbranches.append(b)
print("%s/%s does not seem to have dir %s. PLEASE VERIFY THIS SINCE IT IS SUSPICIOUS! Available branches are: %s" % (gpath, name, subdir, str(otherbranches)), file=sys.stderr)
return None
# print("To be sure try again ... after sleeping %i" % SLEEPTIMEPROJECTS)
# time.sleep(SLEEPTIMEPROJECTS)
......
......@@ -4,15 +4,9 @@
# can not do much about it to update it. Responsible maintainers are
# informed (in most cases)
grep -v \
-e "^ cfflib " \
-e "^ eegdev " \
-e "^ imview " \
-e "^ imagetooth " \
-e "^ medicalterms " \
-e "^ psignifit " \
-e "^ pvclust " \
-e "^ pyepl " \
-e "^ python-casmoothing " \
-e "^ python-clips " \
-e "^ pyxid " \
-e "^ trimage " \
......