Compare commits

...

No commits in common. "c8" and "c9s" have entirely different histories.
c8 ... c9s

7 changed files with 177 additions and 95 deletions

6
.gitignore vendored
View File

@ -1 +1,5 @@
SOURCES/spirv-headers-3fdabd0da2932c276b25b9b4a988ba134eba1aa6.tar.gz
/spirv-headers-*.tar.gz
/SPIRV-Headers-sdk-1.3.216.0.tar.gz
/SPIRV-Headers-sdk-1.3.224.0.tar.gz
/SPIRV-Headers-sdk-1.3.239.0.tar.gz
/SPIRV-Headers-sdk-1.3.250.1.tar.gz

View File

@ -1 +1 @@
038cc6ae1934fec27fa0f3a35c5ff7ea54d19d2d SOURCES/spirv-headers-3fdabd0da2932c276b25b9b4a988ba134eba1aa6.tar.gz
23f1ae479fe3504d0df9aa1febce9bfbe091418a spirv-headers-e867c06.tar.gz

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# spirv-headers
The spirv-headers package

View File

@ -1,93 +0,0 @@
%global commit 3fdabd0da2932c276b25b9b4a988ba134eba1aa6
%global shortcommit %(c=%{commit}; echo ${c:0:7})
%global commit_date 20200803
%global gitrel .%{commit_date}.git%{shortcommit}
Name: spirv-headers
Version: 1.5.1
Release: 3%{?gitrel}%{?dist}
Summary: Header files from the SPIR-V registry
License: MIT
URL: https://github.com/KhronosGroup
Source0: %url/SPIRV-Headers/archive/%{commit}.tar.gz#/%{name}-%{commit}.tar.gz
BuildArch: noarch
%description
%{summary}
This includes:
* Header files for various languages.
* JSON files describing the grammar for the SPIR-V core instruction
set, and for the GLSL.std.450 extended instruction set.
* The XML registry file
%package devel
Summary: Development files for %{name}
%description devel
%{summary}
This includes:
* Header files for various languages.
* JSON files describing the grammar for the SPIR-V core instruction
set, and for the GLSL.std.450 extended instruction set.
* The XML registry fil
%prep
%autosetup -n SPIRV-Headers-%{commit}
chmod a-x include/spirv/1.2/spirv.py
%build
%install
mkdir -p %buildroot%{_includedir}/
mv include/* %buildroot%{_includedir}/
%files devel
%license LICENSE
%doc README.md
%{_includedir}/spirv/
%changelog
* Tue Aug 04 2020 Dave Airlie <airlied@redhat.com> - 1.5.1-3
- Update to latest upstream snapshot
* Wed Jan 29 2020 Dave Airlie <airlied@redhat.com> - 1.5.1-2
- Update to latest upstream snapshot
* Tue Nov 12 2019 Dave Airlie <airlied@redhat.com> - 1.5.1-1
- Update to latest upstream snapshot
* Sat Aug 03 2019 Dave Airlie <airlied@redhat.com> - 1.4.2-0.1
- Update to latest upstream snapshot
* Thu Mar 07 2019 Dave Airlie <airlied@redhat.com> - 1.2-0.8.20190307.git03a0815
- Update to latest version
* Mon Jul 23 2018 Leigh Scott <leigh123linux@googlemail.com> - 1.2-0.7.20180703.gitff684ff
- Update for SPIRV-Tools-2018.4
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.2-0.6.20180405.git12f8de9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
* Tue Apr 24 2018 Leigh Scott <leigh123linux@googlemail.com> - 1.2-0.5.20180405.git12f8de9
- Update for vulkan 1.0.73.0
* Fri Feb 09 2018 Leigh Scott <leigh123linux@googlemail.com> - 1.2-0.4.20180201.gitce30920
- Update for vulkan 1.0.68.0
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.2-0.3.20171015.git0610978
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
* Mon Jan 22 2018 Leigh Scott <leigh123linux@googlemail.com> - 1.2-0.2.20171015.git0610978
- fix rpmlint error
* Thu Jul 13 2017 Leigh Scott <leigh123linux@googlemail.com> - 1.2-0.1.20171015.git0610978
- First build

6
gating.yaml Normal file
View File

@ -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}

1
sources Normal file
View File

@ -0,0 +1 @@
SHA512 (spirv-headers-e867c06.tar.gz) = b7cdedac508995defc1142947300bf699a511b2f3df80e63acc5783829df82ae2b40f9ccb32c1eb5d56b42728a34d0112bbe78ad1474d28efec707db8c4d94d6

161
spirv-headers.spec Normal file
View File

@ -0,0 +1,161 @@
%global commit e867c06631767a2d96424cbec530f9ee5e78180f
%global shortcommit %(c=%{commit}; echo ${c:0:7})
Name: spirv-headers
Version: 1.5.5
Release: 7%{?dist}
Summary: Header files from the SPIR-V registry
License: MIT
URL: https://github.com/KhronosGroup/SPIRV-Headers/
Source0: %{url}/archive/%{commit}/%{name}-%{shortcommit}.tar.gz
BuildArch: noarch
BuildRequires: cmake3
BuildRequires: ninja-build
BuildRequires: gcc
BuildRequires: gcc-c++
%description
%{summary}
This includes:
* Header files for various languages.
* JSON files describing the grammar for the SPIR-V core instruction
set, and for the GLSL.std.450 extended instruction set.
* The XML registry file
%package devel
Summary: Development files for %{name}
%description devel
%{summary}
This includes:
* Header files for various languages.
* JSON files describing the grammar for the SPIR-V core instruction
set, and for the GLSL.std.450 extended instruction set.
* The XML registry fil
%prep
%autosetup -n SPIRV-Headers-%{commit}
chmod a-x include/spirv/1.2/spirv.py
%build
%cmake3 -DCMAKE_INSTALL_LIBDIR=%{_lib} -GNinja
%cmake_build
%install
%cmake_install
%files devel
%license LICENSE
%doc README.md
%{_includedir}/spirv/
%{_datadir}/cmake/SPIRV-Headers/*.cmake
%{_datadir}/pkgconfig/SPIRV-Headers.pc
%changelog
* Wed Jan 17 2024 José Expósito <jexposit@redhat.com> - 1.5.5-7
- Update to 1.3.268.0 SDK
* Thu Jul 06 2023 Dave Airlie <airlied@redhat.com> - 1.5.5-6
- Update to spirv headers for 1.3.250.1 sdk
* Wed Feb 15 2023 Dave Airlie <airlied@redhat.com> - 1.5.5-5
- Process demands a bump
* Tue Feb 14 2023 Dave Airlie <airlied@redhat.com> - 1.5.5-4
- Update to spirv headers for 1.3.239 sdk
* Thu Aug 25 2022 Dave Airlie <airlied@redhat.com> - 1.5.5-3
- Update to spirv headers for 1.3.224 sdk
* Wed Jun 22 2022 Dave Airlie <airlied@redhat.com> - 1.5.5-2
- Update to spirv headers for 1.3.216 sdk
* Tue Feb 22 2022 Dave Airlie <airlied@redhat.com> - 1.5.5-1.20220117.gitb42ba6d
- Update to spirv headers for 1.3.204 sdk
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 1.5.4-6.20210617.git07f259e
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
Related: rhbz#1991688
* Fri Jul 30 2021 Dave Airlie <airlied@redhat.com> - 1.5.4-5.20210617.git07f259
- Update to spirv-headers for 1.2.182.0 sdk
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1.5.4-4.20201128.gitf027d53
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
* Thu Jan 28 2021 Dave Airlie <airlied@redhat.com> - 1.5.4-3.20201128.gitf027d53
- Update to spirv headers for 1.2.162 sdk
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.4-2.20201024.git7845730
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
* Mon Nov 02 2020 Dave Airlie <airlied@redhat.com> - 1.5.4-1
- Update to latest spirv headers
* Tue Aug 04 2020 Dave Airlie <airlied@redhat.com> - 1.5.1-5.20200803.git3fdabd0
- Update to latest spirv headers
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.1-4.20200414.git2ad0492
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Wed Apr 22 2020 Dave Airlie <airlied@redhat.com> - 1.5.1-3
- Update to latest spirv headers
* Wed Jan 29 2020 Dave Airlie <airlied@redhat.com> - 1.5.1-2
- Update to latest spirv headers
* Tue Nov 12 2019 Dave Airlie <airlied@redhat.com> - 1.5.1-1
- Latest git snapshot building vulkan
* Thu Aug 01 2019 Dave Airlie <airlied@redhat.com> - 1.4.2-0.1
- Latest git snapshot for building vulkan.
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
* Mon Jun 10 03:08:22 CEST 2019 Robert-André Mauchin <zebob.m@gmail.com> - 1.4.1-1
- Release 1.4.1
* Thu Mar 07 2019 Dave Airlie <airlied@redhat.com> - 1.2-0.12.20190307.git03a0815
- Update to latest version
* Mon Feb 04 2019 Dave Airlie <airlied@redhat.com> - 1.2-0.11.20190125.git8bea0a2
- Update to latest version
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.2-0.10.20180703.gitff684ff
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
* Sat Oct 20 2018 Leigh Scott <leigh123linux@googlemail.com> - 1.2-0.9.20180703.gitff684ff
- Revert last commit
* Sat Oct 20 2018 Leigh Scott <leigh123linux@googlemail.com> - 1.2-0.8.20180919.gitd5b2e12
- Update for SPIRV-Tools-2018.5
* Mon Jul 23 2018 Leigh Scott <leigh123linux@googlemail.com> - 1.2-0.7.20180703.gitff684ff
- Update for SPIRV-Tools-2018.4
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.2-0.6.20180405.git12f8de9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
* Tue Apr 24 2018 Leigh Scott <leigh123linux@googlemail.com> - 1.2-0.5.20180405.git12f8de9
- Update for vulkan 1.0.73.0
* Fri Feb 09 2018 Leigh Scott <leigh123linux@googlemail.com> - 1.2-0.4.20180201.gitce30920
- Update for vulkan 1.0.68.0
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.2-0.3.20171015.git0610978
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
* Mon Jan 22 2018 Leigh Scott <leigh123linux@googlemail.com> - 1.2-0.2.20171015.git0610978
- fix rpmlint error
* Thu Jul 13 2017 Leigh Scott <leigh123linux@googlemail.com> - 1.2-0.1.20171015.git0610978
- First build