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 EBCB615800A for ; Mon, 23 Dec 2024 11:59:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F13ADE0636; Mon, 23 Dec 2024 11:59:11 +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 D3D58E0636 for ; Mon, 23 Dec 2024 11:59:11 +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 C0031335CB4 for ; Mon, 23 Dec 2024 11:59:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D9ACF1732 for ; Mon, 23 Dec 2024 11:59:08 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1734955145.71f3ef048cb1a572d4a14d2d5b39744b87e64bbc.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/compat/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emacs/compat/compat-30.0.1.0-r1.ebuild app-emacs/compat/compat-30.0.1.0.ebuild X-VCS-Directories: app-emacs/compat/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 71f3ef048cb1a572d4a14d2d5b39744b87e64bbc X-VCS-Branch: master Date: Mon, 23 Dec 2024 11:59:08 +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: fa0ece03-7b77-4b5c-aa2e-ad6a2e54a675 X-Archives-Hash: f8861a791c096f9f6a3e3be1b4b4e63e commit: 71f3ef048cb1a572d4a14d2d5b39744b87e64bbc Author: Maciej Barć gentoo org> AuthorDate: Mon Dec 23 11:56:26 2024 +0000 Commit: Maciej Barć gentoo org> CommitDate: Mon Dec 23 11:59:05 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71f3ef04 app-emacs/compat: require Emacs >=29.1 Closes: https://bugs.gentoo.org/946803 Signed-off-by: Maciej Barć gentoo.org> .../{compat-30.0.1.0.ebuild => compat-30.0.1.0-r1.ebuild} | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/app-emacs/compat/compat-30.0.1.0.ebuild b/app-emacs/compat/compat-30.0.1.0-r1.ebuild similarity index 92% rename from app-emacs/compat/compat-30.0.1.0.ebuild rename to app-emacs/compat/compat-30.0.1.0-r1.ebuild index 0de9f6e50e90..8438dd49ae05 100644 --- a/app-emacs/compat/compat-30.0.1.0.ebuild +++ b/app-emacs/compat/compat-30.0.1.0-r1.ebuild @@ -3,6 +3,8 @@ EAPI=8 +NEED_EMACS="29.1" + inherit elisp DESCRIPTION="Compatibility libraries for Emacs" @@ -29,10 +31,6 @@ BDEPEND=" ELISP_TEXINFO="${PN}.texi" -src_compile() { - emake compile "${PN}.info" -} - src_test() { local has_json="$("${EMACS}" ${EMACSFLAGS} --eval "(princ (fboundp 'json-parse-string))")" if [[ "${has_json}" != t ]] ; then @@ -49,3 +47,9 @@ src_test() { emake test fi } + +src_install() { + rm ./compat-tests.el || die + + elisp_src_install +}