Gentoo Archives: gentoo-commits

From: "Maciej Barć" <xgqt@××××××.net>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: games-emulation/melonds/
Date: Mon, 26 Apr 2021 22:40:39
Message-Id: 1619476809.357161f3bd5a032b8b70817d709290461d5b60f0.xgqt@gentoo
1 commit: 357161f3bd5a032b8b70817d709290461d5b60f0
2 Author: Maciej Barć <xgqt <AT> riseup <DOT> net>
3 AuthorDate: Mon Apr 26 22:40:09 2021 +0000
4 Commit: Maciej Barć <xgqt <AT> riseup <DOT> net>
5 CommitDate: Mon Apr 26 22:40:09 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=357161f3
7
8 games-emulation/melonds: drop old 0.8.3
9
10 Package-Manager: Portage-3.0.17, Repoman-3.0.2
11 Signed-off-by: Maciej Barć <xgqt <AT> riseup.net>
12
13 games-emulation/melonds/Manifest | 1 -
14 games-emulation/melonds/melonds-0.8.3.ebuild | 49 ----------------------------
15 2 files changed, 50 deletions(-)
16
17 diff --git a/games-emulation/melonds/Manifest b/games-emulation/melonds/Manifest
18 index 6fec3fe07..c8b32ec73 100644
19 --- a/games-emulation/melonds/Manifest
20 +++ b/games-emulation/melonds/Manifest
21 @@ -1,4 +1,3 @@
22 -DIST melonDS-0.8.3.tar.gz 965501 BLAKE2B 6ada01de8942c7ae5ec4a0a48cc76384ac2196f567d67d242d3d81e7c760dd87d76fcb5a33b540b670fd79358ba8e6a9c355d48e8eb08c721dfe33b54e4a9842 SHA512 4fed77abd231812d2f9ddb19a7fe6e808fb8e92035bb2fea220032b7c0a98671b4fd79ef0f7c7c559e92f3d1875ea119afaa581be2edacaa10f4437620eecd76
23 DIST melonDS-0.9.1.tar.gz 1311519 BLAKE2B 7d31f9de32799a28f9e179d05295fe7874f6d879ac63cebeaf7153f1cca553f816fd5fa2853d01b5ace1afe137f00fcd7b4526635ae9c8140ac348630225c745 SHA512 733a9f9352b7f61c76de761c7f632f5fca9c4ae2970a0235a7b5c0e6ca2ea550762472ff293f65ce29aaa63a610bb4f1a22b62e1957004606c2f85be60fbb8f2
24 DIST melonDS-0.9.2.tar.gz 1330793 BLAKE2B e504dd2e1344a9680b9820f7f0308fa30decb16f40675df5649babef7ab3fae9528042fc2737a36bafdd28b9125f94a79d20e5a5e791d485feb9dc26b64b1432 SHA512 3d099af675acdcb91431aaaf95bc27c10fd432ebd29aa81c7eb4e65dfad9c20cb4fd5de086d2162cbe4a6b41f7e140880a5742b1ec34eef0511fff052aa1baaa
25 DIST melonDS-0.9.tar.gz 899619 BLAKE2B 4a3fe0c8ca1cce9ed823f74eaf58786f8847b62e0e25d5f0e97b1cc0e68754b61a09b5e9b790264549377011dd899447fbe715ca2831320a903d70e24953b3dd SHA512 7d65058f9140c1bbcdc17d32aee62625023dba8c3c45665486c8a3dbec551ca109831949716eadb8048921464d4a6543698b741835b32cc95a96f5b5cf885e04
26
27 diff --git a/games-emulation/melonds/melonds-0.8.3.ebuild b/games-emulation/melonds/melonds-0.8.3.ebuild
28 deleted file mode 100644
29 index bd0c1d045..000000000
30 --- a/games-emulation/melonds/melonds-0.8.3.ebuild
31 +++ /dev/null
32 @@ -1,49 +0,0 @@
33 -# Copyright 2019-2020 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=7
37 -
38 -MY_PN="melonDS"
39 -MY_P="${MY_PN}-${PV}"
40 -
41 -inherit xdg cmake
42 -
43 -DESCRIPTION="Nintendo DS emulator, sorta"
44 -HOMEPAGE="http://melonds.kuribo64.net/"
45 -
46 -if [[ "${PV}" == *9999* ]]; then
47 - inherit git-r3
48 - EGIT_REPO_URI="https://github.com/Arisotura/${MY_PN}.git"
49 -else
50 - SRC_URI="https://github.com/Arisotura/${MY_PN}/archive/${PV}.tar.gz -> ${MY_P}.tar.gz"
51 - KEYWORDS="~amd64"
52 - S="${WORKDIR}/${MY_P}"
53 -fi
54 -
55 -RESTRICT="test"
56 -LICENSE="GPL-3"
57 -SLOT="0"
58 -
59 -DEPEND="
60 - media-libs/libsdl2[sound,video]
61 - net-libs/libpcap
62 - net-misc/curl
63 - x11-libs/cairo
64 - x11-libs/gtk+:3
65 -"
66 -RDEPEND="
67 - ${DEPEND}
68 -"
69 -
70 -pkg_postinst() {
71 - xdg_pkg_postinst
72 -
73 - elog "You need the following files in order to run melonDS:"
74 - elog "- bios7.bin"
75 - elog "- bios9.bin"
76 - elog "- firmware.bin"
77 - elog "- romlist.bin"
78 - elog "Place them in ~/.config/melonDS"
79 - elog "The romlist.bin file can be found in the /usr/share/melonDS directory"
80 - elog "The rest of those files can be found somewhere in the internet ;-)"
81 -}