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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 52ECC15812D for ; Tue, 31 Dec 2024 09:08:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2EA18E077D; Tue, 31 Dec 2024 09:08:45 +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 0FB11E077D for ; Tue, 31 Dec 2024 09:08:45 +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 0A59433BF39 for ; Tue, 31 Dec 2024 09:08:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 63FB897F for ; Tue, 31 Dec 2024 09:08:42 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1735636063.a7f794ef84d64629db3483955df5bde047575a33.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/punes/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/punes/punes-0.111.ebuild X-VCS-Directories: app-emulation/punes/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: a7f794ef84d64629db3483955df5bde047575a33 X-VCS-Branch: master Date: Tue, 31 Dec 2024 09:08:42 +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: cb89ca81-b152-4ace-a0f2-6a64f54505e9 X-Archives-Hash: d6b7e25f932c271f76ee33df01b31353 commit: a7f794ef84d64629db3483955df5bde047575a33 Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Dec 30 18:27:27 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Dec 31 09:07:43 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7f794ef app-emulation/punes: drop 0.111 Signed-off-by: Andreas Sturmlechner gentoo.org> app-emulation/punes/punes-0.111.ebuild | 63 ---------------------------------- 1 file changed, 63 deletions(-) diff --git a/app-emulation/punes/punes-0.111.ebuild b/app-emulation/punes/punes-0.111.ebuild deleted file mode 100644 index f37c4e0a94c3..000000000000 --- a/app-emulation/punes/punes-0.111.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake xdg - -DESCRIPTION="Nintendo Entertainment System (NES) emulator" -HOMEPAGE="https://github.com/punesemu/puNES" -SRC_URI="https://github.com/punesemu/puNES/archive/v${PV}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/puNES-${PV}" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="amd64 ~x86" -IUSE="X cg ffmpeg qt6" - -RDEPEND=" - media-libs/alsa-lib - media-libs/libglvnd[X?] - virtual/glu - virtual/udev - X? ( - x11-libs/libX11 - x11-libs/libXrandr - ) - cg? ( media-gfx/nvidia-cg-toolkit ) - ffmpeg? ( media-video/ffmpeg:= ) - qt6? ( - dev-qt/qtbase:6[gui,network,opengl,widgets] - dev-qt/qtsvg:6 - ) - !qt6? ( - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtnetwork:5 - dev-qt/qtsvg:5 - dev-qt/qtwidgets:5 - )" - -DEPEND=" - ${RDEPEND} - X? ( x11-base/xorg-proto )" -BDEPEND=" - virtual/pkgconfig - qt6? ( dev-qt/qttools[linguist] ) - !qt6? ( dev-qt/linguist-tools:5 )" - -PATCHES=( - "${FILESDIR}/punes-0.111-FULLSCREEN_RESFREQ-fix.patch" -) - -src_configure() { - local mycmakeargs=( - -DENABLE_GIT_INFO=OFF - -DENABLE_QT6_LIBS=$(usex qt6) - -DDISABLE_PORTABLE_MODE=OFF - -DENABLE_FFMPEG=$(usex ffmpeg) - -DENABLE_FULLSCREEN_RESFREQ=$(usex X) - -DENABLE_OPENGL_CG=$(usex cg) - ) - cmake_src_configure -}