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 9E025158013 for ; Fri, 8 Dec 2023 13:37:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CFDD92BC016; Fri, 8 Dec 2023 13:37:37 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B36792BC016 for ; Fri, 8 Dec 2023 13:37:37 +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 CAD4D335D21 for ; Fri, 8 Dec 2023 13:37:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2AE12AC2 for ; Fri, 8 Dec 2023 13:37:35 +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: <1702042528.7a689f4792b8450f254286850f41e1fd429012ea.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/projectile/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emacs/projectile/projectile-2.8.0-r1.ebuild app-emacs/projectile/projectile-2.8.0.ebuild X-VCS-Directories: app-emacs/projectile/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 7a689f4792b8450f254286850f41e1fd429012ea X-VCS-Branch: master Date: Fri, 8 Dec 2023 13:37:35 +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: 67bb726b-4189-446f-bcd3-52f056a32d70 X-Archives-Hash: 83b6960276226f4ad566154cf4c4b9ff commit: 7a689f4792b8450f254286850f41e1fd429012ea Author: Tomas Fabrizio Orsi fi uba ar> AuthorDate: Tue Nov 14 04:48:04 2023 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Fri Dec 8 13:35:28 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a689f47 app-emacs/projectile: Add optfeature message ... to inform users on other packages to improve projectile's functionality. Source: https://docs.projectile.mx/projectile/usage.html Signed-off-by: Tomas Fabrizio Orsi fi.uba.ar> Signed-off-by: Ulrich Müller gentoo.org> .../{projectile-2.8.0.ebuild => projectile-2.8.0-r1.ebuild} | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/app-emacs/projectile/projectile-2.8.0.ebuild b/app-emacs/projectile/projectile-2.8.0-r1.ebuild similarity index 61% rename from app-emacs/projectile/projectile-2.8.0.ebuild rename to app-emacs/projectile/projectile-2.8.0-r1.ebuild index 6f2aa04e7217..de02a64c2bf5 100644 --- a/app-emacs/projectile/projectile-2.8.0.ebuild +++ b/app-emacs/projectile/projectile-2.8.0-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit elisp +inherit elisp optfeature DESCRIPTION="A project interaction library for Emacs" HOMEPAGE="https://docs.projectile.mx @@ -25,3 +25,11 @@ src_test() { elisp-test } + +pkg_postinst() { + #Descriptions for this packages' purpose were taken from Projectile's + #home page https://docs.projectile.mx/projectile/usage.html + optfeature_header "Install the following packages for improved performance:" + optfeature "super-fast alternative to find" sys-apps/fd + optfeature "powerful alternative to grep" sys-apps/ripgrep +}