Also add the module-build-macros to the module-package-list tag.

This commit is contained in:
Ralph Bean 2017-02-28 20:40:58 +00:00
parent 536bd4b62f
commit d7b2b7754f

View file

@ -143,6 +143,10 @@ if __name__ == '__main__':
pkgs[pkg_name] = owners['commit']['people'][0] pkgs[pkg_name] = owners['commit']['people'][0]
else: else:
pkgs[pkg_name] = 'orphan' pkgs[pkg_name] = 'orphan'
if tag == 'module-package-list' and not 'module-build-macros' in pkgs:
pkgs['module-build-macros'] = 'releng'
pkgList = pkgs.keys() pkgList = pkgs.keys()
pkgList.sort() pkgList.sort()
@ -185,6 +189,7 @@ if __name__ == '__main__':
# user already exists # user already exists
continue continue
kojiusers.append(owner) kojiusers.append(owner)
if not kojipkgs.has_key(pkg): if not kojipkgs.has_key(pkg):
if DEBUG: if DEBUG:
print "Adding package %s for %s with owner %s" % (pkg, tag, owner) print "Adding package %s for %s with owner %s" % (pkg, tag, owner)