Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/punes/
Date: Tue, 02 Feb 2021 13:08:41
Message-Id: 1612268958.ee69c1d9fd43820c396e21f67e94a9e55a5f240b.juippis@gentoo
1 commit: ee69c1d9fd43820c396e21f67e94a9e55a5f240b
2 Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
3 AuthorDate: Thu Jan 21 09:42:56 2021 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 2 12:29:18 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee69c1d9
7
8 app-emulation/punes: remove old
9
10 Package-Manager: Portage-3.0.13, Repoman-3.0.2
11 Signed-off-by: Azamat H. Hackimov <azamat.hackimov <AT> gmail.com>
12 Closes: https://github.com/gentoo/gentoo/pull/19144
13 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
14
15 app-emulation/punes/Manifest | 1 -
16 app-emulation/punes/punes-0.106.ebuild | 58 ----------------------------------
17 2 files changed, 59 deletions(-)
18
19 diff --git a/app-emulation/punes/Manifest b/app-emulation/punes/Manifest
20 index a7985c2b638..36a25723e83 100644
21 --- a/app-emulation/punes/Manifest
22 +++ b/app-emulation/punes/Manifest
23 @@ -1,2 +1 @@
24 -DIST punes-0.106.tar.gz 5595484 BLAKE2B aa3bb5c869e679b19829a3d1de970517d6d626e0ed2404a9ed09d16af8fabb1ee3258ec8fbb4027fb6b70b5449b2bb7ac6880f43c3ba846687c65d8a0eeaf3f2 SHA512 f35c5cee05464cb11f130938cf7aa519d4dea35dbf52ce3606c3c6bb2596bc59b75e11816a5b44c7b1c9d402a299b4db49727087b4c93c3cb2ba473adfdd4fa2
25 DIST punes-0.107.tar.gz 44024138 BLAKE2B 048df5bc9b019bafcd4eec75dc027de7cde9f8aa0d484ef96e5c41b091ba55c13b84ef7c7c36987b53206b1b7027758534479d0cc9fde63d89a48092c3f9d26d SHA512 eb3b7aa1c18765402e1e57e23dd4b019255320b795c0f578a4d5ae9f4e0c163613da07280e2a5abed80b9ba90e74c80b53b5fdd80e405103f0063ca55d0ee7bd
26
27 diff --git a/app-emulation/punes/punes-0.106.ebuild b/app-emulation/punes/punes-0.106.ebuild
28 deleted file mode 100644
29 index 1cdb9cc4f01..00000000000
30 --- a/app-emulation/punes/punes-0.106.ebuild
31 +++ /dev/null
32 @@ -1,58 +0,0 @@
33 -# Copyright 1999-2020 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=7
37 -
38 -inherit autotools xdg-utils
39 -
40 -DESCRIPTION="Nintendo Entertainment System (NES) emulator"
41 -HOMEPAGE="https://github.com/punesemu/puNES"
42 -SRC_URI="https://github.com/punesemu/puNES/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 -
44 -LICENSE="GPL-2+"
45 -SLOT="0"
46 -KEYWORDS="~amd64 ~x86"
47 -IUSE="cg"
48 -
49 -RDEPEND="
50 - dev-qt/qtcore:5
51 - dev-qt/qtgui:5
52 - dev-qt/qtsvg:5
53 - dev-qt/qtwidgets:5
54 - media-libs/alsa-lib
55 - virtual/glu
56 - virtual/opengl"
57 -DEPEND="${RDEPEND}"
58 -BDEPEND="
59 - cg? ( media-gfx/nvidia-cg-toolkit )
60 - dev-qt/linguist-tools:5
61 - virtual/pkgconfig"
62 -
63 -S="${WORKDIR}/puNES-${PV}"
64 -
65 -src_prepare() {
66 - default
67 -
68 - sed -i "/update-desktop-database/d" misc/Makefile.am || die
69 - eautoreconf
70 - # FIXME why eautoreconf can't handle this?
71 - cd "src/extra/lib7zip-1.6.5" || die
72 - eautoreconf
73 -}
74 -
75 -src_configure() {
76 - econf \
77 - $(use_with cg opengl-nvidia-cg)
78 -}
79 -
80 -pkg_postinst() {
81 - xdg_icon_cache_update
82 - xdg_desktop_database_update
83 - xdg_mimeinfo_database_update
84 -}
85 -
86 -pkg_postrm() {
87 - xdg_icon_cache_update
88 - xdg_desktop_database_update
89 - xdg_mimeinfo_database_update
90 -}