From 7fee4beb638c4f9d998296086c06cfab3d30d026 Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Tue, 26 Nov 2024 19:04:40 +0300 Subject: [PATCH] import qt6-6.7.1-4.el10 --- .gitignore | 0 .qt6.metadata | 0 SOURCES/macros.qt6 | 92 ++++++++++ SOURCES/macros.qt6-srpm | 9 + SOURCES/qmake-qt6.sh | 10 ++ SOURCES/qt6qml.attr | 2 + SOURCES/qt6qml.prov | 6 + SPECS/qt6.spec | 361 ++++++++++++++++++++++++++++++++++++++++ 8 files changed, 480 insertions(+) create mode 100644 .gitignore create mode 100644 .qt6.metadata create mode 100644 SOURCES/macros.qt6 create mode 100644 SOURCES/macros.qt6-srpm create mode 100755 SOURCES/qmake-qt6.sh create mode 100644 SOURCES/qt6qml.attr create mode 100755 SOURCES/qt6qml.prov create mode 100644 SPECS/qt6.spec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/.qt6.metadata b/.qt6.metadata new file mode 100644 index 0000000..e69de29 diff --git a/SOURCES/macros.qt6 b/SOURCES/macros.qt6 new file mode 100644 index 0000000..1ce51b8 --- /dev/null +++ b/SOURCES/macros.qt6 @@ -0,0 +1,92 @@ +# SPDX-License-Identifier: MIT + +%_qt6_build_type RelWithDebInfo +%_qt6_build_tool ninja + +%_qt6_prefix %{_prefix} +%_qt6_archdatadir %{_libdir}/qt6 +%_qt6_bindir %{_libdir}/qt6/bin +%_qt6_datadir %{_datadir}/qt6 +%_qt6_docdir %{_docdir}/qt6 +%_qt6_examplesdir %{_qt6_archdatadir}/examples +%_qt6_headerdir %{_includedir}/qt6 +%_qt6_includedir %{_includedir}/qt6 +%_qt6_importdir %{_qt6_archdatadir}/imports +%_qt6_libdir %{_libdir} +%_qt6_libexecdir %{_qt6_archdatadir}/libexec +%_qt6_mkspecsdir %{_qt6_archdatadir}/mkspecs +%_qt6_plugindir %{_qt6_archdatadir}/plugins +%_qt6_qmldir %{_qt6_archdatadir}/qml +%_qt6_qmake @@QMAKE@@ +%_qt6_settingsdir %{_sysconfdir}/xdg +%_qt6_sysconfdir %{_qt6_settingsdir} +%_qt6_translationdir %{_datadir}/qt6/translations + +%_qt6_cflags %{nil}@@QT6_CFLAGS@@ +%_qt6_cxxflags %{nil}@@QT6_CXXFLAGS@@ +%_qt6_ldflags %{nil}%{?__global_ldflags} @@QT6_RPM_LD_FLAGS@@ +%_qt6_optflags %{optflags} @@QT6_RPM_OPT_FLAGS@@ + +%_qt6_qmake_flags \\\ + QMAKE_CFLAGS_DEBUG="${CFLAGS:-%{_qt6_optflags} %{?_qt6_cflags}}" \\\ + QMAKE_CFLAGS_RELEASE="${CFLAGS:-%{_qt6_optflags} %{?_qt6_cflags}}" \\\ + QMAKE_CXXFLAGS_DEBUG="${CXXFLAGS:-%{_qt6_optflags} %{?_qt6_cxxflags}}" \\\ + QMAKE_CXXFLAGS_RELEASE="${CXXFLAGS:-%{_qt6_optflags} %{?_qt6_cxxflags}}" \\\ + QMAKE_LFLAGS_DEBUG="${LDFLAGS:-%{_qt6_ldflags}}" \\\ + QMAKE_LFLAGS_RELEASE="${LDFLAGS:-%{_qt6_ldflags}}" \\\ + QMAKE_STRIP= + +%qmake_qt6 %{_qt6_qmake} %{?_qt6_qmake_flags} + +%qmake_qt6_wrapper @@QMAKE_QT6_WRAPPER@@ + +%cmake_qt6 \ + %cmake -DCMAKE_BUILD_TYPE=%{_qt6_build_type} \\\ + -DCMAKE_INSTALL_PREFIX=%{_qt6_prefix} \\\ +%if "%_qt6_build_tool" == "ninja" \ + -GNinja \\\ +%else \ + -G"Unix Makefiles" \\\ +%endif \ + -DCMAKE_INSTALL_PREFIX=%{_qt6_prefix} \\\ + -DINSTALL_ARCHDATADIR=%{_qt6_archdatadir} \\\ + -DINSTALL_BINDIR=%{_qt6_bindir} \\\ + -DINSTALL_LIBDIR=%{_qt6_libdir} \\\ + -DINSTALL_LIBEXECDIR=%{_qt6_libexecdir} \\\ + -DINSTALL_DATADIR=%{_qt6_datadir} \\\ + -DINSTALL_DOCDIR=%{_qt6_docdir} \\\ + -DINSTALL_INCLUDEDIR=%{_qt6_headerdir} \\\ + -DINSTALL_EXAMPLESDIR=%{_qt6_examplesdir} \\\ + -DINSTALL_MKSPECSDIR=%{_qt6_mkspecsdir} \\\ + -DINSTALL_PLUGINSDIR=%{_qt6_plugindir} \\\ + -DINSTALL_QMLDIR=%{_qt6_qmldir} \\\ + -DINSTALL_SYSCONFDIR=%{_qt6_sysconfdir} \\\ + -DINSTALL_TRANSLATIONSDIR=%{_qt6_translationdir} \\\ + -DQT_DISABLE_RPATH=TRUE + +%qt6_fix_tests \ + pushd tests/auto \ + find . -type f -name 'CMakeLists.txt' \\\ + -exec sed -i 's|\\\(.*DIR="*\\\)${CMAKE_CURRENT_SOURCE_DIR}/\\\(.*\\\)|\\\1\\\2|' {} \\\; \\\ + -exec sed -i 's|\\\(.*DIR="*\\\)${CMAKE_CURRENT_SOURCE_DIR}\\\(.*\\\)|\\\1.\\\2|' {} \\\; \ + find . -type f \\\( -name '*.sh' -o -name '*.py' \\\) \\\ + -exec sed -i 's|/usr/bin/python$|/usr/bin/python3|' {} \\\; \\\ + -exec sed -i 's|/usr/bin/env\\\ python3*|/usr/bin/python3|' {} \\\; \\\ + -exec sed -i 's|^/bin/sh$|!#/bin/sh|' {} \\\; \ + popd \ + +%qt6_dont_autoinstall_tests \ + sed -i 's|include(".*tests/cmake_install.cmake")||' %_vpath_srcdir/%_vpath_builddir/cmake_install.cmake \ + +%qt6_install_tests \ + mkdir -p %{buildroot}%{_qt6_archdatadir}/tests \ + pushd tests/auto \ + find . -type f \\\ + ! -path '*/.*' \\\ + -exec cp -r --parents {} %{buildroot}%{_qt6_archdatadir}/tests \\\; \ \ + popd \ + pushd %_vpath_srcdir/%_vpath_builddir/tests/auto \ + find . -type f -executable \\\ + -exec chrpath --delete {} \\\; \\\ + -exec cp -r --parents {} %{buildroot}%{_qt6_archdatadir}/tests \\\; \ + popd \ diff --git a/SOURCES/macros.qt6-srpm b/SOURCES/macros.qt6-srpm new file mode 100644 index 0000000..cab54c6 --- /dev/null +++ b/SOURCES/macros.qt6-srpm @@ -0,0 +1,9 @@ + +# # the architectures theoretically supported by the version of V8 used (#1298011) +# # You may need some minor patching to build on one of the secondary +# # architectures, e.g., to add to the Qt -> Chromium -> V8 arch translations. +# # If you cannot get this package to build on your secondary architecure, please: +# # * remove your architecture from this list AND +# # * put #1298011 onto your ExcludeArch tracker. +%qt6_qtwebengine_arches x86_64 aarch64 + diff --git a/SOURCES/qmake-qt6.sh b/SOURCES/qmake-qt6.sh new file mode 100755 index 0000000..beb29fe --- /dev/null +++ b/SOURCES/qmake-qt6.sh @@ -0,0 +1,10 @@ +#!/bin/sh + +# An attempt at providing a qmake wrapper for projects that +# lack native qmake support (ie, qmake is run by buildsystem +# instead of developer or fedora packager). + +QMAKE="$(rpm --eval %{_qt6_qmake})" +QMAKE_FLAGS="$(rpm --eval %{?_qt6_qmake_flags})" + +eval $QMAKE $QMAKE_FLAGS $@ diff --git a/SOURCES/qt6qml.attr b/SOURCES/qt6qml.attr new file mode 100644 index 0000000..567c298 --- /dev/null +++ b/SOURCES/qt6qml.attr @@ -0,0 +1,2 @@ +%__qt6qml_path ^%{_qt6_qmldir}(/[^/]+)+/qmldir$ +%__qt6qml_provides %{_rpmconfigdir}/qt6qml.prov diff --git a/SOURCES/qt6qml.prov b/SOURCES/qt6qml.prov new file mode 100755 index 0000000..cce4b50 --- /dev/null +++ b/SOURCES/qt6qml.prov @@ -0,0 +1,6 @@ +#! /bin/sh + +grep '/qt6/qml/.*/qmldir$' | +while read fn; do + sed -ne "s/^module \(.*\)/qt6qml(\1)/p" "${fn}" +done diff --git a/SPECS/qt6.spec b/SPECS/qt6.spec new file mode 100644 index 0000000..33b0864 --- /dev/null +++ b/SPECS/qt6.spec @@ -0,0 +1,361 @@ + +Name: qt6 +# This version MUST remain in sync with Qt6 versions! +Version: 6.7.1 +Release: 4%{?dist} +Summary: Qt6 meta package +License: GPL-3.0-only +URL: https://getfedora.org/ +Source0: macros.qt6 +Source1: macros.qt6-srpm +Source2: qmake-qt6.sh +Source3: qt6qml.attr +Source4: qt6qml.prov +BuildArch: noarch + +Requires: qt6-qt3d +Requires: qt6-qt5compat +Requires: qt6-qtbase +Requires: qt6-qtbase-gui +Requires: qt6-qtbase-mysql +Requires: qt6-qtbase-postgresql +Requires: qt6-qtcharts +Requires: qt6-qtconnectivity +Requires: qt6-qtdatavis3d +Requires: qt6-qtdeclarative +Requires: qt6-qtdoc +Requires: qt6-qtimageformats +Requires: qt6-qtlocation +Requires: qt6-qtlottie +Requires: qt6-qtmultimedia +Requires: qt6-qtnetworkauth +Requires: qt6-qtquick3d +Requires: qt6-qtquicktimeline +Requires: qt6-qtremoteobjects +Requires: qt6-qtscxml +Requires: qt6-qtsensors +Requires: qt6-qtserialbus +Requires: qt6-qtserialport +Requires: qt6-qtshadertools +Requires: qt6-qtsvg +Requires: qt6-qttools +Requires: qt6-qtvirtualkeyboard +Requires: qt6-qtwayland +Requires: qt6-qtwebchannel +Requires: qt6-qtwebsockets + + +%description +%{summary}. + +%package devel +Summary: Qt6 meta devel package +Requires: qt6-designer +Requires: qt6-linguist +Requires: qt6-qdoc +Requires: qt6-qhelpgenerator +Requires: qt6-qt3d-devel +Requires: qt6-qt5compat-devel +Requires: qt6-qtbase-devel +Requires: qt6-qtbase-static +Requires: qt6-qtcharts-devel +Requires: qt6-qtconnectivity-devel +Requires: qt6-qtdatavis3d-devel +Requires: qt6-qtdeclarative-devel +Requires: qt6-qtdeclarative-static +Requires: qt6-qtimageformats-devel +Requires: qt6-qtlocation-devel +Requires: qt6-qtlottie-devel +Requires: qt6-qtmultimedia-devel +Requires: qt6-qtnetworkauth-devel +Requires: qt6-qtquick3d-devel +Requires: qt6-qtquicktimeline-devel +Requires: qt6-qtremoteobjects-devel +Requires: qt6-qtscxml-devel +Requires: qt6-qtsensors-devel +Requires: qt6-qtserialbus-devel +Requires: qt6-qtserialport-devel +Requires: qt6-qtshadertools-devel +Requires: qt6-qtsvg-devel +Requires: qt6-qttools-devel +Requires: qt6-qttools-static +Requires: qt6-qtvirtualkeyboard-devel +Requires: qt6-qtwayland-devel +Requires: qt6-qtwebchannel-devel +Requires: qt6-qtwebsockets-devel +Requires: qt6-rpm-macros + +%description devel +%{summary}. + +%package rpm-macros +Summary: RPM macros for building Qt6 and KDE Frameworks 6 packages +Requires: cmake >= 3 +Requires: gcc-c++ +Requires: chrpath +BuildArch: noarch +%description rpm-macros +%{summary}. + +%package srpm-macros +Summary: RPM macros for source Qt6 packages +BuildArch: noarch +%description srpm-macros +%{summary}. + +%package filesystem +Summary: Filesystem for Qt6 packages +%description filesystem +Filesystem for Qt 6 packages. + +%install +# See macros.qt6 where the directories are specified +mkdir -p %{buildroot}%{_prefix}/{lib,%{_lib}}/qt6 +mkdir -p %{buildroot}%{_prefix}/{lib,%{_lib}}/qt6/bin +mkdir -p %{buildroot}%{_prefix}/{lib,%{_lib}}/qt6/cmake +mkdir -p %{buildroot}%{_prefix}/{lib,%{_lib}}/qt6/examples +mkdir -p %{buildroot}%{_prefix}/{lib,%{_lib}}/qt6/imports +mkdir -p %{buildroot}%{_prefix}/{lib,%{_lib}}/qt6/metatypes +mkdir -p %{buildroot}%{_prefix}/{lib,%{_lib}}/qt6/modules +mkdir -p %{buildroot}%{_prefix}/{lib,%{_lib}}/qt6/libexec +mkdir -p %{buildroot}%{_prefix}/{lib,%{_lib}}/qt6/mkspecs +mkdir -p %{buildroot}%{_prefix}/{lib,%{_lib}}/qt6/plugins +mkdir -p %{buildroot}%{_prefix}/{lib,%{_lib}}/qt6/qml +mkdir -p %{buildroot}%{_datadir}/qt6 +mkdir -p %{buildroot}%{_docdir}/qt6 +mkdir -p %{buildroot}%{_includedir}/qt6 +mkdir -p %{buildroot}%{_datadir}/qt6/translations +install -Dpm644 %{SOURCE0} %{buildroot}%{_rpmmacrodir}/macros.qt6 +install -Dpm644 %{SOURCE1} %{buildroot}%{_rpmmacrodir}/macros.qt6-srpm +install -Dpm755 %{SOURCE2} %{buildroot}%{_bindir}/qmake-qt6.sh +install -Dpm644 %{SOURCE3} %{buildroot}%{_fileattrsdir}/qt6qml.attr +install -Dpm755 %{SOURCE4} %{buildroot}%{_rpmconfigdir}/qt6qml.prov +mkdir -p %{buildroot}%{_datadir}/qt6/wrappers +ln -s %{_bindir}/qmake-qt6.sh %{buildroot}%{_datadir}/qt6/wrappers/qmake-qt6 +ln -s %{_bindir}/qmake-qt6.sh %{buildroot}%{_datadir}/qt6/wrappers/qmake + +# substitute custom flags, and the path to binaries: binaries referenced from +# macros should not change if an application is built with a different prefix. +# %_libdir is left as /usr/%{_lib} (e.g.) so that the resulting macros are +# architecture independent, and don't hardcode /usr/lib or /usr/lib64. +sed -i \ + -e "s|@@QT6_CFLAGS@@|%{?qt6_cflags}|g" \ + -e "s|@@QT6_CXXFLAGS@@|%{?qt6_cxxflags}|g" \ + -e "s|@@QT6_RPM_LD_FLAGS@@|%{?qt6_rpm_ld_flags}|g" \ + -e "s|@@QT6_RPM_OPT_FLAGS@@|%{?qt6_rpm_opt_flags}|g" \ + -e "s|@@QMAKE@@|%{_prefix}/%%{_lib}/qt6/bin/qmake|g" \ + -e "s|@@QMAKE_QT6_WRAPPER@@|%{_bindir}/qmake-qt6.sh|g" \ + %{buildroot}%{_rpmconfigdir}/macros.d/macros.qt6 + +%if 0%{?metapackage} +mkdir -p %{buildroot}%{_docdir}/qt6 +mkdir -p %{buildroot}%{_docdir}/qt6-devel +echo "- Qt6 meta package" > %{buildroot}%{_docdir}/qt6/README +echo "- Qt6 devel meta package" > %{buildroot}%{_docdir}/qt6-devel/README + +%files +%{_docdir}/qt6/README + +%files devel +%{_docdir}/qt6-devel/README +%endif + +%files rpm-macros +%{_fileattrsdir}/qt6qml.attr +%{_rpmconfigdir}/qt6qml.prov +%{_rpmmacrodir}/macros.qt6 +%{_bindir}/qmake-qt6.sh +%{_datadir}/qt6/wrappers/ + +%files srpm-macros +%{_rpmmacrodir}/macros.qt6-srpm + +%files filesystem +%dir %{_prefix}/lib/qt6 +%dir %{_prefix}/%{_lib}/qt6 +%dir %{_prefix}/lib/qt6/bin +%dir %{_prefix}/%{_lib}/qt6/bin +%dir %{_prefix}/lib/qt6/cmake +%dir %{_prefix}/%{_lib}/qt6/cmake +%dir %{_prefix}/lib/qt6/examples +%dir %{_prefix}/%{_lib}/qt6/examples +%dir %{_prefix}/lib/qt6/imports +%dir %{_prefix}/%{_lib}/qt6/imports +%dir %{_prefix}/lib/qt6/metatypes +%dir %{_prefix}/%{_lib}/qt6/metatypes +%dir %{_prefix}/lib/qt6/modules +%dir %{_prefix}/%{_lib}/qt6/modules +%dir %{_prefix}/lib/qt6/libexec +%dir %{_prefix}/%{_lib}/qt6/libexec +%dir %{_prefix}/lib/qt6/mkspecs +%dir %{_prefix}/%{_lib}/qt6/mkspecs +%dir %{_prefix}/lib/qt6/plugins +%dir %{_prefix}/%{_lib}/qt6/plugins +%dir %{_prefix}/lib/qt6/qml +%dir %{_prefix}/%{_lib}/qt6/qml +%dir %{_datadir}/qt6 +%dir %{_docdir}/qt6 +%dir %{_includedir}/qt6 +%dir %{_datadir}/qt6/translations + +%changelog +* Mon Jul 22 2024 Jan Grulich - 6.7.1-4 +- Introduce qt6-filesystem package + Resolves: RHEL-50034 + +* Mon Jun 24 2024 Troy Dawson - 6.7.1-3 +- Bump release for June 2024 mass rebuild + +* Thu Jun 06 2024 Jan Grulich - 6.7.1-2 +- %qt6_install_tests: also install source files + Resolves: RHEL-35968 + +* Fri May 31 2024 Jan Grulich - 6.7.1-1 +- 6.7.1 + Resolves: RHEL-36430 + +* Wed Apr 17 2024 Jan Grulich - 6.7.0-1 +- 6.7.0 + Resolves: RHEL-32950 + Resolves: RHEL-27845 + +* Wed Apr 10 2024 Jan Grulich - 6.6.1-8 +- Adjust qt6_fix_tests macro to handle more cases + Resolves: RHEL-28239 + +* Tue Apr 09 2024 Jan Grulich - 6.6.1-7 +- Replace patchelf with chrpath + Resolves: RHEL-28239 + +* Wed Mar 27 2024 Jan Grulich - 6.6.1-6 +- Add macros to build and fix Qt unit tests + Resolves: RHEL-28239 + +* Fri Jan 26 2024 Fedora Release Engineering - 6.6.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Mon Jan 22 2024 Fedora Release Engineering - 6.6.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Wed Jan 03 2024 Alessandro Astone - 6.6.1-3 +- Make qml dependency generator script executable + +* Tue Dec 05 2023 Yaakov Selkowitz - 6.6.1-2 +- Auto-generate qt6qml() virtual provides + +* Mon Nov 27 2023 Jan Grulich - 6.6.1-1 +- 6.6.1 + +* Tue Oct 10 2023 Jan Grulich - 6.6.0-1 +- 6.6.0 + +* Sun Oct 01 2023 Justin Zobel - 6.5.3-1 +- Update to 6.5.3 + +* Tue Sep 05 2023 Yaakov Selkowitz - 6.5.2-3 +- Fix %%qt6_qtwebengine_arches + +* Fri Jul 21 2023 Fedora Release Engineering - 6.5.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Fri Jul 21 2023 Jan Grulich - 6.5.2-1 +- 6.5.2 + +* Mon May 22 2023 Jan Grulich - 6.5.1-1 +- 6.5.1 + +* Mon Apr 03 2023 Jan Grulich - 6.5.0-1 +- 6.5.0 + +* Thu Mar 23 2023 Jan Grulich - 6.4.2-4 +- 6.4.3 + +* Tue Jan 31 2023 Jan Grulich - 6.4.2-3 +- migrated to SPDX license + +* Fri Jan 20 2023 Fedora Release Engineering - 6.4.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + +* Mon Jan 16 2023 Jan Grulich - 6.4.2-1 +- 6.4.2 + +* Wed Nov 23 2022 Jan Grulich - 6.4.1-1 +- 6.4.1 + +* Mon Oct 31 2022 Jan Grulich - 6.4.0-1 +- 6.4.0 + +* Sat Jul 23 2022 Fedora Release Engineering - 6.3.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Wed Jul 13 2022 Jan Grulich - 6.3.1-1 +- 6.3.1 + +* Wed Apr 13 2022 Jan Grulich - 6.3.0-1 +- 6.3.0 + +* Mon Jan 31 2022 Jan Grulich - 6.2.3-1 +- 6.2.3 + +* Fri Jan 21 2022 Fedora Release Engineering - 6.2.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Tue Dec 14 2021 Jan Grulich - 6.2.2-1 +- 6.2.2 + +* Fri Oct 29 2021 Jan Grulich - 6.2.1-1 +- 6.2.1 + +* Fri Oct 29 2021 Jan Grulich - 6.2.0-2 +- 6.2.1 + +* Thu Sep 30 2021 Jan Grulich - 6.2.0-1 +- 6.2.0 + +* Mon Sep 27 2021 Jan Grulich - 6.2.0~rc2-1 +- 6.2.0 - rc2 + +* Tue Sep 21 2021 Jan Grulich - 6.2.0~rc-2 +- Drop qt6-qtquickcontrols2 from required packages + +* Sat Sep 18 2021 Jan Grulich - 6.2.0~rc-1 +- 6.2.0 - rc + +* Mon Sep 13 2021 Jan Grulich - 6.2.0~beta4-3 +- Drop qt6_exclude_arch macro + +* Mon Sep 13 2021 Jan Grulich - 6.2.0~beta4-2 +- Add qt6_exclude_arch macro + +* Fri Sep 10 2021 Jan Grulich - 6.2.0~beta4-1 +- 6.2.0 - beta4 + +* Mon Aug 30 2021 Jan Grulich - 6.2.0~beta3-1 +- 6.2.0 - beta3 + +* Thu Aug 12 2021 Jan Grulich - 6.1.2-1 +- 6.1.2 + +* Fri Jul 23 2021 Fedora Release Engineering - 6.1.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Mon Jun 07 2021 Jan Grulich - 6.1.1-1 +- 6.1.1 + +* Mon May 24 2021 Jan Grulich - 6.1.0-2 +- Fix path to libexecdir + +* Thu May 06 2021 Jan Grulich - 6.1.0-1 +- 6.1.0 + +* Mon Apr 05 2021 Jan Grulich - 6.0.3-1 +- 6.0.3 + +* Thu Feb 04 2021 Jan Grulich - 6.0.1-1 +- 6.0.1 + +* Wed Jan 27 2021 Fedora Release Engineering - 6.0.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Wed Jan 06 2021 Jan Grulich - 6.0.0-1 +- 6.0.0