From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1560447-garchives=archives.gentoo.org@lists.gentoo.org> 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 31B8E158089 for <garchives@archives.gentoo.org>; 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 1C8632BC064; Fri, 6 Oct 2023 15:08:49 +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 0212F2BC064 for <gentoo-commits@lists.gentoo.org>; Fri, 6 Oct 2023 15:08:49 +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 16DB9335D12 for <gentoo-commits@lists.gentoo.org>; Fri, 6 Oct 2023 15:08:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B3CE49CF for <gentoo-commits@lists.gentoo.org>; Fri, 6 Oct 2023 15:08:46 +0000 (UTC) From: "Michał Górny" <mgorny@gentoo.org> 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" <mgorny@gentoo.org> Message-ID: <1696604849.0d8c406e1aa9c73aaa6af7abebfe7d74101f89c8.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pypy3_10/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pypy3_10/pypy3_10-7.3.13-r1.ebuild dev-python/pypy3_10/pypy3_10-7.3.13.ebuild X-VCS-Directories: dev-python/pypy3_10/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 0d8c406e1aa9c73aaa6af7abebfe7d74101f89c8 X-VCS-Branch: master Date: Fri, 6 Oct 2023 15:08:46 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 48958bc0-7e7d-4df6-aa6e-f4a6803286b5 X-Archives-Hash: 98e0108211bad95f1ddafc5379de9d11 commit: 0d8c406e1aa9c73aaa6af7abebfe7d74101f89c8 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Fri Oct 6 14:46:42 2023 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Fri Oct 6 15:07:29 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d8c406e dev-python/pypy3_10: Fix missing test extensions Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> .../pypy3_10/{pypy3_10-7.3.13.ebuild => pypy3_10-7.3.13-r1.ebuild} | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dev-python/pypy3_10/pypy3_10-7.3.13.ebuild b/dev-python/pypy3_10/pypy3_10-7.3.13-r1.ebuild similarity index 97% rename from dev-python/pypy3_10/pypy3_10-7.3.13.ebuild rename to dev-python/pypy3_10/pypy3_10-7.3.13-r1.ebuild index c3cd1b2bb121..eadc6fd3034c 100644 --- a/dev-python/pypy3_10/pypy3_10-7.3.13.ebuild +++ b/dev-python/pypy3_10/pypy3_10-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 }