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 EC89215800F for ; Tue, 7 Feb 2023 21:49:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 407FCE07D3; Tue, 7 Feb 2023 21:49:31 +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 254C8E07D3 for ; Tue, 7 Feb 2023 21:49:31 +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 3FB22335D07 for ; Tue, 7 Feb 2023 21:49:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D1CB37FB for ; Tue, 7 Feb 2023 21:49:28 +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: <1675806557.bcf53b13db47d0a856bf298d3ef4ad1277d40386.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/wgrep/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emacs/wgrep/wgrep-3.0.0-r1.ebuild app-emacs/wgrep/wgrep-3.0.0.ebuild X-VCS-Directories: app-emacs/wgrep/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: bcf53b13db47d0a856bf298d3ef4ad1277d40386 X-VCS-Branch: master Date: Tue, 7 Feb 2023 21:49:28 +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: d5022764-b2c0-4e1b-aafa-a6714f77b3a4 X-Archives-Hash: ded111d6d5d93e823dcff3cc67c7735e commit: bcf53b13db47d0a856bf298d3ef4ad1277d40386 Author: Maciej Barć gentoo org> AuthorDate: Tue Feb 7 10:02:54 2023 +0000 Commit: Maciej Barć gentoo org> CommitDate: Tue Feb 7 21:49:17 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcf53b13 app-emacs/wgrep: require Emacs >=25.1; add test deps Closes: https://bugs.gentoo.org/893452 Signed-off-by: Maciej Barć gentoo.org> app-emacs/wgrep/{wgrep-3.0.0.ebuild => wgrep-3.0.0-r1.ebuild} | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/app-emacs/wgrep/wgrep-3.0.0.ebuild b/app-emacs/wgrep/wgrep-3.0.0-r1.ebuild similarity index 88% rename from app-emacs/wgrep/wgrep-3.0.0.ebuild rename to app-emacs/wgrep/wgrep-3.0.0-r1.ebuild index 75581cad4442..fe274279b0a2 100644 --- a/app-emacs/wgrep/wgrep-3.0.0.ebuild +++ b/app-emacs/wgrep/wgrep-3.0.0-r1.ebuild @@ -3,6 +3,8 @@ EAPI=8 +NEED_EMACS=25.1 + inherit elisp readme.gentoo-r1 DESCRIPTION="Writable grep buffer and apply the changes to files" @@ -14,6 +16,15 @@ S="${WORKDIR}"/Emacs-${P} LICENSE="GPL-3+" SLOT="0" KEYWORDS="~amd64 ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +BDEPEND=" + test? ( + app-emacs/s + app-emacs/dash + ) +" ELISP_REMOVE="${PN}-subtest.el"