Compare commits

...

No commits in common. "c8" and "c9s" have entirely different histories.
c8 ... c9s

7 changed files with 135 additions and 28 deletions

16
.gitignore vendored
View File

@ -1 +1,15 @@
SOURCES/qtxmlpatterns-everywhere-opensource-src-5.15.3.tar.xz
/qtxmlpatterns-everywhere-src-5.10.1.tar.xz
/qtxmlpatterns-everywhere-src-5.11.0.tar.xz
/qtxmlpatterns-everywhere-src-5.11.1.tar.xz
/qtxmlpatterns-everywhere-src-5.11.2.tar.xz
/qtxmlpatterns-everywhere-src-5.11.3.tar.xz
/qtxmlpatterns-everywhere-src-5.12.1.tar.xz
/qtxmlpatterns-everywhere-src-5.12.3.tar.xz
/qtxmlpatterns-everywhere-src-5.12.4.tar.xz
/qtxmlpatterns-everywhere-src-5.12.5.tar.xz
/qtxmlpatterns-everywhere-src-5.13.2.tar.xz
/qtxmlpatterns-everywhere-src-5.14.2.tar.xz
/qtxmlpatterns-everywhere-src-5.15.1.tar.xz
/qtxmlpatterns-everywhere-src-5.15.2.tar.xz
/qtxmlpatterns-everywhere-opensource-src-5.15.3.tar.xz
/qtxmlpatterns-everywhere-opensource-src-5.15.9.tar.xz

View File

@ -1 +1 @@
10ef8e6e9286c30c27708eff4f226d0959ac4b0a SOURCES/qtxmlpatterns-everywhere-opensource-src-5.15.3.tar.xz
dce31bbcd152c2f107a0a41f514b98765cca4011 qtxmlpatterns-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

@ -2,21 +2,31 @@
%global build_tests 1
#global bootstrap 1
Summary: Qt5 - QtXmlPatterns component
Name: qt5-%{qt_module}
Version: 5.15.3
Release: 1%{?dist}
Version: 5.15.9
Release: 2%{?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-opensource-src-%{version}.tar.xz
BuildRequires: make
BuildRequires: qt5-qtbase-devel >= %{version}
BuildRequires: qt5-qtbase-private-devel
#libQt5Core.so.5(Qt_5_PRIVATE_API)(64bit)
%{?_qt5:Requires: %{_qt5}%{?_isa} = %{_qt5_version}}
%if 0%{?bootstrap}
Obsoletes: %{name}-examples < %{version}-%{release}
%global no_examples CONFIG-=compile_examples
%else
BuildRequires: qt5-qtdeclarative-devel
%global qml 1
%endif
%description
The Qt XML Patterns module provides support for XPath, XQuery, XSLT,
@ -49,28 +59,20 @@ Requires: %{name}%{?_isa} = %{version}-%{release}
%build
%{qmake_qt5}
%{qmake_qt5} \
%{?no_examples}
%make_build
%if 0%{?build_tests}
make sub-tests %{?_smp_mflags} -k ||:
%qt5_build_tests
%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
%qt5_install_tests
%endif
# put non-conflicting binaries with -qt5 postfix in {_bindir}
@ -107,7 +109,10 @@ popd
%files
%license LICENSE.LGPL*
%{_qt5_libdir}/libQt5XmlPatterns.so.5*
# consider subpkg to make boostrapping easier? -- rex
%if 0%{?qml}
%{_qt5_archdatadir}/qml/QtQuick/XmlListModel/
%endif
%files devel
%{_qt5_bindir}/xmlpatterns*
@ -119,8 +124,10 @@ popd
%{_qt5_libdir}/pkgconfig/Qt5*.pc
%{_qt5_archdatadir}/mkspecs/modules/*.pri
%if !0%{?no_examples:1}
%files examples
%{_qt5_examplesdir}/
%endif
%if 0%{?build_tests}
%files tests
@ -128,29 +135,100 @@ popd
%endif
%changelog
* Tue Apr 25 2023 Jan Grulich <jgrulich@redhat.com> - 5.15.9-2
- Rebuild (elfutils#2188064)
Resolves: bz#2175751
* Tue Apr 18 2023 Jan Grulich <jgrulich@redhat.com> - 5.15.9-1
- 5.15.9
Resolves: bz#2175751
* Fri Mar 25 2022 Jan Grulich <jgrulich@redhat.com> - 5.15.3-1
- 5.15.3
Resolves: bz#2061412
Resolves: bz#2061376
* Wed Apr 28 2021 Jan Grulich <jgrulich@redhat.com> - 5.15.2-2
- Rebuild (binutils)
Resolves: bz#1930061
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 5.15.2-7
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
Related: rhbz#1991688
* Sun Apr 04 2021 Jan Grulich <jgrulich@redhat.com> - 5.15.2-1
* Wed Jun 09 2021 Jan Grulich <jgrulich@redhat.com> - 5.15.2-6
- Add gating tests
Resolves: bz#1968480
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 5.15.2-5
- 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-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
* Thu Dec 10 13:34:55 CET 2020 Jan Grulich <jgrulich@redhat.com> - 5.15.2-3
- Bump for eln build
* Tue Nov 24 07:54:17 CET 2020 Jan Grulich <jgrulich@redhat.com> - 5.15.2-2
- Rebuild for qtbase with -no-reduce-relocations option
* Fri Nov 20 09:30:48 CET 2020 Jan Grulich <jgrulich@redhat.com> - 5.15.2-1
- 5.15.2
Resolves: bz#1930061
* Thu Nov 07 2019 Jan Grulich <jgrulich@redhat.com> - 5.12.5-1
* Thu Sep 10 2020 Jan Grulich <jgrulich@redhat.com> - 5.15.1-1
- 5.15.1
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 5.14.2-3
- Second attempt - Rebuilt for
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 5.14.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Sat Apr 04 2020 Rex Dieter <rdieter@fedoraproject.org> - 5.14.2-1
- 5.14.2
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 5.13.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
* Mon Dec 09 2019 Jan Grulich <jgrulich@redhat.com> - 5.13.2-1
- 5.13.2
* Tue Sep 24 2019 Jan Grulich <jgrulich@redhat.com> - 5.12.5-1
- 5.12.5
Resolves: bz#1733157
* Mon Dec 10 2018 Jan Grulich <jgrulich@redhat.com> - 5.11.1-2
- Rebuild to fix CET notes
Resolves: bz#1657227
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 5.12.4-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
* Thu Jun 28 2018 Jan Grulich <jgrulich@redhat.com> - 5.11.1-1
* Fri Jun 14 2019 Jan Grulich <jgrulich@redhat.com> - 5.12.4-1
- 5.12.4
* Tue Jun 04 2019 Jan Grulich <jgrulich@redhat.com> - 5.12.3-1
- 5.12.3
* Tue Mar 05 2019 Rex Dieter <rdieter@fedoraproject.org> - 5.12.1-2
- de-bootstrap (#1685456)
* Mon Feb 04 2019 Rex Dieter <rdieter@fedoraproject.org> - 5.12.1-1
- 5.12.1
- bootstrap support
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 5.11.3-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
* Fri Dec 07 2018 Rex Dieter <rdieter@fedoraproject.org> - 5.11.3-1
- 5.11.3
* Fri Sep 21 2018 Jan Grulich <jgrulich@redhat.com> - 5.11.2-1
- 5.11.2
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 5.11.1-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
* Sat Jun 30 2018 Rex Dieter <rdieter@fedoraproject.org> - 5.11.1-2
- rebuild
* Tue Jun 19 2018 Rex Dieter <rdieter@fedoraproject.org> - 5.11.1-1
- 5.11.1
* Wed May 23 2018 Rex Dieter <rdieter@fedoraproject.org> - 5.11.0-1
- 5.11.0
* Tue Feb 13 2018 Jan Grulich <jgrulich@redhat.com> - 5.10.1-1
- 5.10.1

7
rpminspect.yaml Normal file
View File

@ -0,0 +1,7 @@
---
inspections:
# Since there won't be any other Qt updates (except backports) and not-valid
# xml files are only in the tests, we can completely skip this test instead of
# specifying all the files that should be ignored.
xml: off

1
sources Normal file
View File

@ -0,0 +1 @@
SHA512 (qtxmlpatterns-everywhere-opensource-src-5.15.9.tar.xz) = 60cdee139c04dbd2c381f65fcd579af0b2b6f40234870a782c8b7342c8d0caf92fef94acb959260e4ef615b2c60b5527cd44b8efa85f04ceb4a3659a47a0ee89

1
sources.basename Normal file
View File

@ -0,0 +1 @@
qtxmlpatterns-everywhere-src