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 A171E1581F0 for ; Thu, 25 Apr 2024 15:20:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DF81DE29E2; Thu, 25 Apr 2024 15:20:45 +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 C400AE29E2 for ; Thu, 25 Apr 2024 15:20:45 +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 D253534312C for ; Thu, 25 Apr 2024 15:20:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 66A3C1758 for ; Thu, 25 Apr 2024 15:20:43 +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: <1714058440.fde332223980c959fbfd676f7dd7f6bf83c74650.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/wanderlust/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emacs/wanderlust/wanderlust-2.15.9_p20230624.ebuild X-VCS-Directories: app-emacs/wanderlust/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: fde332223980c959fbfd676f7dd7f6bf83c74650 X-VCS-Branch: master Date: Thu, 25 Apr 2024 15:20:43 +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: 4bf615aa-fe90-4543-b5b4-e9eddf4607cd X-Archives-Hash: 3b6612dfb522cd01b56e2093d198a189 commit: fde332223980c959fbfd676f7dd7f6bf83c74650 Author: Maciej Barć gentoo org> AuthorDate: Thu Apr 25 15:20:08 2024 +0000 Commit: Maciej Barć gentoo org> CommitDate: Thu Apr 25 15:20:40 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fde33222 app-emacs/wanderlust: fix test phase Closes: https://bugs.gentoo.org/928922 Signed-off-by: Maciej Barć gentoo.org> app-emacs/wanderlust/wanderlust-2.15.9_p20230624.ebuild | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/app-emacs/wanderlust/wanderlust-2.15.9_p20230624.ebuild b/app-emacs/wanderlust/wanderlust-2.15.9_p20230624.ebuild index 46ac05de3bae..660576a2538f 100644 --- a/app-emacs/wanderlust/wanderlust-2.15.9_p20230624.ebuild +++ b/app-emacs/wanderlust/wanderlust-2.15.9_p20230624.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -22,6 +22,11 @@ RDEPEND=">=app-emacs/apel-10.8 bbdb? ( app-emacs/bbdb )" DEPEND="${RDEPEND}" +ELISP_REMOVE=" + tests/test-dist.el + tests/test-rfc2368.el +" + SITEFILE="50${PN}-gentoo.el" src_configure() { @@ -35,6 +40,10 @@ src_compile() { emake all info PACKAGE_LISPDIR="NONE" } +src_test() { + emake test PACKAGE_LISPDIR="NONE" +} + src_install() { emake \ LISPDIR="${ED}${SITELISP}" \