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 <lssndrbarbieri@gmail.com>
This commit is contained in:
Alessandro Barbieri
2021-10-04 13:49:45 +02:00
parent cb2c0d82a9
commit d39ed0a6d2

View File

@@ -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
}