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 703F115803E for ; Mon, 1 Jan 2024 20:29:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 534782BC029; Mon, 1 Jan 2024 20:29:43 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 pigeon.gentoo.org (Postfix) with ESMTPS id 3CF5A2BC029 for ; Mon, 1 Jan 2024 20:29:43 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 60BD133FE49 for ; Mon, 1 Jan 2024 20:29:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 014B11441 for ; Mon, 1 Jan 2024 20:29:41 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1704140978.23da15cf6d34199d69e3c9e1d52042116f613e5c.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-emulation/melonds/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-emulation/melonds/melonds-0.9.5-r4.ebuild games-emulation/melonds/melonds-0.9.5-r5.ebuild games-emulation/melonds/melonds-9999.ebuild X-VCS-Directories: games-emulation/melonds/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 23da15cf6d34199d69e3c9e1d52042116f613e5c X-VCS-Branch: master Date: Mon, 1 Jan 2024 20:29:41 +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: 612d4a92-ae49-4d68-8ead-a470e4ba3a85 X-Archives-Hash: c2cb0a26b10da6abd337e769c9df1f92 commit: 23da15cf6d34199d69e3c9e1d52042116f613e5c Author: Maciej Barć gentoo org> AuthorDate: Mon Jan 1 19:50:31 2024 +0000 Commit: Maciej Barć gentoo org> CommitDate: Mon Jan 1 20:29:38 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23da15cf games-emulation/melonds: update doc Signed-off-by: Maciej Barć gentoo.org> .../{melonds-0.9.5-r4.ebuild => melonds-0.9.5-r5.ebuild} | 12 +++++++----- games-emulation/melonds/melonds-9999.ebuild | 12 +++++++----- 2 files changed, 14 insertions(+), 10 deletions(-) diff --git a/games-emulation/melonds/melonds-0.9.5-r4.ebuild b/games-emulation/melonds/melonds-0.9.5-r5.ebuild similarity index 88% rename from games-emulation/melonds/melonds-0.9.5-r4.ebuild rename to games-emulation/melonds/melonds-0.9.5-r5.ebuild index 5171a6bad8ec..ae2f49cc74cb 100644 --- a/games-emulation/melonds/melonds-0.9.5-r4.ebuild +++ b/games-emulation/melonds/melonds-0.9.5-r5.ebuild @@ -1,4 +1,4 @@ -# Copyright 2019-2023 Gentoo Authors +# Copyright 2019-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -12,13 +12,15 @@ DESCRIPTION="Nintendo DS emulator, sorta" HOMEPAGE="http://melonds.kuribo64.net https://github.com/Arisotura/melonDS" -if [[ ${PV} == *9999* ]] ; then +if [[ "${PV}" == *9999* ]] ; then inherit git-r3 + EGIT_REPO_URI="https://github.com/Arisotura/${MY_PN}.git" else SRC_URI="https://github.com/Arisotura/${MY_PN}/archive/${PV}.tar.gz -> ${MY_P}.tar.gz" - S="${WORKDIR}"/${MY_P} + S="${WORKDIR}/${MY_P}" + KEYWORDS="amd64" fi @@ -60,7 +62,7 @@ DOC_CONTENTS="You need the following files in order to run melonDS: - firmware.bin - romlist.bin Place them in ~/.config/melonDS -Those files can be found somewhere on the Internet ;-)" +Those files can be extracted from devices or found somewhere on the Internet ;-)" src_prepare() { filter-lto @@ -70,7 +72,7 @@ src_prepare() { } src_configure() { - local mycmakeargs=( + local -a mycmakeargs=( -DBUILD_SHARED_LIBS=OFF -DENABLE_JIT=$(usex jit) -DENABLE_OGLRENDERER=$(usex opengl) diff --git a/games-emulation/melonds/melonds-9999.ebuild b/games-emulation/melonds/melonds-9999.ebuild index 9255b44e2e4f..ff839958a635 100644 --- a/games-emulation/melonds/melonds-9999.ebuild +++ b/games-emulation/melonds/melonds-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 2019-2023 Gentoo Authors +# Copyright 2019-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -12,13 +12,15 @@ DESCRIPTION="Nintendo DS emulator, sorta" HOMEPAGE="http://melonds.kuribo64.net https://github.com/Arisotura/melonDS" -if [[ ${PV} == *9999* ]] ; then +if [[ "${PV}" == *9999* ]] ; then inherit git-r3 + EGIT_REPO_URI="https://github.com/Arisotura/${MY_PN}.git" else SRC_URI="https://github.com/Arisotura/${MY_PN}/archive/${PV}.tar.gz -> ${MY_P}.tar.gz" - S="${WORKDIR}"/${MY_P} + S="${WORKDIR}/${MY_P}" + KEYWORDS="~amd64" fi @@ -51,7 +53,7 @@ DOC_CONTENTS="You need the following files in order to run melonDS: - firmware.bin - romlist.bin Place them in ~/.config/melonDS -Those files can be found somewhere on the Internet ;-)" +Those files can be extracted from devices or found somewhere on the Internet ;-)" src_prepare() { filter-lto @@ -61,7 +63,7 @@ src_prepare() { } src_configure() { - local mycmakeargs=( + local -a mycmakeargs=( -DBUILD_SHARED_LIBS=OFF -DENABLE_JIT=$(usex jit) -DENABLE_OGLRENDERER=$(usex opengl)