public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: games-action/blackvoxel/
@ 2021-04-29 22:28 Samuel Bauer
  0 siblings, 0 replies; 5+ messages in thread
From: Samuel Bauer @ 2021-04-29 22:28 UTC (permalink / raw
  To: gentoo-commits

commit:     46ee80599cf0e0f4a069cbc332bc62a8e83ef64b
Author:     Samuel Bauer <samuel.bauer <AT> yahoo <DOT> fr>
AuthorDate: Thu Apr 29 22:27:24 2021 +0000
Commit:     Samuel Bauer <samuel.bauer <AT> yahoo <DOT> fr>
CommitDate: Thu Apr 29 22:27:24 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=46ee8059

games-action/blackvoxel: drop eutils

Signed-off-by: Samuel Bauer <samuel.bauer <AT> yahoo.fr>

 games-action/blackvoxel/blackvoxel-2.42.ebuild | 2 +-
 games-action/blackvoxel/blackvoxel-9999.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/games-action/blackvoxel/blackvoxel-2.42.ebuild b/games-action/blackvoxel/blackvoxel-2.42.ebuild
index 125773d8b..aac110c09 100644
--- a/games-action/blackvoxel/blackvoxel-2.42.ebuild
+++ b/games-action/blackvoxel/blackvoxel-2.42.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit desktop eutils xdg
+inherit desktop xdg
 
 DESCRIPTION="Blackvoxel Video Game"
 HOMEPAGE="https://www.blackvoxel.com/"

diff --git a/games-action/blackvoxel/blackvoxel-9999.ebuild b/games-action/blackvoxel/blackvoxel-9999.ebuild
index 6e3d11256..b52f4b8b1 100644
--- a/games-action/blackvoxel/blackvoxel-9999.ebuild
+++ b/games-action/blackvoxel/blackvoxel-9999.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit eutils git-r3
+inherit git-r3
 
 DESCRIPTION="Blackvoxel Video Game"
 HOMEPAGE="https://www.blackvoxel.com/"


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: games-action/blackvoxel/
@ 2021-05-03 19:35 Samuel Bauer
  0 siblings, 0 replies; 5+ messages in thread
From: Samuel Bauer @ 2021-05-03 19:35 UTC (permalink / raw
  To: gentoo-commits

commit:     a1cc0bbf78ace25982570994ef1eac6a0093c46e
Author:     Samuel Bauer <samuel.bauer <AT> yahoo <DOT> fr>
AuthorDate: Mon May  3 19:35:27 2021 +0000
Commit:     Samuel Bauer <samuel.bauer <AT> yahoo <DOT> fr>
CommitDate: Mon May  3 19:35:27 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a1cc0bbf

games-action/blackvoxel: integrate work from #787074 in live ebuild

Signed-off-by: Samuel Bauer <samuel.bauer <AT> yahoo.fr>

 games-action/blackvoxel/blackvoxel-9999.ebuild | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/games-action/blackvoxel/blackvoxel-9999.ebuild b/games-action/blackvoxel/blackvoxel-9999.ebuild
index d20271cef..2cdbbd8db 100644
--- a/games-action/blackvoxel/blackvoxel-9999.ebuild
+++ b/games-action/blackvoxel/blackvoxel-9999.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit git-r3
+inherit git-r3 toolchain-funcs
 
 DESCRIPTION="Blackvoxel Video Game"
 HOMEPAGE="https://www.blackvoxel.com/"
@@ -30,11 +30,22 @@ src_prepare() {
 	sed -i -e 's/LDFLAGS=/LDFLAGS+= /' -e '/LDFLAGS/s/-s -zrelro //' \
 		-e '/(CPU_BITS)/ { s/; make //; s/cd/+make -C/}' \
 		-e '/CFLAGS+/d' -e 's/CFLAGS=/CFLAGS+=/' \
+		-e '/^CC=/d' -e 's/^LD=/CXX?=/' \
+		-e 's/CFLAGS/CXXFLAGS/g' -e 's/\$(CC)/$(CXX)/' \
+		-e 's/\$(LD)/$(CXX)/' \
 		Makefile || die
+	sed -i -e 's/\<gcc\>/$(CC)/' -e 's/\<g++\>/$(CXX)/' \
+		-e 's/\<ar\>/$(AR)/' src/sc_Squirrel3/squirrel/Makefile \
+		src/sc_Squirrel3/sqstdlib/Makefile \
+		src/sc_Squirrel3/sq/Makefile || die
 	default
 }
 
 src_compile() {
+	export CXX="$(tc-getCXX)"
+	export CC="$(tc-getCC)"
+	export AR="$(tc-getAR)"
+
 	emake blackvoxeldatadir="/usr/share/${PN}" bindir="/usr/bin"
 }
 


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: games-action/blackvoxel/
@ 2021-05-03 20:30 Samuel Bauer
  0 siblings, 0 replies; 5+ messages in thread
From: Samuel Bauer @ 2021-05-03 20:30 UTC (permalink / raw
  To: gentoo-commits

commit:     6e07b70543852d33b276bea80cfb3d928d7c32ca
Author:     Samuel Bauer <samuel.bauer <AT> yahoo <DOT> fr>
AuthorDate: Mon May  3 20:29:54 2021 +0000
Commit:     Samuel Bauer <samuel.bauer <AT> yahoo <DOT> fr>
CommitDate: Mon May  3 20:29:54 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6e07b705

games-action/blackvoxel-9999: regex rework

Signed-off-by: Samuel Bauer <samuel.bauer <AT> yahoo.fr>

 games-action/blackvoxel/blackvoxel-9999.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/games-action/blackvoxel/blackvoxel-9999.ebuild b/games-action/blackvoxel/blackvoxel-9999.ebuild
index 2cdbbd8db..f9dc33fc2 100644
--- a/games-action/blackvoxel/blackvoxel-9999.ebuild
+++ b/games-action/blackvoxel/blackvoxel-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2020 Gentoo Authors
+# Copyright 2018-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -34,7 +34,7 @@ src_prepare() {
 		-e 's/CFLAGS/CXXFLAGS/g' -e 's/\$(CC)/$(CXX)/' \
 		-e 's/\$(LD)/$(CXX)/' \
 		Makefile || die
-	sed -i -e 's/\<gcc\>/$(CC)/' -e 's/\<g++\>/$(CXX)/' \
+	sed -i -e 's/\<gcc\>/$(CC)/' -e 's/\<g++ /$(CXX) /' \
 		-e 's/\<ar\>/$(AR)/' src/sc_Squirrel3/squirrel/Makefile \
 		src/sc_Squirrel3/sqstdlib/Makefile \
 		src/sc_Squirrel3/sq/Makefile || die


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: games-action/blackvoxel/
@ 2022-07-24 23:12 Samuel Bauer
  0 siblings, 0 replies; 5+ messages in thread
From: Samuel Bauer @ 2022-07-24 23:12 UTC (permalink / raw
  To: gentoo-commits

commit:     d56e5874dac721ab0c01dfccb054c1b87c401d97
Author:     Samuel Bauer <samuel.bauer <AT> yahoo <DOT> fr>
AuthorDate: Sun Jul 24 23:12:14 2022 +0000
Commit:     Samuel Bauer <samuel.bauer <AT> yahoo <DOT> fr>
CommitDate: Sun Jul 24 23:12:14 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d56e5874

games-action/blackvoxel: add -fno-strict-aliasing

Signed-off-by: Samuel Bauer <samuel.bauer <AT> yahoo.fr>

 games-action/blackvoxel/blackvoxel-2.50.ebuild | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/games-action/blackvoxel/blackvoxel-2.50.ebuild b/games-action/blackvoxel/blackvoxel-2.50.ebuild
index 900d25e7c..d6c70fed5 100644
--- a/games-action/blackvoxel/blackvoxel-2.50.ebuild
+++ b/games-action/blackvoxel/blackvoxel-2.50.ebuild
@@ -1,9 +1,9 @@
-# Copyright 2020-2021 Gentoo Authors
+# Copyright 2020-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-inherit desktop toolchain-funcs xdg
+inherit desktop flag-o-matic toolchain-funcs xdg
 
 DESCRIPTION="Blackvoxel Video Game"
 HOMEPAGE="https://www.blackvoxel.com/"
@@ -31,6 +31,12 @@ PATCHES=(
 	"${FILESDIR}"/${P}-savedir.patch
 )
 
+src_prepare() {
+	default
+	append-cflags -fno-strict-aliasing
+	append-cxxflags -fno-strict-aliasing
+}
+
 src_compile() {
 	export CXX="$(tc-getCXX)"
 	export CC="$(tc-getCC)"


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: games-action/blackvoxel/
@ 2023-05-27 17:16 Rahul Sandhu
  0 siblings, 0 replies; 5+ messages in thread
From: Rahul Sandhu @ 2023-05-27 17:16 UTC (permalink / raw
  To: gentoo-commits

commit:     fb01a317fb938cc0c076d08d8c5f20e11739114b
Author:     Rahul Sandhu <rahul <AT> sandhuservices <DOT> dev>
AuthorDate: Sat May 27 17:16:03 2023 +0000
Commit:     Rahul Sandhu <rahul <AT> sandhuservices <DOT> dev>
CommitDate: Sat May 27 17:16:03 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=fb01a317

games-action/blackvoxel: update EAPI 7 -> 8

Signed-off-by: Rahul Sandhu <rahul <AT> sandhuservices.dev>

 games-action/blackvoxel/blackvoxel-9999.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-action/blackvoxel/blackvoxel-9999.ebuild b/games-action/blackvoxel/blackvoxel-9999.ebuild
index f9dc33fc2..d36bc7da8 100644
--- a/games-action/blackvoxel/blackvoxel-9999.ebuild
+++ b/games-action/blackvoxel/blackvoxel-9999.ebuild
@@ -1,7 +1,7 @@
 # Copyright 2018-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit git-r3 toolchain-funcs
 


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2023-05-27 17:16 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-05-03 19:35 [gentoo-commits] repo/proj/guru:dev commit in: games-action/blackvoxel/ Samuel Bauer
  -- strict thread matches above, loose matches on Subject: below --
2023-05-27 17:16 Rahul Sandhu
2022-07-24 23:12 Samuel Bauer
2021-05-03 20:30 Samuel Bauer
2021-04-29 22:28 Samuel Bauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox