Skip projects no longer mirrored

dev
Raymond Li 1 year ago
parent a33c73a7e9
commit 6e6227058e
Signed by untrusted user: r389li
GPG Key ID: A014EA89B62BBB1B
  1. 4
      main.py

@ -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:

Loading…
Cancel
Save