From 4137815b6b4879080b7dec11dbf15956410250ab Mon Sep 17 00:00:00 2001 From: Jan Grulich Date: Thu, 28 Mar 2024 16:34:31 +0100 Subject: [PATCH] Add -tests subpackage with unit tests that can run in CI Resolves: RHEL-28239 --- qt6-qtscxml.spec | 33 +++++++++++++++++++++++++++++++-- 1 file changed, 31 insertions(+), 2 deletions(-) diff --git a/qt6-qtscxml.spec b/qt6-qtscxml.spec index 4ca5182..0aad2b4 100644 --- a/qt6-qtscxml.spec +++ b/qt6-qtscxml.spec @@ -7,11 +7,13 @@ %endif %global examples 1 +# FIXME: needs bootstrap +%global build_tests 1 Summary: Qt6 - ScXml component Name: qt6-%{qt_module} Version: 6.6.1 -Release: 3%{?dist} +Release: 4%{?dist} License: LGPL-3.0-only OR GPL-3.0-only WITH Qt-GPL-exception-1.0 Url: http://www.qt.io @@ -57,18 +59,37 @@ Requires: %{name}%{?_isa} = %{version}-%{release} %{summary}. %endif +%if 0%{?build_tests} +%package tests +Summary: Unit tests for %{name} +BuildRequires: qt6-qtscxml-devel >= %{version} +Requires: %{name}%{?_isa} = %{version}-%{release} +%description tests +%{summary}. +%endif + %prep %autosetup -n %{qt_module}-everywhere-src-%{qt_version}%{?unstable:-%{prerelease}} -p1 %build -%cmake_qt6 -DQT_BUILD_EXAMPLES:BOOL=%{?examples:ON}%{!?examples:OFF} +%cmake_qt6 \ + -DQT_BUILD_EXAMPLES:BOOL=%{?examples:ON}%{!?examples:OFF} \ + -DQT_BUILD_TESTS=%{?build_tests:ON}%{!?build_tests:OFF} %cmake_build %install +%if 0%{?build_tests} +%qt6_dont_autoinstall_tests +%endif + %cmake_install +%if 0%{?build_tests} +%qt6_install_tests +%endif + %files %license LICENSES/* @@ -113,8 +134,16 @@ Requires: %{name}%{?_isa} = %{version}-%{release} %{_qt6_examplesdir}/ %endif +%if 0%{?build_tests} +%files tests +%{_qt6_archdatadir}/tests +%endif %changelog +* Thu Mar 28 2024 Jan Grulich - 6.6.1-4 +- Add -tests subpackage with unit tests that can run in CI + Resolves: RHEL-28239 + * Fri Jan 26 2024 Fedora Release Engineering - 6.6.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild