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 3896615ACFE for ; Fri, 5 May 2023 10:14:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 32E2CE07F0; Fri, 5 May 2023 10:14:38 +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 1610EE07E6 for ; Fri, 5 May 2023 10:14:38 +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 D44353414E4 for ; Fri, 5 May 2023 10:14:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 443FBA61 for ; Fri, 5 May 2023 10:14:35 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1683281626.5a00d26e94b9e7c0ffded949f3a89f49b290ba48.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/mailutils/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-mail/mailutils/mailutils-3.16.ebuild X-VCS-Directories: net-mail/mailutils/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 5a00d26e94b9e7c0ffded949f3a89f49b290ba48 X-VCS-Branch: master Date: Fri, 5 May 2023 10:14:35 +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: 16b6f2ab-1341-47ac-bf55-38457db1feb9 X-Archives-Hash: 38d7028bce478e0102de3313fc7e0eef commit: 5a00d26e94b9e7c0ffded949f3a89f49b290ba48 Author: Sam James gentoo org> AuthorDate: Fri May 5 10:11:08 2023 +0000 Commit: Sam James gentoo org> CommitDate: Fri May 5 10:13:46 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a00d26e net-mail/mailutils: add dejagnu test dep Signed-off-by: Sam James gentoo.org> net-mail/mailutils/mailutils-3.16.ebuild | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/net-mail/mailutils/mailutils-3.16.ebuild b/net-mail/mailutils/mailutils-3.16.ebuild index 4047ed14d1a2..d04a563e2fc5 100644 --- a/net-mail/mailutils/mailutils-3.16.ebuild +++ b/net-mail/mailutils/mailutils-3.16.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit autotools elisp-common flag-o-matic python-single-r1 toolchain-funcs @@ -14,8 +14,9 @@ LICENSE="GPL-3+ LGPL-3+" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~ppc-macos ~x64-macos" IUSE="berkdb bidi +clients emacs gdbm sasl guile kerberos kyotocabinet \ - ldap mysql nls pam postgres python servers split-usr ssl static-libs +threads tcpd \ + ldap mysql nls pam postgres python servers split-usr ssl static-libs test +threads tcpd \ tokyocabinet" +RESTRICT="!test? ( test )" RDEPEND=" !mail-filter/libsieve @@ -47,7 +48,10 @@ RDEPEND=" DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" +BDEPEND=" + virtual/pkgconfig + test? ( dev-util/dejagnu ) +" REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} ) servers? ( tcpd ldap )"