Compare commits

...

10 Commits

Author SHA1 Message Date
Jan Grulich 8fdb6b6347 5.15.9 2023-05-18 19:47:15 +00:00
Jan Grulich 58bb5e10f5 5.15.3
side-tag: c9s-build-side-453

Resolves: bz#2061368
2022-03-30 09:25:32 +02:00
Mohan Boddu 577ecdff58 Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
Related: rhbz#1991688
Signed-off-by: Mohan Boddu <mboddu@redhat.com>
2021-08-10 00:32:41 +00:00
Tomas Pelka bdff284795 enabling gating for el9 2021-06-16 13:46:06 +02:00
Jan Grulich b348b64e2f Add gating tests
Resolves: bz#1968473
2021-06-10 14:29:23 +02:00
Mohan Boddu 0e324d2bd9 - Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
Signed-off-by: Mohan Boddu <mboddu@redhat.com>
2021-04-16 05:04:43 +00:00
DistroBaker 5a19a56fa7 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-qtserialport.git#1b9fba43e50ff6db0acaabf4ab8e3b176ef6479f
2021-02-04 14:07:18 +00:00
DistroBaker 32b8eca280 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-qtserialport.git#70c75dd616b1dd19a8e93e3d1b2c0ac27bd3afb6
2020-11-24 07:15:16 +00:00
DistroBaker bd4365226c 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-qtserialport.git#7b0bcfcc3c77bd0b0f895448b4985c22698a779c
2020-11-24 04:14:39 +01:00
DistroBaker 35df7c091c 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-qtserialport.git#7b0bcfcc3c77bd0b0f895448b4985c22698a779c
2020-11-23 14:23:25 +00:00
5 changed files with 63 additions and 3 deletions

3
.gitignore vendored
View File

@ -10,3 +10,6 @@
/qtserialport-everywhere-src-5.13.2.tar.xz
/qtserialport-everywhere-src-5.14.2.tar.xz
/qtserialport-everywhere-src-5.15.1.tar.xz
/qtserialport-everywhere-src-5.15.2.tar.xz
/qtserialport-everywhere-opensource-src-5.15.3.tar.xz
/qtserialport-everywhere-opensource-src-5.15.9.tar.xz

View File

@ -0,0 +1 @@
5c807249bc210bf496c60f9c63deb0ba4dac5e4a qtserialport-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,16 +1,19 @@
%global qt_module qtserialport
%global build_tests 1
Summary: Qt5 - SerialPort component
Name: qt5-%{qt_module}
Version: 5.15.1
Version: 5.15.9
Release: 1%{?dist}
# See LGPL_EXCEPTIONS.txt, LICENSE.GPL3, respectively, for exception details
License: LGPLv2 with exceptions or GPLv3 with exceptions
Url: http://www.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
BuildRequires: make
BuildRequires: qt5-qtbase-devel >= %{version}
BuildRequires: pkgconfig(libudev)
@ -34,6 +37,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}
@ -45,10 +56,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
## .prl/.la file love
# nuke .prl reference(s) to %%buildroot, excessive (.la-like) libs
pushd %{buildroot}%{_qt5_libdir}
@ -87,8 +105,40 @@ popd
%files examples
%{_qt5_examplesdir}/
%if 0%{?build_tests}
%files tests
%{_qt5_libdir}/qt5/tests
%endif
%changelog
* Tue Apr 18 2023 Jan Grulich <jgrulich@redhat.com> - 5.15.9-1
- 5.15.9
Resolves: bz#2175741
* Mon Mar 28 2022 Jan Grulich <jgrulich@redhat.com> - 5.15.3-1
- 5.15.3
Resolves: bz#2061368
* 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#1968473
* 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:15 CET 2020 Jan Grulich <jgrulich@redhat.com> - 5.15.2-2
- Rebuild for qtbase with -no-reduce-relocations option
* Fri Nov 20 09:30:47 CET 2020 Jan Grulich <jgrulich@redhat.com> - 5.15.2-1
- 5.15.2
* Thu Sep 10 2020 Jan Grulich <jgrulich@redhat.com> - 5.15.1-1
- 5.15.1

View File

@ -1 +1 @@
SHA512 (qtserialport-everywhere-src-5.15.1.tar.xz) = 5d2e9742d1c5f784375b3d0bf05e227abf1f358f4ba60e66044378b60ac256dda2ab5ecced07c68ca8d93fe894617050821654200e1faa12f4cca112a4fbd2a4
SHA512 (qtserialport-everywhere-opensource-src-5.15.9.tar.xz) = e22d20a0b20d0dc8c6bce3dcf1137b2cce28e370df9d0250f2a777dd73153d0156b0c6cfe88bc4257cdc209fbf640c8a06fada147d40ee638deb716148812da3