From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 39E6315800F for ; Sat, 14 Jan 2023 16:38:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 684DCE0864; Sat, 14 Jan 2023 16:38:51 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 49344E0864 for ; Sat, 14 Jan 2023 16:38:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7B2C5340DFF for ; Sat, 14 Jan 2023 16:38:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DDE807FF for ; Sat, 14 Jan 2023 16:38:48 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1673714326.a7513c33fc3744c7664c8c6c9c3c1bb22f0b0ab9.sam@gentoo> Subject: [gentoo-commits] proj/gentoo-bashcomp:master commit in: completions/ X-VCS-Repository: proj/gentoo-bashcomp X-VCS-Files: completions/emerge X-VCS-Directories: completions/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: a7513c33fc3744c7664c8c6c9c3c1bb22f0b0ab9 X-VCS-Branch: master Date: Sat, 14 Jan 2023 16:38:48 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 7cddf658-16f4-4abf-8092-a4b04e51e94f X-Archives-Hash: bcbe5eeba7cbaae1069acbe05a2cf903 commit: a7513c33fc3744c7664c8c6c9c3c1bb22f0b0ab9 Author: Louis Sautier gmail com> AuthorDate: Sat Nov 5 23:16:06 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat Jan 14 16:38:46 2023 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-bashcomp.git/commit/?id=a7513c33 emerge: add support for --deselect Signed-off-by: Louis Sautier gmail.com> Closes: https://github.com/gentoo/gentoo-bashcomp/pull/6 Signed-off-by: Sam James gentoo.org> completions/emerge | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/completions/emerge b/completions/emerge index 03cc503..e84a7fc 100644 --- a/completions/emerge +++ b/completions/emerge @@ -35,7 +35,7 @@ _emerge() # find action for x in ${COMP_LINE} ; do if [[ ${x} =~ ^(system|world)$ ]] || [[ ${x} =~ -[CPcs] ]] || \ - [[ ${x} =~ --(clean|config|depclean|info|metadata|prune|rage-clean|regen|resume|search|sync|unmerge) ]] + [[ ${x} =~ --(clean|config|depclean|deselect|info|metadata|prune|rage-clean|regen|resume|search|sync|unmerge) ]] then action=${x} break @@ -96,7 +96,7 @@ _emerge() --ask --autounmask-write \ --buildpkg --buildpkgonly \ --changelog --clean --color=y --color=n --columns --complete-graph --config \ - --debug --deep --depclean \ + --debug --deep --depclean --deselect \ --emptytree \ --fetch-all-uri --fetchonly \ --getbinpkg --getbinpkgonly \