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 8185E15800A for ; Wed, 23 Aug 2023 17:33:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3AA482BC02E; Wed, 23 Aug 2023 17:33:08 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 238AC2BC02E for ; Wed, 23 Aug 2023 17:33:08 +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 66C3A3412E7 for ; Wed, 23 Aug 2023 17:33:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E4F3B1088 for ; Wed, 23 Aug 2023 17:33:03 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1692744555.b92ba1a6a46ad13dfa03f91febadd5e6d8dceaa8.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:master 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: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: b92ba1a6a46ad13dfa03f91febadd5e6d8dceaa8 X-VCS-Branch: master Date: Wed, 23 Aug 2023 17:33:03 +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: d81cab70-743d-4708-bed0-966a5b75b1a0 X-Archives-Hash: fad31a785f4fdf007ce0332eb13d3097 commit: b92ba1a6a46ad13dfa03f91febadd5e6d8dceaa8 Author: Samuel Bauer yahoo fr> AuthorDate: Tue Aug 22 22:49:15 2023 +0000 Commit: David Roman gmail com> 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