import qt5-qtimageformats-5.12.5-1.el8

This commit is contained in:
CentOS Sources 2020-04-28 11:39:38 -04:00 committed by Andrew Lukoshko
parent 289b5a0ca8
commit 71cb869f4a
3 changed files with 41 additions and 6 deletions

2
.gitignore vendored
View File

@ -1 +1 @@
SOURCES/qtimageformats-everywhere-src-5.11.1.tar.xz
SOURCES/qtimageformats-everywhere-src-5.12.5.tar.xz

View File

@ -1 +1 @@
6782ae5772b703e33d6fa1e4e051a6bcb07f4690 SOURCES/qtimageformats-everywhere-src-5.11.1.tar.xz
a42b1a3346749e97f46fdcfb6dc6e51337099bf2 SOURCES/qtimageformats-everywhere-src-5.12.5.tar.xz

View File

@ -1,9 +1,11 @@
%global qt_module qtimageformats
%global build_tests 1
Summary: Qt5 - QtImageFormats component
Name: qt5-%{qt_module}
Version: 5.11.1
Release: 2%{?dist}
Version: 5.12.5
Release: 1%{?dist}
# See LGPL_EXCEPTIONS.txt, LICENSE.GPL3, respectively, for details
License: LGPLv2 with exceptions or GPLv3 with exceptions
@ -40,6 +42,14 @@ Requires: %{name}%{?_isa} = %{version}-%{release}
%description examples
%{summary}.
%if 0%{?build_tests}
%package tests
Summary: Unit tests for %{name}
Requires: %{name}%{?_isa} = %{version}-%{release}
%description tests
%{summary}.
%endif
%prep
%setup -q -n %{qt_module}-everywhere-src-%{version}
@ -50,15 +60,31 @@ rm -rv src/3rdparty
%build
%{qmake_qt5}
make %{?_smp_mflags}
%make_build
%if 0%{?build_tests}
make sub-tests %{?_smp_mflags} -k ||:
%endif
%install
make install INSTALL_ROOT=%{buildroot}
%if 0%{?build_tests}
# Install tests for gating
mkdir -p %{buildroot}%{_qt5_libdir}/qt5
find ./tests -not -path '*/\.*' -type d | while read LINE
do
mkdir -p "%{buildroot}%{_qt5_libdir}/qt5/$LINE"
done
find ./tests -not -path '*/\.*' -not -name '*.h' -not -name '*.cpp' -not -name '*.pro' -not -name 'uic_wrapper.sh' -not -name 'Makefile' -not -name 'target_wrapper.sh' -type f | while read LINE
do
cp -r --parents "$LINE" %{buildroot}%{_qt5_libdir}/qt5/
done
%endif
%files
%license LGPL_EXCEPTION.txt LICENSE.GPL* LICENSE.LGPL*
%license LICENSE.GPL* LICENSE.LGPL*
%{_qt5_plugindir}/imageformats/libqmng.so
%{_qt5_plugindir}/imageformats/libqtga.so
%{_qt5_plugindir}/imageformats/libqtiff.so
@ -68,8 +94,17 @@ make install INSTALL_ROOT=%{buildroot}
%{_qt5_plugindir}/imageformats/libqwebp.so
%{_qt5_libdir}/cmake/Qt5Gui/Qt5Gui_*Plugin.cmake
%if 0%{?build_tests}
%files tests
%{_qt5_libdir}/qt5/tests
%endif
%changelog
* Thu Nov 07 2019 Jan Grulich <jgrulich@redhat.com> - 5.12.5-1
- 5.12.5
Resolves: bz#1733142
* Mon Dec 10 2018 Jan Grulich <jgrulich@redhat.com> - 5.11.1-2
- Rebuild to fix CET notes
Resolves: bz#1657234