From 5d4becb0095bf9393192801c163df3c634792efa Mon Sep 17 00:00:00 2001 From: n8felton Date: Mon, 20 Apr 2026 15:17:59 -0400 Subject: [PATCH] GPGSignatureVerifier moved to n8felton shared processors --- pre_commit_macadmin_hooks/check_autopkg_recipes.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pre_commit_macadmin_hooks/check_autopkg_recipes.py b/pre_commit_macadmin_hooks/check_autopkg_recipes.py index 89dc51d..3f6972a 100755 --- a/pre_commit_macadmin_hooks/check_autopkg_recipes.py +++ b/pre_commit_macadmin_hooks/check_autopkg_recipes.py @@ -449,6 +449,7 @@ def validate_proc_type_conventions(process, filename): "com.github.johncclayton.filewave.FWTool/FileWaveImporter", "com.github.autopkg.filewave.FWTool/FWTool", ], + ("verify",): ["com.github.n8felton.shared/GPGSignatureVerifier"], } # Extract all known recipe types from conventions @@ -498,9 +499,7 @@ def validate_required_proc_for_types(process, filename): "filewave": ["com.github.autopkg.filewave.FWTool/FileWaveImporter"], # https://derflounder.wordpress.com/2021/07/30/signing-autopkg-built-packages-using-a-sign-recipe/ "sign": ["com.github.rtrouton.SharedProcessors/PkgSigner"], - "verify": [ - "com.github.autopkg.gerardkok-recipes.SharedProcessors/GPGSignatureVerifier" - ], + "verify": ["com.github.n8felton.shared/GPGSignatureVerifier"], } passed = True