From ba7c2e16e0e10507f1bf469c7e14bdd271a8640f Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 5 Jan 2024 17:12:02 +0100 Subject: [PATCH] update to 6.2.2 [release 6.2.2-1mamba;Mon Jan 03 2022] --- README.md | 2 ++ qt6-qtimageformats.spec | 73 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 75 insertions(+) create mode 100644 qt6-qtimageformats.spec diff --git a/README.md b/README.md index 6088ec6..f16a8e6 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # qt6-qtimageformats +Qt6 image formats components. + diff --git a/qt6-qtimageformats.spec b/qt6-qtimageformats.spec new file mode 100644 index 0000000..29b3c96 --- /dev/null +++ b/qt6-qtimageformats.spec @@ -0,0 +1,73 @@ +%define majver %(echo %version | cut -d. -f1-2) + +Name: qt6-qtimageformats +Version: 6.2.2 +Release: 1mamba +Summary: Qt6 image formats components +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://www.qt.io/ +Source: https://download.qt.io/official_releases/qt/%{majver}/%{version}/submodules/qtimageformats-everywhere-src-%{version}.tar.xz +License: GPL +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libgcc +BuildRequires: libglvnd-devel +BuildRequires: libjasper-devel +BuildRequires: libjpeg-devel +BuildRequires: libmng-devel +BuildRequires: libstdc++6-devel +BuildRequires: libtiff-devel +BuildRequires: libwebp-devel +BuildRequires: qt6-qtbase-devel +## AUTOBUILDREQ-END + +%description +Qt6 image formats components. + +%package devel +Group: Development/Libraries +Summary: Development files for %{name} +Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release} + +%description devel +This package contains libraries and header files for developing applications that use %{name}. + +%debug_package + +%prep +%setup -q -n qtimageformats-everywhere-src-%{version} + +%build +%cmake -d build + +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall -C build + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files +%defattr(-,root,root) +%dir %{_libdir}/qt6/plugins/imageformats +%{_libdir}/qt6/plugins/imageformats/lib*.so +%doc LICENSE.* + +%files devel +%defattr(-,root,root) +%{_libdir}/cmake/Qt6/FindLibmng.cmake +%{_libdir}/cmake/Qt6/FindWrapJasper.cmake +%{_libdir}/cmake/Qt6/FindWrapWebP.cmake +%{_libdir}/cmake/Qt6Gui/Qt6*.cmake + +%changelog +* Mon Jan 03 2022 Silvan Calarco 6.2.2-1mamba +- update to 6.2.2 + +* Sat Nov 13 2021 Silvan Calarco 5.15.2-1mamba +- package created using the webbuild interface