openxr: 1.1.43
This commit is contained in:
parent
abdf36976b
commit
28693f745b
184
base/openxr/openxr.spec
Normal file
184
base/openxr/openxr.spec
Normal file
@ -0,0 +1,184 @@
|
|||||||
|
## START: Set by rpmautospec
|
||||||
|
## (rpmautospec version 0.7.3)
|
||||||
|
## RPMAUTOSPEC: autorelease, autochangelog
|
||||||
|
%define autorelease(e:s:pb:n) %{?-p:0.}%{lua:
|
||||||
|
release_number = 1;
|
||||||
|
base_release_number = tonumber(rpm.expand("%{?-b*}%{!?-b:1}"));
|
||||||
|
print(release_number + base_release_number - 1);
|
||||||
|
}%{?-e:.%{-e*}}%{?-s:.%{-s*}}%{!?-n:%{?dist}}
|
||||||
|
## END: Set by rpmautospec
|
||||||
|
|
||||||
|
%global pkgname OpenXR-SDK-Source
|
||||||
|
%global libmajor 1
|
||||||
|
%global python3_pkgversion 3
|
||||||
|
|
||||||
|
Name: openxr
|
||||||
|
Version: 1.1.43
|
||||||
|
Release: %autorelease
|
||||||
|
Summary: An API for writing VR and AR software
|
||||||
|
License: Apache-2.0
|
||||||
|
URL: https://github.com/KhronosGroup/%{pkgname}
|
||||||
|
Source: %{url}/archive/refs/tags/release-%{version}.tar.gz
|
||||||
|
|
||||||
|
BuildRequires: cmake
|
||||||
|
BuildRequires: gcc-c++
|
||||||
|
BuildRequires: glslang
|
||||||
|
BuildRequires: glslang-devel
|
||||||
|
BuildRequires: pkgconfig(egl)
|
||||||
|
BuildRequires: pkgconfig(gl)
|
||||||
|
BuildRequires: pkgconfig(glu)
|
||||||
|
BuildRequires: pkgconfig(jsoncpp)
|
||||||
|
BuildRequires: pkgconfig(vulkan)
|
||||||
|
BuildRequires: pkgconfig(wayland-client)
|
||||||
|
BuildRequires: pkgconfig(xxf86vm)
|
||||||
|
BuildRequires: pkgconfig(xcb-icccm)
|
||||||
|
BuildRequires: pkgconfig(xcb-keysyms)
|
||||||
|
BuildRequires: pkgconfig(xcb)
|
||||||
|
BuildRequires: pkgconfig(xcb-glx)
|
||||||
|
BuildRequires: pkgconfig(xcb-randr)
|
||||||
|
BuildRequires: pkgconfig(xcb-dri2)
|
||||||
|
BuildRequires: pkgconfig(xrandr)
|
||||||
|
BuildRequires: python3dist(jinja2)
|
||||||
|
|
||||||
|
%description
|
||||||
|
OpenXR is an API specification for writing portable, cross-platform,
|
||||||
|
virtual reality (VR) and augmented reality (AR) software.
|
||||||
|
|
||||||
|
%package libs
|
||||||
|
Summary: Libraries for writing VR and AR software
|
||||||
|
|
||||||
|
%description libs
|
||||||
|
This package contains the library needed to run programs dynamically
|
||||||
|
linked with OpenXR.
|
||||||
|
|
||||||
|
%package devel
|
||||||
|
Summary: Headers and development files of the OpenXR library
|
||||||
|
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
||||||
|
Provides: %{name}-devel = %{version}-%{release}
|
||||||
|
|
||||||
|
%description devel
|
||||||
|
Development files for the OpenXR library. Install this package if you
|
||||||
|
want to compile applications using the OpenXR library.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup -n %{pkgname}-release-%{version}
|
||||||
|
|
||||||
|
%build
|
||||||
|
%cmake \
|
||||||
|
-DBUILD_ALL_EXTENSIONS=ON \
|
||||||
|
-DBUILD_LOADER=ON \
|
||||||
|
-DBUILD_TESTS=ON \
|
||||||
|
-DBUILD_WITH_STD_FILESYSTEM=OFF \
|
||||||
|
-DBUILD_WITH_WAYLAND_HEADERS=ON \
|
||||||
|
-DCMAKE_BUILD_TYPE=Release \
|
||||||
|
-DCMAKE_C_FLAGS="%{optflags} -Wl,--as-needed" \
|
||||||
|
-DCMAKE_CXX_FLAGS="%{optflags} -Wl,--as-needed" \
|
||||||
|
-DCMAKE_CXX_STANDARD=17 \
|
||||||
|
-DDYNAMIC_LOADER=ON
|
||||||
|
%cmake_build
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
%cmake_install
|
||||||
|
|
||||||
|
# We do not want static file .a
|
||||||
|
rm -fr %{buildroot}%{_libdir}/*.a
|
||||||
|
|
||||||
|
%check
|
||||||
|
%ctest
|
||||||
|
|
||||||
|
%files
|
||||||
|
%license LICENSE
|
||||||
|
# Include license in doc otherwise build complains
|
||||||
|
%doc CHANGELOG.SDK.md LICENSE README.md
|
||||||
|
%{_bindir}/*
|
||||||
|
%{_datadir}/%{name}
|
||||||
|
%{_mandir}/man1/*.1*
|
||||||
|
|
||||||
|
%files libs
|
||||||
|
%{_libdir}/lib%{name}_loader.so.%{libmajor}{,.*}
|
||||||
|
|
||||||
|
%files devel
|
||||||
|
%{_includedir}/%{name}
|
||||||
|
%{_libdir}/cmake/%{name}
|
||||||
|
%{_libdir}/lib*.so
|
||||||
|
%{_libdir}/pkgconfig/*.pc
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
## START: Generated by rpmautospec
|
||||||
|
* Fri Nov 29 2024 Luya Tshimbalanga <luya@fedoraproject.org> - 1.1.43-1
|
||||||
|
- Update to 1.1.43
|
||||||
|
|
||||||
|
* Sun Oct 27 2024 Luya Tshimbalanga <luya@fedoraproject.org> - 1.1.42-1
|
||||||
|
- Update to 1.1.42 (rhbz#2321915)
|
||||||
|
|
||||||
|
* Sat Sep 28 2024 Luya Tshimbalanga <luya@fedoraproject.org> - 1.1.41-1
|
||||||
|
- Rebase to 1.1.41
|
||||||
|
|
||||||
|
* Mon Jan 08 2024 Luya Tshimbalanga <luya@fedoraproject.org> - 1.0.33-1
|
||||||
|
- Update to 1.0.33
|
||||||
|
|
||||||
|
* Sun Mar 26 2023 Luya Tshimbalanga <luya@fedoraproject.org> - 1.0.27-1
|
||||||
|
- Update to 1.0.27
|
||||||
|
|
||||||
|
* Fri Mar 24 2023 Luya Tshimbalanga <luya@fedoraproject.org> - 1.0.26-3
|
||||||
|
- Add new tarball release
|
||||||
|
|
||||||
|
* Sat Mar 11 2023 Rémi Verschelde <akien@fedoraproject.org> - 1.0.26-2
|
||||||
|
- Move .so files to -devel package
|
||||||
|
|
||||||
|
* Sun Nov 20 2022 Luya Tshimbalanga <luya@fedoraproject.org> - 1.0.26-1
|
||||||
|
- Update to 1.0.26 (#2144233)
|
||||||
|
|
||||||
|
* Sun Nov 20 2022 Fedora Release Monitoring <release-monitoring@fedoraproject.org> - 1.0.25-1
|
||||||
|
- Update to 1.0.25 (#2100821)
|
||||||
|
|
||||||
|
* Sun Nov 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.23-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Sep 04 2022 Luya Tshimbalanga <luya@fedoraproject.org> - 1.0.23-2
|
||||||
|
- Update to 1.0.25 (#2100821)
|
||||||
|
|
||||||
|
* Sun May 29 2022 Luya Tshimbalanga <luya@fedoraproject.org> - 1.0.23-1
|
||||||
|
- Update to 1.0.23 (#2091339)
|
||||||
|
|
||||||
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.22-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 14 2022 Luya Tshimbalanga <luya@fedoraproject.org> - 1.0.22-1
|
||||||
|
- Update to 1.0.22 (#2040304)
|
||||||
|
|
||||||
|
* Wed Nov 03 2021 Björn Esser <besser82@fedoraproject.org> 1.0.20-2
|
||||||
|
- Rebuild (jsoncpp)
|
||||||
|
|
||||||
|
* Wed Aug 04 2021 Luya Tshimbalanga <luya@fedoraproject.org> 1.0.18-1
|
||||||
|
- Uncommitted changes
|
||||||
|
|
||||||
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> 1.0.17-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jun 09 2021 Luya Tshimbalanga <luya@fedoraproject.org> 1.0.17-1
|
||||||
|
- Update to 1.0.17 (#1969698)
|
||||||
|
|
||||||
|
* Wed May 12 2021 Luya Tshimbalanga <luya@fedoraproject.org> 1.0.16-1
|
||||||
|
- Update to 1.0.16 (#1921848)
|
||||||
|
|
||||||
|
* Mon Apr 19 2021 Luya Tshimbalanga <luya@fedoraproject.org> 1.0.15-1
|
||||||
|
- Update to 1.0.15
|
||||||
|
|
||||||
|
* Sun Jan 31 2021 Luya Tshimbalanga <luya@fedoraproject.org> 1.0.14-2
|
||||||
|
- Update to 1.0.14
|
||||||
|
|
||||||
|
* Sun Jan 31 2021 Luya Tshimbalanga <luya@fedoraproject.org> 1.0.14-1
|
||||||
|
- Update to 1.0.14
|
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> 1.0.13-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Nov 26 2020 Luya Tshimbalanga <luya@fedoraproject.org> 1.0.13-1
|
||||||
|
- Update to 1.0.13
|
||||||
|
|
||||||
|
* Tue Nov 10 2020 Luya Tshimbalanga <luya@fedoraproject.org> 1.0.12-1
|
||||||
|
- Add patch for .so versioning
|
||||||
|
|
||||||
|
## END: Generated by rpmautospec
|
Loading…
x
Reference in New Issue
Block a user