Skip projects no longer mirrored

This commit is contained in:
Raymond Li 2021-12-28 21:15:41 -05:00
parent a33c73a7e9
commit 6e6227058e
Signed by: r389li
GPG Key ID: A014EA89B62BBB1B
1 changed files with 4 additions and 0 deletions

View File

@ -27,6 +27,10 @@ if __name__ == "__main__":
print(f"Failure: {project} does not exist")
continue
project_class = getattr(sys.modules[__name__], project)
# Skip projects we no longer mirror
if project in ["pkgsrc", "qtproject", "DebianPorts", "OpenBSD"]:
continue
if project in ["CPAN", "ubuntu", "ubuntu_releases", "manjaro", "mxlinux", "cran", "ctan", "gentooportage"]:
checker_result = project_class.check(data, project, current_time)
if checker_result: