* [gentoo-commits] repo/proj/guru:dev commit in: games-emulation/yuzu/files/, games-emulation/yuzu/
@ 2021-04-28 16:00 Samuel Bauer
0 siblings, 0 replies; 4+ messages in thread
From: Samuel Bauer @ 2021-04-28 16:00 UTC (permalink / raw
To: gentoo-commits
commit: 4b611a5c84b3a3d33b7f428cbd0ca638d1e50ca5
Author: Samuel Bauer <samuel.bauer <AT> yahoo <DOT> fr>
AuthorDate: Wed Apr 28 15:59:36 2021 +0000
Commit: Samuel Bauer <samuel.bauer <AT> yahoo <DOT> fr>
CommitDate: Wed Apr 28 15:59:36 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4b611a5c
games-emulation/yuzu: new ebuild
Signed-off-by: Samuel Bauer <samuel.bauer <AT> yahoo.fr>
games-emulation/yuzu/Manifest | 3 +
games-emulation/yuzu/files/yuzu-9999-assert.patch | 34 ++++++
games-emulation/yuzu/metadata.xml | 15 +++
games-emulation/yuzu/yuzu-9999.ebuild | 120 ++++++++++++++++++++++
4 files changed, 172 insertions(+)
diff --git a/games-emulation/yuzu/Manifest b/games-emulation/yuzu/Manifest
new file mode 100644
index 000000000..b86ef1467
--- /dev/null
+++ b/games-emulation/yuzu/Manifest
@@ -0,0 +1,3 @@
+AUX yuzu-9999-assert.patch 2145 BLAKE2B 140ace2db8a6621205b65e8f7585a624a792198ded7949b2baafc549dbe70afc3faa0eae62d440d8d02a6f7272c2a5290aa185d68cf92417c50b20fafb96daf1 SHA512 89930366f369ccb1a978cd0eb7c32ecd03f77ffa04a5439450e5e3264a79b92cdddc9468f88e5b1adacbf340c8aa2c7614ca5b12cf7062a069bb519a6dc009b1
+EBUILD yuzu-9999.ebuild 4296 BLAKE2B 487ef667564ad7e04afcfe5f13276c547311432a435381a9dae7b8a317ae527ac2fa7f9ade61c20577c42bf7b3484621a3a3c1471d0a78e39a151491da7df95f SHA512 a53f40d05363fb5059b4318026a130f84c2f97ca9be9222688c9f93a0382621d9b53193db47e7acef48b1c0cacb0b598233338ace26fcdf38e0155dc21ef6dcf
+MISC metadata.xml 613 BLAKE2B 4d4bddfd2fa545273ac302e325fccff48bd3690009f76533a0fc1240ed543bb940096f8918e0c22700ea55e0cc2b5211e98cef067f96afaaa76563762b3c6ea3 SHA512 a816a2e2dd9bf374ed15128fb87d5db011dcc42e913f6f24eb98eee9642b302fd2b5d9e50ec07f2a11f2cfe65c3e819c3b6cb36f4f401cbb7ddc86ac0b0ab573
diff --git a/games-emulation/yuzu/files/yuzu-9999-assert.patch b/games-emulation/yuzu/files/yuzu-9999-assert.patch
new file mode 100644
index 000000000..cd342ffba
--- /dev/null
+++ b/games-emulation/yuzu/files/yuzu-9999-assert.patch
@@ -0,0 +1,34 @@
+--- a/src/common/assert.h
++++ b/src/common/assert.h
+@@ -28,22 +28,19 @@ __declspec(noinline, noreturn)
+ }
+
+ #define ASSERT(_a_) \
+- do \
+- if (!(_a_)) { \
+- assert_noinline_call([] { LOG_CRITICAL(Debug, "Assertion Failed!"); }); \
+- } \
+- while (0)
++ if (!(_a_)) { \
++ LOG_CRITICAL(Debug, "Assertion Failed!"); \
++ }
+
+ #define ASSERT_MSG(_a_, ...) \
+- do \
+- if (!(_a_)) { \
+- assert_noinline_call([&] { LOG_CRITICAL(Debug, "Assertion Failed!\n" __VA_ARGS__); }); \
+- } \
+- while (0)
++ if (!(_a_)) { \
++ LOG_CRITICAL(Debug, "Assertion Failed! " __VA_ARGS__); \
++ }
+
+-#define UNREACHABLE() assert_noinline_call([] { LOG_CRITICAL(Debug, "Unreachable code!"); })
++#define UNREACHABLE() \
++ { LOG_CRITICAL(Debug, "Unreachable code!"); }
+ #define UNREACHABLE_MSG(...) \
+- assert_noinline_call([&] { LOG_CRITICAL(Debug, "Unreachable code!\n" __VA_ARGS__); })
++ { LOG_CRITICAL(Debug, "Unreachable code!\n" __VA_ARGS__); }
+
+ #ifdef _DEBUG
+ #define DEBUG_ASSERT(_a_) ASSERT(_a_)
diff --git a/games-emulation/yuzu/metadata.xml b/games-emulation/yuzu/metadata.xml
new file mode 100644
index 000000000..de9ad3b9b
--- /dev/null
+++ b/games-emulation/yuzu/metadata.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<maintainer type="person">
+ <name>mazes-80</name>
+ <email>mazes-80@github.com</email>
+</maintainer>
+<use>
+ <flag name="boxcat">Enable the Boxcat service, a yuzu high-level implementation of BCAT</flag>
+ <flag name="cubeb">Enables the cubeb audio backend</flag>
+ <flag name="discord">Enables Discord Rich Presence</flag>
+ <flag name="webengine">Use QtWebEngine for web applet implementation</flag>
+ <flag name="webservice">Enable web services (telemetry, etc.)</flag>
+</use>
+</pkgmetadata>
diff --git a/games-emulation/yuzu/yuzu-9999.ebuild b/games-emulation/yuzu/yuzu-9999.ebuild
new file mode 100644
index 000000000..27ff0368f
--- /dev/null
+++ b/games-emulation/yuzu/yuzu-9999.ebuild
@@ -0,0 +1,120 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+# PYTHON_COMPAT=( python2_7 )
+
+#inherit cmake git-r3 flag-o-matic python-any-r1 toolchain-funcs xdg
+inherit cmake git-r3 flag-o-matic toolchain-funcs xdg
+
+DESCRIPTION="An emulator for Nintendo Switch"
+HOMEPAGE="https://yuzu-emu.org"
+EGIT_REPO_URI="https://github.com/yuzu-emu/yuzu"
+EGIT_SUBMODULES=( '*' '-ffmpeg' '-inih' '-libressl' '-libusb' '-libzip' '-opus' )
+# TODO '-Vulkan-Headers' need to fix API in code
+# TODO '-xbyak' wait for bump in tree
+# TODO cubeb auto-links to jack, pulse, alsa .., allow determining cubeb output
+# media-libs/cubeb would benefit to a lot of packages: dolphin-emu, firefox, citra, self, ...
+# TODO many submodules produce static libraries which forces to unset BUILD_SHARED_LIBS
+# this may be better to generate shared libraries and install them under /usr/$(get_libdir)/yuzu
+# TODO python2 code should be needed only for submodules test
+# until verified keep track of python specific ebuild stuffs as comment
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="+boxcat +cubeb discord +qt5 sdl webengine +webservice"
+
+DEPEND="
+ discord? ( >=dev-libs/rapidjson-1.1.0 )
+ qt5? (
+ >=dev-qt/qtgui-5.15
+ >=dev-qt/qtwidgets-5.15
+ )
+ sdl? (
+ media-libs/libsdl2
+ >=dev-libs/inih-52
+ )
+ >=app-arch/lz4-1.8
+ >=app-arch/zstd-1.4
+ >=dev-cpp/catch-2.13:0
+ >=dev-cpp/nlohmann_json-3.8.0
+ >=dev-libs/boost-1.73:=[context]
+ >=dev-libs/libfmt-7.1.0
+ >=dev-libs/libzip-1.5
+ >=media-libs/opus-1.3.1
+ >=sys-libs/zlib-1.2
+ virtual/libusb:1
+"
+# >=dev-libs/xbyak-5.96
+RDEPEND="${DEPEND}"
+REQUIRED_USE="boxcat? ( webservice ) || ( qt5 sdl )"
+
+PATCHES=( "${FILESDIR}"/${P}-assert.patch )
+
+pkg_setup() {
+ if [ tc-is-gcc -a $(gcc-major-version) -lt 10 ]; then
+ die "You need gcc version 10 or clang to compile this package"
+ fi
+}
+
+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
+}
+
+src_prepare() {
+ # Set yuzu dev flags
+ filter-flags '-*'
+ append-cflags '-O3 -DNDEBUG'
+ append-cxxflags '-O3 -DNDEBUG'
+
+ # headers is not a valid boost component
+ sed -i -e '/find_package(Boost/s/headers //' CMakeLists.txt || die
+
+ # Allow skip submodule downloading
+ rm .gitmodules
+
+ # unbundle opus (thx to https://github.com/Alex-Aralis/yuzu-overlay/blob/master/games-emulation/yuzu/files/unbundle-opus.patch)
+ sed -i -e "s!add_subdirectory(opus)!add_library(opus INTERFACE)\ntarget_include_directories(opus SYSTEM INTERFACE /usr/include/opus)\ntarget_link_libraries(opus INTERFACE /usr/$(get_libdir)/libopus.so)!" externals/CMakeLists.txt || die
+
+ # Fix libzip detection
+ sed -i -e '/Libzip/s:.*:include(find-modules/FindLibzip.cmake)\n&:' externals/CMakeLists.txt || die
+
+ # Unbundle inih
+ sed -i -e '/inih/d' externals/CMakeLists.txt || die
+ sed -i -e '1afind_package(PkgConfig REQUIRED)\npkg_check_modules(INIH REQUIRED INIReader)' \
+ -e '/target_link_libraries/s/inih/${INIH_LIBRARIES}/' src/yuzu_cmd/CMakeLists.txt || die
+ sed -i -e 's:inih/cpp/::' src/yuzu_cmd/config.cpp || die
+
+ # Unbundle xbyak ( uncomment when xbyak version is ok or never as it is only headers )
+ # sed -i -e '/target_include_directories(xbyak/s:./xbyak/xbyak:/usr/include/xbyak/:' externals/CMakeLists.txt
+
+ # Unbundle vulkan headers
+ # sed -i -e 's:../../externals/Vulkan-Headers/include:/usr/include/vulkan/:' src/video_core/CMakeLists.txt src/yuzu/CMakeLists.txt src/yuzu_cmd/CMakeLists.txt
+
+ # Unbundle discord rapidjson
+ sed -i '/NOT RAPIDJSONTEST/,/endif(NOT RAPIDJSONTEST)/d;/find_file(RAPIDJSON/d;s:\${RAPIDJSON}:"/usr/include/rapidjson":' externals/discord-rpc/CMakeLists.txt || die
+
+ cmake_src_prepare
+}
+
+src_configure() {
+ local -a mycmakeargs=(
+ -DBUILD_SHARED_LIBS=OFF
+ -DENABLE_CUBEB=$(usex cubeb ON OFF)
+ -DENABLE_QT=$(usex qt5)
+ -DENABLE_QT_TRANSLATION=$(usex qt5)
+ -DENABLE_SDL2=$(usex sdl)
+ -DENABLE_WEB_SERVICE=$(usex webservice ON OFF)
+ -DUSE_DISCORD_PRESENCE=$(usex discord ON OFF)
+ -DYUZU_ENABLE_BOXCAT=$(usex boxcat ON OFF)
+ -DYUZU_USE_QT_WEB_ENGINE=$(usex webengine ON OFF)
+ )
+ 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
+}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: games-emulation/yuzu/files/, games-emulation/yuzu/
@ 2022-01-08 0:19 Samuel Bauer
0 siblings, 0 replies; 4+ messages in thread
From: Samuel Bauer @ 2022-01-08 0:19 UTC (permalink / raw
To: gentoo-commits
commit: 3508c0568adcbbf745a439115e3adc666ad0f7d4
Author: Samuel Bauer <samuel.bauer <AT> yahoo <DOT> fr>
AuthorDate: Sat Jan 8 00:03:33 2022 +0000
Commit: Samuel Bauer <samuel.bauer <AT> yahoo <DOT> fr>
CommitDate: Sat Jan 8 00:19:26 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3508c056
games-emulation/yuzu: updates
* use mainline build
* use system spirv-headers
* update ffmpeg, opus, vulkan-headers requirements
* discord: only when used, else skip
* pull/download
* unbundle rapidjson
* use system robin-map
Signed-off-by: Samuel Bauer <samuel.bauer <AT> yahoo.fr>
games-emulation/yuzu/files/yuzu-9999-assert.patch | 34 ---------------
games-emulation/yuzu/metadata.xml | 1 -
games-emulation/yuzu/yuzu-9999.ebuild | 51 ++++++++++++++---------
3 files changed, 32 insertions(+), 54 deletions(-)
diff --git a/games-emulation/yuzu/files/yuzu-9999-assert.patch b/games-emulation/yuzu/files/yuzu-9999-assert.patch
deleted file mode 100644
index cd342ffba..000000000
--- a/games-emulation/yuzu/files/yuzu-9999-assert.patch
+++ /dev/null
@@ -1,34 +0,0 @@
---- a/src/common/assert.h
-+++ b/src/common/assert.h
-@@ -28,22 +28,19 @@ __declspec(noinline, noreturn)
- }
-
- #define ASSERT(_a_) \
-- do \
-- if (!(_a_)) { \
-- assert_noinline_call([] { LOG_CRITICAL(Debug, "Assertion Failed!"); }); \
-- } \
-- while (0)
-+ if (!(_a_)) { \
-+ LOG_CRITICAL(Debug, "Assertion Failed!"); \
-+ }
-
- #define ASSERT_MSG(_a_, ...) \
-- do \
-- if (!(_a_)) { \
-- assert_noinline_call([&] { LOG_CRITICAL(Debug, "Assertion Failed!\n" __VA_ARGS__); }); \
-- } \
-- while (0)
-+ if (!(_a_)) { \
-+ LOG_CRITICAL(Debug, "Assertion Failed! " __VA_ARGS__); \
-+ }
-
--#define UNREACHABLE() assert_noinline_call([] { LOG_CRITICAL(Debug, "Unreachable code!"); })
-+#define UNREACHABLE() \
-+ { LOG_CRITICAL(Debug, "Unreachable code!"); }
- #define UNREACHABLE_MSG(...) \
-- assert_noinline_call([&] { LOG_CRITICAL(Debug, "Unreachable code!\n" __VA_ARGS__); })
-+ { LOG_CRITICAL(Debug, "Unreachable code!\n" __VA_ARGS__); }
-
- #ifdef _DEBUG
- #define DEBUG_ASSERT(_a_) ASSERT(_a_)
diff --git a/games-emulation/yuzu/metadata.xml b/games-emulation/yuzu/metadata.xml
index b1edc6d5d..d012102f5 100644
--- a/games-emulation/yuzu/metadata.xml
+++ b/games-emulation/yuzu/metadata.xml
@@ -6,7 +6,6 @@
<email>samuel.bauer@yahoo.fr</email>
</maintainer>
<use>
- <flag name="boxcat">Enable the Boxcat service, a yuzu high-level implementation of BCAT</flag>
<flag name="cubeb">Enables the cubeb audio backend</flag>
<flag name="compatibility-list">Downloads the latest compatibility list</flag>
<flag name="discord">Enables Discord Rich Presence</flag>
diff --git a/games-emulation/yuzu/yuzu-9999.ebuild b/games-emulation/yuzu/yuzu-9999.ebuild
index 7bb3ff721..48a21e0e1 100644
--- a/games-emulation/yuzu/yuzu-9999.ebuild
+++ b/games-emulation/yuzu/yuzu-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2020-2021 Gentoo Authors
+# Copyright 2020-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -7,9 +7,9 @@ inherit cmake git-r3 toolchain-funcs xdg
DESCRIPTION="An emulator for Nintendo Switch"
HOMEPAGE="https://yuzu-emu.org"
-EGIT_REPO_URI="https://github.com/yuzu-emu/yuzu"
-EGIT_SUBMODULES=( '*' '-ffmpeg' '-inih' '-libressl' '-libusb' '-opus' '-SDL' )
-# TODO '-libzip' when boxcat feature is reintroduced
+EGIT_REPO_URI="https://github.com/yuzu-emu/yuzu-mainline"
+EGIT_SUBMODULES=( '*' '-ffmpeg' '-inih' '-libressl' '-libusb' '-opus' '-SDL'
+ '-externals/sirit/externals/SPIRV-Headers' )
# TODO '-xbyak' wait for bump in tree
# TODO cubeb auto-links to jack, pulse, alsa .., allow determining cubeb output
# media-libs/cubeb would benefit to a lot of packages: dolphin-emu, firefox, citra, self, ...
@@ -20,7 +20,7 @@ LICENSE="|| ( Apache-2.0 GPL-2+ ) 0BSD BSD GPL-2+ ISC MIT
!system-vulkan? ( Apache-2.0 )"
SLOT="0"
KEYWORDS=""
-IUSE="+boxcat +compatibility-list +cubeb discord +qt5 sdl system-vulkan webengine +webservice"
+IUSE="+compatibility-list +cubeb discord +qt5 sdl system-vulkan webengine +webservice"
RDEPEND="
>=app-arch/lz4-1.8:=
@@ -28,8 +28,8 @@ RDEPEND="
>=dev-libs/boost-1.73:=[context]
>=dev-libs/libfmt-8:=
>=dev-libs/openssl-1.1:=
- >=media-libs/opus-1.3
- media-video/ffmpeg:=
+ >=media-libs/opus-1.3.1
+ >=media-video/ffmpeg-4.3:=
>=sys-libs/zlib-1.2
virtual/libusb:1
qt5? (
@@ -43,23 +43,23 @@ RDEPEND="
)
"
DEPEND="${RDEPEND}
+ dev-util/spirv-headers
system-vulkan? (
- >=dev-util/vulkan-headers-1.2.180
+ >=dev-util/vulkan-headers-1.2.198
)
"
BDEPEND="
>=dev-cpp/catch-2.13:0
>=dev-cpp/nlohmann_json-3.8.0
+ dev-cpp/robin-map
dev-util/glslang
discord? ( >=dev-libs/rapidjson-1.1.0 )
"
-REQUIRED_USE="boxcat? ( webservice ) || ( qt5 sdl )"
-
-PATCHES=( "${FILESDIR}"/${P}-assert.patch )
+REQUIRED_USE="|| ( qt5 sdl )"
pkg_setup() {
- if tc-is-gcc; then
- [[ "$(gcc-major-version)" -lt 11 ]] && \
+ if [ tc-is-gcc ]; then
+ [ "$(gcc-major-version)" -lt 11 ] && \
die "You need gcc version 11 or clang to compile this package"
fi
grep -q 'ThreadEngineStarter<void>' /usr/include/qt5/QtConcurrent/qtconcurrentthreadengine.h \
@@ -67,6 +67,10 @@ pkg_setup() {
}
src_unpack() {
+ if ! use discord; then
+ EGIT_SUBMODULES+=('-discord-rpc')
+ fi
+
if use system-vulkan; then
EGIT_SUBMODULES+=('-Vulkan-Headers')
fi
@@ -95,24 +99,35 @@ src_prepare() {
if use system-vulkan; then # Unbundle vulkan headers
sed -i -e 's:../../externals/Vulkan-Headers/include:/usr/include/vulkan/:' src/video_core/CMakeLists.txt src/yuzu/CMakeLists.txt src/yuzu_cmd/CMakeLists.txt || die
- sed -i -e '/VK_ERROR_INCOMPATIBLE_VERSION_KHR/d' src/video_core/vulkan_common/vulkan_wrapper.cpp || die
fi
- # Unbundle discord rapidjson
- sed -i '/NOT RAPIDJSONTEST/,/endif(NOT RAPIDJSONTEST)/d;/find_file(RAPIDJSON/d;s:\${RAPIDJSON}:"/usr/include/rapidjson":' externals/discord-rpc/CMakeLists.txt || die
-
# Workaround: GenerateSCMRev fails
sed -i -e "s/@GIT_BRANCH@/${EGIT_BRANCH:-master}/" \
-e "s/@GIT_REV@/$(git rev-parse --short HEAD)/" \
-e "s/@GIT_DESC@/$(git describe --always --long)/" \
src/common/scm_rev.cpp.in || die
+ # Lower sdl requirement
+ sed -i -e '/SDL2/s/18/16/' CMakeLists.txt || die
+
+ # Use system SPIRV headers
+ sed -i -e '/SPIRV/d' externals/sirit/CMakeLists.txt || die
+
+ if ! use discord; then
+ sed -i -e '/discord-rpc/d' externals/CMakeLists.txt || die
+ else
+ # Unbundle discord rapidjson
+ sed -i '/NOT RAPIDJSONTEST/,/endif(NOT RAPIDJSONTEST)/d;/find_file(RAPIDJSON/d;s:\${RAPIDJSON}:"/usr/include/rapidjson":' \
+ externals/discord-rpc/CMakeLists.txt || die
+ fi
+
cmake_src_prepare
}
src_configure() {
local -a mycmakeargs=(
-DBUILD_SHARED_LIBS=OFF
+ -DDYNARMIC_NO_BUNDLED_ROBIN_MAP=ON
-DENABLE_COMPATIBILITY_LIST_DOWNLOAD=$(usex compatibility-list)
-DENABLE_CUBEB=$(usex cubeb)
-DENABLE_QT=$(usex qt5)
@@ -120,8 +135,6 @@ src_configure() {
-DENABLE_SDL2=$(usex sdl)
-DENABLE_WEB_SERVICE=$(usex webservice)
-DUSE_DISCORD_PRESENCE=$(usex discord)
- # -DYUZU_ENABLE_BOXCAT=$(usex boxcat) # feature removed
- # upstream is now fixing it, will be reintroduced
-DYUZU_USE_EXTERNAL_SDL2=OFF
-DYUZU_USE_QT_WEB_ENGINE=$(usex webengine)
)
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: games-emulation/yuzu/files/, games-emulation/yuzu/
@ 2022-07-26 2:20 Samuel Bauer
0 siblings, 0 replies; 4+ messages in thread
From: Samuel Bauer @ 2022-07-26 2:20 UTC (permalink / raw
To: gentoo-commits
commit: 4fa661d33a8320b29ef80a3fe37e405811bafa67
Author: Samuel Bauer <samuel.bauer <AT> yahoo <DOT> fr>
AuthorDate: Tue Jul 26 01:55:59 2022 +0000
Commit: Samuel Bauer <samuel.bauer <AT> yahoo <DOT> fr>
CommitDate: Tue Jul 26 02:20:16 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4fa661d3
dev-libs/sirit: new ebuild
Signed-off-by: Samuel Bauer <samuel.bauer <AT> yahoo.fr>
games-emulation/yuzu/Manifest | 5 +
games-emulation/yuzu/files/yuzu-0_p20220725.patch | 175 ++++++++++++++++++++++
games-emulation/yuzu/yuzu-0_p20220725.ebuild | 117 +++++++++++++++
3 files changed, 297 insertions(+)
diff --git a/games-emulation/yuzu/Manifest b/games-emulation/yuzu/Manifest
new file mode 100644
index 000000000..d48c4e7d7
--- /dev/null
+++ b/games-emulation/yuzu/Manifest
@@ -0,0 +1,5 @@
+DIST yuzu-0_p20220725-compatibility_list.json 1255189 BLAKE2B e2f39f6703bfd49e918d62bcc05d03ae19e3c9be45ade4b266bf9ba8956fd3e8ef246db4804e72d4eb4782f0008ac63d118217e3ef95bbe4c148008c4b764407 SHA512 ba3b149c91d11be2f1033214f03a09e5a3b5cfd559acba40a78f3b3932a93675ff6751eb2701326adc15b90cb2508c03698c3a531fe1cb4ed445a5b189424410
+DIST yuzu-0_p20220725.tar.gz 4929471 BLAKE2B 0d7f633936ef571da02562a853576ad1acd5dcae9035e2539ea94269d3c266cc9ba60ad8c8b9cd1f15413de3ab2bbb9b9cb8fa0fb6d6d20561a4f42d89c99662 SHA512 8f2ab5dd406cdb26821ad621cb816f22866a83d92969fea6b90c77c8cb9e1d39e4179c1e3c5aa4be56ed8f1707c801071dd90807f6011bc8a631f62b22930d2e
+DIST yuzu-discord-0_p20220725.tar.gz 2108078 BLAKE2B e89ee4a196167cabaecfab82d191516eb0cf0fa89e35f95b6d118d5baad25f5d13d9002a8dcfe4aba099af7b9c1eb72835eb3baa9e4deaedd2754e99687b5967 SHA512 06205287addabfb343ccd9af997b693ed221fe564355d3629d4dee6c003e768b3f65f2b34eb04ef29807a15c5fa34b04c664212b7e0d15b09ad9a4e4be10a560
+DIST yuzu-dynarmic-0_p20220725.tar.gz 2668960 BLAKE2B 5089f2d536664f5b38ee54eb17c37721a8dc8ffb80712f69461a94ddfd3cb2cd1a26df84720d2574b0156571ec6a9daf3861092de0669e195d6e49283c24fc11 SHA512 1915b0c8d06cf25f074b457e6e6a6944a01f4e3273e8979e71649d7b273484cff344c87a9da7115862a7c8c1f75c8b2ff5110e3079935d1212173fdc00a71a77
+DIST yuzu-xbyak-0_p20220725.tar.gz 227168 BLAKE2B 6d03000be6a37704b86948ac58b9f2fd3809a892e59018be7e109eb6ce866727e83cb775307ae049b9aa5048028b3390e14b131f6cbda10e346be2acd866a20b SHA512 792146aefc2e3af9f412db383b4fcbd5e945f9814bde25cc18ea76a6f276c3bd6c38edb581074a2b48d11176a398cc6873556b5e2986449fe0417b7e46c09d95
diff --git a/games-emulation/yuzu/files/yuzu-0_p20220725.patch b/games-emulation/yuzu/files/yuzu-0_p20220725.patch
new file mode 100644
index 000000000..ad0b53f96
--- /dev/null
+++ b/games-emulation/yuzu/files/yuzu-0_p20220725.patch
@@ -0,0 +1,175 @@
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 40ca8b1..c0f07e2 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -553,3 +553,4 @@ if(ENABLE_QT AND UNIX AND NOT APPLE)
+ install(FILES "dist/org.yuzu_emu.yuzu.metainfo.xml"
+ DESTINATION "share/metainfo")
+ endif()
++find_package(Threads REQUIRED)
+diff --git a/externals/CMakeLists.txt b/externals/CMakeLists.txt
+index bd01f4c..a29dd5d 100644
+--- a/externals/CMakeLists.txt
++++ b/externals/CMakeLists.txt
+@@ -4,14 +4,6 @@ list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/CMakeModules")
+ list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/externals/find-modules")
+ include(DownloadExternals)
+
+-# xbyak
+-if (ARCHITECTURE_x86 OR ARCHITECTURE_x86_64)
+- add_library(xbyak INTERFACE)
+- file(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/xbyak/include)
+- file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/xbyak/xbyak DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/xbyak/include)
+- target_include_directories(xbyak SYSTEM INTERFACE ${CMAKE_CURRENT_BINARY_DIR}/xbyak/include)
+- target_compile_definitions(xbyak INTERFACE XBYAK_NO_OP_NAMES)
+-endif()
+
+ # Dynarmic
+ if (ARCHITECTURE_x86_64)
+@@ -29,12 +21,7 @@ endif()
+ # Glad
+ add_subdirectory(glad)
+
+-# inih
+-add_subdirectory(inih)
+
+-# mbedtls
+-add_subdirectory(mbedtls EXCLUDE_FROM_ALL)
+-target_include_directories(mbedtls PUBLIC ./mbedtls/include)
+
+ # MicroProfile
+ add_library(microprofile INTERFACE)
+@@ -76,7 +63,6 @@ endif()
+ # Cubeb
+ if(ENABLE_CUBEB)
+ set(BUILD_TESTS OFF CACHE BOOL "")
+- add_subdirectory(cubeb EXCLUDE_FROM_ALL)
+ endif()
+
+ # DiscordRPC
+@@ -86,7 +72,6 @@ if (USE_DISCORD_PRESENCE)
+ endif()
+
+ # Sirit
+-add_subdirectory(sirit)
+
+ if (ENABLE_WEB_SERVICE)
+ find_package(OpenSSL 1.1)
+diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
+index 39ae573..e1e1277 100644
+--- a/src/CMakeLists.txt
++++ b/src/CMakeLists.txt
+@@ -107,7 +107,6 @@ else()
+ -Werror=switch
+ -Werror=uninitialized
+ -Werror=unused-function
+- -Werror=unused-result
+ -Werror=unused-variable
+ -Wextra
+ -Wmissing-declarations
+diff --git a/src/common/scm_rev.cpp.in b/src/common/scm_rev.cpp.in
+index cc88994..61d5bd8 100644
+--- a/src/common/scm_rev.cpp.in
++++ b/src/common/scm_rev.cpp.in
+@@ -4,9 +4,9 @@
+
+ #include "common/scm_rev.h"
+
+-#define GIT_REV "@GIT_REV@"
+-#define GIT_BRANCH "@GIT_BRANCH@"
+-#define GIT_DESC "@GIT_DESC@"
++#define GIT_REV "dfaab8f"
++#define GIT_BRANCH "master"
++#define GIT_DESC "dfaab8f"
+ #define BUILD_NAME "@REPO_NAME@"
+ #define BUILD_DATE "@BUILD_DATE@"
+ #define BUILD_FULLNAME "@BUILD_FULLNAME@"
+diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt
+index 32cc2f3..4c490a3 100644
+--- a/src/core/CMakeLists.txt
++++ b/src/core/CMakeLists.txt
+@@ -1,3 +1,7 @@
++find_path(MBEDTLS_INCLUDE_DIR NAMES mbedtls/ssl.h)
++find_library(MBEDTLS_LIB NAMES mbedtls)
++find_library(MBEDX509_LIB NAMES mbedx509)
++find_library(MBEDCRYPTO_LIB NAMES mbedcrypto)
+ add_library(core STATIC
+ arm/arm_interface.h
+ arm/arm_interface.cpp
+@@ -781,7 +785,7 @@ endif()
+ create_target_directory_groups(core)
+
+ target_link_libraries(core PUBLIC common PRIVATE audio_core video_core)
+-target_link_libraries(core PUBLIC Boost::boost PRIVATE fmt::fmt nlohmann_json::nlohmann_json mbedtls Opus::Opus)
++target_link_libraries(core PUBLIC Boost::boost PRIVATE fmt::fmt nlohmann_json::nlohmann_json mbedtls mbedcrypto mbedx509 Opus::Opus)
+ if (MINGW)
+ target_link_libraries(core PRIVATE ${MSWSOCK_LIBRARY})
+ endif()
+diff --git a/src/video_core/CMakeLists.txt b/src/video_core/CMakeLists.txt
+index 14de7bc..e52caa0 100644
+--- a/src/video_core/CMakeLists.txt
++++ b/src/video_core/CMakeLists.txt
+@@ -240,7 +240,7 @@ target_link_options(video_core PRIVATE ${FFmpeg_LDFLAGS})
+
+ add_dependencies(video_core host_shaders)
+ target_include_directories(video_core PRIVATE ${HOST_SHADERS_INCLUDE})
+-target_include_directories(video_core PRIVATE sirit ../../externals/Vulkan-Headers/include)
++target_include_directories(video_core PRIVATE sirit /usr/include/vulkan/)
+ target_link_libraries(video_core PRIVATE sirit)
+
+ if (ENABLE_NSIGHT_AFTERMATH)
+diff --git a/src/yuzu/CMakeLists.txt b/src/yuzu/CMakeLists.txt
+index 57e0e70..657db12 100644
+--- a/src/yuzu/CMakeLists.txt
++++ b/src/yuzu/CMakeLists.txt
+@@ -260,7 +260,7 @@ target_link_libraries(yuzu PRIVATE common core input_common video_core)
+ target_link_libraries(yuzu PRIVATE Boost::boost glad Qt::Widgets Qt::Multimedia)
+ target_link_libraries(yuzu PRIVATE ${PLATFORM_LIBRARIES} Threads::Threads)
+
+-target_include_directories(yuzu PRIVATE ../../externals/Vulkan-Headers/include)
++target_include_directories(yuzu PRIVATE /usr/include/vulkan/)
+ if (NOT WIN32)
+ target_include_directories(yuzu PRIVATE ${Qt5Gui_PRIVATE_INCLUDE_DIRS})
+ endif()
+diff --git a/src/yuzu_cmd/CMakeLists.txt b/src/yuzu_cmd/CMakeLists.txt
+index c8901f2..2a45006 100644
+--- a/src/yuzu_cmd/CMakeLists.txt
++++ b/src/yuzu_cmd/CMakeLists.txt
+@@ -1,4 +1,6 @@
+ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${PROJECT_SOURCE_DIR}/CMakeModules)
++find_package(PkgConfig REQUIRED)
++pkg_check_modules(INIH REQUIRED INIReader)
+
+ # Credits to Samantas5855 and others for this function.
+ function(create_resource file output filename)
+@@ -28,7 +30,7 @@ add_executable(yuzu-cmd
+ create_target_directory_groups(yuzu-cmd)
+
+ target_link_libraries(yuzu-cmd PRIVATE common core input_common)
+-target_link_libraries(yuzu-cmd PRIVATE inih glad)
++target_link_libraries(yuzu-cmd PRIVATE ${INIH_LIBRARIES} glad)
+ if (MSVC)
+ target_link_libraries(yuzu-cmd PRIVATE getopt)
+ endif()
+@@ -37,7 +39,7 @@ target_link_libraries(yuzu-cmd PRIVATE ${PLATFORM_LIBRARIES} SDL2 Threads::Threa
+ create_resource("../../dist/yuzu.bmp" "yuzu_cmd/yuzu_icon.h" "yuzu_icon")
+ target_include_directories(yuzu-cmd PRIVATE ${RESOURCES_DIR})
+
+-target_include_directories(yuzu-cmd PRIVATE ../../externals/Vulkan-Headers/include)
++target_include_directories(yuzu-cmd PRIVATE /usr/include/vulkan/)
+
+ if (YUZU_USE_EXTERNAL_SDL2)
+ target_compile_definitions(yuzu-cmd PRIVATE -DYUZU_USE_EXTERNAL_SDL2)
+diff --git a/src/yuzu_cmd/config.cpp b/src/yuzu_cmd/config.cpp
+index ad7f9d2..60f8a47 100644
+--- a/src/yuzu_cmd/config.cpp
++++ b/src/yuzu_cmd/config.cpp
+@@ -16,7 +16,7 @@
+ #pragma clang diagnostic pop
+ #endif
+
+-#include <inih/cpp/INIReader.h>
++#include <INIReader.h>
+ #include "common/fs/file.h"
+ #include "common/fs/fs.h"
+ #include "common/fs/path_util.h"
diff --git a/games-emulation/yuzu/yuzu-0_p20220725.ebuild b/games-emulation/yuzu/yuzu-0_p20220725.ebuild
new file mode 100644
index 000000000..14d30fe5a
--- /dev/null
+++ b/games-emulation/yuzu/yuzu-0_p20220725.ebuild
@@ -0,0 +1,117 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake toolchain-funcs xdg
+
+DESCRIPTION="An emulator for Nintendo Switch"
+HOMEPAGE="https://yuzu-emu.org"
+SRC_URI="https://github.com/yuzu-emu/yuzu-mainline/archive/dfaab8f6571856ec3c75cfad303a50503d213665.tar.gz -> ${P}.tar.gz
+ https://github.com/merryhime/dynarmic/archive/91d1f944e3870e0f3c505b48f5ec00ca9a82b95d.tar.gz -> ${PN}-dynarmic-${PV}.tar.gz
+ https://github.com/herumi/xbyak/archive/c306b8e5786eeeb87b8925a8af5c3bf057ff5a90.tar.gz -> ${PN}-xbyak-${PV}.tar.gz
+ compatibility-list? ( yuzu-0_p20220725-compatibility_list.json )
+ discord? ( https://github.com/discord/discord-rpc/archive/963aa9f3e5ce81a4682c6ca3d136cddda614db33.tar.gz -> ${PN}-discord-${PV}.tar.gz )"
+# Dynarmic is not intended to be generic, it is tweaked to fit emulated processor
+# xbyak >= 5.96 still not in portage. sent version bump on gentoo BT, can't be in guru as package already exists
+# discord-rpc: help appreciated to make ebuild, as I never use it I surely will stick to snapshot download
+# TODO host compatibility_list.json
+
+LICENSE="|| ( Apache-2.0 GPL-2+ ) 0BSD BSD GPL-2+ ISC MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="+compatibility-list +cubeb discord +qt5 sdl webengine +webservice"
+
+RDEPEND="
+ <net-libs/mbedtls-3.1[cmac]
+ >=app-arch/zstd-1.5
+ >=dev-libs/libfmt-8:=
+ >=dev-libs/openssl-1.1:=
+ >=media-video/ffmpeg-4.3:=
+ app-arch/lz4:=
+ dev-libs/boost:=[context]
+ dev-libs/sirit
+ media-libs/opus
+ sys-libs/zlib
+ virtual/libusb:1
+ cubeb? ( media-libs/cubeb )
+ qt5? (
+ >=dev-qt/qtcore-5.15:5
+ >=dev-qt/qtgui-5.15:5
+ >=dev-qt/qtwidgets-5.15:5
+ )
+ sdl? (
+ >=media-libs/libsdl2-2.0.18
+ >=dev-libs/inih-52
+ )
+"
+DEPEND="${RDEPEND}
+ dev-libs/cpp-httplib
+ >=dev-util/vulkan-headers-1.3.216
+"
+BDEPEND="
+ >=dev-cpp/catch-2.13:0
+ >=dev-cpp/nlohmann_json-3.8.0
+ dev-cpp/robin-map
+ dev-util/glslang
+ discord? ( >=dev-libs/rapidjson-1.1.0 )
+"
+S="${WORKDIR}"/yuzu-mainline-dfaab8f6571856ec3c75cfad303a50503d213665
+PATCHES=( ${FILESDIR}/${P}.patch )
+
+REQUIRED_USE="|| ( qt5 sdl )"
+
+pkg_setup() {
+ if tc-is-gcc; then
+ [[ "$(gcc-major-version)" -lt 11 ]] && \
+ die "You need gcc version 11 or clang to compile this package"
+ fi
+}
+
+src_unpack() {
+ default
+ mv "${WORKDIR}"/xbyak* ${S}/externals/xbyak/xbyak || die
+ mv "${WORKDIR}"/dynarmic*/* ${S}/externals/dynarmic || die
+ if use discord; then
+ mv "${WORKDIR}"/discord*/* ${S}/externals/discord-rpc || die
+ fi
+}
+
+src_prepare() {
+ # Allow skip submodule downloading
+ rm .gitmodules || die
+
+ if ! use discord; then
+ sed -i -e '/discord-rpc/d' externals/CMakeLists.txt || die
+ else
+ # Unbundle discord rapidjson
+ sed -i '/NOT RAPIDJSONTEST/,/endif(NOT RAPIDJSONTEST)/d;/find_file(RAPIDJSON/d;s:\${RAPIDJSON}:"/usr/include/rapidjson":' \
+ externals/discord-rpc/CMakeLists.txt || die
+ fi
+
+ cmake_src_prepare
+}
+
+src_configure() {
+ local -a mycmakeargs=(
+ # Libraries are private and rely on circular dependency resolution.
+ -DBUILD_SHARED_LIBS=OFF # dynarmic
+ -DDYNARMIC_NO_BUNDLED_ROBIN_MAP=ON
+ -DENABLE_COMPATIBILITY_LIST_DOWNLOAD=$(usex compatibility-list)
+ -DENABLE_CUBEB=$(usex cubeb)
+ -DENABLE_QT=$(usex qt5)
+ -DENABLE_QT_TRANSLATION=$(usex qt5)
+ -DENABLE_SDL2=$(usex sdl)
+ -DENABLE_WEB_SERVICE=$(usex webservice)
+ -DUSE_DISCORD_PRESENCE=$(usex discord)
+ -DYUZU_USE_BUNDLED_OPUS=OFF
+ -DYUZU_USE_EXTERNAL_SDL2=OFF
+ -DYUZU_USE_QT_WEB_ENGINE=$(usex webengine)
+ )
+
+ cmake_src_configure
+
+ if use compatibility-list; then
+ cp "${DISTDIR}"/${P}-compatibility_list.json "${BUILD_DIR}"/dist/compatibility_list/ || die
+ fi
+}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: games-emulation/yuzu/files/, games-emulation/yuzu/
@ 2023-02-02 18:47 Samuel Bauer
0 siblings, 0 replies; 4+ messages in thread
From: Samuel Bauer @ 2023-02-02 18:47 UTC (permalink / raw
To: gentoo-commits
commit: bef015d946b03ba7fe5cabeeed1d0cec6017b9fe
Author: Samuel Bauer <samuel.bauer <AT> yahoo <DOT> fr>
AuthorDate: Thu Feb 2 18:46:57 2023 +0000
Commit: Samuel Bauer <samuel.bauer <AT> yahoo <DOT> fr>
CommitDate: Thu Feb 2 18:46:57 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bef015d9
games-emulation/yuzu: update snapshot
Signed-off-by: Samuel Bauer <samuel.bauer <AT> yahoo.fr>
games-emulation/yuzu/files/yuzu-0_p20230202.patch | 169 ++++++++++++++++++++++
games-emulation/yuzu/yuzu-0_p20230202.ebuild | 124 ++++++++++++++++
2 files changed, 293 insertions(+)
diff --git a/games-emulation/yuzu/files/yuzu-0_p20230202.patch b/games-emulation/yuzu/files/yuzu-0_p20230202.patch
new file mode 100644
index 000000000..df8a04d95
--- /dev/null
+++ b/games-emulation/yuzu/files/yuzu-0_p20230202.patch
@@ -0,0 +1,169 @@
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 8896fe0..f2a09e2 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -216,7 +215,7 @@ find_package(ZLIB 1.2 REQUIRED)
+ find_package(zstd 1.5 REQUIRED)
+
+ if (NOT YUZU_USE_EXTERNAL_VULKAN_HEADERS)
+- find_package(Vulkan 1.3.238 REQUIRED)
++ find_package(Vulkan 1.3.236 REQUIRED)
+ endif()
+
+ if (ENABLE_LIBUSB)
+diff --git a/externals/CMakeLists.txt b/externals/CMakeLists.txt
+index 8532fd7..67bed9a 100644
+--- a/externals/CMakeLists.txt
++++ b/externals/CMakeLists.txt
+@@ -29,13 +29,7 @@ endif()
+ add_subdirectory(glad)
+
+ # inih
+-if (NOT TARGET inih::INIReader)
+- add_subdirectory(inih)
+-endif()
+
+-# mbedtls
+-add_subdirectory(mbedtls EXCLUDE_FROM_ALL)
+-target_include_directories(mbedtls PUBLIC ./mbedtls/include)
+
+ # MicroProfile
+ add_library(microprofile INTERFACE)
+@@ -77,18 +71,8 @@ if (YUZU_USE_EXTERNAL_SDL2)
+ endif()
+
+ # ENet
+-if (NOT TARGET enet::enet)
+- add_subdirectory(enet EXCLUDE_FROM_ALL)
+- target_include_directories(enet INTERFACE ./enet/include)
+- add_library(enet::enet ALIAS enet)
+-endif()
+
+ # Cubeb
+-if (ENABLE_CUBEB AND NOT TARGET cubeb::cubeb)
+- set(BUILD_TESTS OFF)
+- add_subdirectory(cubeb EXCLUDE_FROM_ALL)
+- add_library(cubeb::cubeb ALIAS cubeb)
+-endif()
+
+ # DiscordRPC
+ if (USE_DISCORD_PRESENCE AND NOT TARGET DiscordRPC::discord-rpc)
+diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
+index c7283e8..123a745 100644
+--- a/src/CMakeLists.txt
++++ b/src/CMakeLists.txt
+@@ -101,11 +101,6 @@ if (MSVC)
+ set(CMAKE_EXE_LINKER_FLAGS_RELEASE "/DEBUG /MANIFEST:NO /INCREMENTAL:NO /OPT:REF,ICF" CACHE STRING "" FORCE)
+ else()
+ add_compile_options(
+- -Werror=all
+- -Werror=extra
+- -Werror=missing-declarations
+- -Werror=shadow
+- -Werror=unused
+
+ -Wno-attributes
+ -Wno-invalid-offsetof
+diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt
+index 9884a4a..46df96b 100644
+--- a/src/common/CMakeLists.txt
++++ b/src/common/CMakeLists.txt
+@@ -177,7 +177,7 @@ endif()
+ create_target_directory_groups(common)
+
+ target_link_libraries(common PUBLIC ${Boost_LIBRARIES} fmt::fmt microprofile Threads::Threads)
+-target_link_libraries(common PRIVATE lz4::lz4 zstd::zstd LLVM::Demangle)
++target_link_libraries(common PRIVATE lz4 zstd::zstd LLVM::Demangle)
+
+ if (YUZU_USE_PRECOMPILED_HEADERS)
+ target_precompile_headers(common PRIVATE precompiled_headers.h)
+diff --git a/src/common/scm_rev.cpp.in b/src/common/scm_rev.cpp.in
+index f0c124d..739c4a6 100644
+--- a/src/common/scm_rev.cpp.in
++++ b/src/common/scm_rev.cpp.in
+@@ -3,9 +3,9 @@
+
+ #include "common/scm_rev.h"
+
+-#define GIT_REV "@GIT_REV@"
+-#define GIT_BRANCH "@GIT_BRANCH@"
+-#define GIT_DESC "@GIT_DESC@"
++#define GIT_REV "d5f6201"
++#define GIT_BRANCH "master"
++#define GIT_DESC "d5f6201"
+ #define BUILD_NAME "@REPO_NAME@"
+ #define BUILD_DATE "@BUILD_DATE@"
+ #define BUILD_FULLNAME "@BUILD_FULLNAME@"
+diff --git a/src/dedicated_room/CMakeLists.txt b/src/dedicated_room/CMakeLists.txt
+index 136109a..6a6924c 100644
+--- a/src/dedicated_room/CMakeLists.txt
++++ b/src/dedicated_room/CMakeLists.txt
+@@ -15,7 +15,7 @@ if (ENABLE_WEB_SERVICE)
+ target_link_libraries(yuzu-room PRIVATE web_service)
+ endif()
+
+-target_link_libraries(yuzu-room PRIVATE mbedtls mbedcrypto)
++target_link_libraries(yuzu-room PRIVATE mbedtls mbedcrypto mbedx509 mbedcrypto)
+ if (MSVC)
+ target_link_libraries(yuzu-room PRIVATE getopt)
+ endif()
+diff --git a/src/network/network.cpp b/src/network/network.cpp
+index 6652a18..8513d52 100644
+--- a/src/network/network.cpp
++++ b/src/network/network.cpp
+@@ -3,7 +3,7 @@
+
+ #include "common/assert.h"
+ #include "common/logging/log.h"
+-#include "enet/enet.h"
++#include <enet/enet.h>
+ #include "network/network.h"
+
+ namespace Network {
+diff --git a/src/video_core/vulkan_common/vulkan_wrapper.cpp b/src/video_core/vulkan_common/vulkan_wrapper.cpp
+index 486d4df..abad557 100644
+--- a/src/video_core/vulkan_common/vulkan_wrapper.cpp
++++ b/src/video_core/vulkan_common/vulkan_wrapper.cpp
+@@ -337,18 +337,6 @@ const char* ToString(VkResult result) noexcept {
+ return "VK_ERROR_VALIDATION_FAILED_EXT";
+ case VkResult::VK_ERROR_INVALID_SHADER_NV:
+ return "VK_ERROR_INVALID_SHADER_NV";
+- case VkResult::VK_ERROR_IMAGE_USAGE_NOT_SUPPORTED_KHR:
+- return "VK_ERROR_IMAGE_USAGE_NOT_SUPPORTED_KHR";
+- case VkResult::VK_ERROR_VIDEO_PICTURE_LAYOUT_NOT_SUPPORTED_KHR:
+- return "VK_ERROR_VIDEO_PICTURE_LAYOUT_NOT_SUPPORTED_KHR";
+- case VkResult::VK_ERROR_VIDEO_PROFILE_OPERATION_NOT_SUPPORTED_KHR:
+- return "VK_ERROR_VIDEO_PROFILE_OPERATION_NOT_SUPPORTED_KHR";
+- case VkResult::VK_ERROR_VIDEO_PROFILE_FORMAT_NOT_SUPPORTED_KHR:
+- return "VK_ERROR_VIDEO_PROFILE_FORMAT_NOT_SUPPORTED_KHR";
+- case VkResult::VK_ERROR_VIDEO_PROFILE_CODEC_NOT_SUPPORTED_KHR:
+- return "VK_ERROR_VIDEO_PROFILE_CODEC_NOT_SUPPORTED_KHR";
+- case VkResult::VK_ERROR_VIDEO_STD_VERSION_NOT_SUPPORTED_KHR:
+- return "VK_ERROR_VIDEO_STD_VERSION_NOT_SUPPORTED_KHR";
+ case VkResult::VK_ERROR_INVALID_DRM_FORMAT_MODIFIER_PLANE_LAYOUT_EXT:
+ return "VK_ERROR_INVALID_DRM_FORMAT_MODIFIER_PLANE_LAYOUT_EXT";
+ case VkResult::VK_ERROR_FRAGMENTATION_EXT:
+diff --git a/src/yuzu_cmd/CMakeLists.txt b/src/yuzu_cmd/CMakeLists.txt
+index 46eddf4..afbe9ff 100644
+--- a/src/yuzu_cmd/CMakeLists.txt
++++ b/src/yuzu_cmd/CMakeLists.txt
+@@ -1,4 +1,6 @@
+ # SPDX-FileCopyrightText: 2018 yuzu Emulator Project
++find_package(PkgConfig REQUIRED)
++pkg_check_modules(INIH REQUIRED INIReader)
+ # SPDX-License-Identifier: GPL-2.0-or-later
+
+ # Credits to Samantas5855 and others for this function.
+diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt
+index 3eee1cf..8775f79 100644
+--- a/src/core/CMakeLists.txt
++++ b/src/core/CMakeLists.txt
+@@ -808,7 +808,7 @@ endif()
+ create_target_directory_groups(core)
+
+ target_link_libraries(core PUBLIC common PRIVATE audio_core network video_core)
+-target_link_libraries(core PUBLIC Boost::boost PRIVATE fmt::fmt nlohmann_json::nlohmann_json mbedtls Opus::opus)
++target_link_libraries(core PUBLIC Boost::boost PRIVATE fmt::fmt nlohmann_json::nlohmann_json mbedtls mbedcrypto mbedx509 Opus::opus)
+ if (MINGW)
+ target_link_libraries(core PRIVATE ${MSWSOCK_LIBRARY})
+ endif()
diff --git a/games-emulation/yuzu/yuzu-0_p20230202.ebuild b/games-emulation/yuzu/yuzu-0_p20230202.ebuild
new file mode 100644
index 000000000..3dc94d471
--- /dev/null
+++ b/games-emulation/yuzu/yuzu-0_p20230202.ebuild
@@ -0,0 +1,124 @@
+# Copyright 2020-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake toolchain-funcs xdg
+
+DESCRIPTION="An emulator for Nintendo Switch"
+HOMEPAGE="https://yuzu-emu.org"
+SRC_URI="https://github.com/yuzu-emu/yuzu-mainline/archive/d5f6201521cdfd0be09a187d62f95d3a38f18c3e.tar.gz -> ${P}.tar.gz
+ https://github.com/merryhime/dynarmic/archive/befe547d5631024a70d81d2ccee808bbfcb3854e.tar.gz -> ${PN}-dynarmic-${PV}.tar.gz
+ https://github.com/herumi/xbyak/archive/a1ac3750f9a639b5a6c6d6c7da4259b8d6790989.tar.gz -> ${PN}-xbyak-${PV}.tar.gz
+ https://github.com/yuzu-emu/sirit/archive/ab75463999f4f3291976b079d42d52ee91eebf3f.tar.gz -> ${PN}-sirit-${PV}.tar.gz
+ compatibility-list? ( https://gist.githubusercontent.com/mazes-80/e3f1518e67c3292656a9055ba338994f/raw/b975f96366294d9cf65f844ed8df9189a488463d/yuzu-0_p20230202-compatibility_list.json )
+ discord? ( https://github.com/yuzu-emu/discord-rpc/archive/20cc99aeffa08a4834f156b6ab49ed68618cf94a.tar.gz -> ${PN}-discord-${PV}.tar.gz )"
+# Dynarmic is not intended to be generic, it is tweaked to fit emulated processor
+# TODO wait 'xbyak' waiting version bump. see #860816
+
+LICENSE="|| ( Apache-2.0 GPL-2+ ) 0BSD BSD GPL-2+ ISC MIT
+ !system-vulkan? ( Apache-2.0 )"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="+compatibility-list +cubeb discord +qt5 sdl +system-vulkan webengine webservice"
+
+RDEPEND="
+ <net-libs/mbedtls-3.1[cmac]
+ >=app-arch/zstd-1.5
+ >=dev-libs/libfmt-9:=
+ >=dev-libs/openssl-1.1:=
+ >=media-video/ffmpeg-4.3:=
+ >=net-libs/enet-1.3
+ app-arch/lz4:=
+ dev-libs/boost:=[context]
+ media-libs/opus
+ sys-libs/zlib
+ virtual/libusb:1
+ cubeb? ( media-libs/cubeb )
+ qt5? (
+ >=dev-qt/qtcore-5.15:5
+ >=dev-qt/qtgui-5.15:5
+ >=dev-qt/qtmultimedia-5.15:5
+ >=dev-qt/qtwidgets-5.15:5
+ )
+ sdl? (
+ >=media-libs/libsdl2-2.0.18
+ >=dev-libs/inih-52
+ )
+"
+DEPEND="${RDEPEND}
+ dev-cpp/cpp-httplib
+ dev-cpp/cpp-jwt
+ system-vulkan? ( >=dev-util/vulkan-headers-1.3.236 )
+"
+BDEPEND="
+ >=dev-cpp/nlohmann_json-3.8.0
+ dev-cpp/robin-map
+ dev-util/glslang
+ discord? ( >=dev-libs/rapidjson-1.1.0 )
+"
+S="${WORKDIR}"/yuzu-mainline-d5f6201521cdfd0be09a187d62f95d3a38f18c3e
+PATCHES=( "${FILESDIR}/${P}.patch" )
+
+REQUIRED_USE="|| ( qt5 sdl )"
+
+pkg_setup() {
+ if tc-is-gcc; then
+ [[ "$(gcc-major-version)" -lt 11 ]] && \
+ die "You need gcc version 11 or clang to compile this package"
+ fi
+}
+
+src_unpack() {
+ default
+ mv "${WORKDIR}"/dynarmic*/* "${S}/externals/dynarmic" || die
+ mv "${WORKDIR}"/sirit*/* "${S}/externals/sirit" || die
+ mv "${WORKDIR}"/xbyak*/* "${S}/externals/xbyak" || die
+ if use discord; then
+ mv "${WORKDIR}"/discord*/* "${S}/externals/discord-rpc" || die
+ fi
+}
+
+src_prepare() {
+ # Allow skip submodule downloading
+ rm .gitmodules || die
+
+ # Unbundle cubeb
+ use cubeb && sed -i '$afind_package(Threads REQUIRED)' CMakeLists.txt || die
+
+ if ! use discord; then
+ sed -i -e '/^if.*discord-rpc/,/^endif()/d' externals/CMakeLists.txt || die
+ else
+ # Unbundle discord rapidjson
+ sed -i '/NOT RAPIDJSONTEST/,/endif(NOT RAPIDJSONTEST)/d;/find_file(RAPIDJSON/d;s:\${RAPIDJSON}:"/usr/include/rapidjson":' \
+ externals/discord-rpc/CMakeLists.txt || die
+ fi
+
+ cmake_src_prepare
+}
+
+src_configure() {
+ local -a mycmakeargs=(
+ # Libraries are private and rely on circular dependency resolution.
+ -DBUILD_SHARED_LIBS=OFF # dynarmic
+ -DENABLE_COMPATIBILITY_LIST_DOWNLOAD=$(usex compatibility-list)
+ -DENABLE_CUBEB=$(usex cubeb)
+ -DENABLE_LIBUSB=ON
+ -DENABLE_QT=$(usex qt5)
+ -DENABLE_QT_TRANSLATION=$(usex qt5)
+ -DENABLE_SDL2=$(usex sdl)
+ -DENABLE_WEB_SERVICE=$(usex webservice)
+ -DSIRIT_USE_SYSTEM_SPIRV_HEADERS=yes
+ -DUSE_DISCORD_PRESENCE=$(usex discord)
+ -DYUZU_TESTS=OFF
+ -DYUZU_USE_EXTERNAL_VULKAN_HEADERS=$(use system-vulkan no yes)
+ -DYUZU_USE_EXTERNAL_SDL2=OFF
+ -DYUZU_USE_QT_WEB_ENGINE=$(usex webengine)
+ )
+
+ cmake_src_configure
+
+ if use compatibility-list; then
+ cp "${DISTDIR}"/${P}-compatibility_list.json "${BUILD_DIR}"/dist/compatibility_list/ || die
+ fi
+}
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-02-02 18:47 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-04-28 16:00 [gentoo-commits] repo/proj/guru:dev commit in: games-emulation/yuzu/files/, games-emulation/yuzu/ Samuel Bauer
-- strict thread matches above, loose matches on Subject: below --
2022-01-08 0:19 Samuel Bauer
2022-07-26 2:20 Samuel Bauer
2023-02-02 18:47 Samuel Bauer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox