summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIonen Wolkens <ionen@gentoo.org>2022-07-22 08:36:05 -0400
committerIonen Wolkens <ionen@gentoo.org>2022-07-22 08:36:30 -0400
commitb639872101f83dd71b0265eee922ee48f47c1b12 (patch)
tree9a8d6b6a0352e0aee738a23278216bf7d0ea1f31 /dev-util
parentwww-apps/nikola: Depend on <dev-python/markdown-3.4 (diff)
downloadgentoo-b639872101f83dd71b0265eee922ee48f47c1b12.tar.gz
gentoo-b639872101f83dd71b0265eee922ee48f47c1b12.tar.bz2
gentoo-b639872101f83dd71b0265eee922ee48f47c1b12.zip
dev-util/maturin: also add ppc to rustls exclude
Bug: https://bugs.gentoo.org/859850 Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'dev-util')
-rw-r--r--dev-util/maturin/maturin-0.13.0.ebuild4
1 files changed, 2 insertions, 2 deletions
diff --git a/dev-util/maturin/maturin-0.13.0.ebuild b/dev-util/maturin/maturin-0.13.0.ebuild
index 64d1038971fb..f1203825d536 100644
--- a/dev-util/maturin/maturin-0.13.0.ebuild
+++ b/dev-util/maturin/maturin-0.13.0.ebuild
@@ -384,13 +384,13 @@ src_prepare() {
# ensure rustls is disabled on arches where ring crate is problematic,
# keep in sync with src_configure below (bug #859577)
- if use ppc64 || use s390; then
+ if use ppc || use ppc64 || use s390; then
sed -i '/^if platform.machine/s/^if/if True or/' setup.py || die
fi
}
src_configure() {
- if use ppc64 || use s390; then
+ if use ppc || use ppc64 || use s390; then
local myfeatures=( upload log human-panic ) # sync with setup.py
cargo_src_configure --no-default-features
fi