Compare commits
No commits in common. "c8" and "c10s" have entirely different histories.
32
.gitignore
vendored
32
.gitignore
vendored
@ -1 +1,31 @@
|
||||
SOURCES/Vulkan-Loader-sdk-1.3.283.0.tar.gz
|
||||
/Vulkan-Loader-sdk-1.1.77.0.tar.gz
|
||||
/Vulkan-Loader-sdk-1.1.82.0.tar.gz
|
||||
/Vulkan-Loader-sdk-1.1.85.0.tar.gz
|
||||
/sdk-1.1.92.tar.gz
|
||||
/Vulkan-Loader-sdk-1.1.92.0.tar.gz
|
||||
/Vulkan-Loader-sdk-1.1.97.0.tar.gz
|
||||
/Vulkan-Loader-sdk-1.1.101.0.tar.gz
|
||||
/Vulkan-Loader-sdk-1.1.108.0.tar.gz
|
||||
/Vulkan-Loader-sdk-1.1.114.0.tar.gz
|
||||
/Vulkan-Loader-sdk-1.1.126.0.tar.gz
|
||||
/Vulkan-Loader-sdk-1.2.131.1.tar.gz
|
||||
/Vulkan-Loader-sdk-1.2.135.0.tar.gz
|
||||
/Vulkan-Loader-sdk-1.2.148.0.tar.gz
|
||||
/Vulkan-Loader-sdk-1.2.148.1.tar.gz
|
||||
/Vulkan-Loader-sdk-1.2.154.1.tar.gz
|
||||
/Vulkan-Loader-sdk-1.2.162.0.tar.gz
|
||||
/Vulkan-Loader-sdk-1.2.176.0.tar.gz
|
||||
/Vulkan-Loader-sdk-1.2.182.0.tar.gz
|
||||
/Vulkan-Loader-sdk-1.2.189.0.tar.gz
|
||||
/Vulkan-Loader-sdk-1.2.198.0.tar.gz
|
||||
/Vulkan-Loader-sdk-1.3.204.0.tar.gz
|
||||
/Vulkan-Loader-sdk-1.3.211.0.tar.gz
|
||||
/Vulkan-Loader-sdk-1.3.216.0.tar.gz
|
||||
/Vulkan-Loader-sdk-1.3.224.0.tar.gz
|
||||
/Vulkan-Loader-sdk-1.3.231.1.tar.gz
|
||||
/Vulkan-Loader-sdk-1.3.239.0.tar.gz
|
||||
/Vulkan-Loader-sdk-1.3.243.0.tar.gz
|
||||
/Vulkan-Loader-sdk-1.3.250.0.tar.gz
|
||||
/Vulkan-Loader-sdk-1.3.261.1.tar.gz
|
||||
/Vulkan-Loader-sdk-1.3.268.0.tar.gz
|
||||
/Vulkan-Loader-sdk-1.3.283.0.tar.gz
|
||||
|
@ -1 +0,0 @@
|
||||
23a6ddf29216fb8b1a45bab8723b79079c6ab0e3 SOURCES/Vulkan-Loader-sdk-1.3.283.0.tar.gz
|
26
fix-vulkan-1.patch
Normal file
26
fix-vulkan-1.patch
Normal file
@ -0,0 +1,26 @@
|
||||
From 7a313093b5c4af964d50a5a64e73d7df6152ea3f Mon Sep 17 00:00:00 2001
|
||||
From: Michel Zou <xantares09@hotmail.com>
|
||||
Date: Thu, 26 Nov 2020 22:12:58 +0100
|
||||
Subject: [PATCH] cmake: remove mingw lib prefix
|
||||
|
||||
we want the dll to be named vulkan-1.dll and not libvulkan-1.dll
|
||||
as it is the default on mingw (for drop-in replacement)
|
||||
---
|
||||
loader/CMakeLists.txt | 4 +++-
|
||||
1 file changed, 3 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/loader/CMakeLists.txt b/loader/CMakeLists.txt
|
||||
index 7cc5fd71e..659511855 100644
|
||||
--- a/loader/CMakeLists.txt
|
||||
+++ b/loader/CMakeLists.txt
|
||||
@@ -224,7 +224,9 @@ if(WIN32)
|
||||
PROPERTIES LINK_FLAGS_DEBUG
|
||||
"/ignore:4098"
|
||||
OUTPUT_NAME
|
||||
- vulkan-1)
|
||||
+ vulkan-1
|
||||
+ PREFIX
|
||||
+ "")
|
||||
target_link_libraries(vulkan Vulkan::Headers)
|
||||
|
||||
if(ENABLE_WIN10_ONECORE)
|
6
gating.yaml
Normal file
6
gating.yaml
Normal file
@ -0,0 +1,6 @@
|
||||
--- !Policy
|
||||
product_versions:
|
||||
- rhel-10
|
||||
decision_context: osci_compose_gate
|
||||
rules:
|
||||
- !PassingTestCaseRule {test_case_name: desktop-qe.desktop-ci.tier1-gating.functional}
|
1
sources
Normal file
1
sources
Normal file
@ -0,0 +1 @@
|
||||
SHA512 (Vulkan-Loader-sdk-1.3.283.0.tar.gz) = 0e62cc29a28e9d0898aa0a29b05158f75116f5a86468e879499503a20e95e49791150a0a458317223a04c65dfbc1fdcd22e71596a8cf939a5d38f9bf186851d6
|
@ -1,9 +1,9 @@
|
||||
Name: vulkan-loader
|
||||
Version: 1.3.283.0
|
||||
Release: 1%{?dist}
|
||||
Release: %autorelease
|
||||
Summary: Vulkan ICD desktop loader
|
||||
|
||||
License: ASL 2.0
|
||||
License: Apache-2.0
|
||||
URL: https://github.com/KhronosGroup/Vulkan-Loader
|
||||
Source0: %url/archive/vulkan-sdk-%{version}.tar.gz#/Vulkan-Loader-sdk-%{version}.tar.gz
|
||||
|
||||
@ -56,6 +56,11 @@ developing applications that use %{name}.
|
||||
|
||||
|
||||
%build
|
||||
%ifarch aarch64
|
||||
export CFLAGS="%{optflags} -mbranch-protection=standard -Wp,-D_FORTIFY_SOURCE=2"
|
||||
export CXXFLAGS=$CFLAGS
|
||||
%endif
|
||||
|
||||
%cmake3 -GNinja -DCMAKE_BUILD_TYPE=Release
|
||||
%cmake_build
|
||||
|
||||
@ -91,73 +96,4 @@ mkdir -p %{buildroot}%{_sysconfdir}/vulkan/{explicit,implicit}_layer.d/ \
|
||||
%{_libdir}/cmake/VulkanLoader/*.cmake
|
||||
|
||||
%changelog
|
||||
* Tue Sep 10 2024 José Expósito <jexposit@redhat.com> - 1.3.283.0-1
|
||||
- Update to 1.3.283.0 SDK
|
||||
Resolves: https://issues.redhat.com/browse/RHEL-54287
|
||||
|
||||
* Wed Jul 12 2023 Dave Airlie <airlied@redhat.com> - 1.3.250.1-1
|
||||
- Update to 1.3.250.1
|
||||
|
||||
* Tue Feb 14 2023 Dave Airlie <airlied@redhat.com> - 1.3.239.0-1
|
||||
- Update to 1.3.239.0
|
||||
|
||||
* Wed Aug 24 2022 Dave Airlie <airlied@redhat.com> - 1.3.224.0-2
|
||||
- Change to recommends
|
||||
|
||||
* Wed Aug 24 2022 Dave Airlie <airlied@redhat.com> - 1.3.224.0-1
|
||||
- Update to 1.3.224.0
|
||||
|
||||
* Mon Jun 20 2022 Dave Airlie <airlied@redhat.com> - 1.3.216.0-1
|
||||
- Update to 1.3.216.0
|
||||
|
||||
* Thu Feb 24 2022 Dave Airlie <airlied@redhat.com> - 1.3.204.0-2
|
||||
- Fix aarch64 TEXTREL
|
||||
|
||||
* Mon Feb 21 2022 Dave Airlie <airlied@redhat.com> - 1.3.204.0-1
|
||||
- Update to 1.3.204.0
|
||||
|
||||
* Mon Feb 01 2021 Dave Airlie <airlied@redhat.com> - 1.2.162.0-1
|
||||
- Update to 1.2.162.0
|
||||
|
||||
* Wed Aug 05 2020 Dave Airlie <airlied@redhat.com> - 1.2.148.0-1
|
||||
- Update to 1.2.148.0
|
||||
|
||||
* Wed Jan 29 2020 Dave Airlie <airlied@redhat.com> - 1.2.131.1-1
|
||||
- Update to 1.2.131.1
|
||||
|
||||
* Sat Dec 07 2019 Dave Airlie <airlied@redhat.com> - 1.1.126.0-2
|
||||
- Rebuild for 8.2.0
|
||||
|
||||
* Tue Nov 12 2019 Dave Airlie <airlied@redhat.com> - 1.1.126.0-1
|
||||
- Update to 1.1.126.0
|
||||
|
||||
* Thu Aug 08 2019 Dave Airlie <airlied@redhat.com> - 1.1.114.0-3
|
||||
- Add notes to avoid annobin gaps warning on i686
|
||||
|
||||
* Thu Aug 08 2019 Dave Airlie <airlied@redhat.com> - 1.1.114.0-2
|
||||
- Add support to asm files for -fcf-protection
|
||||
|
||||
* Mon Aug 05 2019 Dave Airlie <airlied@redhat.com> - 1.1.114.0-1
|
||||
- Update to 1.1.114.0
|
||||
|
||||
* Wed Mar 06 2019 Dave Airlie <airlied@redhat.com> - 1.1.101.0-0
|
||||
- Update to 1.1.101.0
|
||||
|
||||
* Tue Aug 07 2018 Leigh Scott <leigh123linux@googlemail.com> - 1.1.82.0-1
|
||||
- Update to 1.1.82.0
|
||||
|
||||
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.77.0-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Wed Jun 27 2018 Leigh Scott <leigh123linux@googlemail.com> - 1.1.77.0-4
|
||||
- Fix update path
|
||||
|
||||
* Tue Jun 26 2018 Leigh Scott <leigh123linux@googlemail.com> - 1.1.77.0-3
|
||||
- Add conditional for mesa-vulkan-drivers requires
|
||||
|
||||
* Tue Jun 26 2018 Leigh Scott <leigh123linux@googlemail.com> - 1.1.77.0-2
|
||||
- Improve description and summary
|
||||
- Set release
|
||||
|
||||
* Sat Jun 23 2018 Leigh Scott <leigh123linux@googlemail.com> - 1.1.77.0-1
|
||||
- Initial package
|
||||
%autochangelog
|
Loading…
Reference in New Issue
Block a user