import qt5-qtquickcontrols2-5.12.5-1.el8
This commit is contained in:
parent
375dfcc98e
commit
962eb948ef
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
|||||||
SOURCES/qtquickcontrols2-everywhere-src-5.11.1.tar.xz
|
SOURCES/qtquickcontrols2-everywhere-src-5.12.5.tar.xz
|
||||||
|
@ -1 +1 @@
|
|||||||
8ea9c7655f82bbae02a9c203c4c022b693a45953 SOURCES/qtquickcontrols2-everywhere-src-5.11.1.tar.xz
|
47181ff0fce645548603337c205c1f36d34fc2a7 SOURCES/qtquickcontrols2-everywhere-src-5.12.5.tar.xz
|
||||||
|
@ -1,9 +1,11 @@
|
|||||||
%global qt_module qtquickcontrols2
|
%global qt_module qtquickcontrols2
|
||||||
|
|
||||||
|
%global build_tests 1
|
||||||
|
|
||||||
Name: qt5-%{qt_module}
|
Name: qt5-%{qt_module}
|
||||||
Summary: Qt5 - module with set of QtQuick controls for embedded
|
Summary: Qt5 - module with set of QtQuick controls for embedded
|
||||||
Version: 5.11.1
|
Version: 5.12.5
|
||||||
Release: 2%{?dist}
|
Release: 1%{?dist}
|
||||||
License: GPLv2+ or LGPLv3 and GFDL
|
License: GPLv2+ or LGPLv3 and GFDL
|
||||||
Url: http://www.qt.io
|
Url: http://www.qt.io
|
||||||
%global majmin %(echo %{version} | cut -d. -f1-2)
|
%global majmin %(echo %{version} | cut -d. -f1-2)
|
||||||
@ -46,6 +48,15 @@ Requires: %{name}%{?_isa} = %{version}-%{release}
|
|||||||
%description examples
|
%description examples
|
||||||
%{summary}.
|
%{summary}.
|
||||||
|
|
||||||
|
%if 0%{?build_tests}
|
||||||
|
%package tests
|
||||||
|
Summary: Unit tests for %{name}
|
||||||
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
|
|
||||||
|
%description tests
|
||||||
|
%{summary}.
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{qt_module}-everywhere-src-%{version}
|
%setup -q -n %{qt_module}-everywhere-src-%{version}
|
||||||
@ -56,10 +67,28 @@ Requires: %{name}%{?_isa} = %{version}-%{release}
|
|||||||
|
|
||||||
%make_build
|
%make_build
|
||||||
|
|
||||||
|
%if 0%{?build_tests}
|
||||||
|
make sub-tests %{?_smp_mflags} -k ||:
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
make install INSTALL_ROOT=%{buildroot}
|
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
|
||||||
|
|
||||||
|
|
||||||
## .prl/.la file love
|
## .prl/.la file love
|
||||||
# nuke .prl reference(s) to %%buildroot, excessive (.la-like) libs
|
# nuke .prl reference(s) to %%buildroot, excessive (.la-like) libs
|
||||||
pushd %{buildroot}%{_qt5_libdir}
|
pushd %{buildroot}%{_qt5_libdir}
|
||||||
@ -99,9 +128,19 @@ rm -f %{buildroot}%{_qt5_libdir}/libQt5*.la
|
|||||||
%{_qt5_libdir}/libQt5QuickControls2.prl
|
%{_qt5_libdir}/libQt5QuickControls2.prl
|
||||||
%{_qt5_libdir}/qt5/mkspecs/modules/*
|
%{_qt5_libdir}/qt5/mkspecs/modules/*
|
||||||
%{_libdir}/cmake/Qt5QuickControls2/
|
%{_libdir}/cmake/Qt5QuickControls2/
|
||||||
|
%{_libdir}/cmake/Qt5QuickTemplates2/
|
||||||
|
|
||||||
|
%if 0%{?build_tests}
|
||||||
|
%files tests
|
||||||
|
%{_qt5_libdir}/qt5/tests
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Nov 18 2019 Jan Grulich <jgrulich@redhat.com> - 5.12.5-1
|
||||||
|
- 5.12.5
|
||||||
|
Resolves: bz#1733146
|
||||||
|
|
||||||
* Mon Dec 10 2018 Jan Grulich <jgrulich@redhat.com> - 5.11.1-2
|
* Mon Dec 10 2018 Jan Grulich <jgrulich@redhat.com> - 5.11.1-2
|
||||||
- Rebuild to fix CET notes
|
- Rebuild to fix CET notes
|
||||||
Resolves: bz#1657248
|
Resolves: bz#1657248
|
||||||
|
Loading…
Reference in New Issue
Block a user