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

commit:     39fe796bbea11be1cbf11f9278c47456ec1de2b0
Author:     orbea <orbea <AT> riseup <DOT> net>
AuthorDate: Wed Dec 28 01:13:30 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jan 15 14:16:11 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39fe796b

games-emulation/bsnes-jg: New package, v1.1.0

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

 games-emulation/bsnes-jg/Manifest              |  1 +
 games-emulation/bsnes-jg/bsnes-jg-1.1.0.ebuild | 46 ++++++++++++++++++++++++++
 games-emulation/bsnes-jg/bsnes-jg-9999.ebuild  | 46 ++++++++++++++++++++++++++
 games-emulation/bsnes-jg/metadata.xml          | 21 ++++++++++++
 4 files changed, 114 insertions(+)

diff --git a/games-emulation/bsnes-jg/Manifest b/games-emulation/bsnes-jg/Manifest
new file mode 100644
index 000000000000..15755cbefba4
--- /dev/null
+++ b/games-emulation/bsnes-jg/Manifest
@@ -0,0 +1 @@
+DIST bsnes-1.1.0.tar.bz2 4181355 BLAKE2B c60181208455f14c722073f7aa43b6b988aa46d8614cc8eae6e6b47acf1c5b30a94aa04410f873531e73637d3f11e25297dccc80b5c15c9fa4d4cc207083cef9 SHA512 39ee7e04dbeb021ac041ca3d189b86cf76f1994561c4bd1fd77a532e87ef4c135b177700b62f6e4f07018953c34f8602b5c4a43cd22d51dcd047df71e77e0412

diff --git a/games-emulation/bsnes-jg/bsnes-jg-1.1.0.ebuild b/games-emulation/bsnes-jg/bsnes-jg-1.1.0.ebuild
new file mode 100644
index 000000000000..24d855263f55
--- /dev/null
+++ b/games-emulation/bsnes-jg/bsnes-jg-1.1.0.ebuild
@@ -0,0 +1,46 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs
+
+MY_PN=${PN%-*}
+MY_P=${MY_PN}-${PV}
+DESCRIPTION="Jolly Good Fork of bsnes"
+HOMEPAGE="https://gitlab.com/jgemu/bsnes"
+if [[ "${PV}" == *9999 ]] ; then
+	inherit git-r3
+	EGIT_REPO_URI="https://gitlab.com/jgemu/${MY_PN}.git"
+else
+	SRC_URI="https://gitlab.com/jgemu/${MY_PN}/-/archive/${PV}/${MY_P}.tar.bz2"
+	S="${WORKDIR}/${MY_P}"
+	KEYWORDS="~amd64"
+fi
+
+LICENSE="ISC GPL-3+ LGPL-2.1+ MIT ZLIB"
+SLOT="1"
+
+DEPEND="
+	media-libs/jg:1=
+	media-libs/libsamplerate
+"
+RDEPEND="
+	${DEPEND}
+	games-emulation/jgrf
+"
+BDEPEND="
+	virtual/pkgconfig
+"
+
+src_compile() {
+	emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" PKG_CONFIG="$(tc-getPKG_CONFIG)"
+}
+
+src_install() {
+	emake install \
+		DESTDIR="${D}" \
+		PREFIX="${EPREFIX}"/usr \
+		DOCDIR="${EPREFIX}"/usr/share/doc/${PF} \
+		LIBDIR="${EPREFIX}/usr/$(get_libdir)"
+}

diff --git a/games-emulation/bsnes-jg/bsnes-jg-9999.ebuild b/games-emulation/bsnes-jg/bsnes-jg-9999.ebuild
new file mode 100644
index 000000000000..24d855263f55
--- /dev/null
+++ b/games-emulation/bsnes-jg/bsnes-jg-9999.ebuild
@@ -0,0 +1,46 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs
+
+MY_PN=${PN%-*}
+MY_P=${MY_PN}-${PV}
+DESCRIPTION="Jolly Good Fork of bsnes"
+HOMEPAGE="https://gitlab.com/jgemu/bsnes"
+if [[ "${PV}" == *9999 ]] ; then
+	inherit git-r3
+	EGIT_REPO_URI="https://gitlab.com/jgemu/${MY_PN}.git"
+else
+	SRC_URI="https://gitlab.com/jgemu/${MY_PN}/-/archive/${PV}/${MY_P}.tar.bz2"
+	S="${WORKDIR}/${MY_P}"
+	KEYWORDS="~amd64"
+fi
+
+LICENSE="ISC GPL-3+ LGPL-2.1+ MIT ZLIB"
+SLOT="1"
+
+DEPEND="
+	media-libs/jg:1=
+	media-libs/libsamplerate
+"
+RDEPEND="
+	${DEPEND}
+	games-emulation/jgrf
+"
+BDEPEND="
+	virtual/pkgconfig
+"
+
+src_compile() {
+	emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" PKG_CONFIG="$(tc-getPKG_CONFIG)"
+}
+
+src_install() {
+	emake install \
+		DESTDIR="${D}" \
+		PREFIX="${EPREFIX}"/usr \
+		DOCDIR="${EPREFIX}"/usr/share/doc/${PF} \
+		LIBDIR="${EPREFIX}/usr/$(get_libdir)"
+}

diff --git a/games-emulation/bsnes-jg/metadata.xml b/games-emulation/bsnes-jg/metadata.xml
new file mode 100644
index 000000000000..8d62f9db73ee
--- /dev/null
+++ b/games-emulation/bsnes-jg/metadata.xml
@@ -0,0 +1,21 @@
+<?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>
+		bsnes-jg is a cycle accurate emulator for the Super Famicom/Super
+		Nintendo Entertainment System, including support for the Super Game Boy,
+		BS-X Satellaview, and Sufami Turbo.
+	</longdescription>
+	<upstream>
+		<bugs-to>https://gitlab.com/jgemu/bsnes/-/issues</bugs-to>
+		<remote-id type="gitlab">jgemu/bsnes</remote-id>
+	</upstream>
+</pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: games-emulation/bsnes-jg/
@ 2023-02-22  9:32 Sam James
  0 siblings, 0 replies; 14+ messages in thread
From: Sam James @ 2023-02-22  9:32 UTC (permalink / raw
  To: gentoo-commits

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

games-emulation/bsnes-jg: proxy orbea directly

I'll proxy directly.

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

 games-emulation/bsnes-jg/metadata.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/games-emulation/bsnes-jg/metadata.xml b/games-emulation/bsnes-jg/metadata.xml
index 8d62f9db73ee..3fa9976f7933 100644
--- a/games-emulation/bsnes-jg/metadata.xml
+++ b/games-emulation/bsnes-jg/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>
 		bsnes-jg is a cycle accurate emulator for the Super Famicom/Super


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

* [gentoo-commits] repo/gentoo:master commit in: games-emulation/bsnes-jg/
@ 2023-02-25 22:23 Sam James
  0 siblings, 0 replies; 14+ messages in thread
From: Sam James @ 2023-02-25 22:23 UTC (permalink / raw
  To: gentoo-commits

commit:     f084399b8a20ec5871f6ef116f975cc434762c54
Author:     orbea <orbea <AT> riseup <DOT> net>
AuthorDate: Sat Feb 25 22:17:07 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Feb 25 22:23:24 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f084399b

games-emulation/bsnes-jg: Add 1.1.1 + Remove 1.1.0

Bug fix release for an assert with -D_GLIBCXX_ASSERTIONS

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

 games-emulation/bsnes-jg/Manifest                                       | 2 +-
 .../bsnes-jg/{bsnes-jg-1.1.0.ebuild => bsnes-jg-1.1.1.ebuild}           | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-emulation/bsnes-jg/Manifest b/games-emulation/bsnes-jg/Manifest
index 15755cbefba4..e31fa8485c2e 100644
--- a/games-emulation/bsnes-jg/Manifest
+++ b/games-emulation/bsnes-jg/Manifest
@@ -1 +1 @@
-DIST bsnes-1.1.0.tar.bz2 4181355 BLAKE2B c60181208455f14c722073f7aa43b6b988aa46d8614cc8eae6e6b47acf1c5b30a94aa04410f873531e73637d3f11e25297dccc80b5c15c9fa4d4cc207083cef9 SHA512 39ee7e04dbeb021ac041ca3d189b86cf76f1994561c4bd1fd77a532e87ef4c135b177700b62f6e4f07018953c34f8602b5c4a43cd22d51dcd047df71e77e0412
+DIST bsnes-1.1.1.tar.bz2 4182487 BLAKE2B dfcad14019ae8f6bee6a12f4e35b0cfc5338215d41028655c230faa7a481eb0ef09428192f244471887a3f7326d3fbf9ea713c642aab97989caa391ad41aa4ac SHA512 e1c24d9154ef8285ab2c9d0b03860cb8e7396fffe1f575d25239816e6ec8183ab05ec2adc31c2c4e09c5a3ff8a439909860f704174c132f9ff343dbbf55ca034

diff --git a/games-emulation/bsnes-jg/bsnes-jg-1.1.0.ebuild b/games-emulation/bsnes-jg/bsnes-jg-1.1.1.ebuild
similarity index 100%
rename from games-emulation/bsnes-jg/bsnes-jg-1.1.0.ebuild
rename to games-emulation/bsnes-jg/bsnes-jg-1.1.1.ebuild


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

* [gentoo-commits] repo/gentoo:master commit in: games-emulation/bsnes-jg/
@ 2023-02-25 22:24 Sam James
  0 siblings, 0 replies; 14+ messages in thread
From: Sam James @ 2023-02-25 22:24 UTC (permalink / raw
  To: gentoo-commits

commit:     7eb5e2c80dd2f97e69076cc9a5ebf8481a2c68d1
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 25 22:24:06 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Feb 25 22:24:06 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7eb5e2c8

games-emulation/bsnes-jg: update copyright

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

 games-emulation/bsnes-jg/bsnes-jg-1.1.1.ebuild | 2 +-
 games-emulation/bsnes-jg/bsnes-jg-9999.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/games-emulation/bsnes-jg/bsnes-jg-1.1.1.ebuild b/games-emulation/bsnes-jg/bsnes-jg-1.1.1.ebuild
index 24d855263f55..2745d2cfd5e9 100644
--- a/games-emulation/bsnes-jg/bsnes-jg-1.1.1.ebuild
+++ b/games-emulation/bsnes-jg/bsnes-jg-1.1.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

diff --git a/games-emulation/bsnes-jg/bsnes-jg-9999.ebuild b/games-emulation/bsnes-jg/bsnes-jg-9999.ebuild
index 24d855263f55..2745d2cfd5e9 100644
--- a/games-emulation/bsnes-jg/bsnes-jg-9999.ebuild
+++ b/games-emulation/bsnes-jg/bsnes-jg-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


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

* [gentoo-commits] repo/gentoo:master commit in: games-emulation/bsnes-jg/
@ 2023-03-04  7:18 Sam James
  0 siblings, 0 replies; 14+ messages in thread
From: Sam James @ 2023-03-04  7:18 UTC (permalink / raw
  To: gentoo-commits

commit:     d3421b8909c34d861b0aede50b8c6b205463a9b4
Author:     orbea <orbea <AT> riseup <DOT> net>
AuthorDate: Sat Mar  4 04:47:57 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Mar  4 07:18:18 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3421b89

games-emulation/bsnes-jg: Add 1.1.2 + Remove 1.1.1

Bug fix release for gcc13.

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

 games-emulation/bsnes-jg/Manifest                                       | 2 +-
 .../bsnes-jg/{bsnes-jg-1.1.1.ebuild => bsnes-jg-1.1.2.ebuild}           | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-emulation/bsnes-jg/Manifest b/games-emulation/bsnes-jg/Manifest
index e31fa8485c2e..be59e5809a5e 100644
--- a/games-emulation/bsnes-jg/Manifest
+++ b/games-emulation/bsnes-jg/Manifest
@@ -1 +1 @@
-DIST bsnes-1.1.1.tar.bz2 4182487 BLAKE2B dfcad14019ae8f6bee6a12f4e35b0cfc5338215d41028655c230faa7a481eb0ef09428192f244471887a3f7326d3fbf9ea713c642aab97989caa391ad41aa4ac SHA512 e1c24d9154ef8285ab2c9d0b03860cb8e7396fffe1f575d25239816e6ec8183ab05ec2adc31c2c4e09c5a3ff8a439909860f704174c132f9ff343dbbf55ca034
+DIST bsnes-1.1.2.tar.bz2 4183035 BLAKE2B 09e01845fb9e6208f5262e2abef14c46e9fa53cfdd025821345507fc68e520dc21ca69e5d712a7f821936166975865c26dc0be42549b551abdbb941e748949b1 SHA512 77cb82b6cba2941813de25273bd74b928ad380dccadb909ae3500ddf6f8906504f5400df95381569d35fc7b06e0330f9eb4d54d88d64a5c698925d54df62bada

diff --git a/games-emulation/bsnes-jg/bsnes-jg-1.1.1.ebuild b/games-emulation/bsnes-jg/bsnes-jg-1.1.2.ebuild
similarity index 100%
rename from games-emulation/bsnes-jg/bsnes-jg-1.1.1.ebuild
rename to games-emulation/bsnes-jg/bsnes-jg-1.1.2.ebuild


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

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

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

games-emulation/bsnes-jg: Keyword 1.1.2 arm64, #891201

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

 games-emulation/bsnes-jg/bsnes-jg-1.1.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-emulation/bsnes-jg/bsnes-jg-1.1.2.ebuild b/games-emulation/bsnes-jg/bsnes-jg-1.1.2.ebuild
index 2745d2cfd5e9..4487afc4d88a 100644
--- a/games-emulation/bsnes-jg/bsnes-jg-1.1.2.ebuild
+++ b/games-emulation/bsnes-jg/bsnes-jg-1.1.2.ebuild
@@ -15,7 +15,7 @@ if [[ "${PV}" == *9999 ]] ; then
 else
 	SRC_URI="https://gitlab.com/jgemu/${MY_PN}/-/archive/${PV}/${MY_P}.tar.bz2"
 	S="${WORKDIR}/${MY_P}"
-	KEYWORDS="~amd64"
+	KEYWORDS="~amd64 ~arm64"
 fi
 
 LICENSE="ISC GPL-3+ LGPL-2.1+ MIT ZLIB"


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

* [gentoo-commits] repo/gentoo:master commit in: games-emulation/bsnes-jg/
@ 2023-09-17  8:56 Arthur Zamarin
  0 siblings, 0 replies; 14+ messages in thread
From: Arthur Zamarin @ 2023-09-17  8:56 UTC (permalink / raw
  To: gentoo-commits

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

games-emulation/bsnes-jg: Keyword 1.1.2 x86, #891201

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

 games-emulation/bsnes-jg/bsnes-jg-1.1.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-emulation/bsnes-jg/bsnes-jg-1.1.2.ebuild b/games-emulation/bsnes-jg/bsnes-jg-1.1.2.ebuild
index 4487afc4d88a..aa9e93576b27 100644
--- a/games-emulation/bsnes-jg/bsnes-jg-1.1.2.ebuild
+++ b/games-emulation/bsnes-jg/bsnes-jg-1.1.2.ebuild
@@ -15,7 +15,7 @@ if [[ "${PV}" == *9999 ]] ; then
 else
 	SRC_URI="https://gitlab.com/jgemu/${MY_PN}/-/archive/${PV}/${MY_P}.tar.bz2"
 	S="${WORKDIR}/${MY_P}"
-	KEYWORDS="~amd64 ~arm64"
+	KEYWORDS="~amd64 ~arm64 ~x86"
 fi
 
 LICENSE="ISC GPL-3+ LGPL-2.1+ MIT ZLIB"


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

* [gentoo-commits] repo/gentoo:master commit in: games-emulation/bsnes-jg/
@ 2023-12-03  7:42 Sam James
  0 siblings, 0 replies; 14+ messages in thread
From: Sam James @ 2023-12-03  7:42 UTC (permalink / raw
  To: gentoo-commits

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

games-emulation/bsnes-jg: Keyword 1.1.2 ppc64, #891201

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

 games-emulation/bsnes-jg/bsnes-jg-1.1.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-emulation/bsnes-jg/bsnes-jg-1.1.2.ebuild b/games-emulation/bsnes-jg/bsnes-jg-1.1.2.ebuild
index 17c199ff0a7e..40f0407e5a92 100644
--- a/games-emulation/bsnes-jg/bsnes-jg-1.1.2.ebuild
+++ b/games-emulation/bsnes-jg/bsnes-jg-1.1.2.ebuild
@@ -15,7 +15,7 @@ if [[ "${PV}" == *9999 ]] ; then
 else
 	SRC_URI="https://gitlab.com/jgemu/${MY_PN}/-/archive/${PV}/${MY_P}.tar.bz2"
 	S="${WORKDIR}/${MY_P}"
-	KEYWORDS="~amd64 ~arm64 ~ppc ~x86"
+	KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
 fi
 
 LICENSE="ISC GPL-3+ LGPL-2.1+ MIT ZLIB"


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

* [gentoo-commits] repo/gentoo:master commit in: games-emulation/bsnes-jg/
@ 2024-01-06 19:30 Viorel Munteanu
  0 siblings, 0 replies; 14+ messages in thread
From: Viorel Munteanu @ 2024-01-06 19:30 UTC (permalink / raw
  To: gentoo-commits

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

games-emulation/bsnes-jg: Keyword 1.1.2-r1 arm, #891201

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

 games-emulation/bsnes-jg/bsnes-jg-1.1.2-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/games-emulation/bsnes-jg/bsnes-jg-1.1.2-r1.ebuild b/games-emulation/bsnes-jg/bsnes-jg-1.1.2-r1.ebuild
index 049dd7e7771d..3522f14ebe50 100644
--- a/games-emulation/bsnes-jg/bsnes-jg-1.1.2-r1.ebuild
+++ b/games-emulation/bsnes-jg/bsnes-jg-1.1.2-r1.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
@@ -15,7 +15,7 @@ if [[ "${PV}" == *9999 ]] ; then
 else
 	SRC_URI="https://gitlab.com/jgemu/${MY_PN}/-/archive/${PV}/${MY_P}.tar.bz2"
 	S="${WORKDIR}/${MY_P}"
-	KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
+	KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
 fi
 
 LICENSE="ISC GPL-3+ LGPL-2.1+ MIT ZLIB"


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

* [gentoo-commits] repo/gentoo:master commit in: games-emulation/bsnes-jg/
@ 2024-02-24  7:06 Joonas Niilola
  0 siblings, 0 replies; 14+ messages in thread
From: Joonas Niilola @ 2024-02-24  7:06 UTC (permalink / raw
  To: gentoo-commits

commit:     bfa84fa6b87e8b3abc12cd6abd9caf07611e4bb7
Author:     orbea <orbea <AT> riseup <DOT> net>
AuthorDate: Sat Feb 24 00:04:23 2024 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sat Feb 24 07:06:12 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bfa84fa6

games-emulation/bsnes-jg: update maintainers

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

 games-emulation/bsnes-jg/metadata.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/games-emulation/bsnes-jg/metadata.xml b/games-emulation/bsnes-jg/metadata.xml
index 3fa9976f7933..8d62f9db73ee 100644
--- a/games-emulation/bsnes-jg/metadata.xml
+++ b/games-emulation/bsnes-jg/metadata.xml
@@ -5,9 +5,9 @@
 		<email>orbea@riseup.net</email>
 		<name>orbea</name>
 	</maintainer>
-	<maintainer type="person" proxied="proxy">
-		<email>sam@gentoo.org</email>
-		<name>Sam James</name>
+	<maintainer type="project" proxied="proxy">
+		<email>proxy-maint@gentoo.org</email>
+		<name>Proxy Maintainers</name>
 	</maintainer>
 	<longdescription>
 		bsnes-jg is a cycle accurate emulator for the Super Famicom/Super


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

* [gentoo-commits] repo/gentoo:master commit in: games-emulation/bsnes-jg/
@ 2024-02-24  7:06 Joonas Niilola
  0 siblings, 0 replies; 14+ messages in thread
From: Joonas Niilola @ 2024-02-24  7:06 UTC (permalink / raw
  To: gentoo-commits

commit:     34eb46009f92a3092798c3e7a5ec56f8f4fb8b72
Author:     orbea <orbea <AT> riseup <DOT> net>
AuthorDate: Sat Feb 24 00:05:48 2024 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sat Feb 24 07:06:12 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34eb4600

games-emulation/bsnes-jg: drop 1.1.2

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

 games-emulation/bsnes-jg/bsnes-jg-1.1.2.ebuild | 46 --------------------------
 1 file changed, 46 deletions(-)

diff --git a/games-emulation/bsnes-jg/bsnes-jg-1.1.2.ebuild b/games-emulation/bsnes-jg/bsnes-jg-1.1.2.ebuild
deleted file mode 100644
index 40f0407e5a92..000000000000
--- a/games-emulation/bsnes-jg/bsnes-jg-1.1.2.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 2022-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit toolchain-funcs
-
-MY_PN=${PN%-*}
-MY_P=${MY_PN}-${PV}
-DESCRIPTION="Jolly Good Fork of bsnes"
-HOMEPAGE="https://gitlab.com/jgemu/bsnes"
-if [[ "${PV}" == *9999 ]] ; then
-	inherit git-r3
-	EGIT_REPO_URI="https://gitlab.com/jgemu/${MY_PN}.git"
-else
-	SRC_URI="https://gitlab.com/jgemu/${MY_PN}/-/archive/${PV}/${MY_P}.tar.bz2"
-	S="${WORKDIR}/${MY_P}"
-	KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
-fi
-
-LICENSE="ISC GPL-3+ LGPL-2.1+ MIT ZLIB"
-SLOT="1"
-
-DEPEND="
-	media-libs/jg:1=
-	media-libs/libsamplerate
-"
-RDEPEND="
-	${DEPEND}
-	games-emulation/jgrf
-"
-BDEPEND="
-	virtual/pkgconfig
-"
-
-src_compile() {
-	emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" PKG_CONFIG="$(tc-getPKG_CONFIG)"
-}
-
-src_install() {
-	emake install \
-		DESTDIR="${D}" \
-		PREFIX="${EPREFIX}"/usr \
-		DOCDIR="${EPREFIX}"/usr/share/doc/${PF} \
-		LIBDIR="${EPREFIX}/usr/$(get_libdir)"
-}


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

* [gentoo-commits] repo/gentoo:master commit in: games-emulation/bsnes-jg/
@ 2024-02-24  7:06 Joonas Niilola
  0 siblings, 0 replies; 14+ messages in thread
From: Joonas Niilola @ 2024-02-24  7:06 UTC (permalink / raw
  To: gentoo-commits

commit:     4464e1efda0ffed12f9ed9b6747031fb528e98cd
Author:     orbea <orbea <AT> riseup <DOT> net>
AuthorDate: Sat Feb 24 00:05:30 2024 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sat Feb 24 07:06:12 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4464e1ef

games-emulation/bsnes-jg: sync keywords

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

 games-emulation/bsnes-jg/bsnes-jg-9999.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/games-emulation/bsnes-jg/bsnes-jg-9999.ebuild b/games-emulation/bsnes-jg/bsnes-jg-9999.ebuild
index 2745d2cfd5e9..243ad0946b1d 100644
--- a/games-emulation/bsnes-jg/bsnes-jg-9999.ebuild
+++ b/games-emulation/bsnes-jg/bsnes-jg-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
@@ -15,7 +15,7 @@ if [[ "${PV}" == *9999 ]] ; then
 else
 	SRC_URI="https://gitlab.com/jgemu/${MY_PN}/-/archive/${PV}/${MY_P}.tar.bz2"
 	S="${WORKDIR}/${MY_P}"
-	KEYWORDS="~amd64"
+	KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
 fi
 
 LICENSE="ISC GPL-3+ LGPL-2.1+ MIT ZLIB"


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

* [gentoo-commits] repo/gentoo:master commit in: games-emulation/bsnes-jg/
@ 2024-04-29  8:46 Joonas Niilola
  0 siblings, 0 replies; 14+ messages in thread
From: Joonas Niilola @ 2024-04-29  8:46 UTC (permalink / raw
  To: gentoo-commits

commit:     04c9f8a06b032ae4c09f6bdc26de92aa5b4df7bc
Author:     orbea <orbea <AT> riseup <DOT> net>
AuthorDate: Sat Mar 30 19:15:26 2024 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Mon Apr 29 08:45:18 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04c9f8a0

games-emulation/bsnes-jg: add 1.2.0

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

 games-emulation/bsnes-jg/Manifest              |  1 +
 games-emulation/bsnes-jg/bsnes-jg-1.2.0.ebuild | 46 ++++++++++++++++++++++++++
 2 files changed, 47 insertions(+)

diff --git a/games-emulation/bsnes-jg/Manifest b/games-emulation/bsnes-jg/Manifest
index be59e5809a5e..8fa3da84c341 100644
--- a/games-emulation/bsnes-jg/Manifest
+++ b/games-emulation/bsnes-jg/Manifest
@@ -1 +1,2 @@
 DIST bsnes-1.1.2.tar.bz2 4183035 BLAKE2B 09e01845fb9e6208f5262e2abef14c46e9fa53cfdd025821345507fc68e520dc21ca69e5d712a7f821936166975865c26dc0be42549b551abdbb941e748949b1 SHA512 77cb82b6cba2941813de25273bd74b928ad380dccadb909ae3500ddf6f8906504f5400df95381569d35fc7b06e0330f9eb4d54d88d64a5c698925d54df62bada
+DIST bsnes-1.2.0.tar.bz2 4277380 BLAKE2B 03abb6efdf2e2fe487ddea780f9a3053092e718695d7f875304a008f5e3e967c443f3ad40d7c8a82b07d66c52ead5d258018fd004cb205efaaa872b122057c98 SHA512 96aaeecf10508bc7672c30fa24b34e0d32e34c4190928109a141f4a1d73fb6f007844f9b7154ffc57028ddb9e99b5c281a214b9517ce5de618cf229722ff1e20

diff --git a/games-emulation/bsnes-jg/bsnes-jg-1.2.0.ebuild b/games-emulation/bsnes-jg/bsnes-jg-1.2.0.ebuild
new file mode 100644
index 000000000000..243ad0946b1d
--- /dev/null
+++ b/games-emulation/bsnes-jg/bsnes-jg-1.2.0.ebuild
@@ -0,0 +1,46 @@
+# Copyright 2022-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs
+
+MY_PN=${PN%-*}
+MY_P=${MY_PN}-${PV}
+DESCRIPTION="Jolly Good Fork of bsnes"
+HOMEPAGE="https://gitlab.com/jgemu/bsnes"
+if [[ "${PV}" == *9999 ]] ; then
+	inherit git-r3
+	EGIT_REPO_URI="https://gitlab.com/jgemu/${MY_PN}.git"
+else
+	SRC_URI="https://gitlab.com/jgemu/${MY_PN}/-/archive/${PV}/${MY_P}.tar.bz2"
+	S="${WORKDIR}/${MY_P}"
+	KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+fi
+
+LICENSE="ISC GPL-3+ LGPL-2.1+ MIT ZLIB"
+SLOT="1"
+
+DEPEND="
+	media-libs/jg:1=
+	media-libs/libsamplerate
+"
+RDEPEND="
+	${DEPEND}
+	games-emulation/jgrf
+"
+BDEPEND="
+	virtual/pkgconfig
+"
+
+src_compile() {
+	emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" PKG_CONFIG="$(tc-getPKG_CONFIG)"
+}
+
+src_install() {
+	emake install \
+		DESTDIR="${D}" \
+		PREFIX="${EPREFIX}"/usr \
+		DOCDIR="${EPREFIX}"/usr/share/doc/${PF} \
+		LIBDIR="${EPREFIX}/usr/$(get_libdir)"
+}


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

* [gentoo-commits] repo/gentoo:master commit in: games-emulation/bsnes-jg/
@ 2024-04-29  8:46 Joonas Niilola
  0 siblings, 0 replies; 14+ messages in thread
From: Joonas Niilola @ 2024-04-29  8:46 UTC (permalink / raw
  To: gentoo-commits

commit:     249420c672426d92a9b94496d7918994181743f9
Author:     orbea <orbea <AT> riseup <DOT> net>
AuthorDate: Sat Mar 30 19:15:50 2024 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Mon Apr 29 08:45:18 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=249420c6

games-emulation/bsnes-jg: drop 1.1.2-r1

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

 games-emulation/bsnes-jg/bsnes-jg-1.1.2-r1.ebuild | 50 -----------------------
 1 file changed, 50 deletions(-)

diff --git a/games-emulation/bsnes-jg/bsnes-jg-1.1.2-r1.ebuild b/games-emulation/bsnes-jg/bsnes-jg-1.1.2-r1.ebuild
deleted file mode 100644
index 3522f14ebe50..000000000000
--- a/games-emulation/bsnes-jg/bsnes-jg-1.1.2-r1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 2022-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit toolchain-funcs
-
-MY_PN=${PN%-*}
-MY_P=${MY_PN}-${PV}
-DESCRIPTION="Jolly Good Fork of bsnes"
-HOMEPAGE="https://gitlab.com/jgemu/bsnes"
-if [[ "${PV}" == *9999 ]] ; then
-	inherit git-r3
-	EGIT_REPO_URI="https://gitlab.com/jgemu/${MY_PN}.git"
-else
-	SRC_URI="https://gitlab.com/jgemu/${MY_PN}/-/archive/${PV}/${MY_P}.tar.bz2"
-	S="${WORKDIR}/${MY_P}"
-	KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
-fi
-
-LICENSE="ISC GPL-3+ LGPL-2.1+ MIT ZLIB"
-SLOT="1"
-
-PATCHES=(
-	"${FILESDIR}"/${P}-endianness.patch # 891201#c9
-)
-
-DEPEND="
-	media-libs/jg:1=
-	media-libs/libsamplerate
-"
-RDEPEND="
-	${DEPEND}
-	games-emulation/jgrf
-"
-BDEPEND="
-	virtual/pkgconfig
-"
-
-src_compile() {
-	emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" PKG_CONFIG="$(tc-getPKG_CONFIG)"
-}
-
-src_install() {
-	emake install \
-		DESTDIR="${D}" \
-		PREFIX="${EPREFIX}"/usr \
-		DOCDIR="${EPREFIX}"/usr/share/doc/${PF} \
-		LIBDIR="${EPREFIX}/usr/$(get_libdir)"
-}


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

end of thread, other threads:[~2024-04-29  8:46 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-25 22:23 [gentoo-commits] repo/gentoo:master commit in: games-emulation/bsnes-jg/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2024-04-29  8:46 Joonas Niilola
2024-04-29  8:46 Joonas Niilola
2024-02-24  7:06 Joonas Niilola
2024-02-24  7:06 Joonas Niilola
2024-02-24  7:06 Joonas Niilola
2024-01-06 19:30 Viorel Munteanu
2023-12-03  7:42 Sam James
2023-09-17  8:56 Arthur Zamarin
2023-09-13  3:20 Sam James
2023-03-04  7:18 Sam James
2023-02-25 22:24 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