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 213D4158087 for ; Sun, 6 Feb 2022 08:50:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 35E222BC015; Sun, 6 Feb 2022 08:50:53 +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 E45252BC00C for ; Sun, 6 Feb 2022 08:50:52 +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 12DC3342D89 for ; Sun, 6 Feb 2022 08:50:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 57CB72CB for ; Sun, 6 Feb 2022 08:50:50 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1644137431.3ce63c56c1f8952ad7cc7d3da489aa4ab1f2404a.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/radicale/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-apps/radicale/radicale-3.1.4.ebuild X-VCS-Directories: www-apps/radicale/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 3ce63c56c1f8952ad7cc7d3da489aa4ab1f2404a X-VCS-Branch: master Date: Sun, 6 Feb 2022 08:50:50 +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: b6522c13-db57-40a2-8681-aac7fa205ffa X-Archives-Hash: 00ac629195822e2dc96bada6ac388648 commit: 3ce63c56c1f8952ad7cc7d3da489aa4ab1f2404a Author: Joonas Niilola gentoo org> AuthorDate: Sun Feb 6 08:49:04 2022 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Sun Feb 6 08:50:31 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ce63c56 www-apps/radicale: minor ebuild enhancements for 3.1.4 Signed-off-by: Joonas Niilola gentoo.org> www-apps/radicale/radicale-3.1.4.ebuild | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/www-apps/radicale/radicale-3.1.4.ebuild b/www-apps/radicale/radicale-3.1.4.ebuild index 342958f23b79..de12724cd7bf 100644 --- a/www-apps/radicale/radicale-3.1.4.ebuild +++ b/www-apps/radicale/radicale-3.1.4.ebuild @@ -3,8 +3,7 @@ EAPI=8 -DISTUTILS_USE_SETUPTOOLS=rdepend -PYTHON_COMPAT=( python3_{8,9,10} ) +PYTHON_COMPAT=( python3_{8..10} ) inherit distutils-r1 systemd @@ -36,6 +35,8 @@ BDEPEND=" ) " +distutils_enable_tests --install pytest + S="${WORKDIR}/${MY_P}" RDIR=/var/lib/"${PN}" @@ -47,8 +48,6 @@ src_prepare() { distutils-r1_src_prepare } -distutils_enable_tests --install pytest - python_test() { epytest radicale/tests/ }