public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-util/rgbds/
@ 2023-01-15 14:16 Sam James
  0 siblings, 0 replies; 20+ messages in thread
From: Sam James @ 2023-01-15 14:16 UTC (permalink / raw
  To: gentoo-commits

commit:     46ddc2d43b3c5adbbb33d1a02222ba0e9c9c1f0c
Author:     orbea <orbea <AT> riseup <DOT> net>
AuthorDate: Wed Dec 28 01:06:28 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jan 15 14:16:10 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46ddc2d4

dev-util/rgbds: New package, v0.6.1

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-util/rgbds/Manifest           |  1 +
 dev-util/rgbds/metadata.xml       | 20 ++++++++++++++++++++
 dev-util/rgbds/rgbds-0.6.1.ebuild | 37 +++++++++++++++++++++++++++++++++++++
 dev-util/rgbds/rgbds-9999.ebuild  | 37 +++++++++++++++++++++++++++++++++++++
 4 files changed, 95 insertions(+)

diff --git a/dev-util/rgbds/Manifest b/dev-util/rgbds/Manifest
new file mode 100644
index 000000000000..d704150cb693
--- /dev/null
+++ b/dev-util/rgbds/Manifest
@@ -0,0 +1 @@
+DIST rgbds-0.6.1.tar.gz 8041890 BLAKE2B cd5483e6fa5e2ca3bc9a6e3de44fdf7dc92289d558ac72d8922c0cf21b9dc576b878bfd7610cb41f791ad16cc415e446c925ee0dbc77ec4370d6ef4549935681 SHA512 b4a111e3d98a190d3c9b500dc59585fe68a8e6febc79b6716b406b96714e401bac427336388409ae456ee0f1e5a2c285bfe7b4bfa10e0d148ffc161adefe435b

diff --git a/dev-util/rgbds/metadata.xml b/dev-util/rgbds/metadata.xml
new file mode 100644
index 000000000000..d3ec151f4b91
--- /dev/null
+++ b/dev-util/rgbds/metadata.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM 'https://www.gentoo.org/dtd/metadata.dtd'>
+<pkgmetadata>
+	<maintainer type="person" proxied="yes">
+		<email>orbea@riseup.net</email>
+		<name>orbea</name>
+	</maintainer>
+	<maintainer type="project" proxied="proxy">
+		<email>proxy-maint@gentoo.org</email>
+		<name>Proxy Maintainers</name>
+	</maintainer>
+	<longdescription>
+		RGBDS (Rednex Game Boy Development System) is a free assembler
+		and linker package for the Game Boy and Game Boy Color.
+	</longdescription>
+	<upstream>
+		<bugs-to>https://github.com/gbdev/rgbds/issues</bugs-to>
+		<remote-id type="github">gbdev/rgbds</remote-id>
+	</upstream>
+</pkgmetadata>

diff --git a/dev-util/rgbds/rgbds-0.6.1.ebuild b/dev-util/rgbds/rgbds-0.6.1.ebuild
new file mode 100644
index 000000000000..9245f4deb4f2
--- /dev/null
+++ b/dev-util/rgbds/rgbds-0.6.1.ebuild
@@ -0,0 +1,37 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit flag-o-matic toolchain-funcs
+
+DESCRIPTION="Rednex Game Boy Development System"
+HOMEPAGE="https://rgbds.gbdev.io/"
+if [[ "${PV}" == *9999 ]] ; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/gbdev/${PN}.git"
+else
+	SRC_URI="https://github.com/gbdev/${PN}/archive/v${PV}/${P}.tar.gz"
+	KEYWORDS="~amd64"
+fi
+
+LICENSE="ZLIB"
+SLOT="0"
+
+DEPEND="media-libs/libpng"
+RDEPEND="${DEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+src_compile() {
+	append-flags -DNDEBUG
+
+	emake Q= \
+		CC="$(tc-getCC)" \
+		CXX="$(tc-getCXX)" \
+		PKG_CONFIG="$(tc-getPKG_CONFIG)"
+}
+
+src_install() {
+	emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr Q= STRIP= install
+	dodoc README.rst
+}

diff --git a/dev-util/rgbds/rgbds-9999.ebuild b/dev-util/rgbds/rgbds-9999.ebuild
new file mode 100644
index 000000000000..9245f4deb4f2
--- /dev/null
+++ b/dev-util/rgbds/rgbds-9999.ebuild
@@ -0,0 +1,37 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit flag-o-matic toolchain-funcs
+
+DESCRIPTION="Rednex Game Boy Development System"
+HOMEPAGE="https://rgbds.gbdev.io/"
+if [[ "${PV}" == *9999 ]] ; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/gbdev/${PN}.git"
+else
+	SRC_URI="https://github.com/gbdev/${PN}/archive/v${PV}/${P}.tar.gz"
+	KEYWORDS="~amd64"
+fi
+
+LICENSE="ZLIB"
+SLOT="0"
+
+DEPEND="media-libs/libpng"
+RDEPEND="${DEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+src_compile() {
+	append-flags -DNDEBUG
+
+	emake Q= \
+		CC="$(tc-getCC)" \
+		CXX="$(tc-getCXX)" \
+		PKG_CONFIG="$(tc-getPKG_CONFIG)"
+}
+
+src_install() {
+	emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr Q= STRIP= install
+	dodoc README.rst
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/rgbds/
@ 2023-02-22  9:32 Sam James
  0 siblings, 0 replies; 20+ messages in thread
From: Sam James @ 2023-02-22  9:32 UTC (permalink / raw
  To: gentoo-commits

commit:     26a7567ef54d32e51519f9681259fb2a18cd50af
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 22 09:25:02 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Feb 22 09:25:02 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26a7567e

dev-util/rgbds: proxy orbea directly

I'll proxy directly.

Bug: https://bugs.gentoo.org/895856
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-util/rgbds/metadata.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-util/rgbds/metadata.xml b/dev-util/rgbds/metadata.xml
index d3ec151f4b91..3a4e6955ce0b 100644
--- a/dev-util/rgbds/metadata.xml
+++ b/dev-util/rgbds/metadata.xml
@@ -5,9 +5,9 @@
 		<email>orbea@riseup.net</email>
 		<name>orbea</name>
 	</maintainer>
-	<maintainer type="project" proxied="proxy">
-		<email>proxy-maint@gentoo.org</email>
-		<name>Proxy Maintainers</name>
+	<maintainer type="person" proxied="proxy">
+		<email>sam@gentoo.org</email>
+		<name>Sam James</name>
 	</maintainer>
 	<longdescription>
 		RGBDS (Rednex Game Boy Development System) is a free assembler


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/rgbds/
@ 2023-09-13  3:20 Sam James
  0 siblings, 0 replies; 20+ messages in thread
From: Sam James @ 2023-09-13  3:20 UTC (permalink / raw
  To: gentoo-commits

commit:     914773b46d508237ea99ff65a3fb311db9ba59fa
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 13 03:19:42 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Sep 13 03:19:42 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=914773b4

dev-util/rgbds: Keyword 0.6.1 arm64, #891201

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-util/rgbds/rgbds-0.6.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/rgbds/rgbds-0.6.1.ebuild b/dev-util/rgbds/rgbds-0.6.1.ebuild
index 9245f4deb4f2..f3fd206b2fe6 100644
--- a/dev-util/rgbds/rgbds-0.6.1.ebuild
+++ b/dev-util/rgbds/rgbds-0.6.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2022 Gentoo Authors
+# Copyright 2022-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -12,7 +12,7 @@ if [[ "${PV}" == *9999 ]] ; then
 	EGIT_REPO_URI="https://github.com/gbdev/${PN}.git"
 else
 	SRC_URI="https://github.com/gbdev/${PN}/archive/v${PV}/${P}.tar.gz"
-	KEYWORDS="~amd64"
+	KEYWORDS="~amd64 ~arm64"
 fi
 
 LICENSE="ZLIB"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/rgbds/
@ 2023-09-17  8:56 Arthur Zamarin
  0 siblings, 0 replies; 20+ messages in thread
From: Arthur Zamarin @ 2023-09-17  8:56 UTC (permalink / raw
  To: gentoo-commits

commit:     a96a3b7f2e11eb49ca9057d138061da932116c2c
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 17 08:56:27 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Sep 17 08:56:39 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a96a3b7f

dev-util/rgbds: Keyword 0.6.1 x86, #891201

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-util/rgbds/rgbds-0.6.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/rgbds/rgbds-0.6.1.ebuild b/dev-util/rgbds/rgbds-0.6.1.ebuild
index f3fd206b2fe6..6b003f1b29ba 100644
--- a/dev-util/rgbds/rgbds-0.6.1.ebuild
+++ b/dev-util/rgbds/rgbds-0.6.1.ebuild
@@ -12,7 +12,7 @@ if [[ "${PV}" == *9999 ]] ; then
 	EGIT_REPO_URI="https://github.com/gbdev/${PN}.git"
 else
 	SRC_URI="https://github.com/gbdev/${PN}/archive/v${PV}/${P}.tar.gz"
-	KEYWORDS="~amd64 ~arm64"
+	KEYWORDS="~amd64 ~arm64 ~x86"
 fi
 
 LICENSE="ZLIB"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/rgbds/
@ 2023-12-02  9:24 Arthur Zamarin
  0 siblings, 0 replies; 20+ messages in thread
From: Arthur Zamarin @ 2023-12-02  9:24 UTC (permalink / raw
  To: gentoo-commits

commit:     1b1c03612f5ee0395ee796bb6db9a37dfabe54ab
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Dec  2 09:23:09 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Dec  2 09:23:09 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b1c0361

dev-util/rgbds: Keyword 0.6.1 ppc, #891201

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-util/rgbds/rgbds-0.6.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/rgbds/rgbds-0.6.1.ebuild b/dev-util/rgbds/rgbds-0.6.1.ebuild
index 6b003f1b29ba..fba59c5fe482 100644
--- a/dev-util/rgbds/rgbds-0.6.1.ebuild
+++ b/dev-util/rgbds/rgbds-0.6.1.ebuild
@@ -12,7 +12,7 @@ if [[ "${PV}" == *9999 ]] ; then
 	EGIT_REPO_URI="https://github.com/gbdev/${PN}.git"
 else
 	SRC_URI="https://github.com/gbdev/${PN}/archive/v${PV}/${P}.tar.gz"
-	KEYWORDS="~amd64 ~arm64 ~x86"
+	KEYWORDS="~amd64 ~arm64 ~ppc ~x86"
 fi
 
 LICENSE="ZLIB"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/rgbds/
@ 2023-12-03  7:42 Sam James
  0 siblings, 0 replies; 20+ messages in thread
From: Sam James @ 2023-12-03  7:42 UTC (permalink / raw
  To: gentoo-commits

commit:     d3f402a34049663b20fdc1ba6e9dcb3d2841f54d
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Dec  3 07:41:33 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Dec  3 07:41:33 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3f402a3

dev-util/rgbds: Keyword 0.6.1 ppc64, #891201

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-util/rgbds/rgbds-0.6.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/rgbds/rgbds-0.6.1.ebuild b/dev-util/rgbds/rgbds-0.6.1.ebuild
index fba59c5fe482..dbaaeda14a40 100644
--- a/dev-util/rgbds/rgbds-0.6.1.ebuild
+++ b/dev-util/rgbds/rgbds-0.6.1.ebuild
@@ -12,7 +12,7 @@ if [[ "${PV}" == *9999 ]] ; then
 	EGIT_REPO_URI="https://github.com/gbdev/${PN}.git"
 else
 	SRC_URI="https://github.com/gbdev/${PN}/archive/v${PV}/${P}.tar.gz"
-	KEYWORDS="~amd64 ~arm64 ~ppc ~x86"
+	KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
 fi
 
 LICENSE="ZLIB"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/rgbds/
@ 2024-01-05  5:24 Sam James
  0 siblings, 0 replies; 20+ messages in thread
From: Sam James @ 2024-01-05  5:24 UTC (permalink / raw
  To: gentoo-commits

commit:     2be7d3e1c44effae1c484d20b634c9bd8e41eee8
Author:     orbea <orbea <AT> riseup <DOT> net>
AuthorDate: Sun Nov 26 14:15:28 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jan  5 05:24:06 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2be7d3e1

dev-util/rgbds: update LICENSE

Closes: https://bugs.gentoo.org/917666
Signed-off-by: orbea <orbea <AT> riseup.net>
Closes: https://github.com/gentoo/gentoo/pull/34001
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-util/rgbds/rgbds-0.6.1.ebuild | 2 +-
 dev-util/rgbds/rgbds-9999.ebuild  | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-util/rgbds/rgbds-0.6.1.ebuild b/dev-util/rgbds/rgbds-0.6.1.ebuild
index dbaaeda14a40..8a643cb45801 100644
--- a/dev-util/rgbds/rgbds-0.6.1.ebuild
+++ b/dev-util/rgbds/rgbds-0.6.1.ebuild
@@ -15,7 +15,7 @@ else
 	KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
 fi
 
-LICENSE="ZLIB"
+LICENSE="MIT"
 SLOT="0"
 
 DEPEND="media-libs/libpng"

diff --git a/dev-util/rgbds/rgbds-9999.ebuild b/dev-util/rgbds/rgbds-9999.ebuild
index 9245f4deb4f2..51e115fe3583 100644
--- a/dev-util/rgbds/rgbds-9999.ebuild
+++ b/dev-util/rgbds/rgbds-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2022 Gentoo Authors
+# Copyright 2022-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -15,7 +15,7 @@ else
 	KEYWORDS="~amd64"
 fi
 
-LICENSE="ZLIB"
+LICENSE="MIT"
 SLOT="0"
 
 DEPEND="media-libs/libpng"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/rgbds/
@ 2024-01-06 19:30 Viorel Munteanu
  0 siblings, 0 replies; 20+ messages in thread
From: Viorel Munteanu @ 2024-01-06 19:30 UTC (permalink / raw
  To: gentoo-commits

commit:     aafa42a3bba445df19e525a24747d4013982417e
Author:     Matoro Mahri <matoro_gentoo <AT> matoro <DOT> tk>
AuthorDate: Fri Jan  5 18:44:11 2024 +0000
Commit:     Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Sat Jan  6 19:29:04 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aafa42a3

dev-util/rgbds: Keyword 0.6.1 arm, #891201

Signed-off-by: Matoro Mahri <matoro_gentoo <AT> matoro.tk>
Signed-off-by: Viorel Munteanu <ceamac <AT> gentoo.org>

 dev-util/rgbds/rgbds-0.6.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/rgbds/rgbds-0.6.1.ebuild b/dev-util/rgbds/rgbds-0.6.1.ebuild
index 8a643cb45801..87cf24b0e1a2 100644
--- a/dev-util/rgbds/rgbds-0.6.1.ebuild
+++ b/dev-util/rgbds/rgbds-0.6.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2022-2023 Gentoo Authors
+# Copyright 2022-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -12,7 +12,7 @@ if [[ "${PV}" == *9999 ]] ; then
 	EGIT_REPO_URI="https://github.com/gbdev/${PN}.git"
 else
 	SRC_URI="https://github.com/gbdev/${PN}/archive/v${PV}/${P}.tar.gz"
-	KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
+	KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
 fi
 
 LICENSE="MIT"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/rgbds/
@ 2024-02-14 15:52 Joonas Niilola
  0 siblings, 0 replies; 20+ messages in thread
From: Joonas Niilola @ 2024-02-14 15:52 UTC (permalink / raw
  To: gentoo-commits

commit:     bd42796c2795ad1093a6719d01a788340c13b47b
Author:     orbea <orbea <AT> riseup <DOT> net>
AuthorDate: Wed Jan 10 00:50:28 2024 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Wed Feb 14 15:51:15 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd42796c

dev-util/rgbds: add 0.7.0

Closes: https://bugs.gentoo.org/921678
Signed-off-by: orbea <orbea <AT> riseup.net>
Closes: https://github.com/gentoo/gentoo/pull/34728
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 dev-util/rgbds/Manifest           |  1 +
 dev-util/rgbds/rgbds-0.7.0.ebuild | 37 +++++++++++++++++++++++++++++++++++++
 2 files changed, 38 insertions(+)

diff --git a/dev-util/rgbds/Manifest b/dev-util/rgbds/Manifest
index d704150cb693..69dd78cd02f6 100644
--- a/dev-util/rgbds/Manifest
+++ b/dev-util/rgbds/Manifest
@@ -1 +1,2 @@
 DIST rgbds-0.6.1.tar.gz 8041890 BLAKE2B cd5483e6fa5e2ca3bc9a6e3de44fdf7dc92289d558ac72d8922c0cf21b9dc576b878bfd7610cb41f791ad16cc415e446c925ee0dbc77ec4370d6ef4549935681 SHA512 b4a111e3d98a190d3c9b500dc59585fe68a8e6febc79b6716b406b96714e401bac427336388409ae456ee0f1e5a2c285bfe7b4bfa10e0d148ffc161adefe435b
+DIST rgbds-0.7.0.tar.gz 8053662 BLAKE2B 07f6901eeaade45125acce5c33430bdefc5a4228d2fe952d55ca254c0fc17dc5248262ecc7df5e9dd0a73aab29a39a2b38988a7ae93ad739609397a286e96aa9 SHA512 82d799f9639cb3a4c110f84f5184f46a371e66428e7d3b4f3f0229473d472dea1b381268df92736f2d1d4f5e8e2c83b61888c3ab4055768f9472b834f66f2f68

diff --git a/dev-util/rgbds/rgbds-0.7.0.ebuild b/dev-util/rgbds/rgbds-0.7.0.ebuild
new file mode 100644
index 000000000000..87cf24b0e1a2
--- /dev/null
+++ b/dev-util/rgbds/rgbds-0.7.0.ebuild
@@ -0,0 +1,37 @@
+# Copyright 2022-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit flag-o-matic toolchain-funcs
+
+DESCRIPTION="Rednex Game Boy Development System"
+HOMEPAGE="https://rgbds.gbdev.io/"
+if [[ "${PV}" == *9999 ]] ; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/gbdev/${PN}.git"
+else
+	SRC_URI="https://github.com/gbdev/${PN}/archive/v${PV}/${P}.tar.gz"
+	KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+
+DEPEND="media-libs/libpng"
+RDEPEND="${DEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+src_compile() {
+	append-flags -DNDEBUG
+
+	emake Q= \
+		CC="$(tc-getCC)" \
+		CXX="$(tc-getCXX)" \
+		PKG_CONFIG="$(tc-getPKG_CONFIG)"
+}
+
+src_install() {
+	emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr Q= STRIP= install
+	dodoc README.rst
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/rgbds/
@ 2024-02-14 15:52 Joonas Niilola
  0 siblings, 0 replies; 20+ messages in thread
From: Joonas Niilola @ 2024-02-14 15:52 UTC (permalink / raw
  To: gentoo-commits

commit:     ab1d8c9e98b426c57969534e497ca538850eadec
Author:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 14 15:51:58 2024 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Wed Feb 14 15:51:58 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab1d8c9e

dev-util/rgbds: add bison BDEP

Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 dev-util/rgbds/rgbds-0.7.0.ebuild | 3 ++-
 dev-util/rgbds/rgbds-9999.ebuild  | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/dev-util/rgbds/rgbds-0.7.0.ebuild b/dev-util/rgbds/rgbds-0.7.0.ebuild
index 87cf24b0e1a2..15f4299a0ec4 100644
--- a/dev-util/rgbds/rgbds-0.7.0.ebuild
+++ b/dev-util/rgbds/rgbds-0.7.0.ebuild
@@ -20,7 +20,8 @@ SLOT="0"
 
 DEPEND="media-libs/libpng"
 RDEPEND="${DEPEND}"
-BDEPEND="virtual/pkgconfig"
+BDEPEND="app-alternatives/yacc[bison]
+	virtual/pkgconfig"
 
 src_compile() {
 	append-flags -DNDEBUG

diff --git a/dev-util/rgbds/rgbds-9999.ebuild b/dev-util/rgbds/rgbds-9999.ebuild
index 87cf24b0e1a2..15f4299a0ec4 100644
--- a/dev-util/rgbds/rgbds-9999.ebuild
+++ b/dev-util/rgbds/rgbds-9999.ebuild
@@ -20,7 +20,8 @@ SLOT="0"
 
 DEPEND="media-libs/libpng"
 RDEPEND="${DEPEND}"
-BDEPEND="virtual/pkgconfig"
+BDEPEND="app-alternatives/yacc[bison]
+	virtual/pkgconfig"
 
 src_compile() {
 	append-flags -DNDEBUG


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/rgbds/
@ 2024-02-14 15:52 Joonas Niilola
  0 siblings, 0 replies; 20+ messages in thread
From: Joonas Niilola @ 2024-02-14 15:52 UTC (permalink / raw
  To: gentoo-commits

commit:     98d2f1af7e7539270dc2af21a5874af5784e2f75
Author:     orbea <orbea <AT> riseup <DOT> net>
AuthorDate: Wed Jan 10 00:49:18 2024 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Wed Feb 14 15:51:15 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98d2f1af

dev-util/rgbds: sync keywords

Signed-off-by: orbea <orbea <AT> riseup.net>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 dev-util/rgbds/rgbds-9999.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/rgbds/rgbds-9999.ebuild b/dev-util/rgbds/rgbds-9999.ebuild
index 51e115fe3583..87cf24b0e1a2 100644
--- a/dev-util/rgbds/rgbds-9999.ebuild
+++ b/dev-util/rgbds/rgbds-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2022-2023 Gentoo Authors
+# Copyright 2022-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -12,7 +12,7 @@ if [[ "${PV}" == *9999 ]] ; then
 	EGIT_REPO_URI="https://github.com/gbdev/${PN}.git"
 else
 	SRC_URI="https://github.com/gbdev/${PN}/archive/v${PV}/${P}.tar.gz"
-	KEYWORDS="~amd64"
+	KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
 fi
 
 LICENSE="MIT"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/rgbds/
@ 2024-02-23 10:50 Viorel Munteanu
  0 siblings, 0 replies; 20+ messages in thread
From: Viorel Munteanu @ 2024-02-23 10:50 UTC (permalink / raw
  To: gentoo-commits

commit:     00624a587f704e65d9f566970f75fb8b56a8744d
Author:     orbea <orbea <AT> riseup <DOT> net>
AuthorDate: Wed Feb 21 14:22:00 2024 +0000
Commit:     Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Fri Feb 23 10:50:31 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00624a58

dev-util/rgbds: fix the live ebuild install

Upstream renamed README.rst to README.md.

Signed-off-by: orbea <orbea <AT> riseup.net>
Closes: https://github.com/gentoo/gentoo/pull/35468
Signed-off-by: Viorel Munteanu <ceamac <AT> gentoo.org>

 dev-util/rgbds/rgbds-9999.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/rgbds/rgbds-9999.ebuild b/dev-util/rgbds/rgbds-9999.ebuild
index 15f4299a0ec4..01a4fc5c18e6 100644
--- a/dev-util/rgbds/rgbds-9999.ebuild
+++ b/dev-util/rgbds/rgbds-9999.ebuild
@@ -34,5 +34,5 @@ src_compile() {
 
 src_install() {
 	emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr Q= STRIP= install
-	dodoc README.rst
+	dodoc README.md
 }


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/rgbds/
@ 2024-02-23 10:50 Viorel Munteanu
  0 siblings, 0 replies; 20+ messages in thread
From: Viorel Munteanu @ 2024-02-23 10:50 UTC (permalink / raw
  To: gentoo-commits

commit:     cc583f753b4482a6d44e242188b41f8afb090171
Author:     Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 23 10:50:13 2024 +0000
Commit:     Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Fri Feb 23 10:50:31 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc583f75

dev-util/rgbds: update maintainers

Signed-off-by: Viorel Munteanu <ceamac <AT> gentoo.org>

 dev-util/rgbds/metadata.xml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/dev-util/rgbds/metadata.xml b/dev-util/rgbds/metadata.xml
index 3a4e6955ce0b..e314ff3cf8d1 100644
--- a/dev-util/rgbds/metadata.xml
+++ b/dev-util/rgbds/metadata.xml
@@ -9,6 +9,10 @@
 		<email>sam@gentoo.org</email>
 		<name>Sam James</name>
 	</maintainer>
+	<maintainer type="project" proxied="proxy">
+		<email>proxy-maint@gentoo.org</email>
+		<name>Proxy Maintainers</name>
+	</maintainer>
 	<longdescription>
 		RGBDS (Rednex Game Boy Development System) is a free assembler
 		and linker package for the Game Boy and Game Boy Color.


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/rgbds/
@ 2024-03-21  2:45 Sam James
  0 siblings, 0 replies; 20+ messages in thread
From: Sam James @ 2024-03-21  2:45 UTC (permalink / raw
  To: gentoo-commits

commit:     3b6411d567fe741d9c4ad6a04c81aea8f13fd7cc
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 21 02:44:20 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Mar 21 02:45:11 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b6411d5

dev-util/rgbds: tweak phase order

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-util/rgbds/rgbds-0.7.0.ebuild | 10 +++++-----
 dev-util/rgbds/rgbds-9999.ebuild  | 10 +++++-----
 2 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/dev-util/rgbds/rgbds-0.7.0.ebuild b/dev-util/rgbds/rgbds-0.7.0.ebuild
index 562335e6e1e6..dad5871d9c6d 100644
--- a/dev-util/rgbds/rgbds-0.7.0.ebuild
+++ b/dev-util/rgbds/rgbds-0.7.0.ebuild
@@ -32,11 +32,6 @@ src_compile() {
 		PKG_CONFIG="$(tc-getPKG_CONFIG)"
 }
 
-src_install() {
-	emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr Q= STRIP= install
-	dodoc README.rst
-}
-
 src_test() {
 	local dir
 	for dir in asm link fix gfx; do
@@ -45,3 +40,8 @@ src_test() {
 		popd >/dev/null || die
 	done
 }
+
+src_install() {
+	emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr Q= STRIP= install
+	dodoc README.rst
+}

diff --git a/dev-util/rgbds/rgbds-9999.ebuild b/dev-util/rgbds/rgbds-9999.ebuild
index 15028b55d8d2..1c56a141d6b9 100644
--- a/dev-util/rgbds/rgbds-9999.ebuild
+++ b/dev-util/rgbds/rgbds-9999.ebuild
@@ -32,11 +32,6 @@ src_compile() {
 		PKG_CONFIG="$(tc-getPKG_CONFIG)"
 }
 
-src_install() {
-	emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr Q= STRIP= install
-	dodoc README.md
-}
-
 src_test() {
 	local dir
 	for dir in asm link fix gfx; do
@@ -45,3 +40,8 @@ src_test() {
 		popd >/dev/null || die
 	done
 }
+
+src_install() {
+	emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr Q= STRIP= install
+	dodoc README.md
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/rgbds/
@ 2024-03-21  2:45 Sam James
  0 siblings, 0 replies; 20+ messages in thread
From: Sam James @ 2024-03-21  2:45 UTC (permalink / raw
  To: gentoo-commits

commit:     67f0b56fbfb18e333a75490785862c193630e4fb
Author:     orbea <orbea <AT> riseup <DOT> net>
AuthorDate: Sat Mar  2 02:00:02 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Mar 21 02:45:10 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67f0b56f

dev-util/rgbds: enable tests

Signed-off-by: orbea <orbea <AT> riseup.net>
Closes: https://github.com/gentoo/gentoo/pull/35594
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-util/rgbds/rgbds-0.7.0.ebuild | 9 +++++++++
 dev-util/rgbds/rgbds-9999.ebuild  | 9 +++++++++
 2 files changed, 18 insertions(+)

diff --git a/dev-util/rgbds/rgbds-0.7.0.ebuild b/dev-util/rgbds/rgbds-0.7.0.ebuild
index 15f4299a0ec4..562335e6e1e6 100644
--- a/dev-util/rgbds/rgbds-0.7.0.ebuild
+++ b/dev-util/rgbds/rgbds-0.7.0.ebuild
@@ -36,3 +36,12 @@ src_install() {
 	emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr Q= STRIP= install
 	dodoc README.rst
 }
+
+src_test() {
+	local dir
+	for dir in asm link fix gfx; do
+		pushd "test/${dir}" >/dev/null || die
+		./test.sh || die
+		popd >/dev/null || die
+	done
+}

diff --git a/dev-util/rgbds/rgbds-9999.ebuild b/dev-util/rgbds/rgbds-9999.ebuild
index 01a4fc5c18e6..15028b55d8d2 100644
--- a/dev-util/rgbds/rgbds-9999.ebuild
+++ b/dev-util/rgbds/rgbds-9999.ebuild
@@ -36,3 +36,12 @@ src_install() {
 	emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr Q= STRIP= install
 	dodoc README.md
 }
+
+src_test() {
+	local dir
+	for dir in asm link fix gfx; do
+		pushd "test/${dir}" >/dev/null || die
+		./test.sh || die
+		popd >/dev/null || die
+	done
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/rgbds/
@ 2024-03-22  6:22 Arthur Zamarin
  0 siblings, 0 replies; 20+ messages in thread
From: Arthur Zamarin @ 2024-03-22  6:22 UTC (permalink / raw
  To: gentoo-commits

commit:     b0d73c0bbef45ccb55e1c1e0ca5daa7c5ed0d6c8
Author:     orbea <orbea <AT> riseup <DOT> net>
AuthorDate: Thu Mar 21 14:33:21 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Mar 22 06:17:44 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0d73c0b

dev-util/rgbds: fix bison dependency

The build uses bison directly and does not use yacc.

Signed-off-by: orbea <orbea <AT> riseup.net>
Closes: https://github.com/gentoo/gentoo/pull/35856
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-util/rgbds/rgbds-0.6.1.ebuild | 5 ++++-
 dev-util/rgbds/rgbds-0.7.0.ebuild | 6 ++++--
 dev-util/rgbds/rgbds-9999.ebuild  | 6 ++++--
 3 files changed, 12 insertions(+), 5 deletions(-)

diff --git a/dev-util/rgbds/rgbds-0.6.1.ebuild b/dev-util/rgbds/rgbds-0.6.1.ebuild
index 87cf24b0e1a2..91276f0bb814 100644
--- a/dev-util/rgbds/rgbds-0.6.1.ebuild
+++ b/dev-util/rgbds/rgbds-0.6.1.ebuild
@@ -20,7 +20,10 @@ SLOT="0"
 
 DEPEND="media-libs/libpng"
 RDEPEND="${DEPEND}"
-BDEPEND="virtual/pkgconfig"
+BDEPEND="
+	sys-devel/bison
+	virtual/pkgconfig
+"
 
 src_compile() {
 	append-flags -DNDEBUG

diff --git a/dev-util/rgbds/rgbds-0.7.0.ebuild b/dev-util/rgbds/rgbds-0.7.0.ebuild
index dad5871d9c6d..96b85fe6003d 100644
--- a/dev-util/rgbds/rgbds-0.7.0.ebuild
+++ b/dev-util/rgbds/rgbds-0.7.0.ebuild
@@ -20,8 +20,10 @@ SLOT="0"
 
 DEPEND="media-libs/libpng"
 RDEPEND="${DEPEND}"
-BDEPEND="app-alternatives/yacc[bison]
-	virtual/pkgconfig"
+BDEPEND="
+	sys-devel/bison
+	virtual/pkgconfig
+"
 
 src_compile() {
 	append-flags -DNDEBUG

diff --git a/dev-util/rgbds/rgbds-9999.ebuild b/dev-util/rgbds/rgbds-9999.ebuild
index 1c56a141d6b9..0a79e0043a34 100644
--- a/dev-util/rgbds/rgbds-9999.ebuild
+++ b/dev-util/rgbds/rgbds-9999.ebuild
@@ -20,8 +20,10 @@ SLOT="0"
 
 DEPEND="media-libs/libpng"
 RDEPEND="${DEPEND}"
-BDEPEND="app-alternatives/yacc[bison]
-	virtual/pkgconfig"
+BDEPEND="
+	sys-devel/bison
+	virtual/pkgconfig
+"
 
 src_compile() {
 	append-flags -DNDEBUG


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/rgbds/
@ 2024-05-09 13:04 Joonas Niilola
  0 siblings, 0 replies; 20+ messages in thread
From: Joonas Niilola @ 2024-05-09 13:04 UTC (permalink / raw
  To: gentoo-commits

commit:     9fa0d9e1740726aaabc977fc83bb24c4b42a7293
Author:     orbea <orbea <AT> riseup <DOT> net>
AuthorDate: Sun Mar 31 17:54:46 2024 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Thu May  9 13:02:48 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fa0d9e1

dev-util/rgbds: print which tests are being run

Signed-off-by: orbea <orbea <AT> riseup.net>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 dev-util/rgbds/rgbds-9999.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-util/rgbds/rgbds-9999.ebuild b/dev-util/rgbds/rgbds-9999.ebuild
index 0a79e0043a34..7f24c27d44dd 100644
--- a/dev-util/rgbds/rgbds-9999.ebuild
+++ b/dev-util/rgbds/rgbds-9999.ebuild
@@ -38,6 +38,7 @@ src_test() {
 	local dir
 	for dir in asm link fix gfx; do
 		pushd "test/${dir}" >/dev/null || die
+		einfo "Running ${dir} tests."
 		./test.sh || die
 		popd >/dev/null || die
 	done


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/rgbds/
@ 2024-06-30 12:41 Conrad Kostecki
  0 siblings, 0 replies; 20+ messages in thread
From: Conrad Kostecki @ 2024-06-30 12:41 UTC (permalink / raw
  To: gentoo-commits

commit:     2bec5f9b79336e5359a1e327cce308774f429bee
Author:     orbea <orbea <AT> riseup <DOT> net>
AuthorDate: Sat Jun 29 14:06:17 2024 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Jun 30 12:40:41 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bec5f9b

dev-util/rgbds: add 0.8.0

Signed-off-by: orbea <orbea <AT> riseup.net>
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 dev-util/rgbds/Manifest           |  1 +
 dev-util/rgbds/rgbds-0.8.0.ebuild | 50 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 51 insertions(+)

diff --git a/dev-util/rgbds/Manifest b/dev-util/rgbds/Manifest
index 69dd78cd02f6..7c4baea7b1c2 100644
--- a/dev-util/rgbds/Manifest
+++ b/dev-util/rgbds/Manifest
@@ -1,2 +1,3 @@
 DIST rgbds-0.6.1.tar.gz 8041890 BLAKE2B cd5483e6fa5e2ca3bc9a6e3de44fdf7dc92289d558ac72d8922c0cf21b9dc576b878bfd7610cb41f791ad16cc415e446c925ee0dbc77ec4370d6ef4549935681 SHA512 b4a111e3d98a190d3c9b500dc59585fe68a8e6febc79b6716b406b96714e401bac427336388409ae456ee0f1e5a2c285bfe7b4bfa10e0d148ffc161adefe435b
 DIST rgbds-0.7.0.tar.gz 8053662 BLAKE2B 07f6901eeaade45125acce5c33430bdefc5a4228d2fe952d55ca254c0fc17dc5248262ecc7df5e9dd0a73aab29a39a2b38988a7ae93ad739609397a286e96aa9 SHA512 82d799f9639cb3a4c110f84f5184f46a371e66428e7d3b4f3f0229473d472dea1b381268df92736f2d1d4f5e8e2c83b61888c3ab4055768f9472b834f66f2f68
+DIST rgbds-0.8.0.tar.gz 8052350 BLAKE2B 46edb43a530169d03e026070b61272e95357213747296658e4ceb821f8e420979ceffcbc07b41b6778187a1f6a614d3587416d5ad3596f19bacc6c9067051837 SHA512 1c36e0fc7ecfd930c9cbc9f9772d2c7268148e2d456c56c92265ba45b9108c531fc412669d980f6c621b4d89d367458f01a2e0cf20443f13b83f841585f3edac

diff --git a/dev-util/rgbds/rgbds-0.8.0.ebuild b/dev-util/rgbds/rgbds-0.8.0.ebuild
new file mode 100644
index 000000000000..7f24c27d44dd
--- /dev/null
+++ b/dev-util/rgbds/rgbds-0.8.0.ebuild
@@ -0,0 +1,50 @@
+# Copyright 2022-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit flag-o-matic toolchain-funcs
+
+DESCRIPTION="Rednex Game Boy Development System"
+HOMEPAGE="https://rgbds.gbdev.io/"
+if [[ "${PV}" == *9999 ]] ; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/gbdev/${PN}.git"
+else
+	SRC_URI="https://github.com/gbdev/${PN}/archive/v${PV}/${P}.tar.gz"
+	KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+
+DEPEND="media-libs/libpng"
+RDEPEND="${DEPEND}"
+BDEPEND="
+	sys-devel/bison
+	virtual/pkgconfig
+"
+
+src_compile() {
+	append-flags -DNDEBUG
+
+	emake Q= \
+		CC="$(tc-getCC)" \
+		CXX="$(tc-getCXX)" \
+		PKG_CONFIG="$(tc-getPKG_CONFIG)"
+}
+
+src_test() {
+	local dir
+	for dir in asm link fix gfx; do
+		pushd "test/${dir}" >/dev/null || die
+		einfo "Running ${dir} tests."
+		./test.sh || die
+		popd >/dev/null || die
+	done
+}
+
+src_install() {
+	emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr Q= STRIP= install
+	dodoc README.md
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/rgbds/
@ 2024-06-30 12:41 Conrad Kostecki
  0 siblings, 0 replies; 20+ messages in thread
From: Conrad Kostecki @ 2024-06-30 12:41 UTC (permalink / raw
  To: gentoo-commits

commit:     727c2f7752bd688045a5509f0d73d89d04885c06
Author:     orbea <orbea <AT> riseup <DOT> net>
AuthorDate: Sat Jun 29 14:06:29 2024 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Jun 30 12:40:41 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=727c2f77

dev-util/rgbds: drop 0.7.0

Signed-off-by: orbea <orbea <AT> riseup.net>
Closes: https://github.com/gentoo/gentoo/pull/37360
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 dev-util/rgbds/rgbds-0.7.0.ebuild | 49 ---------------------------------------
 1 file changed, 49 deletions(-)

diff --git a/dev-util/rgbds/rgbds-0.7.0.ebuild b/dev-util/rgbds/rgbds-0.7.0.ebuild
deleted file mode 100644
index 96b85fe6003d..000000000000
--- a/dev-util/rgbds/rgbds-0.7.0.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 2022-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit flag-o-matic toolchain-funcs
-
-DESCRIPTION="Rednex Game Boy Development System"
-HOMEPAGE="https://rgbds.gbdev.io/"
-if [[ "${PV}" == *9999 ]] ; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/gbdev/${PN}.git"
-else
-	SRC_URI="https://github.com/gbdev/${PN}/archive/v${PV}/${P}.tar.gz"
-	KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-
-DEPEND="media-libs/libpng"
-RDEPEND="${DEPEND}"
-BDEPEND="
-	sys-devel/bison
-	virtual/pkgconfig
-"
-
-src_compile() {
-	append-flags -DNDEBUG
-
-	emake Q= \
-		CC="$(tc-getCC)" \
-		CXX="$(tc-getCXX)" \
-		PKG_CONFIG="$(tc-getPKG_CONFIG)"
-}
-
-src_test() {
-	local dir
-	for dir in asm link fix gfx; do
-		pushd "test/${dir}" >/dev/null || die
-		./test.sh || die
-		popd >/dev/null || die
-	done
-}
-
-src_install() {
-	emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr Q= STRIP= install
-	dodoc README.rst
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/rgbds/
@ 2025-01-05 17:11 Arthur Zamarin
  0 siblings, 0 replies; 20+ messages in thread
From: Arthur Zamarin @ 2025-01-05 17:11 UTC (permalink / raw
  To: gentoo-commits

commit:     04735677bcb5c351c4c8db3b20c0ac5e2535148d
Author:     orbea <orbea <AT> riseup <DOT> net>
AuthorDate: Fri Dec 27 15:07:28 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Jan  5 17:11:25 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04735677

dev-util/rgbds: add 0.9.0

Signed-off-by: orbea <orbea <AT> riseup.net>
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-util/rgbds/Manifest           |  1 +
 dev-util/rgbds/rgbds-0.9.0.ebuild | 50 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 51 insertions(+)

diff --git a/dev-util/rgbds/Manifest b/dev-util/rgbds/Manifest
index 7c4baea7b1c2..835150109537 100644
--- a/dev-util/rgbds/Manifest
+++ b/dev-util/rgbds/Manifest
@@ -1,3 +1,4 @@
 DIST rgbds-0.6.1.tar.gz 8041890 BLAKE2B cd5483e6fa5e2ca3bc9a6e3de44fdf7dc92289d558ac72d8922c0cf21b9dc576b878bfd7610cb41f791ad16cc415e446c925ee0dbc77ec4370d6ef4549935681 SHA512 b4a111e3d98a190d3c9b500dc59585fe68a8e6febc79b6716b406b96714e401bac427336388409ae456ee0f1e5a2c285bfe7b4bfa10e0d148ffc161adefe435b
 DIST rgbds-0.7.0.tar.gz 8053662 BLAKE2B 07f6901eeaade45125acce5c33430bdefc5a4228d2fe952d55ca254c0fc17dc5248262ecc7df5e9dd0a73aab29a39a2b38988a7ae93ad739609397a286e96aa9 SHA512 82d799f9639cb3a4c110f84f5184f46a371e66428e7d3b4f3f0229473d472dea1b381268df92736f2d1d4f5e8e2c83b61888c3ab4055768f9472b834f66f2f68
 DIST rgbds-0.8.0.tar.gz 8052350 BLAKE2B 46edb43a530169d03e026070b61272e95357213747296658e4ceb821f8e420979ceffcbc07b41b6778187a1f6a614d3587416d5ad3596f19bacc6c9067051837 SHA512 1c36e0fc7ecfd930c9cbc9f9772d2c7268148e2d456c56c92265ba45b9108c531fc412669d980f6c621b4d89d367458f01a2e0cf20443f13b83f841585f3edac
+DIST rgbds-0.9.0.tar.gz 8093242 BLAKE2B b6ee19b4e4ce0e4d77f3b3ec11115a389b8debd71477478dbef72065ae17caae10e53b49b45dbc822443392c27023948cc3033117f13a7c1340d8ca90f1ff6b5 SHA512 d86a478dfcfb007e095696c32a4fa098eb9818d3bdac90d7c61bbac8901346acb6f9371ee3285b2adcf71e3c199f731b7b6c60a99be06e64b463ea7aef0f4901

diff --git a/dev-util/rgbds/rgbds-0.9.0.ebuild b/dev-util/rgbds/rgbds-0.9.0.ebuild
new file mode 100644
index 000000000000..7f24c27d44dd
--- /dev/null
+++ b/dev-util/rgbds/rgbds-0.9.0.ebuild
@@ -0,0 +1,50 @@
+# Copyright 2022-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit flag-o-matic toolchain-funcs
+
+DESCRIPTION="Rednex Game Boy Development System"
+HOMEPAGE="https://rgbds.gbdev.io/"
+if [[ "${PV}" == *9999 ]] ; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/gbdev/${PN}.git"
+else
+	SRC_URI="https://github.com/gbdev/${PN}/archive/v${PV}/${P}.tar.gz"
+	KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+
+DEPEND="media-libs/libpng"
+RDEPEND="${DEPEND}"
+BDEPEND="
+	sys-devel/bison
+	virtual/pkgconfig
+"
+
+src_compile() {
+	append-flags -DNDEBUG
+
+	emake Q= \
+		CC="$(tc-getCC)" \
+		CXX="$(tc-getCXX)" \
+		PKG_CONFIG="$(tc-getPKG_CONFIG)"
+}
+
+src_test() {
+	local dir
+	for dir in asm link fix gfx; do
+		pushd "test/${dir}" >/dev/null || die
+		einfo "Running ${dir} tests."
+		./test.sh || die
+		popd >/dev/null || die
+	done
+}
+
+src_install() {
+	emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr Q= STRIP= install
+	dodoc README.md
+}


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

end of thread, other threads:[~2025-01-05 17:11 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-22  6:22 [gentoo-commits] repo/gentoo:master commit in: dev-util/rgbds/ Arthur Zamarin
  -- strict thread matches above, loose matches on Subject: below --
2025-01-05 17:11 Arthur Zamarin
2024-06-30 12:41 Conrad Kostecki
2024-06-30 12:41 Conrad Kostecki
2024-05-09 13:04 Joonas Niilola
2024-03-21  2:45 Sam James
2024-03-21  2:45 Sam James
2024-02-23 10:50 Viorel Munteanu
2024-02-23 10:50 Viorel Munteanu
2024-02-14 15:52 Joonas Niilola
2024-02-14 15:52 Joonas Niilola
2024-02-14 15:52 Joonas Niilola
2024-01-06 19:30 Viorel Munteanu
2024-01-05  5:24 Sam James
2023-12-03  7:42 Sam James
2023-12-02  9:24 Arthur Zamarin
2023-09-17  8:56 Arthur Zamarin
2023-09-13  3:20 Sam James
2023-02-22  9:32 Sam James
2023-01-15 14:16 Sam James

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