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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DD2F115800A for ; Tue, 22 Aug 2023 22:52:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2C1E32BC015; Tue, 22 Aug 2023 22:52:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 124D32BC015 for ; Tue, 22 Aug 2023 22:52:29 +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 B8E30335CE3 for ; Tue, 22 Aug 2023 22:52:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 03679FC9 for ; Tue, 22 Aug 2023 22:52:26 +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: <1692744555.b92ba1a6a46ad13dfa03f91febadd5e6d8dceaa8.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: b92ba1a6a46ad13dfa03f91febadd5e6d8dceaa8 X-VCS-Branch: dev Date: Tue, 22 Aug 2023 22:52:26 +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: 7adb21af-c81b-4439-b804-83003995c8f3 X-Archives-Hash: 400f4a996ad51a5b006725dd02b72097 commit: b92ba1a6a46ad13dfa03f91febadd5e6d8dceaa8 Author: Samuel Bauer yahoo fr> AuthorDate: Tue Aug 22 22:49:15 2023 +0000 Commit: Samuel Bauer yahoo fr> CommitDate: Tue Aug 22 22:49:15 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b92ba1a6 games-emulation/citra: upstream fixed boost detection Signed-off-by: Samuel Bauer yahoo.fr> games-emulation/citra/citra-9999.ebuild | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/games-emulation/citra/citra-9999.ebuild b/games-emulation/citra/citra-9999.ebuild index a197c09e94..b090f31b8a 100644 --- a/games-emulation/citra/citra-9999.ebuild +++ b/games-emulation/citra/citra-9999.ebuild @@ -39,7 +39,6 @@ RDEPEND=" " DEPEND="${RDEPEND}" BDEPEND=" - dev-cpp/cpp-httplib dev-cpp/cpp-jwt dev-cpp/robin-map dev-util/spirv-headers @@ -76,13 +75,6 @@ src_prepare() { -e '/target_link_libraries/s/inih/${INIH_LIBRARIES}/' src/citra/CMakeLists.txt || die sed -i -e 's:inih/cpp/::' src/citra/config.cpp || die - # Fix boost unbundling - sed -i -e '/(-DBOOST_ERROR_CODE_HEADER_ONLY/,/)/d' CMakeLists.txt || die - sed -i -e '/^# Boost/,/boost_iostreams PUBLIC/d' externals/CMakeLists.txt || die - sed -i -e '/^#define BOOST_STACKTRACE_USE_BACKTRACE/d' \ - src/common/logging/backend.cpp || die - sed -i -e 's/ backtrace//' src/common/CMakeLists.txt || die - # Unbundle libfmt if use system-libfmt; then sed -i -e '/fmt/d' externals/CMakeLists.txt || die @@ -119,10 +111,6 @@ src_prepare() { if use cubeb; then sed -i -e '$afind_package(cubeb REQUIRED)\n' CMakeLists.txt || die fi - - # Unbundle cpp-httplib - sed -i -e '/# httplib/,/target_link_libraries(httplib/d' externals/CMakeLists.txt || die - # Unbundle cpp-jwt sed -i -e '/cpp-jwt/d' externals/CMakeLists.txt || die sed -i -e 's/ cpp-jwt/ ssl crypto/' src/web_service/CMakeLists.txt || die