From 58e59b94791931f1cc0b4654d1e2614800f9e022 Mon Sep 17 00:00:00 2001 From: orbea Date: Sat, 15 Nov 2025 09:24:29 -0800 Subject: [PATCH] games-emulation/jgrf: drop 1.2.1-r1 Closes: https://github.com/gentoo/gentoo/pull/44635 Signed-off-by: orbea Signed-off-by: Michael Orlitzky --- games-emulation/jgrf/Manifest | 1 - .../jgrf/files/jgrf-1.2.1-nsf.patch | 23 -------- games-emulation/jgrf/jgrf-1.2.1-r1.ebuild | 55 ------------------- 3 files changed, 79 deletions(-) delete mode 100644 games-emulation/jgrf/files/jgrf-1.2.1-nsf.patch delete mode 100644 games-emulation/jgrf/jgrf-1.2.1-r1.ebuild diff --git a/games-emulation/jgrf/Manifest b/games-emulation/jgrf/Manifest index 4c9542bbb071..5e85c804a771 100644 --- a/games-emulation/jgrf/Manifest +++ b/games-emulation/jgrf/Manifest @@ -1,2 +1 @@ -DIST jgrf-1.2.1.tar.bz2 307911 BLAKE2B d54d0ea3cf6e4eb7df1469a2dfa5cb268be51d1497d003e14e6bdf183a40cc7b6ec13dd8cb3217e15fc8539df5131754d0ec846943f454d324fa4b3546422713 SHA512 2fc29363fa6a22e4e9a58fc25ea532c51ce03971c692b0b4ea0d0407ee232bd36cdfe9a1408019c1b66f6fd35ae7a534a50a65ee801f68e290537da012ab77e7 DIST jgrf-1.2.2.tar.bz2 309537 BLAKE2B 4a915549b93d047e3035721d3a3b2a2f2f88d9efbc70cbda5200bbf337517d939d8b18b76f8259b0c3587a882044c797f6f77e6aaf5fd4c8415c044117b04f9d SHA512 e9660916904b0d5fdae3a2db6a9c18af9315efaf0b23a27ed149eb45299bf75c307bc711b8659e079c5f37e02a84ad92ef13fc889911b0d733700554e59bfd97 diff --git a/games-emulation/jgrf/files/jgrf-1.2.1-nsf.patch b/games-emulation/jgrf/files/jgrf-1.2.1-nsf.patch deleted file mode 100644 index 0ccf8a9d4b86..000000000000 --- a/games-emulation/jgrf/files/jgrf-1.2.1-nsf.patch +++ /dev/null @@ -1,23 +0,0 @@ -https://gitlab.com/jgemu/jgrf/-/commit/b0cadbd7829c76e4fdb1a99961a17d4cf23d31a4 - -From b0cadbd7829c76e4fdb1a99961a17d4cf23d31a4 Mon Sep 17 00:00:00 2001 -From: Rupert Carmichael <5050061-carmiker@users.noreply.gitlab.com> -Date: Tue, 5 Aug 2025 01:15:20 -0400 -Subject: [PATCH] detect: Add NSF detection - ---- - src/detect.c | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/src/detect.c b/src/detect.c -index 8522f4c..025d057 100644 ---- a/src/detect.c -+++ b/src/detect.c -@@ -94,6 +94,7 @@ static extmap_t extmap[] = { - {"nes", "nes"}, - {"ngc", "ngp"}, - {"ngp", "ngp"}, -+ {"nsf", "nes"}, - {"pce", "pce"}, - {"rom", "coleco"}, - {"sfc", "snes"}, diff --git a/games-emulation/jgrf/jgrf-1.2.1-r1.ebuild b/games-emulation/jgrf/jgrf-1.2.1-r1.ebuild deleted file mode 100644 index 45b5bfba8159..000000000000 --- a/games-emulation/jgrf/jgrf-1.2.1-r1.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 2022-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit toolchain-funcs xdg - -DESCRIPTION="The Jolly Good Reference Frontend" -HOMEPAGE="https://jgemu.gitlab.io/jgrf.html" -if [[ "${PV}" == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://gitlab.com/jgemu/${PN}.git" -else - SRC_URI="https://gitlab.com/jgemu/${PN}/-/archive/${PV}/${P}.tar.bz2" - KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" -fi - -LICENSE="BSD CC0-1.0 MIT ZLIB" -SLOT="1" - -DEPEND=" - dev-libs/miniz - dev-libs/openssl:0= - media-libs/jg:1= - media-libs/libepoxy[egl(+)] - media-libs/libsdl2[opengl,sound,video] - media-libs/speexdsp -" -RDEPEND="${DEPEND}" -BDEPEND=" - virtual/pkgconfig -" - -PATCHES=( - "${FILESDIR}"/${P}-nsf.patch -) - -src_compile() { - emake \ - CC="$(tc-getCC)" \ - PKG_CONFIG="$(tc-getPKG_CONFIG)" \ - PREFIX="${EPREFIX}"/usr \ - LIBDIR="${EPREFIX}/usr/$(get_libdir)" \ - USE_EXTERNAL_MD5=1 \ - USE_EXTERNAL_MINIZ=1 -} - -src_install() { - emake install \ - DESTDIR="${D}" \ - PREFIX="${EPREFIX}"/usr \ - DOCDIR="${EPREFIX}"/usr/share/doc/${PF} \ - USE_EXTERNAL_MD5=1 \ - USE_EXTERNAL_MINIZ=1 -}