Compare commits

...

10 Commits

Author SHA1 Message Date
Jan Grulich 2a6cf37c1f Rebuild (elfutils#2188064) 2023-05-18 19:45:29 +00:00
Jan Grulich 3101aa898c 5.15.9
Resolves: bz#2175730
2023-04-18 09:49:44 +02:00
Jan Grulich da7a35c092 5.15.3
side-tag: c9s-build-side-453

Resolves: bz#2061357
2022-03-28 10:25:54 +02:00
Mohan Boddu fd1dc52b94 Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
Related: rhbz#1991688
Signed-off-by: Mohan Boddu <mboddu@redhat.com>
2021-08-10 00:30:40 +00:00
Tomas Pelka e50ca93127 enabling gating for el9 2021-06-16 13:44:56 +02:00
Jan Grulich fa23bfc3a9 Add gating tests
Resolves: bz#1968461
2021-06-09 14:57:50 +02:00
Mohan Boddu b03fa00325 - Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
Signed-off-by: Mohan Boddu <mboddu@redhat.com>
2021-04-16 05:02:41 +00:00
DistroBaker 784d16f661 Merged update from upstream sources
This is an automated DistroBaker update from upstream sources.
If you do not know what this is about or would like to opt out,
contact the OSCI team.

Source: https://src.fedoraproject.org/rpms/qt5-qtconnectivity.git#6ac81e3ac685a6c6f71a036951b7ea3bc4e66361
2021-02-04 14:05:06 +00:00
DistroBaker cc4a5b079d Merged update from upstream sources
This is an automated DistroBaker update from upstream sources.
If you do not know what this is about or would like to opt out,
contact the OSCI team.

Source: https://src.fedoraproject.org/rpms/qt5-qtconnectivity.git#3ca66668938788ae7fe840356e17df439c61c33a
2020-12-10 14:59:02 +00:00
DistroBaker 94aba4f053 Merged update from upstream sources
This is an automated DistroBaker update from upstream sources.
If you do not know what this is about or would like to opt out,
contact the OSCI team.

Source: https://src.fedoraproject.org/rpms/qt5-qtconnectivity.git#3ca66668938788ae7fe840356e17df439c61c33a
2020-11-24 07:41:49 +00:00
5 changed files with 64 additions and 4 deletions

2
.gitignore vendored
View File

@ -11,3 +11,5 @@
/qtconnectivity-everywhere-src-5.14.2.tar.xz
/qtconnectivity-everywhere-src-5.15.1.tar.xz
/qtconnectivity-everywhere-src-5.15.2.tar.xz
/qtconnectivity-everywhere-opensource-src-5.15.3.tar.xz
/qtconnectivity-everywhere-opensource-src-5.15.9.tar.xz

View File

@ -0,0 +1 @@
9f56ba665b315a8495d6037d80b6892c47ef6b8f qtconnectivity-everywhere-opensource-src-5.15.9.tar.xz

6
gating.yaml Normal file
View File

@ -0,0 +1,6 @@
--- !Policy
product_versions:
- rhel-9
decision_context: osci_compose_gate
rules:
- !PassingTestCaseRule {test_case_name: desktop-qe.desktop-ci.tier1-gating.functional}

View File

@ -1,20 +1,23 @@
%global qt_module qtconnectivity
%global build_tests 1
Summary: Qt5 - Connectivity components
Name: qt5-%{qt_module}
Version: 5.15.2
Release: 1%{?dist}
Version: 5.15.9
Release: 2%{?dist}
# See LICENSE.GPL3, respectively, for exception details
License: LGPLv2 with exceptions or GPLv3 with exceptions
Url: http://qt.io
%global majmin %(echo %{version} | cut -d. -f1-2)
Source0: https://download.qt.io/official_releases/qt/%{majmin}/%{version}/submodules/%{qt_module}-everywhere-src-%{version}.tar.xz
Source0: https://download.qt.io/official_releases/qt/%{majmin}/%{version}/submodules/%{qt_module}-everywhere-opensource-src-%{version}.tar.xz
Patch0: %{name}-gcc11.patch
# filter qml provides
%global __provides_exclude_from ^%{_qt5_archdatadir}/qml/.*\\.so$
BuildRequires: make
BuildRequires: qt5-qtbase-devel >= %{version}
BuildRequires: qt5-qtbase-private-devel >= %{version}
%{?_qt5:Requires: %{_qt5}%{?_isa} = %{_qt5_version}}
@ -37,6 +40,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}
@ -48,10 +59,17 @@ Requires: %{name}%{?_isa} = %{version}-%{release}
%make_build
%if 0%{?build_tests}
%qt5_build_tests
%endif
%install
make install INSTALL_ROOT=%{buildroot}
%if 0%{?build_tests}
%qt5_install_tests
%endif
%if 0%{?docs}
make install_docs INSTALL_ROOT=%{buildroot}
%endif
@ -111,8 +129,41 @@ popd
%files examples
%{_qt5_examplesdir}/
%if 0%{?build_tests}
%files tests
%{_qt5_libdir}/qt5/tests
%endif
%changelog
* Tue Apr 25 2023 Jan Grulich <jgrulich@redhat.com> - 5.15.9-2
- Rebuild (elfutils#2188064)
Resolves: bz#2175730
* Tue Apr 18 2023 Jan Grulich <jgrulich@redhat.com> - 5.15.9-1
- 5.15.9
Resolves: bz#2175730
* Mon Mar 28 2022 Jan Grulich <jgrulich@redhat.com> - 5.15.3-1
- 5.15.3
Resolves: bz#2061357
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 5.15.2-6
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
Related: rhbz#1991688
* Wed Jun 09 2021 Jan Grulich <jgrulich@redhat.com> - 5.15.2-5
- Add gating tests
Resolves: bz#1968461
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 5.15.2-4
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 5.15.2-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
* Tue Nov 24 07:54:13 CET 2020 Jan Grulich <jgrulich@redhat.com> - 5.15.2-2
- Rebuild for qtbase with -no-reduce-relocations option
* Fri Nov 20 09:30:45 CET 2020 Jan Grulich <jgrulich@redhat.com> - 5.15.2-1
- 5.15.2

View File

@ -1 +1 @@
SHA512 (qtconnectivity-everywhere-src-5.15.2.tar.xz) = a934dcdd28645ba23dd429215643694d9a14449a4c3e1a6154a9a19cb3210f3d80978b46aefff2b110db533fa1816450f2f73a27d80df5330a92799e4cca1b9c
SHA512 (qtconnectivity-everywhere-opensource-src-5.15.9.tar.xz) = e47621e95aa4ca8438787c4333fdaec6aef828372eb73029836256c03eb6c0faed41f89ab928d28cf1113ca53c8a94d69d07bd1dc06fa90272f0286244b49fde