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 166C4158091 for ; Sun, 12 Jun 2022 14:52:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 54E3AE0916; Sun, 12 Jun 2022 14:52:15 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 388A0E0916 for ; Sun, 12 Jun 2022 14:52:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 4B69E341BBD for ; Sun, 12 Jun 2022 14:52:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A3C2C471 for ; Sun, 12 Jun 2022 14:52:12 +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: <1655045505.f91c0e85e6e08c02a0bdc7dd62731a80a3b84c5c.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/gpgme/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/gpgme/gpgme-1.17.1-r1.ebuild X-VCS-Directories: app-crypt/gpgme/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: f91c0e85e6e08c02a0bdc7dd62731a80a3b84c5c X-VCS-Branch: master Date: Sun, 12 Jun 2022 14:52:12 +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: f67692b1-b1f5-4949-a64a-50df13b8a454 X-Archives-Hash: 5304f654b12ca11a2c2439ae0eaf71b4 commit: f91c0e85e6e08c02a0bdc7dd62731a80a3b84c5c Author: Sam James gentoo org> AuthorDate: Sun Jun 12 14:38:20 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun Jun 12 14:51:45 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f91c0e85 app-crypt/gpgme: fix distutils-r1 use Signed-off-by: Sam James gentoo.org> app-crypt/gpgme/gpgme-1.17.1-r1.ebuild | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/app-crypt/gpgme/gpgme-1.17.1-r1.ebuild b/app-crypt/gpgme/gpgme-1.17.1-r1.ebuild index 545d22dc9141..db83c2548bf2 100644 --- a/app-crypt/gpgme/gpgme-1.17.1-r1.ebuild +++ b/app-crypt/gpgme/gpgme-1.17.1-r1.ebuild @@ -102,15 +102,14 @@ src_compile() { src_test() { default - if use python; then - test_python() { - emake -C lang/python/tests check \ - PYTHON=${EPYTHON} \ - PYTHONS=${EPYTHON} \ - TESTFLAGS="--python-libdir=${BUILD_DIR}/lib" - } - python_foreach_impl test_python - fi + use python && distutils-r1_src_test +} + +python_test() { + emake -C lang/python/tests check \ + PYTHON=${EPYTHON} \ + PYTHONS=${EPYTHON} \ + TESTFLAGS="--python-libdir=${BUILD_DIR}/lib" } src_install() {