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 F0018158089 for ; Fri, 6 Oct 2023 15:08:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 438D22BC06A; Fri, 6 Oct 2023 15:08:50 +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 27D702BC06A for ; Fri, 6 Oct 2023 15:08:50 +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 4410A335C34 for ; Fri, 6 Oct 2023 15:08:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C7A149D0 for ; Fri, 6 Oct 2023 15:08:46 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1696604850.8a7fc78888fa6f5069e844b6c52753d7f55fbfd1.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pypy3_9/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pypy3_9/pypy3_9-7.3.13-r1.ebuild dev-python/pypy3_9/pypy3_9-7.3.13.ebuild X-VCS-Directories: dev-python/pypy3_9/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 8a7fc78888fa6f5069e844b6c52753d7f55fbfd1 X-VCS-Branch: master Date: Fri, 6 Oct 2023 15:08:46 +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: 6c16957a-84a0-47a7-8805-444c61b6286f X-Archives-Hash: 38995133a875e676e346947a102e249b commit: 8a7fc78888fa6f5069e844b6c52753d7f55fbfd1 Author: Michał Górny gentoo org> AuthorDate: Fri Oct 6 14:50:42 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Oct 6 15:07:30 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a7fc788 dev-python/pypy3_9: Fix missing test extensions Signed-off-by: Michał Górny gentoo.org> .../pypy3_9/{pypy3_9-7.3.13.ebuild => pypy3_9-7.3.13-r1.ebuild} | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dev-python/pypy3_9/pypy3_9-7.3.13.ebuild b/dev-python/pypy3_9/pypy3_9-7.3.13-r1.ebuild similarity index 97% rename from dev-python/pypy3_9/pypy3_9-7.3.13.ebuild rename to dev-python/pypy3_9/pypy3_9-7.3.13-r1.ebuild index 1c6eec918ff3..b75fb0c938f5 100644 --- a/dev-python/pypy3_9/pypy3_9-7.3.13.ebuild +++ b/dev-python/pypy3_9/pypy3_9-7.3.13-r1.ebuild @@ -123,7 +123,7 @@ src_compile() { cffi_targets=( pypy_util blake2/_blake2 sha3/_sha3 ssl audioop syslog pwdgrp resource lzma posixshmem - testmultiphase + ctypes_test testmultiphase ) use gdbm && cffi_targets+=( gdbm ) use ncurses && cffi_targets+=( curses ) @@ -138,6 +138,8 @@ src_compile() { # tkinter doesn't work via -m ../pypy${PYVER}-c "_${t}_build.py" || die "Failed to build CFFI bindings for ${t}" done + # testcapi does not have a "build" script + ../pypy${PYVER}-c -c "import _testcapi" || die # Verify that CFFI module list is up-to-date local expected_cksum=63d4659f @@ -154,7 +156,7 @@ src_compile() { fi # Cleanup temporary objects - find -name "*_cffi.[co]" -delete || die + find \( -name "*_cffi.c" -o -name '*.o' \) -delete || die find -type d -empty -delete || die }