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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3A00915813A for ; Wed, 15 Jan 2025 14:39:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 85CBAE07D9; Wed, 15 Jan 2025 14:39:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 72879E07D9 for ; Wed, 15 Jan 2025 14:39:44 +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 8ACF934306D for ; Wed, 15 Jan 2025 14:39:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 26DEE2078 for ; Wed, 15 Jan 2025 14:39:42 +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: <1736951973.623294d2cb0ab7815d2b7b8a4202f2a7c481299b.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/optfeature.eclass X-VCS-Directories: eclass/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 623294d2cb0ab7815d2b7b8a4202f2a7c481299b X-VCS-Branch: master Date: Wed, 15 Jan 2025 14:39:42 +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: 9ea8c3b8-7f29-4218-bce5-1a5c1ee82f71 X-Archives-Hash: 2850b21c1c696f1347b6e19b93c97e28 commit: 623294d2cb0ab7815d2b7b8a4202f2a7c481299b Author: Ulrich Müller gentoo org> AuthorDate: Wed Jan 15 14:35:23 2025 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Wed Jan 15 14:39:33 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=623294d2 optfeature.eclass: Update example "app-misc/baz[bar]" needs to be quoted, otherwise they may be interpreted as filename expansion patterns. Signed-off-by: Ulrich Müller gentoo.org> eclass/optfeature.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/optfeature.eclass b/eclass/optfeature.eclass index c8b4911320d3..b82ac893addd 100644 --- a/eclass/optfeature.eclass +++ b/eclass/optfeature.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: optfeature.eclass @@ -79,7 +79,7 @@ optfeature_header() { # @CODE # pkg_postinst() { # optfeature "foo support" app-misc/foo -# optfeature "bar support" app-misc/bar app-misc/baz[bar] +# optfeature "bar support" app-misc/bar "app-misc/baz[bar]" # optfeature "alphabet support" "app-misc/a app-misc/b" app-misc/c # } # @CODE