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 37725158095 for ; Fri, 9 Sep 2022 13:58:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 83300E08F2; Fri, 9 Sep 2022 13:58:20 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 68B85E08F2 for ; Fri, 9 Sep 2022 13:58:20 +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 858D4340D5F for ; Fri, 9 Sep 2022 13:58:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ED16B523 for ; Fri, 9 Sep 2022 13:58:17 +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: <1662731888.bce80b9eefda637767ac3b6f5707107e7b5fa6e4.samuel.bauer@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: games-emulation/citra/ X-VCS-Repository: repo/proj/guru X-VCS-Files: games-emulation/citra/citra-9999.ebuild X-VCS-Directories: games-emulation/citra/ X-VCS-Committer: samuel.bauer X-VCS-Committer-Name: Samuel Bauer X-VCS-Revision: bce80b9eefda637767ac3b6f5707107e7b5fa6e4 X-VCS-Branch: dev Date: Fri, 9 Sep 2022 13:58:17 +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: 417521c6-fa22-485b-86d2-3647ebb36a0a X-Archives-Hash: 3fac9c16a717f5b795f84fd7e108f0a2 commit: bce80b9eefda637767ac3b6f5707107e7b5fa6e4 Author: Samuel Bauer yahoo fr> AuthorDate: Fri Sep 9 13:58:08 2022 +0000 Commit: Samuel Bauer yahoo fr> CommitDate: Fri Sep 9 13:58:08 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bce80b9e games-emulation/citra: submodule whitelist instead of blacklist Signed-off-by: Samuel Bauer yahoo.fr> games-emulation/citra/citra-9999.ebuild | 26 ++++++++++++-------------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/games-emulation/citra/citra-9999.ebuild b/games-emulation/citra/citra-9999.ebuild index 747eb426f..d5e0f2d1b 100644 --- a/games-emulation/citra/citra-9999.ebuild +++ b/games-emulation/citra/citra-9999.ebuild @@ -8,11 +8,9 @@ inherit cmake git-r3 xdg DESCRIPTION="A Nintendo 3DS Emulator" HOMEPAGE="https://citra-emu.org" EGIT_REPO_URI="https://github.com/citra-emu/citra" -EGIT_SUBMODULES=( '*' - '-boost' '-catch' '-cryptopp' '-cubeb' '-enet' - '-inih' '-libressl' '-libusb' '-teakra' '-zstd' - '-externals/dynarmic/externals/fmt' - '-externals/dynarmic/externals/xbyak' +EGIT_SUBMODULES=( + 'discord-rpc' 'dynarmic' 'libyuv' + 'lodepng' 'nihstro' 'soundtouch' 'xbyak' ) LICENSE="GPL-2" @@ -34,24 +32,24 @@ DEPEND=" media-libs/libsdl2 >=dev-libs/inih-52 ) - system-libfmt? ( <=dev-libs/libfmt-8 ) - video? ( media-video/ffmpeg ) - >=dev-libs/openssl-1.1 + system-libfmt? ( <=dev-libs/libfmt-8:= ) + video? ( media-video/ffmpeg:= ) + >=dev-libs/openssl-1.1:= app-arch/zstd dev-cpp/catch:0 - dev-cpp/robin-map dev-libs/boost:= - dev-libs/crypto++ + dev-libs/crypto++:= dev-libs/teakra - net-libs/enet:1.3 + net-libs/enet:1.3= virtual/libusb:1 " -RDEPEND="${DEPEND}" +RDEPEND="${DEPEND} + dev-cpp/robin-map" REQUIRED_USE="|| ( qt5 sdl )" src_unpack() { - if use system-libfmt; then - EGIT_SUBMODULES+=( "-fmt" "-externals/dynarmic/externals/fmt" ) + if ! use system-libfmt; then + EGIT_SUBMODULES+=( 'fmt' ) fi git-r3_src_unpack