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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B0580158012 for ; Tue, 14 Sep 2021 08:59:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D0F42E0950; Tue, 14 Sep 2021 08:59:15 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 98551E0950 for ; Tue, 14 Sep 2021 08:59:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 81CF9342F70 for ; Tue, 14 Sep 2021 08:59:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EB2F5CF for ; Tue, 14 Sep 2021 08:59:12 +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: <1631609945.6eeb1f7c106f6c39fefee7216a908d37ea9e4336.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pypy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pypy/pypy-7.3.6_rc1.ebuild X-VCS-Directories: dev-python/pypy/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 6eeb1f7c106f6c39fefee7216a908d37ea9e4336 X-VCS-Branch: master Date: Tue, 14 Sep 2021 08:59: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: dedae760-9fab-48d8-8708-bbf183edee14 X-Archives-Hash: a184d309eb040391d5ed5db75d9d3461 commit: 6eeb1f7c106f6c39fefee7216a908d37ea9e4336 Author: Michał Górny gentoo org> AuthorDate: Tue Sep 14 06:34:59 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Sep 14 08:59:05 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6eeb1f7c dev-python/pypy: Add a subslot check Signed-off-by: Michał Górny gentoo.org> dev-python/pypy/pypy-7.3.6_rc1.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dev-python/pypy/pypy-7.3.6_rc1.ebuild b/dev-python/pypy/pypy-7.3.6_rc1.ebuild index d4372953f88..c4b76dcdef0 100644 --- a/dev-python/pypy/pypy-7.3.6_rc1.ebuild +++ b/dev-python/pypy/pypy-7.3.6_rc1.ebuild @@ -56,6 +56,10 @@ src_compile() { mv pypy/module/cpyext/parse/*.h include/ || die pax-mark m pypy-c + # verify the subslot + local soabi=$(./pypy-c -c 'import sysconfig; print sysconfig.get_config_var("SOABI")') + [[ ${soabi#pypy-} == ${SLOT#*/} ]] || die "update subslot to ${soabi}" + einfo "Generating caches and CFFI modules ..." # Generate Grammar and PatternGrammar pickles.