Gentoo Archives: gentoo-commits

From: Ionen Wolkens <ionen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-util/libstrangle/
Date: Thu, 22 Sep 2022 08:11:07
Message-Id: 1663834219.c733a1e06f720c46e0d80c0e51ed5a12697c4b32.ionen@gentoo
1 commit: c733a1e06f720c46e0d80c0e51ed5a12697c4b32
2 Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 22 08:03:51 2022 +0000
4 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 22 08:10:19 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c733a1e0
7
8 games-util/libstrangle: enable abi_x86_32 by default
9
10 Similarly to what's done for wine and friends, unsure why haven't done
11 this in the first place considering this has no further multilib deps
12 (this doesn't link with any libraries in DEPEND, what this uses will
13 depend on what applicates/games are linked with themselves).
14
15 Remove warning too, assume anyone manually turning it off would know
16 what they're getting into.
17
18 Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
19
20 games-util/libstrangle/libstrangle-0.1.1_p20220222-r1.ebuild | 8 ++------
21 1 file changed, 2 insertions(+), 6 deletions(-)
22
23 diff --git a/games-util/libstrangle/libstrangle-0.1.1_p20220222-r1.ebuild b/games-util/libstrangle/libstrangle-0.1.1_p20220222-r1.ebuild
24 index edb24350dc18..c39f31b01542 100644
25 --- a/games-util/libstrangle/libstrangle-0.1.1_p20220222-r1.ebuild
26 +++ b/games-util/libstrangle/libstrangle-0.1.1_p20220222-r1.ebuild
27 @@ -3,7 +3,7 @@
28
29 EAPI=8
30
31 -inherit multilib multilib-minimal toolchain-funcs
32 +inherit multilib-minimal toolchain-funcs
33
34 STRANGLE_COMMIT="0273e318e3b0cc759155db8729ad74266b74cb9b"
35
36 @@ -15,6 +15,7 @@ S="${WORKDIR}/${PN}-${STRANGLE_COMMIT}"
37 LICENSE="GPL-3+"
38 SLOT="0"
39 KEYWORDS="~amd64 ~x86"
40 +IUSE="+abi_x86_32"
41
42 RDEPEND="
43 sys-apps/grep[pcre]
44 @@ -58,8 +59,3 @@ multilib_src_install_all() {
45 emake DESTDIR="${D}" prefix="${EPREFIX}"/usr install-common
46 einstalldocs
47 }
48 -
49 -pkg_postinst() {
50 - has_multilib_profile && use amd64 && use !abi_x86_32 &&
51 - ewarn "Note that USE=abi_x86_32 is needed for 32bit games (common with steam / wine)"
52 -}