* [gentoo-commits] repo/gentoo:master commit in: app-emulation/aranym/
@ 2019-12-11 23:23 James Le Cuirot
0 siblings, 0 replies; 5+ messages in thread
From: James Le Cuirot @ 2019-12-11 23:23 UTC (permalink / raw
To: gentoo-commits
commit: 9bb54296629bcb86e82513e82adeb0510fc3ab18
Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 11 23:21:58 2019 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Wed Dec 11 23:21:58 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bb54296
app-emulation/aranym: Actually compile the code in src_compile
When changing this to use multibuild.eclass, I forgot to define
src_compile so it was compiling in src_install.
Bug: https://bugs.gentoo.org/702560
Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
app-emulation/aranym/aranym-1.1.0.ebuild | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/app-emulation/aranym/aranym-1.1.0.ebuild b/app-emulation/aranym/aranym-1.1.0.ebuild
index de23d6c707e..f1d3aa7d610 100644
--- a/app-emulation/aranym/aranym-1.1.0.ebuild
+++ b/app-emulation/aranym/aranym-1.1.0.ebuild
@@ -88,6 +88,10 @@ multibuild_src_configure() {
echo "#define HAVE_X11_XLIB_H 1" >> config.h || die
}
+src_compile() {
+ multibuild_foreach_variant run_in_build_dir default
+}
+
src_install() {
multibuild_foreach_variant run_in_build_dir default
rm "${ED}"/usr/share/doc/${PF}/COPYING || die
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-emulation/aranym/
@ 2019-12-11 23:23 James Le Cuirot
0 siblings, 0 replies; 5+ messages in thread
From: James Le Cuirot @ 2019-12-11 23:23 UTC (permalink / raw
To: gentoo-commits
commit: 38fdcfad205c6097d76561d30bc2be0555d80f54
Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 11 23:22:41 2019 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Wed Dec 11 23:22:41 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38fdcfad
app-emulation/aranym: Fix USE=clipboard dependencies
Closes: https://bugs.gentoo.org/702560
Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
app-emulation/aranym/aranym-1.1.0.ebuild | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/app-emulation/aranym/aranym-1.1.0.ebuild b/app-emulation/aranym/aranym-1.1.0.ebuild
index f1d3aa7d610..fe2c0f728ab 100644
--- a/app-emulation/aranym/aranym-1.1.0.ebuild
+++ b/app-emulation/aranym/aranym-1.1.0.ebuild
@@ -20,7 +20,10 @@ REQUIRED_USE="|| ( jit pmmu standard ) lilo? ( pmmu )"
RDEPEND="
dev-libs/gmp:0=
media-libs/libsdl2[video]
- clipboard? ( !kernel_Winnt? ( x11-libs/libX11 ) )
+ clipboard? ( !kernel_Winnt? (
+ media-libs/libsdl2[X]
+ x11-libs/libX11
+ ) )
jpeg? ( virtual/jpeg )
kernel_linux? ( virtual/libudev )
lilo? ( sys-libs/zlib )
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-emulation/aranym/
@ 2022-04-16 21:01 James Le Cuirot
0 siblings, 0 replies; 5+ messages in thread
From: James Le Cuirot @ 2022-04-16 21:01 UTC (permalink / raw
To: gentoo-commits
commit: 4e5ad71936f0ce65d88f75b01c67516bfa019959
Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 16 21:00:55 2022 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Sat Apr 16 21:00:55 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e5ad719
app-emulation/aranym: Export the build environment for configure
Closes: https://bugs.gentoo.org/838841
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
app-emulation/aranym/aranym-1.1.0.ebuild | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/app-emulation/aranym/aranym-1.1.0.ebuild b/app-emulation/aranym/aranym-1.1.0.ebuild
index 87efc9b39976..ac7ca441637a 100644
--- a/app-emulation/aranym/aranym-1.1.0.ebuild
+++ b/app-emulation/aranym/aranym-1.1.0.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-inherit autotools multibuild xdg
+inherit autotools multibuild toolchain-funcs xdg
DESCRIPTION="Atari Running on Any Machine, VM running Atari ST/TT/Falcon OS and TOS/GEM apps"
HOMEPAGE="https://aranym.github.io"
@@ -50,6 +50,9 @@ src_prepare() {
}
src_configure() {
+ tc-export_build_env
+ export CC_FOR_BUILD=$(tc-getBUILD_CC) CXX_FOR_BUILD=$(tc-getBUILD_CXX)
+
# standard must come last otherwise the aranym executable gets
# overwritten by the others.
MULTIBUILD_VARIANTS=(
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-emulation/aranym/
@ 2023-06-25 19:17 Sam James
0 siblings, 0 replies; 5+ messages in thread
From: Sam James @ 2023-06-25 19:17 UTC (permalink / raw
To: gentoo-commits
commit: fcc06f1c293b7b878ccdd2ccca537dec7d8e7c69
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 25 19:12:40 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jun 25 19:16:59 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fcc06f1c
app-emulation/aranym: drop kernel_Winnt cruft
Support is already gone.
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-emulation/aranym/aranym-1.1.0-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-emulation/aranym/aranym-1.1.0-r1.ebuild b/app-emulation/aranym/aranym-1.1.0-r1.ebuild
index 3b4f4ca886c8..7f7bb559528d 100644
--- a/app-emulation/aranym/aranym-1.1.0-r1.ebuild
+++ b/app-emulation/aranym/aranym-1.1.0-r1.ebuild
@@ -20,10 +20,10 @@ REQUIRED_USE="|| ( jit pmmu standard ) lilo? ( pmmu )"
RDEPEND="
dev-libs/gmp:0=
media-libs/libsdl2[video]
- clipboard? ( !kernel_Winnt? (
+ clipboard? (
media-libs/libsdl2[X]
x11-libs/libX11
- ) )
+ )
jpeg? ( virtual/jpeg )
kernel_linux? ( virtual/libudev )
lilo? ( sys-libs/zlib )
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-emulation/aranym/
@ 2024-03-03 23:18 Sam James
0 siblings, 0 replies; 5+ messages in thread
From: Sam James @ 2024-03-03 23:18 UTC (permalink / raw
To: gentoo-commits
commit: 392870e92d100981d89daf134714a499cd7375ca
Author: Eli Schwartz <eschwartz93 <AT> gmail <DOT> com>
AuthorDate: Sun Mar 3 20:27:51 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Mar 3 23:18:15 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=392870e9
app-emulation/aranym: mark as LTO-unsafe
It might not actually be unsafe, but the configure test errors out
because it tries to grep the output of a conftest, which in this case is
LTO bytecode.
Fixed in git master:
https://github.com/aranym/aranym/commit/52c56bba30ddea27a0a7179da89cac1c71228de6
Closes: https://bugs.gentoo.org/854510
Signed-off-by: Eli Schwartz <eschwartz93 <AT> gmail.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-emulation/aranym/aranym-1.1.0-r1.ebuild | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
diff --git a/app-emulation/aranym/aranym-1.1.0-r1.ebuild b/app-emulation/aranym/aranym-1.1.0-r1.ebuild
index 7f7bb559528d..f471b146140f 100644
--- a/app-emulation/aranym/aranym-1.1.0-r1.ebuild
+++ b/app-emulation/aranym/aranym-1.1.0-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-inherit autotools multibuild toolchain-funcs xdg
+inherit autotools flag-o-matic multibuild toolchain-funcs xdg
DESCRIPTION="Atari Running on Any Machine, VM running Atari ST/TT/Falcon OS and TOS/GEM apps"
HOMEPAGE="https://aranym.github.io"
@@ -54,6 +54,13 @@ src_prepare() {
}
src_configure() {
+ # configure probe fatally errors out since it tries to peek at LTO'ed code using grep
+ # https://bugs.gentoo.org/854510
+ # https://github.com/aranym/aranym/commit/52c56bba30ddea27a0a7179da89cac1c71228de6
+ #
+ # Fixed in git master. Try removing this on the next version bump.
+ filter-lto
+
tc-export_build_env
export CC_FOR_BUILD=$(tc-getBUILD_CC) CXX_FOR_BUILD=$(tc-getBUILD_CXX)
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-03-03 23:18 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-03 23:18 [gentoo-commits] repo/gentoo:master commit in: app-emulation/aranym/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2023-06-25 19:17 Sam James
2022-04-16 21:01 James Le Cuirot
2019-12-11 23:23 James Le Cuirot
2019-12-11 23:23 James Le Cuirot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox