public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: games-emulation/nestopia/
@ 2017-01-05 13:30 David Seifert
  0 siblings, 0 replies; 20+ messages in thread
From: David Seifert @ 2017-01-05 13:30 UTC (permalink / raw
  To: gentoo-commits

commit:     7ef4424f16e54d7c4b72d88b8c7bbc27d1394005
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Thu Jan  5 13:09:45 2017 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Thu Jan  5 13:30:03 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ef4424f

games-emulation/nestopia: Add new snapshot

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 games-emulation/nestopia/Manifest                  |  1 +
 games-emulation/nestopia/metadata.xml              |  5 +-
 .../nestopia/nestopia-1.47_p20170105.ebuild        | 54 ++++++++++++++++++++++
 3 files changed, 59 insertions(+), 1 deletion(-)

diff --git a/games-emulation/nestopia/Manifest b/games-emulation/nestopia/Manifest
index a13c7e2..bd71c59 100644
--- a/games-emulation/nestopia/Manifest
+++ b/games-emulation/nestopia/Manifest
@@ -1,2 +1,3 @@
 DIST nestopia-1.46.2.tgz 1223407 SHA256 4a5065726ad9e7a120a2c6aa39b9c0904090119998a4d690d4deb5e374118fc0 SHA512 3aa87e98aa24b71e5feac5ffe8229e97d407fc0b14567b0ddbe7cc1eaca08a08f435a6fe294fbbd7066054befdfd27602db7c3c0577246b0e8addfe296404a23 WHIRLPOOL 25c43194797e5edca3abc5cb75dba126d9d246e9ab12270521e7fe6c13427b371ba9f92a71ed557271f159711411286b5ac5ab3fe06144760320531c33bf0c02
 DIST nestopia-1.47.tgz 1306183 SHA256 84624d30ab05d609db2734db0065616b268f79d4aa35f1cd90cb35ee8d96be0c SHA512 27155a82ca9631623c4800110371ec374de2c3d649d3274c9495b58ddede36bfb4a6f52e39552d55e0e90795cd779c3331c488c557aba6b738998e19f1d3bf72 WHIRLPOOL 4f30b66e1eb229419fa4862db2b3828cb983dcba9f0cac531f84e45a885db2bfdbb24cc33a87729f524922c42aa761d0294e53c5ffa00540dd20765a79e08c41
+DIST nestopia-1.47_p20170105.tar.gz 1283456 SHA256 621b5f686d98b81ce9a720be40083b80a76d2ebae0089556cf5dc7df2b26d4f4 SHA512 58d1a932a6b90589c66503b2013b1a8162072e77e0416851a1430fa146e7fd85ff7363b70292c69d4c4513e3750aa53436a312c0240a843e42fbb89b554e7a70 WHIRLPOOL 14b3bc921f0f57a8049a02b863d3a25f017f31668875f02ec4472f877d248fdfd9c1325930b5138e17bf24adc92c76fdf399abcb9deab4d1155572c5f774e942

diff --git a/games-emulation/nestopia/metadata.xml b/games-emulation/nestopia/metadata.xml
index d64dbba..6c6cefd 100644
--- a/games-emulation/nestopia/metadata.xml
+++ b/games-emulation/nestopia/metadata.xml
@@ -6,6 +6,9 @@
 		<name>Gentoo Games Project</name>
 	</maintainer>
 	<upstream>
-		<remote-id type="sourceforge">nestopiaue</remote-id>
+		<remote-id type="github">rdanbrook/nestopia</remote-id>
 	</upstream>
+	<use>
+		<flag name="gui">Enable GUI</flag>
+	</use>
 </pkgmetadata>

diff --git a/games-emulation/nestopia/nestopia-1.47_p20170105.ebuild b/games-emulation/nestopia/nestopia-1.47_p20170105.ebuild
new file mode 100644
index 00000000..9e91e2b
--- /dev/null
+++ b/games-emulation/nestopia/nestopia-1.47_p20170105.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit cmake-utils gnome2-utils
+
+DESCRIPTION="A portable Nintendo Entertainment System emulator written in C++"
+HOMEPAGE="http://0ldsk00l.ca/nestopia/"
+
+if [[ ${PV} == *9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/rdanbrook/nestopia.git"
+else
+	inherit vcs-snapshot
+	SRC_URI="https://github.com/rdanbrook/${PN}/archive/d7fae2aff1a93eac997d2b480652a1d068a2b6cf.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-2+"
+SLOT="0"
+IUSE="doc gui"
+
+RDEPEND="
+	app-arch/libarchive:=
+	media-libs/libao
+	media-libs/libepoxy
+	media-libs/libsdl2[sound,joystick,video]
+	sys-libs/zlib
+	gui? ( x11-libs/gtk+:3 )"
+DEPEND="${RDEPEND}
+	virtual/pkgconfig"
+
+src_configure() {
+	local mycmakeargs=(
+		-DENABLE_GTK=$(usex gui)
+		-DENABLE_DOC=$(usex doc)
+		-DCMAKE_INSTALL_DOCDIR=share/doc/${PF}
+	)
+	cmake-utils_src_configure
+}
+
+pkg_preinst() {
+	gnome2_icon_savelist
+}
+
+pkg_postinst() {
+	gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+	gnome2_icon_cache_update
+}


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

* [gentoo-commits] repo/gentoo:master commit in: games-emulation/nestopia/
@ 2017-01-05 13:30 David Seifert
  0 siblings, 0 replies; 20+ messages in thread
From: David Seifert @ 2017-01-05 13:30 UTC (permalink / raw
  To: gentoo-commits

commit:     982741c1a313feab0d5d03b46fb84467c089afdc
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Thu Jan  5 13:21:13 2017 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Thu Jan  5 13:30:06 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=982741c1

games-emulation/nestopia: Add live ebuild

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 games-emulation/nestopia/nestopia-9999.ebuild | 54 +++++++++++++++++++++++++++
 1 file changed, 54 insertions(+)

diff --git a/games-emulation/nestopia/nestopia-9999.ebuild b/games-emulation/nestopia/nestopia-9999.ebuild
new file mode 100644
index 00000000..9e91e2b
--- /dev/null
+++ b/games-emulation/nestopia/nestopia-9999.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit cmake-utils gnome2-utils
+
+DESCRIPTION="A portable Nintendo Entertainment System emulator written in C++"
+HOMEPAGE="http://0ldsk00l.ca/nestopia/"
+
+if [[ ${PV} == *9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/rdanbrook/nestopia.git"
+else
+	inherit vcs-snapshot
+	SRC_URI="https://github.com/rdanbrook/${PN}/archive/d7fae2aff1a93eac997d2b480652a1d068a2b6cf.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-2+"
+SLOT="0"
+IUSE="doc gui"
+
+RDEPEND="
+	app-arch/libarchive:=
+	media-libs/libao
+	media-libs/libepoxy
+	media-libs/libsdl2[sound,joystick,video]
+	sys-libs/zlib
+	gui? ( x11-libs/gtk+:3 )"
+DEPEND="${RDEPEND}
+	virtual/pkgconfig"
+
+src_configure() {
+	local mycmakeargs=(
+		-DENABLE_GTK=$(usex gui)
+		-DENABLE_DOC=$(usex doc)
+		-DCMAKE_INSTALL_DOCDIR=share/doc/${PF}
+	)
+	cmake-utils_src_configure
+}
+
+pkg_preinst() {
+	gnome2_icon_savelist
+}
+
+pkg_postinst() {
+	gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+	gnome2_icon_cache_update
+}


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

* [gentoo-commits] repo/gentoo:master commit in: games-emulation/nestopia/
@ 2017-10-05 12:23 Michael Palimaka
  0 siblings, 0 replies; 20+ messages in thread
From: Michael Palimaka @ 2017-10-05 12:23 UTC (permalink / raw
  To: gentoo-commits

commit:     283efc31766d7c8f42b5474168057dc922219f74
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Thu Oct  5 12:22:02 2017 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Thu Oct  5 12:22:56 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=283efc31

games-emulation/nestopia: stabilise 1.47_p20170105 for amd64/x86

Closes: https://bugs.gentoo.org/632434
Package-Manager: Portage-2.3.8, Repoman-2.3.3

 games-emulation/nestopia/nestopia-1.47_p20170105.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-emulation/nestopia/nestopia-1.47_p20170105.ebuild b/games-emulation/nestopia/nestopia-1.47_p20170105.ebuild
index 932f8edc741..c5ba1600cf4 100644
--- a/games-emulation/nestopia/nestopia-1.47_p20170105.ebuild
+++ b/games-emulation/nestopia/nestopia-1.47_p20170105.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == *9999 ]]; then
 else
 	inherit vcs-snapshot
 	SRC_URI="https://github.com/rdanbrook/${PN}/archive/d7fae2aff1a93eac997d2b480652a1d068a2b6cf.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~x86"
+	KEYWORDS="amd64 x86"
 fi
 
 LICENSE="GPL-2+"


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

* [gentoo-commits] repo/gentoo:master commit in: games-emulation/nestopia/
@ 2017-10-05 12:23 Michael Palimaka
  0 siblings, 0 replies; 20+ messages in thread
From: Michael Palimaka @ 2017-10-05 12:23 UTC (permalink / raw
  To: gentoo-commits

commit:     f0bd6c65d22342865470666b9b8891a70671e8e7
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Thu Oct  5 12:22:28 2017 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Thu Oct  5 12:22:57 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0bd6c65

games-emulation/nestopia: remove 1.46.2

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 games-emulation/nestopia/Manifest               |  1 -
 games-emulation/nestopia/nestopia-1.46.2.ebuild | 76 -------------------------
 2 files changed, 77 deletions(-)

diff --git a/games-emulation/nestopia/Manifest b/games-emulation/nestopia/Manifest
index ba34bffffd3..8fbacbb6b24 100644
--- a/games-emulation/nestopia/Manifest
+++ b/games-emulation/nestopia/Manifest
@@ -1,2 +1 @@
-DIST nestopia-1.46.2.tgz 1223407 SHA256 4a5065726ad9e7a120a2c6aa39b9c0904090119998a4d690d4deb5e374118fc0 SHA512 3aa87e98aa24b71e5feac5ffe8229e97d407fc0b14567b0ddbe7cc1eaca08a08f435a6fe294fbbd7066054befdfd27602db7c3c0577246b0e8addfe296404a23 WHIRLPOOL 25c43194797e5edca3abc5cb75dba126d9d246e9ab12270521e7fe6c13427b371ba9f92a71ed557271f159711411286b5ac5ab3fe06144760320531c33bf0c02
 DIST nestopia-1.47_p20170105.tar.gz 1283456 SHA256 621b5f686d98b81ce9a720be40083b80a76d2ebae0089556cf5dc7df2b26d4f4 SHA512 58d1a932a6b90589c66503b2013b1a8162072e77e0416851a1430fa146e7fd85ff7363b70292c69d4c4513e3750aa53436a312c0240a843e42fbb89b554e7a70 WHIRLPOOL 14b3bc921f0f57a8049a02b863d3a25f017f31668875f02ec4472f877d248fdfd9c1325930b5138e17bf24adc92c76fdf399abcb9deab4d1155572c5f774e942

diff --git a/games-emulation/nestopia/nestopia-1.46.2.ebuild b/games-emulation/nestopia/nestopia-1.46.2.ebuild
deleted file mode 100644
index 5ea7d16feaa..00000000000
--- a/games-emulation/nestopia/nestopia-1.46.2.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils gnome2-utils games
-
-MY_P=${P/ue/}
-DESCRIPTION="A portable Nintendo Entertainment System emulator written in C++"
-HOMEPAGE="http://0ldsk00l.ca/nestopia/"
-SRC_URI="mirror://sourceforge/nestopiaue/${PV%.*}/${MY_P}.tgz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="doc"
-
-RDEPEND="x11-libs/gtk+:3
-	media-libs/libao
-	media-libs/libsdl2[sound,joystick,video]
-	app-arch/libarchive
-	sys-libs/zlib
-	virtual/opengl
-	virtual/glu"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig"
-
-S=${WORKDIR}/${MY_P}
-
-src_prepare() {
-	sed -i \
-		-e '/^CC /d' \
-		-e '/^CXX /d' \
-		-e '/^LDFLAGS /d' \
-		-e '/^LIBS =/ s/=/+=/' \
-		-e '/^CFLAGS / s/=/+=/' \
-		-e "/^PREFIX / s:=.*:=${GAMES_PREFIX}:" \
-		-e "/^BINDIR / s:=.*:=${GAMES_BINDIR}:" \
-		-e "/^DATADIR / s:=.*:=${GAMES_DATADIR}/${PN}:" \
-		Makefile || die
-	epatch "${FILESDIR}"/${P}-format.patch
-}
-
-src_install() {
-	local res
-
-	dogamesbin ${PN}
-
-	insinto "${GAMES_DATADIR}/${PN}"
-	doins -r NstDatabase.xml source/unix/icons
-
-	domenu source/unix/icons/nestopia.desktop
-	for res in 32 48 64 128
-	do
-		newicon -s ${res} source/unix/icons/nestopia${res}.png nestopia.png
-	done
-	doicon -s scalable source/unix/icons/nestopia.svg
-
-	dodoc AUTHORS README.* changelog.txt
-	use doc && dohtml -r readme.html doc/*.html doc/details
-
-	prepgamesdirs
-}
-
-pkg_preinst() {
-	games_pkg_preinst
-	gnome2_icon_savelist
-}
-
-pkg_postinst() {
-	games_pkg_postinst
-	gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-	gnome2_icon_cache_update
-}


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

* [gentoo-commits] repo/gentoo:master commit in: games-emulation/nestopia/
@ 2020-01-12 11:14 David Seifert
  0 siblings, 0 replies; 20+ messages in thread
From: David Seifert @ 2020-01-12 11:14 UTC (permalink / raw
  To: gentoo-commits

commit:     a53037072599bddb19e875be4ec7de9a12283a62
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 12 11:13:13 2020 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Jan 12 11:13:13 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5303707

games-emulation/nestopia: Remove local USE="gui"

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 games-emulation/nestopia/metadata.xml | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/games-emulation/nestopia/metadata.xml b/games-emulation/nestopia/metadata.xml
index 42c366120de..f28ccdd6542 100644
--- a/games-emulation/nestopia/metadata.xml
+++ b/games-emulation/nestopia/metadata.xml
@@ -9,7 +9,4 @@
 		<remote-id type="github">rdanbrook/nestopia</remote-id>
 		<remote-id type="sourceforge">nestopiaue</remote-id>
 	</upstream>
-	<use>
-		<flag name="gui">Enable GUI</flag>
-	</use>
 </pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: games-emulation/nestopia/
@ 2021-02-20 22:30 David Seifert
  0 siblings, 0 replies; 20+ messages in thread
From: David Seifert @ 2021-02-20 22:30 UTC (permalink / raw
  To: gentoo-commits

commit:     167ef36b662d4276f2a74934c00cf20dfb0e5a21
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 20 22:30:09 2021 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Feb 20 22:30:09 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=167ef36b

games-emulation/nestopia: Version bump to 1.50

Closes: https://bugs.gentoo.org/661932
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 games-emulation/nestopia/Manifest             |  1 +
 games-emulation/nestopia/nestopia-1.50.ebuild | 45 +++++++++++++++++++++++++++
 2 files changed, 46 insertions(+)

diff --git a/games-emulation/nestopia/Manifest b/games-emulation/nestopia/Manifest
index a8903ce7eaf..6ead2747a04 100644
--- a/games-emulation/nestopia/Manifest
+++ b/games-emulation/nestopia/Manifest
@@ -1 +1,2 @@
 DIST nestopia-1.47_p20170105.tar.gz 1283456 BLAKE2B 50e70f6f952e3b11b056e398b1b83ffd9458e89a877a8a05c4f9360f047c3a8e1edff2a1316a5d3967db050705dee066bae3452743985b7ce438294fe31d6b78 SHA512 58d1a932a6b90589c66503b2013b1a8162072e77e0416851a1430fa146e7fd85ff7363b70292c69d4c4513e3750aa53436a312c0240a843e42fbb89b554e7a70
+DIST nestopia-1.50.tar.gz 1529804 BLAKE2B ef2fdf6ffb6ff9bb5f222730869d6deadb892c0a3996e97750afee692ec1d3b997e2bfe353a4fe26b9771781f659de83dda5e4676e221f4b9beaa512d6873ca4 SHA512 6ea389d4891c7cfa36517495735ea0f34ba9427e51757113d0fe2b72d5ce5b11d7e6b7c02fd1e4e347a13bba06823e334800ff15036872e09b8561c10c7cb568

diff --git a/games-emulation/nestopia/nestopia-1.50.ebuild b/games-emulation/nestopia/nestopia-1.50.ebuild
new file mode 100644
index 00000000000..a6d4fc185a4
--- /dev/null
+++ b/games-emulation/nestopia/nestopia-1.50.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools xdg
+
+DESCRIPTION="A portable Nintendo Entertainment System emulator written in C++"
+HOMEPAGE="http://0ldsk00l.ca/nestopia/"
+
+if [[ ${PV} == *9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/0ldsk00l/nestopia.git"
+else
+	SRC_URI="https://github.com/0ldsk00l/nestopia/archive/${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-2+"
+SLOT="0"
+IUSE="ao doc gui jack"
+
+RDEPEND="
+	app-arch/libarchive:=
+	media-libs/libepoxy
+	media-libs/libsdl2[sound,joystick,video]
+	sys-libs/zlib
+	ao? ( media-libs/libao )
+	gui? ( x11-libs/gtk+:3 )
+	jack? ( virtual/jack )"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+src_prepare() {
+	default
+	eautoreconf
+}
+
+src_configure() {
+	econf \
+		$(use_with ao) \
+		$(use_with jack) \
+		$(use_enable doc) \
+		$(use_enable gui)
+}


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

* [gentoo-commits] repo/gentoo:master commit in: games-emulation/nestopia/
@ 2021-02-20 22:30 David Seifert
  0 siblings, 0 replies; 20+ messages in thread
From: David Seifert @ 2021-02-20 22:30 UTC (permalink / raw
  To: gentoo-commits

commit:     03626bb5462ec1b661118284e49a50f051c0e351
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 20 22:30:12 2021 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Feb 20 22:30:12 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03626bb5

games-emulation/nestopia: Update live ebuild

Closes: https://bugs.gentoo.org/771729
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 games-emulation/nestopia/nestopia-9999.ebuild | 42 +++++++++------------------
 1 file changed, 14 insertions(+), 28 deletions(-)

diff --git a/games-emulation/nestopia/nestopia-9999.ebuild b/games-emulation/nestopia/nestopia-9999.ebuild
index 932f8edc741..98f2f70517d 100644
--- a/games-emulation/nestopia/nestopia-9999.ebuild
+++ b/games-emulation/nestopia/nestopia-9999.ebuild
@@ -1,53 +1,39 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
-inherit cmake-utils gnome2-utils
+inherit autotools xdg
 
 DESCRIPTION="A portable Nintendo Entertainment System emulator written in C++"
 HOMEPAGE="http://0ldsk00l.ca/nestopia/"
 
 if [[ ${PV} == *9999 ]]; then
 	inherit git-r3
-	EGIT_REPO_URI="https://github.com/rdanbrook/nestopia.git"
+	EGIT_REPO_URI="https://github.com/0ldsk00l/nestopia.git"
 else
-	inherit vcs-snapshot
-	SRC_URI="https://github.com/rdanbrook/${PN}/archive/d7fae2aff1a93eac997d2b480652a1d068a2b6cf.tar.gz -> ${P}.tar.gz"
+	SRC_URI="https://github.com/0ldsk00l/nestopia/archive/${PV}.tar.gz -> ${P}.tar.gz"
 	KEYWORDS="~amd64 ~x86"
 fi
 
 LICENSE="GPL-2+"
 SLOT="0"
-IUSE="doc gui"
+IUSE="doc"
 
 RDEPEND="
 	app-arch/libarchive:=
-	media-libs/libao
 	media-libs/libepoxy
 	media-libs/libsdl2[sound,joystick,video]
 	sys-libs/zlib
-	gui? ( x11-libs/gtk+:3 )"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig"
+	x11-libs/gtk+:3"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
 
-src_configure() {
-	local mycmakeargs=(
-		-DENABLE_GTK=$(usex gui)
-		-DENABLE_DOC=$(usex doc)
-		-DCMAKE_INSTALL_DOCDIR=share/doc/${PF}
-	)
-	cmake-utils_src_configure
-}
-
-pkg_preinst() {
-	gnome2_icon_savelist
+src_prepare() {
+	default
+	eautoreconf
 }
 
-pkg_postinst() {
-	gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-	gnome2_icon_cache_update
+src_configure() {
+	econf $(use_enable doc)
 }


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

* [gentoo-commits] repo/gentoo:master commit in: games-emulation/nestopia/
@ 2021-02-20 22:30 David Seifert
  0 siblings, 0 replies; 20+ messages in thread
From: David Seifert @ 2021-02-20 22:30 UTC (permalink / raw
  To: gentoo-commits

commit:     42570a5abdf278e8faa95e3941d7db9391f50b75
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 20 22:30:15 2021 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Feb 20 22:30:15 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42570a5a

games-emulation/nestopia: Remove old 1.47_p20170105

Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 games-emulation/nestopia/Manifest                  |  1 -
 .../nestopia/nestopia-1.47_p20170105.ebuild        | 53 ----------------------
 2 files changed, 54 deletions(-)

diff --git a/games-emulation/nestopia/Manifest b/games-emulation/nestopia/Manifest
index 6ead2747a04..a891a84a0cc 100644
--- a/games-emulation/nestopia/Manifest
+++ b/games-emulation/nestopia/Manifest
@@ -1,2 +1 @@
-DIST nestopia-1.47_p20170105.tar.gz 1283456 BLAKE2B 50e70f6f952e3b11b056e398b1b83ffd9458e89a877a8a05c4f9360f047c3a8e1edff2a1316a5d3967db050705dee066bae3452743985b7ce438294fe31d6b78 SHA512 58d1a932a6b90589c66503b2013b1a8162072e77e0416851a1430fa146e7fd85ff7363b70292c69d4c4513e3750aa53436a312c0240a843e42fbb89b554e7a70
 DIST nestopia-1.50.tar.gz 1529804 BLAKE2B ef2fdf6ffb6ff9bb5f222730869d6deadb892c0a3996e97750afee692ec1d3b997e2bfe353a4fe26b9771781f659de83dda5e4676e221f4b9beaa512d6873ca4 SHA512 6ea389d4891c7cfa36517495735ea0f34ba9427e51757113d0fe2b72d5ce5b11d7e6b7c02fd1e4e347a13bba06823e334800ff15036872e09b8561c10c7cb568

diff --git a/games-emulation/nestopia/nestopia-1.47_p20170105.ebuild b/games-emulation/nestopia/nestopia-1.47_p20170105.ebuild
deleted file mode 100644
index 932f8edc741..00000000000
--- a/games-emulation/nestopia/nestopia-1.47_p20170105.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils gnome2-utils
-
-DESCRIPTION="A portable Nintendo Entertainment System emulator written in C++"
-HOMEPAGE="http://0ldsk00l.ca/nestopia/"
-
-if [[ ${PV} == *9999 ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/rdanbrook/nestopia.git"
-else
-	inherit vcs-snapshot
-	SRC_URI="https://github.com/rdanbrook/${PN}/archive/d7fae2aff1a93eac997d2b480652a1d068a2b6cf.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~x86"
-fi
-
-LICENSE="GPL-2+"
-SLOT="0"
-IUSE="doc gui"
-
-RDEPEND="
-	app-arch/libarchive:=
-	media-libs/libao
-	media-libs/libepoxy
-	media-libs/libsdl2[sound,joystick,video]
-	sys-libs/zlib
-	gui? ( x11-libs/gtk+:3 )"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig"
-
-src_configure() {
-	local mycmakeargs=(
-		-DENABLE_GTK=$(usex gui)
-		-DENABLE_DOC=$(usex doc)
-		-DCMAKE_INSTALL_DOCDIR=share/doc/${PF}
-	)
-	cmake-utils_src_configure
-}
-
-pkg_preinst() {
-	gnome2_icon_savelist
-}
-
-pkg_postinst() {
-	gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-	gnome2_icon_cache_update
-}


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

* [gentoo-commits] repo/gentoo:master commit in: games-emulation/nestopia/
@ 2022-02-09 18:54 Ionen Wolkens
  0 siblings, 0 replies; 20+ messages in thread
From: Ionen Wolkens @ 2022-02-09 18:54 UTC (permalink / raw
  To: gentoo-commits

commit:     d5ce3dd92021d5e39cfca7e4bf5f77afaed88062
Author:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Wed Feb  9 16:37:27 2022 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Wed Feb  9 18:22:57 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5ce3dd9

games-emulation/nestopia: update metadata.xml remote-id

Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>

 games-emulation/nestopia/metadata.xml | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/games-emulation/nestopia/metadata.xml b/games-emulation/nestopia/metadata.xml
index 29276c3824a5..57d2149abd0f 100644
--- a/games-emulation/nestopia/metadata.xml
+++ b/games-emulation/nestopia/metadata.xml
@@ -6,7 +6,6 @@
 		<name>Gentoo Games Project</name>
 	</maintainer>
 	<upstream>
-		<remote-id type="github">rdanbrook/nestopia</remote-id>
-		<remote-id type="sourceforge">nestopiaue</remote-id>
+		<remote-id type="github">0ldsk00l/nestopia</remote-id>
 	</upstream>
 </pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: games-emulation/nestopia/
@ 2022-02-09 18:54 Ionen Wolkens
  0 siblings, 0 replies; 20+ messages in thread
From: Ionen Wolkens @ 2022-02-09 18:54 UTC (permalink / raw
  To: gentoo-commits

commit:     30b84d03e116543ed1df04a5e1165cc7ab8f0dd9
Author:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Wed Feb  9 18:50:56 2022 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Wed Feb  9 18:50:58 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30b84d03

games-emulation/nestopia: add 1.51.1

This version switches from GTK to FLTK, removes the switch for
optional gui and the support for libao/jack (most USE are gone).

Dropped [video] from libsdl2, it's only used for input+audio and
fltk[opengl] handles the display.

Closes: https://bugs.gentoo.org/832960
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>

 games-emulation/nestopia/Manifest               |  1 +
 games-emulation/nestopia/nestopia-1.51.1.ebuild | 42 +++++++++++++++++++++++++
 2 files changed, 43 insertions(+)

diff --git a/games-emulation/nestopia/Manifest b/games-emulation/nestopia/Manifest
index a891a84a0cce..38f8e069f410 100644
--- a/games-emulation/nestopia/Manifest
+++ b/games-emulation/nestopia/Manifest
@@ -1 +1,2 @@
 DIST nestopia-1.50.tar.gz 1529804 BLAKE2B ef2fdf6ffb6ff9bb5f222730869d6deadb892c0a3996e97750afee692ec1d3b997e2bfe353a4fe26b9771781f659de83dda5e4676e221f4b9beaa512d6873ca4 SHA512 6ea389d4891c7cfa36517495735ea0f34ba9427e51757113d0fe2b72d5ce5b11d7e6b7c02fd1e4e347a13bba06823e334800ff15036872e09b8561c10c7cb568
+DIST nestopia-1.51.1.tar.gz 1578970 BLAKE2B 5db7a380239c207843d5edadf5a174059d4566cd7b68aca01515db4940be3a6f6d02421f1499df28d4ac026ec435650452eb43306d1e49487063a06bce16b961 SHA512 68da5e9ab7b848d895a8893a18ef50d90758258fbf7f86ca5df0fe95e74bad761aa436dca79b402439a12fd4dd1430b22e45ee202168be3f9f751190a7ae6131

diff --git a/games-emulation/nestopia/nestopia-1.51.1.ebuild b/games-emulation/nestopia/nestopia-1.51.1.ebuild
new file mode 100644
index 000000000000..c6bdbe0d6fb8
--- /dev/null
+++ b/games-emulation/nestopia/nestopia-1.51.1.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools xdg
+
+DESCRIPTION="Portable Nintendo Entertainment System emulator written in C++"
+HOMEPAGE="http://0ldsk00l.ca/nestopia/"
+
+if [[ ${PV} == 9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/0ldsk00l/nestopia.git"
+else
+	SRC_URI="https://github.com/0ldsk00l/nestopia/archive/${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-2+"
+SLOT="0"
+IUSE="doc"
+
+RDEPEND="
+	app-arch/libarchive:=
+	media-libs/libglvnd
+	media-libs/libsdl2[joystick,sound]
+	sys-libs/zlib:=
+	x11-libs/fltk:1[opengl]"
+DEPEND="${RDEPEND}"
+BDEPEND="
+	sys-devel/autoconf-archive
+	virtual/pkgconfig"
+
+src_prepare() {
+	default
+
+	eautoreconf
+}
+
+src_configure() {
+	econf $(use_enable doc)
+}


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

* [gentoo-commits] repo/gentoo:master commit in: games-emulation/nestopia/
@ 2022-02-09 18:54 Ionen Wolkens
  0 siblings, 0 replies; 20+ messages in thread
From: Ionen Wolkens @ 2022-02-09 18:54 UTC (permalink / raw
  To: gentoo-commits

commit:     0a8afb2aa22880dcad3168e6f0c0bde4b95fe757
Author:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Wed Feb  9 18:51:42 2022 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Wed Feb  9 18:51:42 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a8afb2a

games-emulation/nestopia: sync live

Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>

 games-emulation/nestopia/nestopia-9999.ebuild | 21 ++++++++++++---------
 1 file changed, 12 insertions(+), 9 deletions(-)

diff --git a/games-emulation/nestopia/nestopia-9999.ebuild b/games-emulation/nestopia/nestopia-9999.ebuild
index 98f2f70517d9..c6bdbe0d6fb8 100644
--- a/games-emulation/nestopia/nestopia-9999.ebuild
+++ b/games-emulation/nestopia/nestopia-9999.ebuild
@@ -1,14 +1,14 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit autotools xdg
 
-DESCRIPTION="A portable Nintendo Entertainment System emulator written in C++"
+DESCRIPTION="Portable Nintendo Entertainment System emulator written in C++"
 HOMEPAGE="http://0ldsk00l.ca/nestopia/"
 
-if [[ ${PV} == *9999 ]]; then
+if [[ ${PV} == 9999 ]]; then
 	inherit git-r3
 	EGIT_REPO_URI="https://github.com/0ldsk00l/nestopia.git"
 else
@@ -22,15 +22,18 @@ IUSE="doc"
 
 RDEPEND="
 	app-arch/libarchive:=
-	media-libs/libepoxy
-	media-libs/libsdl2[sound,joystick,video]
-	sys-libs/zlib
-	x11-libs/gtk+:3"
+	media-libs/libglvnd
+	media-libs/libsdl2[joystick,sound]
+	sys-libs/zlib:=
+	x11-libs/fltk:1[opengl]"
 DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
+BDEPEND="
+	sys-devel/autoconf-archive
+	virtual/pkgconfig"
 
 src_prepare() {
 	default
+
 	eautoreconf
 }
 


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

* [gentoo-commits] repo/gentoo:master commit in: games-emulation/nestopia/
@ 2022-02-09 19:16 David Seifert
  0 siblings, 0 replies; 20+ messages in thread
From: David Seifert @ 2022-02-09 19:16 UTC (permalink / raw
  To: gentoo-commits

commit:     7756de4318427c9b5810f62730b1bef9f87ea9e4
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Wed Feb  9 19:15:54 2022 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Wed Feb  9 19:15:54 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7756de43

games-emulation/nestopia: silence -Wc++11-narrowing on clang

Closes: https://bugs.gentoo.org/830469
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 games-emulation/nestopia/nestopia-1.51.1.ebuild | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/games-emulation/nestopia/nestopia-1.51.1.ebuild b/games-emulation/nestopia/nestopia-1.51.1.ebuild
index c6bdbe0d6fb8..ebab0b9b149b 100644
--- a/games-emulation/nestopia/nestopia-1.51.1.ebuild
+++ b/games-emulation/nestopia/nestopia-1.51.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-inherit autotools xdg
+inherit autotools flag-o-matic xdg
 
 DESCRIPTION="Portable Nintendo Entertainment System emulator written in C++"
 HOMEPAGE="http://0ldsk00l.ca/nestopia/"
@@ -38,5 +38,8 @@ src_prepare() {
 }
 
 src_configure() {
+	# silence the narrowing warnings on clang (#830469)
+	append-cxxflags -Wno-narrowing
+
 	econf $(use_enable doc)
 }


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

* [gentoo-commits] repo/gentoo:master commit in: games-emulation/nestopia/
@ 2022-02-16  6:58 Ionen Wolkens
  0 siblings, 0 replies; 20+ messages in thread
From: Ionen Wolkens @ 2022-02-16  6:58 UTC (permalink / raw
  To: gentoo-commits

commit:     9dd1acebef11be76d2bfbd24dc6274bc169c2fe9
Author:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 16 05:53:38 2022 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Wed Feb 16 06:55:53 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9dd1aceb

games-emulation/nestopia: drop 1.50

Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>

 games-emulation/nestopia/Manifest             |  1 -
 games-emulation/nestopia/nestopia-1.50.ebuild | 45 ---------------------------
 2 files changed, 46 deletions(-)

diff --git a/games-emulation/nestopia/Manifest b/games-emulation/nestopia/Manifest
index 38f8e069f410..5530cb20cef3 100644
--- a/games-emulation/nestopia/Manifest
+++ b/games-emulation/nestopia/Manifest
@@ -1,2 +1 @@
-DIST nestopia-1.50.tar.gz 1529804 BLAKE2B ef2fdf6ffb6ff9bb5f222730869d6deadb892c0a3996e97750afee692ec1d3b997e2bfe353a4fe26b9771781f659de83dda5e4676e221f4b9beaa512d6873ca4 SHA512 6ea389d4891c7cfa36517495735ea0f34ba9427e51757113d0fe2b72d5ce5b11d7e6b7c02fd1e4e347a13bba06823e334800ff15036872e09b8561c10c7cb568
 DIST nestopia-1.51.1.tar.gz 1578970 BLAKE2B 5db7a380239c207843d5edadf5a174059d4566cd7b68aca01515db4940be3a6f6d02421f1499df28d4ac026ec435650452eb43306d1e49487063a06bce16b961 SHA512 68da5e9ab7b848d895a8893a18ef50d90758258fbf7f86ca5df0fe95e74bad761aa436dca79b402439a12fd4dd1430b22e45ee202168be3f9f751190a7ae6131

diff --git a/games-emulation/nestopia/nestopia-1.50.ebuild b/games-emulation/nestopia/nestopia-1.50.ebuild
deleted file mode 100644
index a6d4fc185a4e..000000000000
--- a/games-emulation/nestopia/nestopia-1.50.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools xdg
-
-DESCRIPTION="A portable Nintendo Entertainment System emulator written in C++"
-HOMEPAGE="http://0ldsk00l.ca/nestopia/"
-
-if [[ ${PV} == *9999 ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/0ldsk00l/nestopia.git"
-else
-	SRC_URI="https://github.com/0ldsk00l/nestopia/archive/${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~x86"
-fi
-
-LICENSE="GPL-2+"
-SLOT="0"
-IUSE="ao doc gui jack"
-
-RDEPEND="
-	app-arch/libarchive:=
-	media-libs/libepoxy
-	media-libs/libsdl2[sound,joystick,video]
-	sys-libs/zlib
-	ao? ( media-libs/libao )
-	gui? ( x11-libs/gtk+:3 )
-	jack? ( virtual/jack )"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-src_prepare() {
-	default
-	eautoreconf
-}
-
-src_configure() {
-	econf \
-		$(use_with ao) \
-		$(use_with jack) \
-		$(use_enable doc) \
-		$(use_enable gui)
-}


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

* [gentoo-commits] repo/gentoo:master commit in: games-emulation/nestopia/
@ 2023-01-11 11:26 Ionen Wolkens
  0 siblings, 0 replies; 20+ messages in thread
From: Ionen Wolkens @ 2023-01-11 11:26 UTC (permalink / raw
  To: gentoo-commits

commit:     c9294b537c6fed708fef7b169aa94a4dffd992fc
Author:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 11 10:33:16 2023 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Wed Jan 11 11:25:30 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9294b53

games-emulation/nestopia: add 1.52.0

Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>

 games-emulation/nestopia/Manifest               |  1 +
 games-emulation/nestopia/nestopia-1.52.0.ebuild | 45 +++++++++++++++++++++++++
 2 files changed, 46 insertions(+)

diff --git a/games-emulation/nestopia/Manifest b/games-emulation/nestopia/Manifest
index 5530cb20cef3..95ab75373350 100644
--- a/games-emulation/nestopia/Manifest
+++ b/games-emulation/nestopia/Manifest
@@ -1 +1,2 @@
 DIST nestopia-1.51.1.tar.gz 1578970 BLAKE2B 5db7a380239c207843d5edadf5a174059d4566cd7b68aca01515db4940be3a6f6d02421f1499df28d4ac026ec435650452eb43306d1e49487063a06bce16b961 SHA512 68da5e9ab7b848d895a8893a18ef50d90758258fbf7f86ca5df0fe95e74bad761aa436dca79b402439a12fd4dd1430b22e45ee202168be3f9f751190a7ae6131
+DIST nestopia-1.52.0.tar.gz 1589971 BLAKE2B faa2418ae79a19448df411303c1c6740f74f42501d7232fee5e4bc8c60f26ee5187e106cb76fb2f8286a1b14ecb0ced1376a15381775ab67dc62e720ebae4601 SHA512 d7b36a07c1def146b3596124d3d084c39865916069092eceb3c1a22a030573c94fff7f3525e161d671fedd672f81ef536a42b4d0b37779c5993ffc158cdd3c0b

diff --git a/games-emulation/nestopia/nestopia-1.52.0.ebuild b/games-emulation/nestopia/nestopia-1.52.0.ebuild
new file mode 100644
index 000000000000..646a1b125a96
--- /dev/null
+++ b/games-emulation/nestopia/nestopia-1.52.0.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools flag-o-matic xdg
+
+DESCRIPTION="Portable Nintendo Entertainment System emulator written in C++"
+HOMEPAGE="http://0ldsk00l.ca/nestopia/"
+
+if [[ ${PV} == 9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/0ldsk00l/nestopia.git"
+else
+	SRC_URI="https://github.com/0ldsk00l/nestopia/archive/${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-2+"
+SLOT="0"
+IUSE="doc"
+
+RDEPEND="
+	app-arch/libarchive:=
+	media-libs/libglvnd
+	media-libs/libsdl2[joystick,sound]
+	sys-libs/zlib:=
+	x11-libs/fltk:1[opengl]"
+DEPEND="${RDEPEND}"
+BDEPEND="
+	sys-devel/autoconf-archive
+	virtual/pkgconfig"
+
+src_prepare() {
+	default
+
+	eautoreconf
+}
+
+src_configure() {
+	# silence the narrowing warnings on clang (#830469)
+	append-cxxflags -Wno-narrowing
+
+	econf $(use_enable doc)
+}


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

* [gentoo-commits] repo/gentoo:master commit in: games-emulation/nestopia/
@ 2023-01-11 11:26 Ionen Wolkens
  0 siblings, 0 replies; 20+ messages in thread
From: Ionen Wolkens @ 2023-01-11 11:26 UTC (permalink / raw
  To: gentoo-commits

commit:     cb02ebec944893f1b016a3844a0e7de2a9db4908
Author:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 11 10:37:42 2023 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Wed Jan 11 11:25:31 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb02ebec

games-emulation/nestopia: sync live

This been in 1.51.1 for a while and unfortunately is
still needed in 1.52.0.

Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>

 games-emulation/nestopia/nestopia-9999.ebuild | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/games-emulation/nestopia/nestopia-9999.ebuild b/games-emulation/nestopia/nestopia-9999.ebuild
index c6bdbe0d6fb8..646a1b125a96 100644
--- a/games-emulation/nestopia/nestopia-9999.ebuild
+++ b/games-emulation/nestopia/nestopia-9999.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-inherit autotools xdg
+inherit autotools flag-o-matic xdg
 
 DESCRIPTION="Portable Nintendo Entertainment System emulator written in C++"
 HOMEPAGE="http://0ldsk00l.ca/nestopia/"
@@ -38,5 +38,8 @@ src_prepare() {
 }
 
 src_configure() {
+	# silence the narrowing warnings on clang (#830469)
+	append-cxxflags -Wno-narrowing
+
 	econf $(use_enable doc)
 }


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

* [gentoo-commits] repo/gentoo:master commit in: games-emulation/nestopia/
@ 2023-01-20 22:48 Ionen Wolkens
  0 siblings, 0 replies; 20+ messages in thread
From: Ionen Wolkens @ 2023-01-20 22:48 UTC (permalink / raw
  To: gentoo-commits

commit:     9def6d10cf42199c055d6bb2f4af363e43025890
Author:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 20 22:29:01 2023 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Fri Jan 20 22:44:09 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9def6d10

games-emulation/nestopia: cleanup live conditional block

Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>

 games-emulation/nestopia/nestopia-1.52.0.ebuild | 10 ++--------
 1 file changed, 2 insertions(+), 8 deletions(-)

diff --git a/games-emulation/nestopia/nestopia-1.52.0.ebuild b/games-emulation/nestopia/nestopia-1.52.0.ebuild
index 646a1b125a96..debf5a4e2856 100644
--- a/games-emulation/nestopia/nestopia-1.52.0.ebuild
+++ b/games-emulation/nestopia/nestopia-1.52.0.ebuild
@@ -7,17 +7,11 @@ inherit autotools flag-o-matic xdg
 
 DESCRIPTION="Portable Nintendo Entertainment System emulator written in C++"
 HOMEPAGE="http://0ldsk00l.ca/nestopia/"
-
-if [[ ${PV} == 9999 ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/0ldsk00l/nestopia.git"
-else
-	SRC_URI="https://github.com/0ldsk00l/nestopia/archive/${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~x86"
-fi
+SRC_URI="https://github.com/0ldsk00l/nestopia/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-2+"
 SLOT="0"
+KEYWORDS="~amd64 ~x86"
 IUSE="doc"
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: games-emulation/nestopia/
@ 2023-01-20 22:48 Ionen Wolkens
  0 siblings, 0 replies; 20+ messages in thread
From: Ionen Wolkens @ 2023-01-20 22:48 UTC (permalink / raw
  To: gentoo-commits

commit:     ad20dc71de0d55bbced4d5cf7889de381f76609e
Author:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 20 22:28:18 2023 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Fri Jan 20 22:44:09 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad20dc71

games-emulation/nestopia: drop 1.51.1

Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>

 games-emulation/nestopia/Manifest               |  1 -
 games-emulation/nestopia/nestopia-1.51.1.ebuild | 45 -------------------------
 2 files changed, 46 deletions(-)

diff --git a/games-emulation/nestopia/Manifest b/games-emulation/nestopia/Manifest
index 95ab75373350..6326873a9351 100644
--- a/games-emulation/nestopia/Manifest
+++ b/games-emulation/nestopia/Manifest
@@ -1,2 +1 @@
-DIST nestopia-1.51.1.tar.gz 1578970 BLAKE2B 5db7a380239c207843d5edadf5a174059d4566cd7b68aca01515db4940be3a6f6d02421f1499df28d4ac026ec435650452eb43306d1e49487063a06bce16b961 SHA512 68da5e9ab7b848d895a8893a18ef50d90758258fbf7f86ca5df0fe95e74bad761aa436dca79b402439a12fd4dd1430b22e45ee202168be3f9f751190a7ae6131
 DIST nestopia-1.52.0.tar.gz 1589971 BLAKE2B faa2418ae79a19448df411303c1c6740f74f42501d7232fee5e4bc8c60f26ee5187e106cb76fb2f8286a1b14ecb0ced1376a15381775ab67dc62e720ebae4601 SHA512 d7b36a07c1def146b3596124d3d084c39865916069092eceb3c1a22a030573c94fff7f3525e161d671fedd672f81ef536a42b4d0b37779c5993ffc158cdd3c0b

diff --git a/games-emulation/nestopia/nestopia-1.51.1.ebuild b/games-emulation/nestopia/nestopia-1.51.1.ebuild
deleted file mode 100644
index ebab0b9b149b..000000000000
--- a/games-emulation/nestopia/nestopia-1.51.1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools flag-o-matic xdg
-
-DESCRIPTION="Portable Nintendo Entertainment System emulator written in C++"
-HOMEPAGE="http://0ldsk00l.ca/nestopia/"
-
-if [[ ${PV} == 9999 ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/0ldsk00l/nestopia.git"
-else
-	SRC_URI="https://github.com/0ldsk00l/nestopia/archive/${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~x86"
-fi
-
-LICENSE="GPL-2+"
-SLOT="0"
-IUSE="doc"
-
-RDEPEND="
-	app-arch/libarchive:=
-	media-libs/libglvnd
-	media-libs/libsdl2[joystick,sound]
-	sys-libs/zlib:=
-	x11-libs/fltk:1[opengl]"
-DEPEND="${RDEPEND}"
-BDEPEND="
-	sys-devel/autoconf-archive
-	virtual/pkgconfig"
-
-src_prepare() {
-	default
-
-	eautoreconf
-}
-
-src_configure() {
-	# silence the narrowing warnings on clang (#830469)
-	append-cxxflags -Wno-narrowing
-
-	econf $(use_enable doc)
-}


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

* [gentoo-commits] repo/gentoo:master commit in: games-emulation/nestopia/
@ 2023-01-20 22:48 Ionen Wolkens
  0 siblings, 0 replies; 20+ messages in thread
From: Ionen Wolkens @ 2023-01-20 22:48 UTC (permalink / raw
  To: gentoo-commits

commit:     1c0a9542e93b289ff724f1840b5c9630453ff18b
Author:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 20 22:25:55 2023 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Fri Jan 20 22:44:09 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c0a9542

games-emulation/nestopia: drop live ebuild

Development seems slow/uneventful, don't believe anyone in games@
really tracks changes, and it's getting releases as needed, and so
don't believe there's much point in keeping this.

Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>

 games-emulation/nestopia/nestopia-9999.ebuild | 45 ---------------------------
 1 file changed, 45 deletions(-)

diff --git a/games-emulation/nestopia/nestopia-9999.ebuild b/games-emulation/nestopia/nestopia-9999.ebuild
deleted file mode 100644
index 646a1b125a96..000000000000
--- a/games-emulation/nestopia/nestopia-9999.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools flag-o-matic xdg
-
-DESCRIPTION="Portable Nintendo Entertainment System emulator written in C++"
-HOMEPAGE="http://0ldsk00l.ca/nestopia/"
-
-if [[ ${PV} == 9999 ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/0ldsk00l/nestopia.git"
-else
-	SRC_URI="https://github.com/0ldsk00l/nestopia/archive/${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~x86"
-fi
-
-LICENSE="GPL-2+"
-SLOT="0"
-IUSE="doc"
-
-RDEPEND="
-	app-arch/libarchive:=
-	media-libs/libglvnd
-	media-libs/libsdl2[joystick,sound]
-	sys-libs/zlib:=
-	x11-libs/fltk:1[opengl]"
-DEPEND="${RDEPEND}"
-BDEPEND="
-	sys-devel/autoconf-archive
-	virtual/pkgconfig"
-
-src_prepare() {
-	default
-
-	eautoreconf
-}
-
-src_configure() {
-	# silence the narrowing warnings on clang (#830469)
-	append-cxxflags -Wno-narrowing
-
-	econf $(use_enable doc)
-}


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

* [gentoo-commits] repo/gentoo:master commit in: games-emulation/nestopia/
@ 2024-05-05 23:44 Ionen Wolkens
  0 siblings, 0 replies; 20+ messages in thread
From: Ionen Wolkens @ 2024-05-05 23:44 UTC (permalink / raw
  To: gentoo-commits

commit:     9bf593bfef121bf8bd42fec5938742aedf4c1ada
Author:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Sun May  5 22:37:16 2024 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Sun May  5 23:43:47 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bf593bf

games-emulation/nestopia: add 1.52.1

Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>

 games-emulation/nestopia/Manifest               |  1 +
 games-emulation/nestopia/nestopia-1.52.1.ebuild | 44 +++++++++++++++++++++++++
 2 files changed, 45 insertions(+)

diff --git a/games-emulation/nestopia/Manifest b/games-emulation/nestopia/Manifest
index 6326873a9351..e8a623bb9af0 100644
--- a/games-emulation/nestopia/Manifest
+++ b/games-emulation/nestopia/Manifest
@@ -1 +1,2 @@
 DIST nestopia-1.52.0.tar.gz 1589971 BLAKE2B faa2418ae79a19448df411303c1c6740f74f42501d7232fee5e4bc8c60f26ee5187e106cb76fb2f8286a1b14ecb0ced1376a15381775ab67dc62e720ebae4601 SHA512 d7b36a07c1def146b3596124d3d084c39865916069092eceb3c1a22a030573c94fff7f3525e161d671fedd672f81ef536a42b4d0b37779c5993ffc158cdd3c0b
+DIST nestopia-1.52.1.tar.gz 1593358 BLAKE2B 31010b0b85e76a2cadcc48075be185076c728cb5742ef6a557e4f90a471ef4f2dd4c62e3580a01610b436b780747af4ef57c43f20cc0a000af01aef0899f97df SHA512 600f539e64e71ae732073a9e6781c67e54bd37d3253cf48b77d433396516d6ecf3e519e0f19107aca9dd81b3802b3948d9d242c44956682c988d4630b090273e

diff --git a/games-emulation/nestopia/nestopia-1.52.1.ebuild b/games-emulation/nestopia/nestopia-1.52.1.ebuild
new file mode 100644
index 000000000000..f052df2b46cc
--- /dev/null
+++ b/games-emulation/nestopia/nestopia-1.52.1.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools flag-o-matic xdg
+
+DESCRIPTION="Portable Nintendo Entertainment System emulator written in C++"
+HOMEPAGE="http://0ldsk00l.ca/nestopia/"
+SRC_URI="
+	https://github.com/0ldsk00l/nestopia/archive/refs/tags/${PV}.tar.gz
+		-> ${P}.tar.gz
+"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc"
+
+RDEPEND="
+	app-arch/libarchive:=
+	media-libs/libglvnd
+	media-libs/libsdl2[joystick,sound]
+	sys-libs/zlib:=
+	x11-libs/fltk:1[opengl]
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+	dev-build/autoconf-archive
+	virtual/pkgconfig
+"
+
+src_prepare() {
+	default
+
+	eautoreconf
+}
+
+src_configure() {
+	# silence the narrowing warnings on clang (bug #830469)
+	append-cxxflags -Wno-narrowing
+
+	econf $(use_enable doc)
+}


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

* [gentoo-commits] repo/gentoo:master commit in: games-emulation/nestopia/
@ 2024-05-12 20:25 Ionen Wolkens
  0 siblings, 0 replies; 20+ messages in thread
From: Ionen Wolkens @ 2024-05-12 20:25 UTC (permalink / raw
  To: gentoo-commits

commit:     a34d1b02b2eef183a38f2f4f1de4b0318d7aa289
Author:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Sun May 12 20:03:11 2024 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Sun May 12 20:03:11 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a34d1b02

games-emulation/nestopia: drop 1.52.0

Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>

 games-emulation/nestopia/Manifest               |  1 -
 games-emulation/nestopia/nestopia-1.52.0.ebuild | 39 -------------------------
 2 files changed, 40 deletions(-)

diff --git a/games-emulation/nestopia/Manifest b/games-emulation/nestopia/Manifest
index e8a623bb9af0..8816a763c660 100644
--- a/games-emulation/nestopia/Manifest
+++ b/games-emulation/nestopia/Manifest
@@ -1,2 +1 @@
-DIST nestopia-1.52.0.tar.gz 1589971 BLAKE2B faa2418ae79a19448df411303c1c6740f74f42501d7232fee5e4bc8c60f26ee5187e106cb76fb2f8286a1b14ecb0ced1376a15381775ab67dc62e720ebae4601 SHA512 d7b36a07c1def146b3596124d3d084c39865916069092eceb3c1a22a030573c94fff7f3525e161d671fedd672f81ef536a42b4d0b37779c5993ffc158cdd3c0b
 DIST nestopia-1.52.1.tar.gz 1593358 BLAKE2B 31010b0b85e76a2cadcc48075be185076c728cb5742ef6a557e4f90a471ef4f2dd4c62e3580a01610b436b780747af4ef57c43f20cc0a000af01aef0899f97df SHA512 600f539e64e71ae732073a9e6781c67e54bd37d3253cf48b77d433396516d6ecf3e519e0f19107aca9dd81b3802b3948d9d242c44956682c988d4630b090273e

diff --git a/games-emulation/nestopia/nestopia-1.52.0.ebuild b/games-emulation/nestopia/nestopia-1.52.0.ebuild
deleted file mode 100644
index 105b6509e4ea..000000000000
--- a/games-emulation/nestopia/nestopia-1.52.0.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools flag-o-matic xdg
-
-DESCRIPTION="Portable Nintendo Entertainment System emulator written in C++"
-HOMEPAGE="http://0ldsk00l.ca/nestopia/"
-SRC_URI="https://github.com/0ldsk00l/nestopia/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc"
-
-RDEPEND="
-	app-arch/libarchive:=
-	media-libs/libglvnd
-	media-libs/libsdl2[joystick,sound]
-	sys-libs/zlib:=
-	x11-libs/fltk:1[opengl]"
-DEPEND="${RDEPEND}"
-BDEPEND="
-	dev-build/autoconf-archive
-	virtual/pkgconfig"
-
-src_prepare() {
-	default
-
-	eautoreconf
-}
-
-src_configure() {
-	# silence the narrowing warnings on clang (#830469)
-	append-cxxflags -Wno-narrowing
-
-	econf $(use_enable doc)
-}


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

end of thread, other threads:[~2024-05-12 20:26 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-05 12:23 [gentoo-commits] repo/gentoo:master commit in: games-emulation/nestopia/ Michael Palimaka
  -- strict thread matches above, loose matches on Subject: below --
2024-05-12 20:25 Ionen Wolkens
2024-05-05 23:44 Ionen Wolkens
2023-01-20 22:48 Ionen Wolkens
2023-01-20 22:48 Ionen Wolkens
2023-01-20 22:48 Ionen Wolkens
2023-01-11 11:26 Ionen Wolkens
2023-01-11 11:26 Ionen Wolkens
2022-02-16  6:58 Ionen Wolkens
2022-02-09 19:16 David Seifert
2022-02-09 18:54 Ionen Wolkens
2022-02-09 18:54 Ionen Wolkens
2022-02-09 18:54 Ionen Wolkens
2021-02-20 22:30 David Seifert
2021-02-20 22:30 David Seifert
2021-02-20 22:30 David Seifert
2020-01-12 11:14 David Seifert
2017-10-05 12:23 Michael Palimaka
2017-01-05 13:30 David Seifert
2017-01-05 13:30 David Seifert

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