commit: df2f0bafac3657579f2be99174448007b0df35d8
Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 28 13:55:55 2022 +0000
Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Thu Jul 28 14:02:34 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df2f0baf
dev-util/maturin: sync riscv check in _beta1
Not needed now, but next bump will be based on _beta1's
conditions and don't want to forget it.
At this point it's tempting to just disable it for all arches
except amd64/x86/arm*, but upstream keeps a similar per-arch
exclusion list so keeping as-is for now.
Also move filter-lto in the right phase since it's defined.
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
dev-util/maturin/maturin-0.13.2_beta1.ebuild | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/dev-util/maturin/maturin-0.13.2_beta1.ebuild
b/dev-util/maturin/maturin-0.13.2_beta1.ebuild
index 923cbd019f20..4432c450ae14 100644
--- a/dev-util/maturin/maturin-0.13.2_beta1.ebuild
+++ b/dev-util/maturin/maturin-0.13.2_beta1.ebuild
@@ -387,17 +387,17 @@ src_prepare() {
# TODO: package-agnostic way to handle IUSE=debug with setuptools-rust?
use !debug || sed -i "s/^cargo_args = \[/&'--profile','dev',/" setup.py
|| die
- filter-lto # undefined references with ring crate
-
# setup.py handles most for non-tests, but ensure disabled rustls on
arches
# where ring crate is problematic -- keep in sync below (bug #859577)
- if use mips || use ppc || use ppc64 || use s390 || use sparc; then
+ if use mips || use ppc || use ppc64 || use riscv || use s390 || use
sparc; then
sed -i '/^if platform.machine/s/^if/if True or/' setup.py || die
fi
}
src_configure() {
- if use mips || use ppc || use ppc64 || use s390 || use sparc; then
+ filter-lto # undefined references with ring crate
+
+ if use mips || use ppc || use ppc64 || use riscv || use s390 || use
sparc; then
local myfeatures=( upload log human-panic )
cargo_src_configure --no-default-features
fi