diff options
author | Ionen Wolkens <ionen@gentoo.org> | 2023-05-12 07:48:50 -0400 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2023-05-12 07:58:10 -0400 |
commit | ec8bab870a55a38329d9d635cef8dad1b27f257b (patch) | |
tree | 004ff2d2858ae8f795fc7404ecf6b501ddb1dd93 /app-emulation/vkd3d-proton | |
parent | app-emulation/vkd3d-proton: drop 2.8_p20230207 (diff) | |
download | gentoo-ec8bab870a55a38329d9d635cef8dad1b27f257b.tar.gz gentoo-ec8bab870a55a38329d9d635cef8dad1b27f257b.tar.bz2 gentoo-ec8bab870a55a38329d9d635cef8dad1b27f257b.zip |
app-emulation/vkd3d-proton: sync live
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'app-emulation/vkd3d-proton')
-rw-r--r-- | app-emulation/vkd3d-proton/vkd3d-proton-9999.ebuild | 29 |
1 files changed, 17 insertions, 12 deletions
diff --git a/app-emulation/vkd3d-proton/vkd3d-proton-9999.ebuild b/app-emulation/vkd3d-proton/vkd3d-proton-9999.ebuild index cb9a067747c6..efcc0a32656a 100644 --- a/app-emulation/vkd3d-proton/vkd3d-proton-9999.ebuild +++ b/app-emulation/vkd3d-proton/vkd3d-proton-9999.ebuild @@ -17,11 +17,11 @@ if [[ ${PV} == 9999 ]]; then subprojects/dxil-spirv/third_party/spirv-headers # skip cross/tools ) else - HASH_VKD3D=4df366172e025c23621c8df5a794de90de165d97 # match tag on bumps - HASH_DXIL=2166bc7ea0ceb2d7ff6d787d9b007f7eb7d4aaa8 - HASH_SPIRV=ae217c17809fadb232ec94b29304b4afcd417bb4 - HASH_SPIRV_DXIL=87d5b782bec60822aa878941e6b13c0a9a954c9b - HASH_VULKAN=5177b119bbdf463b7b909855a83230253c2d8b68 + HASH_VKD3D=f125062ee1278ac8508ab5561e289ec4ce0f406e # match tag on bumps + HASH_DXIL=830106bc2393ba7e7af67863e1c7cfa856432ec5 + HASH_SPIRV=1d31a100405cf8783ca7a31e31cdd727c9fc54c3 + HASH_SPIRV_DXIL=aa331ab0ffcb3a67021caa1a0c1c9017712f2f31 + HASH_VULKAN=bd6443d28f2ebecedfb839b52d612011ba623d14 SRC_URI=" https://github.com/HansKristian-Work/vkd3d-proton/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz @@ -170,13 +170,18 @@ pkg_postinst() { elog " WINEPREFIX=/path/to/prefix setup_vkd3d_proton.sh install --symlink" elog elog "See ${EROOT}/usr/share/doc/${PF}/README.md* for details." - fi + elif [[ ${REPLACING_VERSIONS##* } ]]; then + if ver_test ${REPLACING_VERSIONS##* } -lt 2.7; then + elog + elog ">=${PN}-2.7 requires drivers and Wine to support vulkan-1.3, meaning:" + elog ">=wine-*-7.1 (or >=wine-proton-7.0), and >=mesa-22.0 (or >=nvidia-drivers-510)" + fi - if [[ ! ${REPLACING_VERSIONS##* } ]] || - ver_test ${REPLACING_VERSIONS##* } -lt 2.7 - then - elog - elog ">=${PN}-2.7 requires drivers and Wine to support vulkan-1.3, meaning:" - elog ">=wine-*-7.1 (or >=wine-proton-7.0), and >=mesa-22.0 (or >=nvidia-drivers-510)" + if ver_test ${REPLACING_VERSIONS##* } -lt 2.8_p20230510; then + elog + elog ">=${PN}-2.8_p20230510 has a new file to install (d3d12core.dll), old" + elog "Wine prefixes that relied on '--symlink' may need updates by using the" + elog "setup_vkd3d_proton.sh script again." + fi fi } |