Gentoo Archives: gentoo-commits

From: Alessandro Barbieri <lssndrbarbieri@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/orjson/
Date: Mon, 04 Oct 2021 11:50:12
Message-Id: 1633348207.d39ed0a6d2df2ba92a02be72b2e2b74728dcc98c.Alessandro-Barbieri@gentoo
1 commit: d39ed0a6d2df2ba92a02be72b2e2b74728dcc98c
2 Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
3 AuthorDate: Mon Oct 4 11:49:45 2021 +0000
4 Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
5 CommitDate: Mon Oct 4 11:50:07 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d39ed0a6
7
8 dev-python/orjson: fix file discovery
9
10 Closes: https://bugs.gentoo.org/816186
11 Package-Manager: Portage-3.0.26, Repoman-3.0.3
12 Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
13
14 dev-python/orjson/orjson-3.5.3.ebuild | 4 ++--
15 1 file changed, 2 insertions(+), 2 deletions(-)
16
17 diff --git a/dev-python/orjson/orjson-3.5.3.ebuild b/dev-python/orjson/orjson-3.5.3.ebuild
18 index 64d9ca1cc..3dc01d0d5 100644
19 --- a/dev-python/orjson/orjson-3.5.3.ebuild
20 +++ b/dev-python/orjson/orjson-3.5.3.ebuild
21 @@ -90,11 +90,11 @@ pkg_setup() {
22
23 src_compile() {
24 maturin build --no-sdist --manylinux off --interpreter ${EPYTHON} $(usex debug "" --release) || die
25 - unzip "target/wheels/${P}-*.whl" || die
26 + unzip target/wheels/${P}-*.whl || die
27 }
28
29 src_install() {
30 - python_domodule "${PN}"*.so
31 + python_domodule orjson/orjson*.so
32 dodoc README.md
33 }