From 6b9adc713afe5b99c5407ca46d37faef2f092097 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Exp=C3=B3sito?= Date: Thu, 11 Jan 2024 17:17:00 +0100 Subject: [PATCH] Version 1.3.270 Resolves: https://issues.redhat.com/browse/RHELPLAN-168965 --- .gitignore | 1 + gating.yaml | 6 ++++++ sources | 1 + vulkan-volk.spec | 51 ++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 59 insertions(+) create mode 100644 gating.yaml create mode 100644 sources create mode 100644 vulkan-volk.spec diff --git a/.gitignore b/.gitignore index e69de29..008921d 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/1.3.270.tar.gz diff --git a/gating.yaml b/gating.yaml new file mode 100644 index 0000000..4124226 --- /dev/null +++ b/gating.yaml @@ -0,0 +1,6 @@ +--- !Policy +product_versions: + - rhel-9 +decision_context: osci_compose_gate +rules: + - !PassingTestCaseRule {test_case_name: desktop-qe.desktop-ci.tier1-gating.functional} diff --git a/sources b/sources new file mode 100644 index 0000000..7483b35 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (1.3.270.tar.gz) = 8a1d827126a29678986c8430d95def5a8430b18aba7ff66c4ac961bd9348fcffb91da257299af486cae5a3976ce04c2d0eb38ad2f915a33b496c5133460aaa81 diff --git a/vulkan-volk.spec b/vulkan-volk.spec new file mode 100644 index 0000000..c5dc5cb --- /dev/null +++ b/vulkan-volk.spec @@ -0,0 +1,51 @@ +%global debug_package %{nil} + +Name: vulkan-volk +Version: 1.3.270 +Release: 1%{?dist} +Summary: Meta loader for Vulkan API + +License: MIT +URL: https://github.com/zeux/volk +Source0: %url/archive/refs/tags/%{version}.tar.gz + +BuildRequires: gcc +BuildRequires: cmake3 +BuildRequires: vulkan-headers + +Conflicts: volk + +%description +%{summary} + +%package devel +Summary: Development files for %{name} +Provides: %{name}-static = %{version}-%{release} +Requires: vulkan-headers + +%description devel +%{summary} + +%prep +%autosetup -n volk-%{version} -p1 + +%build +%cmake3 -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_LIBDIR=%{_libdir} \ + -DVOLK_INSTALL:BOOL=ON +%cmake_build + +%install +%cmake_install + +%files devel +%license LICENSE.md +%doc README.md +%{_includedir}/volk.h +%{_includedir}/volk.c +%{_libdir}/cmake/volk/*.cmake +%{_libdir}/libvolk.a + +%changelog +* Thu Jan 11 2024 José Expósito - 1.3.270-1 +- Version 1.3.270