From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6408A15800F for ; Fri, 20 Jan 2023 22:48:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A71D8E086E; Fri, 20 Jan 2023 22:48:41 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8BEF5E086E for ; Fri, 20 Jan 2023 22:48:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8928333DDA5 for ; Fri, 20 Jan 2023 22:48:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6DF4587B for ; Fri, 20 Jan 2023 22:48:38 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1674254649.1c0a9542e93b289ff724f1840b5c9630453ff18b.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-emulation/nestopia/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-emulation/nestopia/nestopia-9999.ebuild X-VCS-Directories: games-emulation/nestopia/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 1c0a9542e93b289ff724f1840b5c9630453ff18b X-VCS-Branch: master Date: Fri, 20 Jan 2023 22:48:38 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 1700a0f8-eb5f-4edc-b410-18e896acba68 X-Archives-Hash: 55547fc70f985cbc39851b2fd6db721a commit: 1c0a9542e93b289ff724f1840b5c9630453ff18b Author: Ionen Wolkens gentoo org> AuthorDate: Fri Jan 20 22:25:55 2023 +0000 Commit: Ionen Wolkens gentoo 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 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) -}