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 4A31F158030 for ; Mon, 27 Feb 2023 17:41:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6B835E077F; Mon, 27 Feb 2023 17:40:59 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 53985E077F for ; Mon, 27 Feb 2023 17:40:59 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 37C2E340E2A for ; Mon, 27 Feb 2023 17:40:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5900F7D0 for ; Mon, 27 Feb 2023 17:40:56 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1677517885.3ac9bf6ea721335a5ad7e6d924cb3a5950a8ac13.ulm@gentoo> Subject: [gentoo-commits] proj/eselect:master commit in: /, misc/ X-VCS-Repository: proj/eselect X-VCS-Files: ChangeLog misc/eselect.bashcomp X-VCS-Directories: misc/ / X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 3ac9bf6ea721335a5ad7e6d924cb3a5950a8ac13 X-VCS-Branch: master Date: Mon, 27 Feb 2023 17:40:56 +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: a27389e6-eec5-41b4-9999-a3b62e9b612c X-Archives-Hash: 4dac97d6ff61fad3a311510250338268 commit: 3ac9bf6ea721335a5ad7e6d924cb3a5950a8ac13 Author: Ulrich Müller gentoo org> AuthorDate: Mon Feb 27 17:11:25 2023 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Mon Feb 27 17:11:25 2023 +0000 URL: https://gitweb.gentoo.org/proj/eselect.git/commit/?id=3ac9bf6e Update option list in bash completion * misc/eselect.bashcomp (_eselect): Add --eprefix and --root options. Signed-off-by: Ulrich Müller gentoo.org> ChangeLog | 5 +++++ misc/eselect.bashcomp | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index b442b8b..141e377 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2023-02-27 Ulrich Müller + + * misc/eselect.bashcomp (_eselect): Add --eprefix and --root + options. + 2023-02-26 Ulrich Müller * bin/eselect.in: New global option --eprefix. diff --git a/misc/eselect.bashcomp b/misc/eselect.bashcomp index 7e33285..3ef614e 100644 --- a/misc/eselect.bashcomp +++ b/misc/eselect.bashcomp @@ -1,5 +1,5 @@ # -*- mode: sh; indent-tabs-mode: nil; -*- vim: set ft=sh tw=80 sw=4 et : -# Copyright 2005-2020 Gentoo Authors +# Copyright 2005-2023 Gentoo Authors # Distributed under the terms of the GNU GPL version 2 or later # bash command-line completion for eselect @@ -8,7 +8,7 @@ _eselect() { local cur sedcmd2 sedcmd3 possibles - local options="--brief --color= --colour=" + local options="--brief --color= --colour= --eprefix= --root=" COMPREPLY=() cur="${COMP_WORDS[COMP_CWORD]}" sedcmd2='s/^ \([[:alnum:]-][[:alnum:]_-]*\)[[:space:],].*$/\1/p'