diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2023-12-29 11:33:05 +0200 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2023-12-29 14:33:11 +0200 |
commit | 0177cb268d8aae77ab3ed92565a5fcd6eabc36a5 (patch) | |
tree | fd75321a41cf901a64189caf0ce26d23b443daf3 /data | |
parent | bugs: improve best match finder (diff) | |
download | pkgdev-0177cb268d8aae77ab3ed92565a5fcd6eabc36a5.tar.gz pkgdev-0177cb268d8aae77ab3ed92565a5fcd6eabc36a5.tar.bz2 pkgdev-0177cb268d8aae77ab3ed92565a5fcd6eabc36a5.zip |
bugs: add ``--find-by-maintainer`` option
Scan over the whole repository to find packages maintained by passed
emails. It would try to find best stable candidate from that package.
Resolves: https://github.com/pkgcore/pkgdev/issues/157
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'data')
-rw-r--r-- | data/share/bash-completion/completions/pkgdev | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/data/share/bash-completion/completions/pkgdev b/data/share/bash-completion/completions/pkgdev index bbad831..33bcb03 100644 --- a/data/share/bash-completion/completions/pkgdev +++ b/data/share/bash-completion/completions/pkgdev @@ -246,6 +246,7 @@ _pkgdev() { subcmd_options=" --api-key --auto-cc-arches + --find-by-maintainer --blocks --dot -s --stablereq @@ -253,7 +254,7 @@ _pkgdev() { " case "${prev}" in - --api-key | --auto-cc-arches | --blocks) + --api-key | --auto-cc-arches | --blocks | --find-by-maintainer) COMPREPLY=() ;; --dot) |