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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D5725158020 for ; Thu, 22 Dec 2022 18:48:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D505EE0831; Thu, 22 Dec 2022 18:48:52 +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 B9540E0831 for ; Thu, 22 Dec 2022 18:48:52 +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 79B1B3413D5 for ; Thu, 22 Dec 2022 18:48:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B70CC7CC for ; Thu, 22 Dec 2022 18:48:49 +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: <1671734912.6126e03d6b16ece28ab57c351a3930d06f6e54a4.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-xemacs/ebuild-mode/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-xemacs/ebuild-mode/ebuild-mode-1.61.ebuild X-VCS-Directories: app-xemacs/ebuild-mode/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 6126e03d6b16ece28ab57c351a3930d06f6e54a4 X-VCS-Branch: master Date: Thu, 22 Dec 2022 18:48:49 +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: 0154ca7f-9e1b-4431-9523-0c8d7e26ee8c X-Archives-Hash: bef5d7183fe35f7722b84d3de9a16545 commit: 6126e03d6b16ece28ab57c351a3930d06f6e54a4 Author: Ulrich Müller gentoo org> AuthorDate: Thu Dec 22 18:17:29 2022 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Thu Dec 22 18:48:32 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6126e03d app-xemacs/ebuild-mode: optfeature for optional runtime deps Signed-off-by: Ulrich Müller gentoo.org> app-xemacs/ebuild-mode/ebuild-mode-1.61.ebuild | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app-xemacs/ebuild-mode/ebuild-mode-1.61.ebuild b/app-xemacs/ebuild-mode/ebuild-mode-1.61.ebuild index 44559c96c2ab..f424613d55e5 100644 --- a/app-xemacs/ebuild-mode/ebuild-mode-1.61.ebuild +++ b/app-xemacs/ebuild-mode/ebuild-mode-1.61.ebuild @@ -3,6 +3,8 @@ EAPI=8 +inherit optfeature + DESCRIPTION="Emacs modes for editing ebuilds and other Gentoo specific files" HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Emacs" SRC_URI="https://dev.gentoo.org/~ulm/emacs/${P}.tar.xz" @@ -34,3 +36,9 @@ src_install() { insinto /usr/share/xemacs/site-packages/lisp/${PN} doins *.el *.elc } + +pkg_postinst() { + optfeature "ebuild commands support" sys-apps/portage + optfeature "additional development tools" dev-util/pkgdev + optfeature "ebuild QA utilities" dev-util/pkgcheck +}