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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BD83D1382C5 for ; Sun, 30 May 2021 19:21:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 254DFE081A; Sun, 30 May 2021 19:21:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 07E1CE081A for ; Sun, 30 May 2021 19:21:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 905B8335CE9 for ; Sun, 30 May 2021 19:21:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EC1A559C for ; Sun, 30 May 2021 19:21:09 +0000 (UTC) From: "Samuel Bauer" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Samuel Bauer" Message-ID: <1622402445.643377b8784df7e5deec1ba73dd5297eebb3e952.samuel.bauer@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: games-emulation/yuzu/ X-VCS-Repository: repo/proj/guru X-VCS-Files: games-emulation/yuzu/metadata.xml games-emulation/yuzu/yuzu-9999.ebuild X-VCS-Directories: games-emulation/yuzu/ X-VCS-Committer: samuel.bauer X-VCS-Committer-Name: Samuel Bauer X-VCS-Revision: 643377b8784df7e5deec1ba73dd5297eebb3e952 X-VCS-Branch: dev Date: Sun, 30 May 2021 19:21:09 +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: fedc7567-0a67-4809-9e5f-cf40f98ee0e5 X-Archives-Hash: 062b3c0d1b08b3c8a7a9b3131d5e5ceb commit: 643377b8784df7e5deec1ba73dd5297eebb3e952 Author: Samuel Bauer yahoo fr> AuthorDate: Sun May 30 19:20:45 2021 +0000 Commit: Samuel Bauer yahoo fr> CommitDate: Sun May 30 19:20:45 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=643377b8 games-emulation/yuzu: compatibility list: add flag Signed-off-by: Samuel Bauer yahoo.fr> games-emulation/yuzu/metadata.xml | 5 +++-- games-emulation/yuzu/yuzu-9999.ebuild | 9 ++++++--- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/games-emulation/yuzu/metadata.xml b/games-emulation/yuzu/metadata.xml index ac55d48f0..3974ff3d6 100644 --- a/games-emulation/yuzu/metadata.xml +++ b/games-emulation/yuzu/metadata.xml @@ -2,12 +2,13 @@ - Samuel Bauer - samuel.bauer@yahoo.fr + mazes-80 + mazes-80@github.com Enable the Boxcat service, a yuzu high-level implementation of BCAT Enables the cubeb audio backend + Downloads the latest compatibility list Enables Discord Rich Presence Use QtWebEngine for web applet implementation Enable web services (telemetry, etc.) diff --git a/games-emulation/yuzu/yuzu-9999.ebuild b/games-emulation/yuzu/yuzu-9999.ebuild index ce3240a30..e7a2452f4 100644 --- a/games-emulation/yuzu/yuzu-9999.ebuild +++ b/games-emulation/yuzu/yuzu-9999.ebuild @@ -18,7 +18,7 @@ EGIT_SUBMODULES=( '*' '-ffmpeg' '-inih' '-libressl' '-libusb' '-libzip' '-opus' LICENSE="GPL-3" SLOT="0" KEYWORDS="" -IUSE="+boxcat +cubeb discord +qt5 sdl webengine +webservice" +IUSE="+boxcat +compatibility-list +cubeb discord +qt5 sdl webengine +webservice" DEPEND=" discord? ( >=dev-libs/rapidjson-1.1.0 ) @@ -58,7 +58,7 @@ src_unpack() { git-r3_src_unpack # Do not fetch via sources because this file always changes - curl https://api.yuzu-emu.org/gamedb/ > "${S}"/compatibility_list.json + use compatibility-list && curl https://api.yuzu-emu.org/gamedb/ > "${S}"/compatibility_list.json } src_prepare() { @@ -107,6 +107,7 @@ src_prepare() { src_configure() { local -a mycmakeargs=( -DBUILD_SHARED_LIBS=OFF + -DENABLE_COMPATIBILITY_LIST_DOWNLOAD=$(usex compatibility-list) -DENABLE_CUBEB=$(usex cubeb) -DENABLE_QT=$(usex qt5) -DENABLE_QT_TRANSLATION=$(usex qt5) @@ -120,5 +121,7 @@ src_configure() { cmake_src_configure # This would be better in src_unpack but it would be unlinked - mv "${S}"/compatibility_list.json "${BUILD_DIR}"/dist/compatibility_list/ || die + if use compatibility-list; then + mv "${S}"/compatibility_list.json "${BUILD_DIR}"/dist/compatibility_list/ || die + fi }