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 9BD92158018 for ; Mon, 4 Oct 2021 11:50:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F1907E0877; Mon, 4 Oct 2021 11:50:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D86B4E0877 for ; Mon, 4 Oct 2021 11:50:11 +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 C2209343005 for ; Mon, 4 Oct 2021 11:50:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0D87211C for ; Mon, 4 Oct 2021 11:50:09 +0000 (UTC) From: "Alessandro Barbieri" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alessandro Barbieri" Message-ID: <1633348207.d39ed0a6d2df2ba92a02be72b2e2b74728dcc98c.Alessandro-Barbieri@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/orjson/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/orjson/orjson-3.5.3.ebuild X-VCS-Directories: dev-python/orjson/ X-VCS-Committer: Alessandro-Barbieri X-VCS-Committer-Name: Alessandro Barbieri X-VCS-Revision: d39ed0a6d2df2ba92a02be72b2e2b74728dcc98c X-VCS-Branch: dev Date: Mon, 4 Oct 2021 11:50:09 +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: 77dab202-ab6a-4167-aa33-0b7368dc2ba0 X-Archives-Hash: 9e4c6f228940b3aa8d01f5a0afdaa115 commit: d39ed0a6d2df2ba92a02be72b2e2b74728dcc98c Author: Alessandro Barbieri gmail com> AuthorDate: Mon Oct 4 11:49:45 2021 +0000 Commit: Alessandro Barbieri gmail com> CommitDate: Mon Oct 4 11:50:07 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d39ed0a6 dev-python/orjson: fix file discovery Closes: https://bugs.gentoo.org/816186 Package-Manager: Portage-3.0.26, Repoman-3.0.3 Signed-off-by: Alessandro Barbieri gmail.com> dev-python/orjson/orjson-3.5.3.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-python/orjson/orjson-3.5.3.ebuild b/dev-python/orjson/orjson-3.5.3.ebuild index 64d9ca1cc..3dc01d0d5 100644 --- a/dev-python/orjson/orjson-3.5.3.ebuild +++ b/dev-python/orjson/orjson-3.5.3.ebuild @@ -90,11 +90,11 @@ pkg_setup() { src_compile() { maturin build --no-sdist --manylinux off --interpreter ${EPYTHON} $(usex debug "" --release) || die - unzip "target/wheels/${P}-*.whl" || die + unzip target/wheels/${P}-*.whl || die } src_install() { - python_domodule "${PN}"*.so + python_domodule orjson/orjson*.so dodoc README.md }