#4 add script which lists packages which should not be touched
Merged 5 years ago by tibbs. Opened 5 years ago by ignatenkobrain.
ignatenkobrain/fedora-misc-package-utilities do-not-touch  into  master

@@ -0,0 +1,16 @@ 

+ #!/usr/bin/python3

+ 

+ import requests

+ 

+ BLACKLIST = {

+     "msuchy",

+ }

+ 

+ def main():

+     owners = requests.get("https://src.fedoraproject.org/extras/pagure_owner_alias.json").json()

+     for pkg, maintainers in owners["rpms"].items():

+         if set(maintainers) & BLACKLIST:

+             print(pkg)

+ 

+ if __name__ == "__main__":

+     main()

So basically exclude from any automated fixes.

Signed-off-by: Igor Gnatenko i.gnatenko.brain@gmail.com

Pull-Request has been merged by tibbs

5 years ago

I gave you privileges on the repo; feel free to add any things you need.

Metadata