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 6069B158020 for ; Tue, 27 Dec 2022 13:21:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 72843E086F; Tue, 27 Dec 2022 13:21:58 +0000 (UTC) Received: from smtp.gentoo.org (mail.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 583ECE086F for ; Tue, 27 Dec 2022 13:21:58 +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 5E5CC340C96 for ; Tue, 27 Dec 2022 13:21:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A4918779 for ; Tue, 27 Dec 2022 13:21:55 +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: <1672147301.88e94a50788f60c6e8c7d611cac1c9ecd331a78a.ulm@gentoo> Subject: [gentoo-commits] repo/proj/emacs:master commit in: app-xemacs/ebuild-mode/ X-VCS-Repository: repo/proj/emacs X-VCS-Files: app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild X-VCS-Directories: app-xemacs/ebuild-mode/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 88e94a50788f60c6e8c7d611cac1c9ecd331a78a X-VCS-Branch: master Date: Tue, 27 Dec 2022 13:21:55 +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: 238ff6c6-670e-4b69-a0f6-cf4e6d075340 X-Archives-Hash: 41da01cc850744dc00544a133abcc81b commit: 88e94a50788f60c6e8c7d611cac1c9ecd331a78a Author: Ulrich Müller gentoo org> AuthorDate: Tue Dec 27 13:21:41 2022 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Tue Dec 27 13:21:41 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/emacs.git/commit/?id=88e94a50 app-xemacs/ebuild-mode: Sync from Gentoo repository Signed-off-by: Ulrich Müller gentoo.org> app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild b/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild index ed3a18b..3cf1ccd 100644 --- a/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild +++ b/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild @@ -1,7 +1,9 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 + +inherit optfeature EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/ebuild-mode.git" EGIT_BRANCH="master" @@ -11,6 +13,7 @@ inherit git-r3 DESCRIPTION="Emacs modes for editing ebuilds and other Gentoo specific files" HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Emacs" +S="${WORKDIR}/${PN}" LICENSE="GPL-2+" SLOT="0" @@ -19,8 +22,6 @@ RDEPEND=">=app-editors/xemacs-21.4.20-r5 app-xemacs/sh-script" BDEPEND="${RDEPEND}" -S="${WORKDIR}/${PN}" - src_compile() { local XEMACS="${EPREFIX}/usr/bin/xemacs" @@ -40,3 +41,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 +}