commit:     3b6eb69ecda4a889123cfb2d8352fd354c9d65dc
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Jan  3 14:47:38 2026 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Jan  3 14:47:38 2026 +0000
URL:        
https://gitweb.gentoo.org/proj/pkgcore/pkgcore.git/commit/?id=3b6eb69e

verify_at_done: skip keywording bugs for now

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 examples/verify_at_done.py | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/examples/verify_at_done.py b/examples/verify_at_done.py
index 5a93a24f..12593373 100755
--- a/examples/verify_at_done.py
+++ b/examples/verify_at_done.py
@@ -8,10 +8,9 @@ import urllib.request as urllib
 from typing import TypedDict
 from urllib.parse import urlencode
 
-from pkgcore.util import commandline
 from pkgcore.ebuild.atom import atom
 from pkgcore.ebuild.errors import MalformedAtom
-
+from pkgcore.util import commandline
 
 argparser = commandline.ArgumentParser(version=False, description=__doc__)
 argparser.add_argument(
@@ -88,6 +87,8 @@ def main(options, out, err):
                 continue
             for cc in bug["cc"]:
                 cc = cc.removesuffix("@gentoo.org")
+                if bug["component"] == "Keywording":
+                    continue  # skip keywording for now, the heuristic is wrong
                 if all(cc in pkg.keywords for pkg in pkgs):
                     out.write(
                         out.fg("yellow"),

Reply via email to