From 2141f684e35c7c80faf94af1949f99a5ec2f0cb6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 27 May 2014 13:10:44 +0000 Subject: [PATCH 001/155] Initial setup of the repo --- .gitignore | 0 sources | 0 2 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 .gitignore create mode 100644 sources diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/sources b/sources new file mode 100644 index 0000000..e69de29 From 3e8d0f85f4e2f1c9388b25bca040beb441a98c31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Tue, 27 May 2014 17:43:47 +0200 Subject: [PATCH 002/155] Import package (kf5-solid-4.99.0-2) --- .gitignore | 1 + kf5-solid.spec | 113 +++++++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 115 insertions(+) create mode 100644 kf5-solid.spec diff --git a/.gitignore b/.gitignore index e69de29..be92809 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/solid-4.99.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec new file mode 100644 index 0000000..9ed25c4 --- /dev/null +++ b/kf5-solid.spec @@ -0,0 +1,113 @@ +#%define snapshot 20140205 +%define framework solid + +Name: kf5-%{framework} +Version: 4.99.0 +Release: 3%{?dist} +Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information + +License: LGPLv2+ +URL: http://www.kde.org +# git archive --format=tar --prefix=%{framework}-%{version}/ \ +# --remote=git://anongit.kde.org/%{framework}.git master | \ +# bzip2 -c > %{name}-%{version}-%{snapshot}git.tar.bz2 +#Source0: %{name}-%{version}-%{snapshot}git.tar.bz2 +Source0: http://download.kde.org/unstable/frameworks/4.99.0/%{framework}-4.99.0.tar.xz + +BuildRequires: libupnp-devel +BuildRequires: systemd-devel + +BuildRequires: kf5-rpm-macros +BuildRequires: extra-cmake-modules +BuildRequires: qt5-qtbase-devel +BuildRequires: qt5-qtdeclarative-devel +BuildRequires: qt5-qttools-devel + +Requires: kf5-filesystem + +Provides: kf5-solid-runtime = %{version}-%{release} +Provides: kf5-solid-runtime%{?_isa} = %{version}-%{release} +Obsoletes: kf5-solid-runtime < 4.99.0.1 + +%description +Solid provides the following features for application developers: + - Hardware Discovery + - Power Management + - Network Management + + +%package devel +Summary: Development files for %{name} +Requires: %{name}%{?_isa} = %{version}-%{release} + +%description devel +The %{name}-devel package contains libraries and header files for +developing applications that use %{name}. + + +%prep +%setup -q -n %{framework}-%{version} + +%build +mkdir -p %{_target_platform} +pushd %{_target_platform} +%{cmake_kf5} .. +popd + +make %{?_smp_mflags} -C %{_target_platform} + +%install +%make_install -C %{_target_platform} +%find_lang solid5_qt --with-qt --all-name + +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + + +%files -f solid5_qt.lang +%doc COPYING.LIB README.md TODO +%{_kf5_qmldir}/org/kde/solid +%{_kf5_libdir}/libKF5Solid.so.* +%{_kf5_bindir}/solid-hardware5 + +%files devel +%{_kf5_includedir}/solid_version.h +%{_kf5_includedir}/Solid +%{_kf5_libdir}/libKF5Solid.so +%{_kf5_libdir}/cmake/KF5Solid +%{_kf5_archdatadir}/mkspecs/modules/qt_Solid.pri + +%changelog +* Tue May 06 2014 Daniel Vrátil - 4.99.0-3 +- Obsolotes/Provides kf5-solid-runtime + +* Tue May 06 2014 Daniel Vrátil - 4.99.0-2 +- Rebuild against updated kf5-rpm-macros + +* Mon May 05 2014 Daniel Vrátil - 4.99.0-1 +- KDE Frameworks 4.99.0 + +* Wed Apr 02 2014 Daniel Vrátil 4.98.0-3 +- Apply upstream patch to rename solid-hardware to solid-hardware5 to fix conflict with kde-runtime + +* Mon Mar 31 2014 Jan Grulich 4.98.0-2 +- Move solid-hardware to kf5-solid-runtime + +* Mon Mar 31 2014 Jan Grulich 4.98.0-1 +- Update to KDE Frameworks 5 Beta 1 (4.98.0) + +* Wed Mar 05 2014 Jan Grulich 4.97.0-1 +- Update to KDE Frameworks 5 Alpha 1 (4.97.0) + +* Wed Feb 12 2014 Daniel Vrátil 4.96.0-1 +- Update to KDE Frameworks 5 Alpha 1 (4.96.0) + +* Wed Feb 05 2014 Daniel Vrátil 4.96.0-0.1.20140205git +- Update to pre-release snapshot of 4.96.0 + +* Thu Jan 09 2014 Daniel Vrátil 4.95.0-1 +- Update to KDE Frameworks 5 TP1 (4.95.0) + +* Sat Jan 4 2014 Daniel Vrátil +- initial version diff --git a/sources b/sources index e69de29..269bb79 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +56c94301ad9675d5aec896041501dfcc solid-4.99.0.tar.xz From df07739540ba7e6b1e23fe3e3500772938390544 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Tue, 3 Jun 2014 12:29:58 +0200 Subject: [PATCH 003/155] KDE Frameworks 4.100.0 --- .gitignore | 1 + kf5-solid.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index be92809..64f6622 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /solid-4.99.0.tar.xz +/solid-4.100.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 9ed25c4..341679e 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -2,8 +2,8 @@ %define framework solid Name: kf5-%{framework} -Version: 4.99.0 -Release: 3%{?dist} +Version: 4.100.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -12,7 +12,7 @@ URL: http://www.kde.org # --remote=git://anongit.kde.org/%{framework}.git master | \ # bzip2 -c > %{name}-%{version}-%{snapshot}git.tar.bz2 #Source0: %{name}-%{version}-%{snapshot}git.tar.bz2 -Source0: http://download.kde.org/unstable/frameworks/4.99.0/%{framework}-4.99.0.tar.xz +Source0: http://download.kde.org/unstable/frameworks/4.100.0/%{framework}-4.100.0.tar.xz%{framework}-4.99.0.tar.xz BuildRequires: libupnp-devel BuildRequires: systemd-devel @@ -79,6 +79,9 @@ make %{?_smp_mflags} -C %{_target_platform} %{_kf5_archdatadir}/mkspecs/modules/qt_Solid.pri %changelog +* Tue Jun 03 2014 Daniel Vrátil - 4.100.0-1 +- KDE Frameworks 4.100.0 + * Tue May 06 2014 Daniel Vrátil - 4.99.0-3 - Obsolotes/Provides kf5-solid-runtime diff --git a/sources b/sources index 269bb79..467048d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -56c94301ad9675d5aec896041501dfcc solid-4.99.0.tar.xz +2d6ceecdc0ab4984c30dba6fbbae8616 solid-4.100.0.tar.xz From 6208b5a3fa1108625f12541e03be95ec32b2b42f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Tue, 3 Jun 2014 12:34:51 +0200 Subject: [PATCH 004/155] Fix Source0 URL --- kf5-solid.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kf5-solid.spec b/kf5-solid.spec index 341679e..a7dfbf6 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -12,7 +12,7 @@ URL: http://www.kde.org # --remote=git://anongit.kde.org/%{framework}.git master | \ # bzip2 -c > %{name}-%{version}-%{snapshot}git.tar.bz2 #Source0: %{name}-%{version}-%{snapshot}git.tar.bz2 -Source0: http://download.kde.org/unstable/frameworks/4.100.0/%{framework}-4.100.0.tar.xz%{framework}-4.99.0.tar.xz +Source0: http://download.kde.org/unstable/frameworks/%{version}/%{framework}-%{version}.tar.xz BuildRequires: libupnp-devel BuildRequires: systemd-devel From f63e376e4b9e77f694d9bd583d272008a3b3e8ef Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 7 Jun 2014 21:41:34 -0500 Subject: [PATCH 005/155] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- kf5-solid.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-solid.spec b/kf5-solid.spec index a7dfbf6..a909ea0 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -3,7 +3,7 @@ Name: kf5-%{framework} Version: 4.100.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -79,6 +79,9 @@ make %{?_smp_mflags} -C %{_target_platform} %{_kf5_archdatadir}/mkspecs/modules/qt_Solid.pri %changelog +* Sun Jun 08 2014 Fedora Release Engineering - 4.100.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Tue Jun 03 2014 Daniel Vrátil - 4.100.0-1 - KDE Frameworks 4.100.0 From 606d39447f57deb2a460bff34ebb72c4f5bf9830 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Wed, 9 Jul 2014 15:32:29 +0200 Subject: [PATCH 006/155] KDE Frameworks 5.0.0 --- .gitignore | 1 + kf5-solid.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 64f6622..8cc9720 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /solid-4.99.0.tar.xz /solid-4.100.0.tar.xz +/solid-5.0.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index a909ea0..a204312 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -2,8 +2,8 @@ %define framework solid Name: kf5-%{framework} -Version: 4.100.0 -Release: 2%{?dist} +Version: 5.0.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -12,7 +12,7 @@ URL: http://www.kde.org # --remote=git://anongit.kde.org/%{framework}.git master | \ # bzip2 -c > %{name}-%{version}-%{snapshot}git.tar.bz2 #Source0: %{name}-%{version}-%{snapshot}git.tar.bz2 -Source0: http://download.kde.org/unstable/frameworks/%{version}/%{framework}-%{version}.tar.xz +Source0: http://download.kde.org/stable/frameworks/%{version}/%{framework}-%{version}.tar.xz BuildRequires: libupnp-devel BuildRequires: systemd-devel @@ -79,6 +79,9 @@ make %{?_smp_mflags} -C %{_target_platform} %{_kf5_archdatadir}/mkspecs/modules/qt_Solid.pri %changelog +* Wed Jul 09 2014 Daniel Vrátil - 5.0.0-1 +- KDE Frameworks 5.0.0 + * Sun Jun 08 2014 Fedora Release Engineering - 4.100.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild diff --git a/sources b/sources index 467048d..85901ee 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -2d6ceecdc0ab4984c30dba6fbbae8616 solid-4.100.0.tar.xz +c79868c1de10553a51126c75d5a122a6 solid-5.0.0.tar.xz From 2763c7b4e9eb2ac9392c2ea96e84d28a26021bf7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Wed, 6 Aug 2014 15:13:27 +0200 Subject: [PATCH 007/155] KDE Frameworks 5.1.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 8cc9720..d269066 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /solid-4.99.0.tar.xz /solid-4.100.0.tar.xz /solid-5.0.0.tar.xz +/solid-5.1.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index a204312..a19290e 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -2,7 +2,7 @@ %define framework solid Name: kf5-%{framework} -Version: 5.0.0 +Version: 5.1.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -79,6 +79,9 @@ make %{?_smp_mflags} -C %{_target_platform} %{_kf5_archdatadir}/mkspecs/modules/qt_Solid.pri %changelog +* Wed Aug 06 2014 Daniel Vrátil - 5.1.0-1 +- KDE Frameworks 5.1.0 + * Wed Jul 09 2014 Daniel Vrátil - 5.0.0-1 - KDE Frameworks 5.0.0 diff --git a/sources b/sources index 85901ee..bbbcda5 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -c79868c1de10553a51126c75d5a122a6 solid-5.0.0.tar.xz +dcaeb12bfb40c9b3da07ea00e4f256cf solid-5.1.0.tar.xz From 34c06cfc953f4744b1336caf30819afc996446bb Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Sun, 17 Aug 2014 00:02:09 +0000 Subject: [PATCH 008/155] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild --- kf5-solid.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-solid.spec b/kf5-solid.spec index a19290e..49683a0 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -3,7 +3,7 @@ Name: kf5-%{framework} Version: 5.1.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -79,6 +79,9 @@ make %{?_smp_mflags} -C %{_target_platform} %{_kf5_archdatadir}/mkspecs/modules/qt_Solid.pri %changelog +* Sun Aug 17 2014 Fedora Release Engineering - 5.1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + * Wed Aug 06 2014 Daniel Vrátil - 5.1.0-1 - KDE Frameworks 5.1.0 From 50218b8cda2745a5b939ebb9efab0ba1efd528dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Thu, 11 Sep 2014 11:01:35 +0200 Subject: [PATCH 009/155] KDE Frameworks 5.2.0 --- .gitignore | 1 + kf5-solid.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index d269066..ccbc6e1 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /solid-4.100.0.tar.xz /solid-5.0.0.tar.xz /solid-5.1.0.tar.xz +/solid-5.2.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 49683a0..e8bb969 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -2,8 +2,8 @@ %define framework solid Name: kf5-%{framework} -Version: 5.1.0 -Release: 2%{?dist} +Version: 5.2.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -79,6 +79,9 @@ make %{?_smp_mflags} -C %{_target_platform} %{_kf5_archdatadir}/mkspecs/modules/qt_Solid.pri %changelog +* Thu Sep 11 2014 Daniel Vrátil - 5.2.0-1 +- KDE Frameworks 5.2.0 + * Sun Aug 17 2014 Fedora Release Engineering - 5.1.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild diff --git a/sources b/sources index bbbcda5..8c976ba 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -dcaeb12bfb40c9b3da07ea00e4f256cf solid-5.1.0.tar.xz +957f6ef644ef4bbe90daecf7cf1f1e72 solid-5.2.0.tar.xz From bc2b6b2bf0404e0b00712db74f02433fc045115c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Tue, 7 Oct 2014 13:04:33 +0200 Subject: [PATCH 010/155] KDE Frameworks 5.3.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index ccbc6e1..6ae7bd1 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /solid-5.0.0.tar.xz /solid-5.1.0.tar.xz /solid-5.2.0.tar.xz +/solid-5.3.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index e8bb969..72b5d8c 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -2,7 +2,7 @@ %define framework solid Name: kf5-%{framework} -Version: 5.2.0 +Version: 5.3.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -79,6 +79,9 @@ make %{?_smp_mflags} -C %{_target_platform} %{_kf5_archdatadir}/mkspecs/modules/qt_Solid.pri %changelog +* Tue Oct 07 2014 Daniel Vrátil - 5.3.0-1 +- KDE Frameworks 5.3.0 + * Thu Sep 11 2014 Daniel Vrátil - 5.2.0-1 - KDE Frameworks 5.2.0 diff --git a/sources b/sources index 8c976ba..c0b4bef 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -957f6ef644ef4bbe90daecf7cf1f1e72 solid-5.2.0.tar.xz +57e200ee49bf97ba1914cd6b031afe21 solid-5.3.0.tar.xz From 962b9c864bbad2a2a6c1f4ef3ed42df6a7690a15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Mon, 3 Nov 2014 12:09:38 +0100 Subject: [PATCH 011/155] KDE Frameworks 5.4.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 6ae7bd1..b885279 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ /solid-5.1.0.tar.xz /solid-5.2.0.tar.xz /solid-5.3.0.tar.xz +/solid-5.4.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 72b5d8c..9fe115b 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -2,7 +2,7 @@ %define framework solid Name: kf5-%{framework} -Version: 5.3.0 +Version: 5.4.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -79,6 +79,9 @@ make %{?_smp_mflags} -C %{_target_platform} %{_kf5_archdatadir}/mkspecs/modules/qt_Solid.pri %changelog +* Mon Nov 03 2014 Daniel Vrátil - 5.4.0-1 +- KDE Frameworks 5.4.0 + * Tue Oct 07 2014 Daniel Vrátil - 5.3.0-1 - KDE Frameworks 5.3.0 diff --git a/sources b/sources index c0b4bef..0c11774 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -57e200ee49bf97ba1914cd6b031afe21 solid-5.3.0.tar.xz +361b9d43063356aa275e43b73e212325 solid-5.4.0.tar.xz From 05a9de6ef98b9be9c26c6f91a11ba1fceea56cd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Mon, 3 Nov 2014 12:54:11 +0100 Subject: [PATCH 012/155] Clean up spec file, autodetect stable/unstable download folder --- kf5-solid.spec | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/kf5-solid.spec b/kf5-solid.spec index 9fe115b..1ffef03 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,4 +1,3 @@ -#%define snapshot 20140205 %define framework solid Name: kf5-%{framework} @@ -8,11 +7,14 @@ Summary: KDE Frameworks 5 Tier 1 integration module that provides hardwar License: LGPLv2+ URL: http://www.kde.org -# git archive --format=tar --prefix=%{framework}-%{version}/ \ -# --remote=git://anongit.kde.org/%{framework}.git master | \ -# bzip2 -c > %{name}-%{version}-%{snapshot}git.tar.bz2 -#Source0: %{name}-%{version}-%{snapshot}git.tar.bz2 -Source0: http://download.kde.org/stable/frameworks/%{version}/%{framework}-%{version}.tar.xz + +%global revision %(echo %{version} | cut -d. -f3) +%if %{revision} >= 50 +%global stable unstable +%else +%global stable stable +%endif +Source0: http://download.kde.org/%{stable}/frameworks/%{version}/%{framework}-%{version}.tar.xz BuildRequires: libupnp-devel BuildRequires: systemd-devel @@ -60,11 +62,10 @@ make %{?_smp_mflags} -C %{_target_platform} %make_install -C %{_target_platform} %find_lang solid5_qt --with-qt --all-name -%post -p /sbin/ldconfig +%post -p /sbin/ldconfig %postun -p /sbin/ldconfig - %files -f solid5_qt.lang %doc COPYING.LIB README.md TODO %{_kf5_qmldir}/org/kde/solid @@ -78,6 +79,7 @@ make %{?_smp_mflags} -C %{_target_platform} %{_kf5_libdir}/cmake/KF5Solid %{_kf5_archdatadir}/mkspecs/modules/qt_Solid.pri + %changelog * Mon Nov 03 2014 Daniel Vrátil - 5.4.0-1 - KDE Frameworks 5.4.0 From 7b195a105056087de0f27d5051939e1ca45c2595 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Mon, 3 Nov 2014 13:35:55 +0100 Subject: [PATCH 013/155] Use %global instead of %define --- kf5-solid.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kf5-solid.spec b/kf5-solid.spec index 1ffef03..70ec073 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,4 +1,4 @@ -%define framework solid +%global framework solid Name: kf5-%{framework} Version: 5.4.0 From 3e14b7658e60e7c2084e1b31a29305476f0d387d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Tue, 4 Nov 2014 12:56:38 +0100 Subject: [PATCH 014/155] Create -libs subpackage --- kf5-solid.spec | 28 ++++++++++++++++++++-------- 1 file changed, 20 insertions(+), 8 deletions(-) diff --git a/kf5-solid.spec b/kf5-solid.spec index 70ec073..710fa62 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -27,9 +27,11 @@ BuildRequires: qt5-qttools-devel Requires: kf5-filesystem -Provides: kf5-solid-runtime = %{version}-%{release} -Provides: kf5-solid-runtime%{?_isa} = %{version}-%{release} -Obsoletes: kf5-solid-runtime < 4.99.0.1 +Provides: %{name}-runtime = %{version}-%{release} +Provides: %{name}-runtime%{?_isa} = %{version}-%{release} +Obsoletes: %{name}-runtime < 4.99.0.1 + +Requires: %{name}-libs%{?_isa} = %{version}-%{release} %description Solid provides the following features for application developers: @@ -37,6 +39,13 @@ Solid provides the following features for application developers: - Power Management - Network Management +%package libs +Summary: Runtime libraries for Solid Framework +# When the split occured +Conflicts: %{name} < 5.4.0-1 +Requires: %{name} = %{version}-%{release} +%description libs +%{summary}. %package devel Summary: Development files for %{name} @@ -63,14 +72,16 @@ make %{?_smp_mflags} -C %{_target_platform} %find_lang solid5_qt --with-qt --all-name -%post -p /sbin/ldconfig -%postun -p /sbin/ldconfig - -%files -f solid5_qt.lang +%files %doc COPYING.LIB README.md TODO +%{_kf5_bindir}/solid-hardware5 + +%post libs -p /sbin/ldconfig +%postun libs -p /sbin/ldconfig + +%files libs -f solid5_qt.lang %{_kf5_qmldir}/org/kde/solid %{_kf5_libdir}/libKF5Solid.so.* -%{_kf5_bindir}/solid-hardware5 %files devel %{_kf5_includedir}/solid_version.h @@ -83,6 +94,7 @@ make %{?_smp_mflags} -C %{_target_platform} %changelog * Mon Nov 03 2014 Daniel Vrátil - 5.4.0-1 - KDE Frameworks 5.4.0 +- Create -libs subpkg * Tue Oct 07 2014 Daniel Vrátil - 5.3.0-1 - KDE Frameworks 5.3.0 From c81d53085a6770e894535f0c67cb2687f762312f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Mon, 8 Dec 2014 15:07:49 +0100 Subject: [PATCH 015/155] KDE Frameworks 5.5.0 --- .gitignore | 1 + kf5-solid.spec | 8 ++++++-- sources | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index b885279..bcda3cd 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ /solid-5.2.0.tar.xz /solid-5.3.0.tar.xz /solid-5.4.0.tar.xz +/solid-5.5.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 710fa62..27d082d 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,20 +1,21 @@ %global framework solid Name: kf5-%{framework} -Version: 5.4.0 +Version: 5.5.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ URL: http://www.kde.org +%global versiondir %(echo %{version} | cut -d. -f1-2) %global revision %(echo %{version} | cut -d. -f3) %if %{revision} >= 50 %global stable unstable %else %global stable stable %endif -Source0: http://download.kde.org/%{stable}/frameworks/%{version}/%{framework}-%{version}.tar.xz +Source0: http://download.kde.org/%{stable}/frameworks/%{versiondir}/%{framework}-%{version}.tar.xz BuildRequires: libupnp-devel BuildRequires: systemd-devel @@ -92,6 +93,9 @@ make %{?_smp_mflags} -C %{_target_platform} %changelog +* Mon Dec 08 2014 Daniel Vrátil - 5.5.0-1 +- KDE Frameworks 5.5.0 + * Mon Nov 03 2014 Daniel Vrátil - 5.4.0-1 - KDE Frameworks 5.4.0 - Create -libs subpkg diff --git a/sources b/sources index 0c11774..2b07c7d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -361b9d43063356aa275e43b73e212325 solid-5.4.0.tar.xz +eded819be81335dfb31218d7eb3ec24a solid-5.5.0.tar.xz From a2b92ecdaf4c5d4aa6e937ce163ef0bc86762d42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Thu, 8 Jan 2015 14:39:57 +0100 Subject: [PATCH 016/155] KDE Frameworks 5.6.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index bcda3cd..6ed6c78 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ /solid-5.3.0.tar.xz /solid-5.4.0.tar.xz /solid-5.5.0.tar.xz +/solid-5.6.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 27d082d..f601e61 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.5.0 +Version: 5.6.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -93,6 +93,9 @@ make %{?_smp_mflags} -C %{_target_platform} %changelog +* Thu Jan 08 2015 Daniel Vrátil - 5.6.0-1 +- KDE Frameworks 5.6.0 + * Mon Dec 08 2014 Daniel Vrátil - 5.5.0-1 - KDE Frameworks 5.5.0 diff --git a/sources b/sources index 2b07c7d..d93e86d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -eded819be81335dfb31218d7eb3ec24a solid-5.5.0.tar.xz +fe9945886a08444a91beb1995023bc8e solid-5.6.0.tar.xz From 6b4e9ba59770c2e3c1a50608f3d9b14c5097bc2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Mon, 16 Feb 2015 13:13:01 +0100 Subject: [PATCH 017/155] KDE Frameworks 5.7.0 --- kf5-solid.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/kf5-solid.spec b/kf5-solid.spec index f601e61..b77afac 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.6.0 +Version: 5.7.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -51,6 +51,7 @@ Requires: %{name} = %{version}-%{release} %package devel Summary: Development files for %{name} Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: qt5-qtbase-devel %description devel The %{name}-devel package contains libraries and header files for @@ -93,6 +94,9 @@ make %{?_smp_mflags} -C %{_target_platform} %changelog +* Mon Feb 16 2015 Daniel Vrátil - 5.7.0-1 +- KDE Frameworks 5.7.0 + * Thu Jan 08 2015 Daniel Vrátil - 5.6.0-1 - KDE Frameworks 5.6.0 From 4ff1baf9f2add06b0675cccf2ef203f1093a3b62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Mon, 16 Feb 2015 14:58:50 +0100 Subject: [PATCH 018/155] Update sources --- .gitignore | 1 + sources | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 6ed6c78..932ee1e 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ /solid-5.4.0.tar.xz /solid-5.5.0.tar.xz /solid-5.6.0.tar.xz +/solid-5.7.0.tar.xz diff --git a/sources b/sources index d93e86d..b7e1fbf 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -fe9945886a08444a91beb1995023bc8e solid-5.6.0.tar.xz +763c77540a984d28e00be0026aea8b14 solid-5.7.0.tar.xz From fcb2205da1ffe60a26158bb600c99dc06ce31c94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Fri, 27 Feb 2015 18:10:17 +0100 Subject: [PATCH 019/155] Rebuild (GCC 5) --- kf5-solid.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-solid.spec b/kf5-solid.spec index b77afac..f83fd78 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.7.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -94,6 +94,9 @@ make %{?_smp_mflags} -C %{_target_platform} %changelog +* Fri Feb 27 2015 Daniel Vrátil - 5.7.0-2 +- Rebuild (GCC 5) + * Mon Feb 16 2015 Daniel Vrátil - 5.7.0-1 - KDE Frameworks 5.7.0 From 7e0bbbef6ca28d92d376f2da8d2011d032bfb697 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Mon, 16 Mar 2015 12:53:17 +0100 Subject: [PATCH 020/155] KDE Frameworks 5.8.0 --- .gitignore | 1 + kf5-solid.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 932ee1e..7442571 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ /solid-5.5.0.tar.xz /solid-5.6.0.tar.xz /solid-5.7.0.tar.xz +/solid-5.8.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index f83fd78..2b43ddb 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,8 +1,8 @@ %global framework solid Name: kf5-%{framework} -Version: 5.7.0 -Release: 2%{?dist} +Version: 5.8.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -94,6 +94,9 @@ make %{?_smp_mflags} -C %{_target_platform} %changelog +* Mon Mar 16 2015 Daniel Vrátil - 5.8.0-1 +- KDE Frameworks 5.8.0 + * Fri Feb 27 2015 Daniel Vrátil - 5.7.0-2 - Rebuild (GCC 5) diff --git a/sources b/sources index b7e1fbf..758ded8 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -763c77540a984d28e00be0026aea8b14 solid-5.7.0.tar.xz +85fa6a920e9634af9cd2acdf2aca71a9 solid-5.8.0.tar.xz From 9b159be113df7cd0be0927c2e02de51b3ab6cf1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Tue, 7 Apr 2015 13:07:46 +0200 Subject: [PATCH 021/155] KDE Frameworks 5.9.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 7442571..d8366a0 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ /solid-5.6.0.tar.xz /solid-5.7.0.tar.xz /solid-5.8.0.tar.xz +/solid-5.9.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 2b43ddb..d0ffa8f 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.8.0 +Version: 5.9.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -94,6 +94,9 @@ make %{?_smp_mflags} -C %{_target_platform} %changelog +* Tue Apr 07 2015 Daniel Vrátil - 5.9.0-1 +- KDE Frameworks 5.9.0 + * Mon Mar 16 2015 Daniel Vrátil - 5.8.0-1 - KDE Frameworks 5.8.0 diff --git a/sources b/sources index 758ded8..06d70ca 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -85fa6a920e9634af9cd2acdf2aca71a9 solid-5.8.0.tar.xz +cfe8a78e9e0e9e06a9cdb2295fcdef66 solid-5.9.0.tar.xz From 80615ddd7a793c68390de75cc2a313f327673d9f Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Thu, 30 Apr 2015 19:06:16 -0500 Subject: [PATCH 022/155] BR: bison flex media-player-info --- kf5-solid.spec | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/kf5-solid.spec b/kf5-solid.spec index d0ffa8f..ad048f4 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.9.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -26,6 +26,15 @@ BuildRequires: qt5-qtbase-devel BuildRequires: qt5-qtdeclarative-devel BuildRequires: qt5-qttools-devel +%if ! 0%{?bootstrap} +# Predicate parser deps +BuildRequires: bison +BuildRequires: flex +# really runtime-only dep, but doesn't hurt to check availability at buildtime +BuildRequires: media-player-info +Requires: media-player-info +%endif + Requires: kf5-filesystem Provides: %{name}-runtime = %{version}-%{release} @@ -94,6 +103,9 @@ make %{?_smp_mflags} -C %{_target_platform} %changelog +* Thu Apr 30 2015 Rex Dieter 5.9.0-2 +- BR: bison flex media-player-info + * Tue Apr 07 2015 Daniel Vrátil - 5.9.0-1 - KDE Frameworks 5.9.0 From c8fa71a2bc0da5c7edc07caab7d590a87653acbd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Mon, 11 May 2015 11:12:54 +0200 Subject: [PATCH 023/155] KDE Frameworks 5.10.0 --- .gitignore | 1 + kf5-solid.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index d8366a0..85d1b93 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ /solid-5.7.0.tar.xz /solid-5.8.0.tar.xz /solid-5.9.0.tar.xz +/solid-5.10.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index ad048f4..4d3c3e5 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,8 +1,8 @@ %global framework solid Name: kf5-%{framework} -Version: 5.9.0 -Release: 2%{?dist} +Version: 5.10.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -103,6 +103,9 @@ make %{?_smp_mflags} -C %{_target_platform} %changelog +* Mon May 11 2015 Daniel Vrátil - 5.10.0-1 +- KDE Frameworks 5.10.0 + * Thu Apr 30 2015 Rex Dieter 5.9.0-2 - BR: bison flex media-player-info diff --git a/sources b/sources index 06d70ca..a111f76 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -cfe8a78e9e0e9e06a9cdb2295fcdef66 solid-5.9.0.tar.xz +d4b3126bd3f64ecc4c6478c7c2108f79 solid-5.10.0.tar.xz From 9386090840c876b868302bdb1ff5b19c99a75b56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Wed, 10 Jun 2015 14:27:46 +0200 Subject: [PATCH 024/155] KDE Frameworks 5.11.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 85d1b93..bd97600 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ /solid-5.8.0.tar.xz /solid-5.9.0.tar.xz /solid-5.10.0.tar.xz +/solid-5.11.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 4d3c3e5..89306cd 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.10.0 +Version: 5.11.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -103,6 +103,9 @@ make %{?_smp_mflags} -C %{_target_platform} %changelog +* Wed Jun 10 2015 Daniel Vrátil - 5.11.0-1 +- KDE Frameworks 5.11.0 + * Mon May 11 2015 Daniel Vrátil - 5.10.0-1 - KDE Frameworks 5.10.0 diff --git a/sources b/sources index a111f76..6acfcf2 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -d4b3126bd3f64ecc4c6478c7c2108f79 solid-5.10.0.tar.xz +3be0e15864f99da1419d957c2933a8c7 solid-5.11.0.tar.xz From 399f33befcfb4175b2c07f1460e6781eaf0d259c Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 17 Jun 2015 13:19:25 +0000 Subject: [PATCH 025/155] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- kf5-solid.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-solid.spec b/kf5-solid.spec index 89306cd..bf38c37 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.11.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -103,6 +103,9 @@ make %{?_smp_mflags} -C %{_target_platform} %changelog +* Wed Jun 17 2015 Fedora Release Engineering - 5.11.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Wed Jun 10 2015 Daniel Vrátil - 5.11.0-1 - KDE Frameworks 5.11.0 From 89fee828832854bd6c051c06b96dd0b5a9b1fb2e Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Fri, 10 Jul 2015 13:14:44 -0500 Subject: [PATCH 026/155] 5.12.0 --- .gitignore | 1 + kf5-solid.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index bd97600..b17c568 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,4 @@ /solid-5.9.0.tar.xz /solid-5.10.0.tar.xz /solid-5.11.0.tar.xz +/solid-5.12.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index bf38c37..ad5697a 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,8 +1,8 @@ %global framework solid Name: kf5-%{framework} -Version: 5.11.0 -Release: 2%{?dist} +Version: 5.12.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -103,6 +103,9 @@ make %{?_smp_mflags} -C %{_target_platform} %changelog +* Fri Jul 10 2015 Rex Dieter - 5.12.0-1 +- 5.12.0 + * Wed Jun 17 2015 Fedora Release Engineering - 5.11.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild diff --git a/sources b/sources index 6acfcf2..27da626 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -3be0e15864f99da1419d957c2933a8c7 solid-5.11.0.tar.xz +534592c079fb90cfe8734f91d90c8fbd solid-5.12.0.tar.xz From 002c52359d2e43954a62ce75413aab9ed4c31f01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Wed, 19 Aug 2015 16:50:52 +0200 Subject: [PATCH 027/155] KDE Frameworks 5.13.0 --- .gitignore | 1 + kf5-solid.spec | 17 +++++++++++++---- sources | 2 +- 3 files changed, 15 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index b17c568..4dde471 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ /solid-5.10.0.tar.xz /solid-5.11.0.tar.xz /solid-5.12.0.tar.xz +/solid-5.13.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index ad5697a..bc51fa0 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.12.0 +Version: 5.13.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -20,8 +20,8 @@ Source0: http://download.kde.org/%{stable}/frameworks/%{versiondir}/%{fra BuildRequires: libupnp-devel BuildRequires: systemd-devel -BuildRequires: kf5-rpm-macros -BuildRequires: extra-cmake-modules +BuildRequires: kf5-rpm-macros >= %{version} +BuildRequires: extra-cmake-modules >= %{version} BuildRequires: qt5-qtbase-devel BuildRequires: qt5-qtdeclarative-devel BuildRequires: qt5-qttools-devel @@ -35,7 +35,7 @@ BuildRequires: media-player-info Requires: media-player-info %endif -Requires: kf5-filesystem +Requires: kf5-filesystem >= %{version} Provides: %{name}-runtime = %{version}-%{release} Provides: %{name}-runtime%{?_isa} = %{version}-%{release} @@ -103,6 +103,15 @@ make %{?_smp_mflags} -C %{_target_platform} %changelog +* Wed Aug 19 2015 Daniel Vrátil - 5.13.0-1 +- KDE Frameworks 5.13.0 + +* Wed Aug 19 2015 Daniel Vrátil - 5.13.0-1 +- KDE Frameworks 5.13.0 + +* Tue Aug 11 2015 Daniel Vrátil - 5.13.0-0.1 +- KDE Frameworks 5.13 + * Fri Jul 10 2015 Rex Dieter - 5.12.0-1 - 5.12.0 diff --git a/sources b/sources index 27da626..b219921 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -534592c079fb90cfe8734f91d90c8fbd solid-5.12.0.tar.xz +65cad682f4e55f02e0a547eb84e779b5 solid-5.13.0.tar.xz From c1b443b7ecd41a044dfa3d8b3350a89c17f27089 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Wed, 16 Sep 2015 13:48:06 +0200 Subject: [PATCH 028/155] KDE Frameworks 5.14.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 4dde471..6da99c0 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,4 @@ /solid-5.11.0.tar.xz /solid-5.12.0.tar.xz /solid-5.13.0.tar.xz +/solid-5.14.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index bc51fa0..b72f528 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.13.0 +Version: 5.14.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -103,6 +103,9 @@ make %{?_smp_mflags} -C %{_target_platform} %changelog +* Wed Sep 16 2015 Daniel Vrátil - 5.14.0-1 +- KDE Frameworks 5.14.0 + * Wed Aug 19 2015 Daniel Vrátil - 5.13.0-1 - KDE Frameworks 5.13.0 diff --git a/sources b/sources index b219921..a5ab3f8 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -65cad682f4e55f02e0a547eb84e779b5 solid-5.13.0.tar.xz +8e487975994ba2c5811f6830609c73de solid-5.14.0.tar.xz From bb4499342eccc6c786a8699ee975d3eb5d897be0 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 21 Sep 2015 12:42:51 -0500 Subject: [PATCH 029/155] +sources.basename --- sources.basename | 1 + 1 file changed, 1 insertion(+) create mode 100644 sources.basename diff --git a/sources.basename b/sources.basename new file mode 100644 index 0000000..ebc81a1 --- /dev/null +++ b/sources.basename @@ -0,0 +1 @@ +solid From 7115859e32d881802f3fb75ed827eefabbb68bf6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Thu, 8 Oct 2015 15:07:06 +0200 Subject: [PATCH 030/155] KDE Frameworks 5.15.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 6da99c0..4668862 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,4 @@ /solid-5.12.0.tar.xz /solid-5.13.0.tar.xz /solid-5.14.0.tar.xz +/solid-5.15.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index b72f528..4e75f54 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.14.0 +Version: 5.15.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -103,6 +103,9 @@ make %{?_smp_mflags} -C %{_target_platform} %changelog +* Thu Oct 08 2015 Daniel Vrátil - 5.15.0-1 +- KDE Frameworks 5.15.0 + * Wed Sep 16 2015 Daniel Vrátil - 5.14.0-1 - KDE Frameworks 5.14.0 diff --git a/sources b/sources index a5ab3f8..cf8bf1b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -8e487975994ba2c5811f6830609c73de solid-5.14.0.tar.xz +5d18bd8ffd294a85ddf3f1765d8726d6 solid-5.15.0.tar.xz From 5177cdecd5dc267726ebbd3cb110e2b80f48dbe8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Mon, 9 Nov 2015 23:07:51 +0100 Subject: [PATCH 031/155] KDE Frameworks 5.16 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 4668862..45b627d 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,4 @@ /solid-5.13.0.tar.xz /solid-5.14.0.tar.xz /solid-5.15.0.tar.xz +/solid-5.16.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 4e75f54..bf0571a 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.15.0 +Version: 5.16.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -103,6 +103,9 @@ make %{?_smp_mflags} -C %{_target_platform} %changelog +* Sun Nov 08 2015 Daniel Vrátil - 5.16.0-1 +- KDE Frameworks 5.16.0 + * Thu Oct 08 2015 Daniel Vrátil - 5.15.0-1 - KDE Frameworks 5.15.0 diff --git a/sources b/sources index cf8bf1b..c9fdfdd 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -5d18bd8ffd294a85ddf3f1765d8726d6 solid-5.15.0.tar.xz +8d0d56882cdecdd61fe840c20b9995ae solid-5.16.0.tar.xz From c42ec490c8a0a02801941b1eb7f40f9a956f04f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Tue, 8 Dec 2015 22:16:51 +0100 Subject: [PATCH 032/155] KDE Frameworks 5.17.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 45b627d..37cbaab 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,4 @@ /solid-5.14.0.tar.xz /solid-5.15.0.tar.xz /solid-5.16.0.tar.xz +/solid-5.17.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index bf0571a..914f1cc 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.16.0 +Version: 5.17.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -103,6 +103,9 @@ make %{?_smp_mflags} -C %{_target_platform} %changelog +* Tue Dec 08 2015 Daniel Vrátil - 5.17.0-1 +- KDE Frameworks 5.17.0 + * Sun Nov 08 2015 Daniel Vrátil - 5.16.0-1 - KDE Frameworks 5.16.0 diff --git a/sources b/sources index c9fdfdd..0cbaef0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -8d0d56882cdecdd61fe840c20b9995ae solid-5.16.0.tar.xz +911af1ae598c04d5183383cb4b36970f solid-5.17.0.tar.xz From 7af5de50e303965741bbf26d2cdf07ac65da0d4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Vr=C3=A1til?= Date: Sun, 3 Jan 2016 17:54:11 +0100 Subject: [PATCH 033/155] KDE Frameworks 5.18.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 37cbaab..f460318 100644 --- a/.gitignore +++ b/.gitignore @@ -18,3 +18,4 @@ /solid-5.15.0.tar.xz /solid-5.16.0.tar.xz /solid-5.17.0.tar.xz +/solid-5.18.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 914f1cc..a9fe3f7 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.17.0 +Version: 5.18.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -103,6 +103,9 @@ make %{?_smp_mflags} -C %{_target_platform} %changelog +* Sun Jan 03 2016 Daniel Vrátil - 5.18.0-1 +- KDE Frameworks 5.18.0 + * Tue Dec 08 2015 Daniel Vrátil - 5.17.0-1 - KDE Frameworks 5.17.0 diff --git a/sources b/sources index 0cbaef0..7c57759 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -911af1ae598c04d5183383cb4b36970f solid-5.17.0.tar.xz +783ceff0aed29a57235fb05abca41b6a solid-5.18.0.tar.xz From 4973a443db51d4f589d685d09a0f290fd5d1d72a Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Thu, 14 Jan 2016 12:34:29 -0600 Subject: [PATCH 034/155] cosmetics, update URL, use %license --- .gitignore | 20 -------------------- kf5-solid.spec | 30 ++++++++++++++++++------------ 2 files changed, 18 insertions(+), 32 deletions(-) diff --git a/.gitignore b/.gitignore index f460318..5d5bf05 100644 --- a/.gitignore +++ b/.gitignore @@ -1,21 +1 @@ -/solid-4.99.0.tar.xz -/solid-4.100.0.tar.xz -/solid-5.0.0.tar.xz -/solid-5.1.0.tar.xz -/solid-5.2.0.tar.xz -/solid-5.3.0.tar.xz -/solid-5.4.0.tar.xz -/solid-5.5.0.tar.xz -/solid-5.6.0.tar.xz -/solid-5.7.0.tar.xz -/solid-5.8.0.tar.xz -/solid-5.9.0.tar.xz -/solid-5.10.0.tar.xz -/solid-5.11.0.tar.xz -/solid-5.12.0.tar.xz -/solid-5.13.0.tar.xz -/solid-5.14.0.tar.xz -/solid-5.15.0.tar.xz -/solid-5.16.0.tar.xz -/solid-5.17.0.tar.xz /solid-5.18.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index a9fe3f7..f71d9d8 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -2,11 +2,11 @@ Name: kf5-%{framework} Version: 5.18.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ -URL: http://www.kde.org +URL: http://projects.kde.org/solid %global versiondir %(echo %{version} | cut -d. -f1-2) %global revision %(echo %{version} | cut -d. -f3) @@ -17,14 +17,13 @@ URL: http://www.kde.org %endif Source0: http://download.kde.org/%{stable}/frameworks/%{versiondir}/%{framework}-%{version}.tar.xz -BuildRequires: libupnp-devel -BuildRequires: systemd-devel - -BuildRequires: kf5-rpm-macros >= %{version} BuildRequires: extra-cmake-modules >= %{version} +BuildRequires: kf5-rpm-macros >= %{version} +BuildRequires: libupnp-devel BuildRequires: qt5-qtbase-devel BuildRequires: qt5-qtdeclarative-devel BuildRequires: qt5-qttools-devel +BuildRequires: systemd-devel %if ! 0%{?bootstrap} # Predicate parser deps @@ -70,39 +69,46 @@ developing applications that use %{name}. %prep %setup -q -n %{framework}-%{version} + %build -mkdir -p %{_target_platform} +mkdir %{_target_platform} pushd %{_target_platform} %{cmake_kf5} .. popd make %{?_smp_mflags} -C %{_target_platform} + %install -%make_install -C %{_target_platform} +make install/fast DESTDIR=%{buildroot} -C %{_target_platform} + %find_lang solid5_qt --with-qt --all-name %files -%doc COPYING.LIB README.md TODO +%doc README.md TODO +%license COPYING.LIB %{_kf5_bindir}/solid-hardware5 %post libs -p /sbin/ldconfig %postun libs -p /sbin/ldconfig %files libs -f solid5_qt.lang -%{_kf5_qmldir}/org/kde/solid +%{_kf5_qmldir}/org/kde/solid/ %{_kf5_libdir}/libKF5Solid.so.* %files devel %{_kf5_includedir}/solid_version.h -%{_kf5_includedir}/Solid +%{_kf5_includedir}/Solid/ %{_kf5_libdir}/libKF5Solid.so -%{_kf5_libdir}/cmake/KF5Solid +%{_kf5_libdir}/cmake/KF5Solid/ %{_kf5_archdatadir}/mkspecs/modules/qt_Solid.pri %changelog +* Thu Jan 14 2016 Rex Dieter 5.18.0-2 +- cosmetics, update URL, use %%license + * Sun Jan 03 2016 Daniel Vrátil - 5.18.0-1 - KDE Frameworks 5.18.0 From 6f15de62d04458e9e6c517aab4933f12e51e6943 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 4 Feb 2016 02:08:20 +0000 Subject: [PATCH 035/155] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- kf5-solid.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-solid.spec b/kf5-solid.spec index f71d9d8..3a97a11 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.18.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -106,6 +106,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Thu Feb 04 2016 Fedora Release Engineering - 5.18.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Thu Jan 14 2016 Rex Dieter 5.18.0-2 - cosmetics, update URL, use %%license From 66e537aadcaa82c8d9673007ac6a1c1d1a57bcf0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Vr=C3=A1til?= Date: Thu, 11 Feb 2016 15:16:05 +0100 Subject: [PATCH 036/155] KDE Frameworks 5.19.0 --- .gitignore | 1 + kf5-solid.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 5d5bf05..a50dfed 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /solid-5.18.0.tar.xz +/solid-5.19.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 3a97a11..cb029dd 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,8 +1,8 @@ %global framework solid Name: kf5-%{framework} -Version: 5.18.0 -Release: 3%{?dist} +Version: 5.19.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -106,6 +106,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Thu Feb 11 2016 Daniel Vrátil - 5.19.0-1 +- KDE Frameworks 5.19.0 + * Thu Feb 04 2016 Fedora Release Engineering - 5.18.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild diff --git a/sources b/sources index 7c57759..0f2e580 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -783ceff0aed29a57235fb05abca41b6a solid-5.18.0.tar.xz +d664fa2d968c6d6a273881e90f749c7e solid-5.19.0.tar.xz From 62d64cf063eece60076363576bb404c98dc27973 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Fri, 26 Feb 2016 14:34:01 -0600 Subject: [PATCH 037/155] Recommends: media-player-info (f24+) --- kf5-solid.spec | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/kf5-solid.spec b/kf5-solid.spec index cb029dd..7f1441f 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.19.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -29,10 +29,14 @@ BuildRequires: systemd-devel # Predicate parser deps BuildRequires: bison BuildRequires: flex +%if 0%{?fedora} > 23 +Recommends: media-player-info +%else # really runtime-only dep, but doesn't hurt to check availability at buildtime BuildRequires: media-player-info Requires: media-player-info %endif +%endif Requires: kf5-filesystem >= %{version} @@ -106,6 +110,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Fri Feb 26 2016 Rex Dieter 5.19.0-2 +- Recommends: media-player-info (f24+) + * Thu Feb 11 2016 Daniel Vrátil - 5.19.0-1 - KDE Frameworks 5.19.0 From 554e60d6154197016df6838f5883e1d5dccc0983 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Vr=C3=A1til?= Date: Mon, 14 Mar 2016 11:40:10 +0100 Subject: [PATCH 038/155] KDE Frameworks 5.20.0 --- .gitignore | 1 + kf5-solid.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index a50dfed..8f7c376 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /solid-5.18.0.tar.xz /solid-5.19.0.tar.xz +/solid-5.20.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 7f1441f..7b9f7ab 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,8 +1,8 @@ %global framework solid Name: kf5-%{framework} -Version: 5.19.0 -Release: 2%{?dist} +Version: 5.20.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -110,6 +110,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon Mar 14 2016 Daniel Vrátil - 5.20.0-1 +- KDE Frameworks 5.20.0 + * Fri Feb 26 2016 Rex Dieter 5.19.0-2 - Recommends: media-player-info (f24+) diff --git a/sources b/sources index 0f2e580..758b0fb 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -d664fa2d968c6d6a273881e90f749c7e solid-5.19.0.tar.xz +0bcf42d89dc6276dbba3b9f8259d67ab solid-5.20.0.tar.xz From b0554168374304b93353a35e31b28879c7834d8c Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 4 Apr 2016 08:24:29 -0500 Subject: [PATCH 039/155] KDE Frameworks 5.21.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 8f7c376..c9e7fc0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /solid-5.18.0.tar.xz /solid-5.19.0.tar.xz /solid-5.20.0.tar.xz +/solid-5.21.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 7b9f7ab..194b689 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.20.0 +Version: 5.21.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -110,6 +110,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon Apr 04 2016 Rex Dieter - 5.21.0-1 +- KDE Frameworks 5.21.0 + * Mon Mar 14 2016 Daniel Vrátil - 5.20.0-1 - KDE Frameworks 5.20.0 diff --git a/sources b/sources index 758b0fb..f477313 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -0bcf42d89dc6276dbba3b9f8259d67ab solid-5.20.0.tar.xz +0b83cbdd8985c9a2b115523da9db02a9 solid-5.21.0.tar.xz From e53c2e20563f4536a7814246191ac5030bc9494b Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 16 May 2016 09:53:38 -0500 Subject: [PATCH 040/155] KDE Frameworks 5.22.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index c9e7fc0..e4fb59b 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /solid-5.19.0.tar.xz /solid-5.20.0.tar.xz /solid-5.21.0.tar.xz +/solid-5.22.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 194b689..e480c64 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.21.0 +Version: 5.22.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -110,6 +110,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon May 16 2016 Rex Dieter - 5.22.0-1 +- KDE Frameworks 5.22.0 + * Mon Apr 04 2016 Rex Dieter - 5.21.0-1 - KDE Frameworks 5.21.0 diff --git a/sources b/sources index f477313..7e295c4 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -0b83cbdd8985c9a2b115523da9db02a9 solid-5.21.0.tar.xz +638ffa2688035952721407ddf6010ea8 solid-5.22.0.tar.xz From 31e9a3aef31822df890e5c632a8476761b2cdfd6 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 7 Jun 2016 10:01:47 -0500 Subject: [PATCH 041/155] update URL, use autosetup --- kf5-solid.spec | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/kf5-solid.spec b/kf5-solid.spec index e480c64..2487ff0 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -2,11 +2,11 @@ Name: kf5-%{framework} Version: 5.22.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ -URL: http://projects.kde.org/solid +URL: https://quickgit.kde.org/?p=%{framework}.git %global versiondir %(echo %{version} | cut -d. -f1-2) %global revision %(echo %{version} | cut -d. -f3) @@ -71,7 +71,7 @@ developing applications that use %{name}. %prep -%setup -q -n %{framework}-%{version} +%autosetup -n %{framework}-%{version} %build @@ -110,6 +110,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Tue Jun 07 2016 Rex Dieter - 5.22.0-2 +- update URL, use autosetup + * Mon May 16 2016 Rex Dieter - 5.22.0-1 - KDE Frameworks 5.22.0 From 16f58070db0da50d68de201c685b11498bc8ec42 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 7 Jun 2016 10:30:11 -0500 Subject: [PATCH 042/155] KDE Frameworks 5.23.0 --- .gitignore | 1 + clog | 2 ++ kf5-solid.spec | 7 +++++-- sources | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) create mode 100644 clog diff --git a/.gitignore b/.gitignore index e4fb59b..9ec9bf9 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /solid-5.20.0.tar.xz /solid-5.21.0.tar.xz /solid-5.22.0.tar.xz +/solid-5.23.0.tar.xz diff --git a/clog b/clog new file mode 100644 index 0000000..3e3407f --- /dev/null +++ b/clog @@ -0,0 +1,2 @@ +update URL, use autosetup + diff --git a/kf5-solid.spec b/kf5-solid.spec index 2487ff0..2c3e9dd 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,8 +1,8 @@ %global framework solid Name: kf5-%{framework} -Version: 5.22.0 -Release: 2%{?dist} +Version: 5.23.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -110,6 +110,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Tue Jun 07 2016 Daniel Vrátil - 5.23.0-1 +- KDE Frameworks 5.23.0 + * Tue Jun 07 2016 Rex Dieter - 5.22.0-2 - update URL, use autosetup diff --git a/sources b/sources index 7e295c4..431348c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -638ffa2688035952721407ddf6010ea8 solid-5.22.0.tar.xz +ed66c1e1e9cb1dcb06e037aa0d2b5d55 solid-5.23.0.tar.xz From 7c4deb56e186fd15462f4b56470b5aff4fef3bef Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sat, 25 Jun 2016 08:35:31 -0500 Subject: [PATCH 043/155] rm clog --- clog | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 clog diff --git a/clog b/clog deleted file mode 100644 index 3e3407f..0000000 --- a/clog +++ /dev/null @@ -1,2 +0,0 @@ -update URL, use autosetup - From 12069fef3c7815f22e65d2bbb2cf612c4936780e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Vr=C3=A1til?= Date: Wed, 6 Jul 2016 17:49:28 +0200 Subject: [PATCH 044/155] KDE Frameworks 5.24.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 9ec9bf9..d347cfb 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ /solid-5.21.0.tar.xz /solid-5.22.0.tar.xz /solid-5.23.0.tar.xz +/solid-5.24.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 2c3e9dd..30cd926 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.23.0 +Version: 5.24.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -110,6 +110,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Wed Jul 06 2016 Daniel Vrátil - 5.24.0-1 +- KDE Frameworks 5.24.0 + * Tue Jun 07 2016 Daniel Vrátil - 5.23.0-1 - KDE Frameworks 5.23.0 diff --git a/sources b/sources index 431348c..86f7c5e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -ed66c1e1e9cb1dcb06e037aa0d2b5d55 solid-5.23.0.tar.xz +197787ff95a49eb80cd8fae28d6e4638 solid-5.24.0.tar.xz From 8c36f5c78061c2a5cbcd56f31ce81340fd2de245 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Vr=C3=A1til?= Date: Mon, 8 Aug 2016 10:11:31 +0200 Subject: [PATCH 045/155] KDE Frameworks 5.25.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index d347cfb..ca56bdf 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ /solid-5.22.0.tar.xz /solid-5.23.0.tar.xz /solid-5.24.0.tar.xz +/solid-5.25.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 30cd926..b49f1d1 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.24.0 +Version: 5.25.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -110,6 +110,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon Aug 08 2016 Daniel Vrátil - 5.25.0-1 +- KDE Frameworks 5.25.0 + * Wed Jul 06 2016 Daniel Vrátil - 5.24.0-1 - KDE Frameworks 5.24.0 diff --git a/sources b/sources index 86f7c5e..d608b80 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -197787ff95a49eb80cd8fae28d6e4638 solid-5.24.0.tar.xz +3ca487d5660ee83d0b2165e525ea5795 solid-5.25.0.tar.xz From 0d5903b9129abf0f7a0bc8faaf8805dbcd8ef759 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Vr=C3=A1til?= Date: Mon, 8 Aug 2016 11:29:08 +0200 Subject: [PATCH 046/155] Add workaround for build error with flex-2.6.0 --- kf5-solid.spec | 6 ++++-- solid-5.25-fix-build-with-flex-2.6.0.patch | 16 ++++++++++++++++ 2 files changed, 20 insertions(+), 2 deletions(-) create mode 100644 solid-5.25-fix-build-with-flex-2.6.0.patch diff --git a/kf5-solid.spec b/kf5-solid.spec index b49f1d1..89037e6 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -17,6 +17,10 @@ URL: https://quickgit.kde.org/?p=%{framework}.git %endif Source0: http://download.kde.org/%{stable}/frameworks/%{versiondir}/%{framework}-%{version}.tar.xz +# Workaround https://bugzilla.redhat.com/show_bug.cgi?id=1364943 +# Technically only affects rawhide/f26, but is harmless elsewhere too +Patch0: solid-5.25-fix-build-with-flex-2.6.0.patch + BuildRequires: extra-cmake-modules >= %{version} BuildRequires: kf5-rpm-macros >= %{version} BuildRequires: libupnp-devel @@ -73,7 +77,6 @@ developing applications that use %{name}. %prep %autosetup -n %{framework}-%{version} - %build mkdir %{_target_platform} pushd %{_target_platform} @@ -82,7 +85,6 @@ popd make %{?_smp_mflags} -C %{_target_platform} - %install make install/fast DESTDIR=%{buildroot} -C %{_target_platform} diff --git a/solid-5.25-fix-build-with-flex-2.6.0.patch b/solid-5.25-fix-build-with-flex-2.6.0.patch new file mode 100644 index 0000000..8fd6d8d --- /dev/null +++ b/solid-5.25-fix-build-with-flex-2.6.0.patch @@ -0,0 +1,16 @@ +diff --git a/CMakeLists.txt b/CMakeLists.txt +index 8a394d1..d88e824 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -45,6 +45,11 @@ set_package_properties(BISON PROPERTIES + PURPOSE "Required for the Predicate parser" + ) + ++# flex-2.6.0 generates C90-incompatible code. KDEFrameworksCompilerSettings ++# forces C90 standard though, overriding our CFLAGS env variable, so we must ++# override the -std flag here ++set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c99") ++ + if (CMAKE_SYSTEM_NAME MATCHES Linux) + find_package( UDev ) + From d25c561e5875b65fa7a284fe114806438068f56d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Vr=C3=A1til?= Date: Thu, 8 Sep 2016 10:24:06 +0200 Subject: [PATCH 047/155] KDE Frameworks 5.26.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index ca56bdf..5561176 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ /solid-5.23.0.tar.xz /solid-5.24.0.tar.xz /solid-5.25.0.tar.xz +/solid-5.26.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 89037e6..05a6cde 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.25.0 +Version: 5.26.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -112,6 +112,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Wed Sep 07 2016 Daniel Vrátil - 5.26.0-1 +- KDE Frameworks 5.26.0 + * Mon Aug 08 2016 Daniel Vrátil - 5.25.0-1 - KDE Frameworks 5.25.0 diff --git a/sources b/sources index d608b80..774d991 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -3ca487d5660ee83d0b2165e525ea5795 solid-5.25.0.tar.xz +1c5c8be01f5dffdf7551db5e576f1096 solid-5.26.0.tar.xz From 42cff2b4376886d811647ebb82ca145a2adb29d4 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 3 Oct 2016 13:39:40 -0500 Subject: [PATCH 048/155] 5.27.0 --- .gitignore | 1 + kf5-solid.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 5561176..6535937 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ /solid-5.24.0.tar.xz /solid-5.25.0.tar.xz /solid-5.26.0.tar.xz +/solid-5.27.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 05a6cde..2c72e9d 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,8 +1,8 @@ %global framework solid Name: kf5-%{framework} -Version: 5.26.0 -Release: 1%{?dist} +Version: 5.27.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -112,6 +112,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon Oct 03 2016 Rex Dieter - 5.27.0-1 +- 5.27.0 + * Wed Sep 07 2016 Daniel Vrátil - 5.26.0-1 - KDE Frameworks 5.26.0 diff --git a/sources b/sources index 774d991..076809c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -1c5c8be01f5dffdf7551db5e576f1096 solid-5.26.0.tar.xz +9988adc243d0b4150aafb60120450749 solid-5.27.0.tar.xz From e534c441fdb3eed62aeb5e4b1a602ad25beddc04 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Fri, 16 Dec 2016 09:04:16 -0600 Subject: [PATCH 049/155] 5.29.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 6535937..9708525 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ /solid-5.25.0.tar.xz /solid-5.26.0.tar.xz /solid-5.27.0.tar.xz +/solid-5.29.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 2c72e9d..15dcbe9 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.27.0 +Version: 5.29.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -112,6 +112,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Fri Dec 16 2016 Rex Dieter - 5.29.0-1 +- 5.29.0 + * Mon Oct 03 2016 Rex Dieter - 5.27.0-1 - 5.27.0 diff --git a/sources b/sources index 076809c..98856f0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -9988adc243d0b4150aafb60120450749 solid-5.27.0.tar.xz +SHA512 (solid-5.29.0.tar.xz) = 86466d72736def30d82b4598b57f3154d1f6b6830d404b9301645b744e4f7c9cfec91934c3e2a20dac7d6cecb43edb9c95c1e13b5b4ac25f19db285fe89e309d From 342e61e9d04c5b5e3148398583a81d4e814e1860 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Fri, 16 Dec 2016 11:53:37 -0600 Subject: [PATCH 050/155] 5.29.0 --- kf5-solid.spec | 3 +++ 1 file changed, 3 insertions(+) diff --git a/kf5-solid.spec b/kf5-solid.spec index 15dcbe9..8e38296 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -115,6 +115,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} * Fri Dec 16 2016 Rex Dieter - 5.29.0-1 - 5.29.0 +* Fri Dec 16 2016 Rex Dieter - 5.29.0-1 +- 5.29.0 + * Mon Oct 03 2016 Rex Dieter - 5.27.0-1 - 5.27.0 From 8ef900f3512eb06d8e12b473178bf3965e686d0d Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 6 Feb 2017 12:15:19 -0600 Subject: [PATCH 051/155] 5.31.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 9708525..d42307b 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ /solid-5.26.0.tar.xz /solid-5.27.0.tar.xz /solid-5.29.0.tar.xz +/solid-5.31.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 8e38296..03f31de 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.29.0 +Version: 5.31.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -112,6 +112,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon Feb 06 2017 Rex Dieter - 5.31.0-1 +- 5.31.0 + * Fri Dec 16 2016 Rex Dieter - 5.29.0-1 - 5.29.0 diff --git a/sources b/sources index 98856f0..8e97d9e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.29.0.tar.xz) = 86466d72736def30d82b4598b57f3154d1f6b6830d404b9301645b744e4f7c9cfec91934c3e2a20dac7d6cecb43edb9c95c1e13b5b4ac25f19db285fe89e309d +SHA512 (solid-5.31.0.tar.xz) = 2d4c8d571a42e53dca0c270e3803abe71fd2a1e1ccc1439fd677ccb34cf0fb1230de04d9f898ea97ec4b936c910786442d5c71206154e79a2dbaaca54bd90af3 From 5720d189e6fa492bd641dad3c029b558b5e4c244 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sat, 4 Mar 2017 14:35:43 -0600 Subject: [PATCH 052/155] 5.32.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index d42307b..1011736 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ /solid-5.27.0.tar.xz /solid-5.29.0.tar.xz /solid-5.31.0.tar.xz +/solid-5.32.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 03f31de..117591d 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.31.0 +Version: 5.32.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -112,6 +112,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Sat Mar 04 2017 Rex Dieter - 5.32.0-1 +- 5.32.0 + * Mon Feb 06 2017 Rex Dieter - 5.31.0-1 - 5.31.0 diff --git a/sources b/sources index 8e97d9e..9ec246a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.31.0.tar.xz) = 2d4c8d571a42e53dca0c270e3803abe71fd2a1e1ccc1439fd677ccb34cf0fb1230de04d9f898ea97ec4b936c910786442d5c71206154e79a2dbaaca54bd90af3 +SHA512 (solid-5.32.0.tar.xz) = 29b98e280150a0011779df3bee3e143ffb5cf5145d282af4132b13a0e69fcb73bfd169e02add06b1f522052c3b8ecd2765137d330c4be1aa18155b6491154518 From 85eecc0d581d489a0c98e50dea3dc056e6e4a5be Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 3 Apr 2017 08:22:33 -0500 Subject: [PATCH 053/155] 5.33.0 --- .gitignore | 1 + kf5-solid.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 1011736..57b78dc 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ /solid-5.29.0.tar.xz /solid-5.31.0.tar.xz /solid-5.32.0.tar.xz +/solid-5.33.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 117591d..04cef50 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,12 +1,12 @@ %global framework solid Name: kf5-%{framework} -Version: 5.32.0 +Version: 5.33.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ -URL: https://quickgit.kde.org/?p=%{framework}.git +URL: https://cgit.kde.org/%{framework}.git %global versiondir %(echo %{version} | cut -d. -f1-2) %global revision %(echo %{version} | cut -d. -f3) @@ -112,6 +112,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon Apr 03 2017 Rex Dieter - 5.33.0-1 +- 5.33.0 + * Sat Mar 04 2017 Rex Dieter - 5.32.0-1 - 5.32.0 diff --git a/sources b/sources index 9ec246a..50b799b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.32.0.tar.xz) = 29b98e280150a0011779df3bee3e143ffb5cf5145d282af4132b13a0e69fcb73bfd169e02add06b1f522052c3b8ecd2765137d330c4be1aa18155b6491154518 +SHA512 (solid-5.33.0.tar.xz) = 4bd9ad17e2370d5455bc6eed2d86330857a44ecdeff2f3a4e0a2f2a3d10c423e33dab87da48329f0241005db82e12e940a918a39c139f13e00a1793d458a8187 From b1d736f1d480a1a9e11f551b2eff6325c3723d45 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 15 May 2017 11:17:46 -0500 Subject: [PATCH 054/155] 5.34.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 57b78dc..5a8ba54 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,4 @@ /solid-5.31.0.tar.xz /solid-5.32.0.tar.xz /solid-5.33.0.tar.xz +/solid-5.34.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 04cef50..5767f88 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.33.0 +Version: 5.34.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -112,6 +112,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon May 15 2017 Rex Dieter - 5.34.0-1 +- 5.34.0 + * Mon Apr 03 2017 Rex Dieter - 5.33.0-1 - 5.33.0 diff --git a/sources b/sources index 50b799b..2b07175 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.33.0.tar.xz) = 4bd9ad17e2370d5455bc6eed2d86330857a44ecdeff2f3a4e0a2f2a3d10c423e33dab87da48329f0241005db82e12e940a918a39c139f13e00a1793d458a8187 +SHA512 (solid-5.34.0.tar.xz) = 11245d84a1f78ceb3bb696902df27652bc64010faac714a8d0aafc9a64c9d6e8c826893420b2539aac23f97d7e3d240d3e612e1a211b254a7aa50ff5dfcb404b From 075f0fab87bbab10e8a482ff997a48f765678f1a Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sun, 4 Jun 2017 07:25:39 -0500 Subject: [PATCH 055/155] 5.35.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 5a8ba54..1c09549 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ /solid-5.32.0.tar.xz /solid-5.33.0.tar.xz /solid-5.34.0.tar.xz +/solid-5.35.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 5767f88..fc519dc 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.34.0 +Version: 5.35.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -112,6 +112,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Sun Jun 04 2017 Rex Dieter - 5.35.0-1 +- 5.35.0 + * Mon May 15 2017 Rex Dieter - 5.34.0-1 - 5.34.0 diff --git a/sources b/sources index 2b07175..c00cd34 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.34.0.tar.xz) = 11245d84a1f78ceb3bb696902df27652bc64010faac714a8d0aafc9a64c9d6e8c826893420b2539aac23f97d7e3d240d3e612e1a211b254a7aa50ff5dfcb404b +SHA512 (solid-5.35.0.tar.xz) = 2784a34c5a444edc4806ff38b4074ceabbd43b4ee20e9e7a938ef703c92f2fe14080dae8832a88b4f0ecce8c22dae0899ab7f4588417d8b889c08c04f16e2e2f From 39eab41b11ad8b5bc373cff02aac5e970f7fe38b Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 3 Jul 2017 12:22:44 -0500 Subject: [PATCH 056/155] 5.36.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 1c09549..72ddd75 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,4 @@ /solid-5.33.0.tar.xz /solid-5.34.0.tar.xz /solid-5.35.0.tar.xz +/solid-5.36.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index fc519dc..f5737c9 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.35.0 +Version: 5.36.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -112,6 +112,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon Jul 03 2017 Rex Dieter - 5.36.0-1 +- 5.36.0 + * Sun Jun 04 2017 Rex Dieter - 5.35.0-1 - 5.35.0 diff --git a/sources b/sources index c00cd34..74e3f73 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.35.0.tar.xz) = 2784a34c5a444edc4806ff38b4074ceabbd43b4ee20e9e7a938ef703c92f2fe14080dae8832a88b4f0ecce8c22dae0899ab7f4588417d8b889c08c04f16e2e2f +SHA512 (solid-5.36.0.tar.xz) = 49b7889cd2cedd1e4d19966e8244db662a9084fe295dc55d5831a3af3ccb86b0ca33f2ffab8662f2ab19f711573fdf58519396dac93cf2f994275b62bf6eb5f2 From 95d395bc45e25ac7e0f22c6275efebe4162b1d41 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 26 Jul 2017 17:41:18 +0000 Subject: [PATCH 057/155] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- kf5-solid.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-solid.spec b/kf5-solid.spec index f5737c9..281dc49 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.36.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -112,6 +112,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Wed Jul 26 2017 Fedora Release Engineering - 5.36.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Mon Jul 03 2017 Rex Dieter - 5.36.0-1 - 5.36.0 From 93d6fc045f7583e192da32cda5fb7d28aaec6ac1 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 3 Aug 2017 00:33:11 +0000 Subject: [PATCH 058/155] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild --- kf5-solid.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-solid.spec b/kf5-solid.spec index 281dc49..e9eab69 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.36.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -112,6 +112,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Thu Aug 03 2017 Fedora Release Engineering - 5.36.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + * Wed Jul 26 2017 Fedora Release Engineering - 5.36.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From a6ccc32444c46096dd6549049c363b70ac05ea19 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Fri, 4 Aug 2017 15:32:11 -0500 Subject: [PATCH 059/155] .spec cosmetics, update URL add runtime deps: udisks2, upower --- .gitignore | 16 ---------------- kf5-solid.spec | 24 ++++++++++++++++-------- 2 files changed, 16 insertions(+), 24 deletions(-) diff --git a/.gitignore b/.gitignore index 72ddd75..2665ae3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,17 +1 @@ -/solid-5.18.0.tar.xz -/solid-5.19.0.tar.xz -/solid-5.20.0.tar.xz -/solid-5.21.0.tar.xz -/solid-5.22.0.tar.xz -/solid-5.23.0.tar.xz -/solid-5.24.0.tar.xz -/solid-5.25.0.tar.xz -/solid-5.26.0.tar.xz -/solid-5.27.0.tar.xz -/solid-5.29.0.tar.xz -/solid-5.31.0.tar.xz -/solid-5.32.0.tar.xz -/solid-5.33.0.tar.xz -/solid-5.34.0.tar.xz -/solid-5.35.0.tar.xz /solid-5.36.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index e9eab69..8ffc09b 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,12 +1,12 @@ %global framework solid -Name: kf5-%{framework} +Name: kf5-%{framework} Version: 5.36.0 -Release: 3%{?dist} -Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information +Release: 4%{?dist} +Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information -License: LGPLv2+ -URL: https://cgit.kde.org/%{framework}.git +License: LGPLv2+ +URL: https://solid.kde.org/ %global versiondir %(echo %{version} | cut -d. -f1-2) %global revision %(echo %{version} | cut -d. -f3) @@ -15,7 +15,7 @@ URL: https://cgit.kde.org/%{framework}.git %else %global stable stable %endif -Source0: http://download.kde.org/%{stable}/frameworks/%{versiondir}/%{framework}-%{version}.tar.xz +Source0: http://download.kde.org/%{stable}/frameworks/%{versiondir}/%{framework}-%{version}.tar.xz # Workaround https://bugzilla.redhat.com/show_bug.cgi?id=1364943 # Technically only affects rawhide/f26, but is harmless elsewhere too @@ -33,12 +33,16 @@ BuildRequires: systemd-devel # Predicate parser deps BuildRequires: bison BuildRequires: flex +# really runtime-only dep, but doesn't hurt to check availability at buildtime +BuildRequires: media-player-info %if 0%{?fedora} > 23 Recommends: media-player-info +Recommends: udisks2 +Recommends: upower %else -# really runtime-only dep, but doesn't hurt to check availability at buildtime -BuildRequires: media-player-info Requires: media-player-info +Requires: udisks2 +Requires: upower %endif %endif @@ -112,6 +116,10 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Fri Aug 04 2017 Rex Dieter - 5.36.0-4 +- .spec cosmetics, update URL +- add runtime deps: udisks2, upower + * Thu Aug 03 2017 Fedora Release Engineering - 5.36.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild From 6119f5de24d5b5bcee48e824ecc6b8deb28a9e39 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Fri, 25 Aug 2017 09:40:21 -0500 Subject: [PATCH 060/155] 5.37.0 --- .gitignore | 1 + kf5-solid.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 2665ae3..c2b4ef4 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /solid-5.36.0.tar.xz +/solid-5.37.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 8ffc09b..95f38d0 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,8 +1,8 @@ %global framework solid Name: kf5-%{framework} -Version: 5.36.0 -Release: 4%{?dist} +Version: 5.37.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -116,6 +116,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Fri Aug 25 2017 Rex Dieter - 5.37.0-1 +- 5.37.0 + * Fri Aug 04 2017 Rex Dieter - 5.36.0-4 - .spec cosmetics, update URL - add runtime deps: udisks2, upower diff --git a/sources b/sources index 74e3f73..e566758 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.36.0.tar.xz) = 49b7889cd2cedd1e4d19966e8244db662a9084fe295dc55d5831a3af3ccb86b0ca33f2ffab8662f2ab19f711573fdf58519396dac93cf2f994275b62bf6eb5f2 +SHA512 (solid-5.37.0.tar.xz) = 11cebe83b19f488804fc2608c1dd5c8a3da8ba63f10ccfe445f3c9ca19de2252857791c520f55d08edc87dfc9459d340ea81fc598b10fea2b1080cb03a24d18d From 3d649a4021c8c4294ab717c41bf8ec64e4bb5491 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 11 Sep 2017 15:07:02 -0500 Subject: [PATCH 061/155] 5.38.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index c2b4ef4..79cce8a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /solid-5.36.0.tar.xz /solid-5.37.0.tar.xz +/solid-5.38.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 95f38d0..1b2ea87 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.37.0 +Version: 5.38.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -116,6 +116,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon Sep 11 2017 Rex Dieter - 5.38.0-1 +- 5.38.0 + * Fri Aug 25 2017 Rex Dieter - 5.37.0-1 - 5.37.0 diff --git a/sources b/sources index e566758..64df8aa 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.37.0.tar.xz) = 11cebe83b19f488804fc2608c1dd5c8a3da8ba63f10ccfe445f3c9ca19de2252857791c520f55d08edc87dfc9459d340ea81fc598b10fea2b1080cb03a24d18d +SHA512 (solid-5.38.0.tar.xz) = 1b6c755c242f04aed776dda3aba4e0377636230ff616374bf87d0f50d47846a252817e9a08df5ec08b8a30844dc799fcc9450a2288a1ceed30ca5b326c0e3fa7 From e76ecf52c6161a5e25ced73fa887a3d2724c0733 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sun, 8 Oct 2017 10:10:14 -0500 Subject: [PATCH 062/155] 5.39.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 79cce8a..6c9a827 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /solid-5.36.0.tar.xz /solid-5.37.0.tar.xz /solid-5.38.0.tar.xz +/solid-5.39.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 1b2ea87..1354a4d 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.38.0 +Version: 5.39.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -116,6 +116,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Sun Oct 08 2017 Rex Dieter - 5.39.0-1 +- 5.39.0 + * Mon Sep 11 2017 Rex Dieter - 5.38.0-1 - 5.38.0 diff --git a/sources b/sources index 64df8aa..1cab949 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.38.0.tar.xz) = 1b6c755c242f04aed776dda3aba4e0377636230ff616374bf87d0f50d47846a252817e9a08df5ec08b8a30844dc799fcc9450a2288a1ceed30ca5b326c0e3fa7 +SHA512 (solid-5.39.0.tar.xz) = ab6775dbe0cf0f06e3049c4d54552d7231c3ce55176e9d3912c729613e2554be4a750356fe681d4d8f0cf1f4647f42a4076442357a59bd2800a6576199ac9352 From b8a09b4517c942662a68eb4fbb6375a64f53d756 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Fri, 10 Nov 2017 09:48:56 -0600 Subject: [PATCH 063/155] 5.40.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 6c9a827..846d854 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /solid-5.37.0.tar.xz /solid-5.38.0.tar.xz /solid-5.39.0.tar.xz +/solid-5.40.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 1354a4d..b6f0182 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.39.0 +Version: 5.40.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -116,6 +116,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Fri Nov 10 2017 Rex Dieter - 5.40.0-1 +- 5.40.0 + * Sun Oct 08 2017 Rex Dieter - 5.39.0-1 - 5.39.0 diff --git a/sources b/sources index 1cab949..1b86a92 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.39.0.tar.xz) = ab6775dbe0cf0f06e3049c4d54552d7231c3ce55176e9d3912c729613e2554be4a750356fe681d4d8f0cf1f4647f42a4076442357a59bd2800a6576199ac9352 +SHA512 (solid-5.40.0.tar.xz) = 83a63f08569b385ef21e3401aabe61c04cc7a727e0788b126a9c23f659fb24186f8810223b8b64da605033f46775b5b3ce6e8b2f1b2886b2b533afbcf2691bb9 From 8cc97e557ad2516b15b03d18822b5923e9fd1ef7 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 4 Dec 2017 10:48:14 -0600 Subject: [PATCH 064/155] 5.41.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 846d854..776178a 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /solid-5.38.0.tar.xz /solid-5.39.0.tar.xz /solid-5.40.0.tar.xz +/solid-5.41.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index b6f0182..54d21b4 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.40.0 +Version: 5.41.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -116,6 +116,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon Dec 04 2017 Rex Dieter - 5.41.0-1 +- 5.41.0 + * Fri Nov 10 2017 Rex Dieter - 5.40.0-1 - 5.40.0 diff --git a/sources b/sources index 1b86a92..3d1792c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.40.0.tar.xz) = 83a63f08569b385ef21e3401aabe61c04cc7a727e0788b126a9c23f659fb24186f8810223b8b64da605033f46775b5b3ce6e8b2f1b2886b2b533afbcf2691bb9 +SHA512 (solid-5.41.0.tar.xz) = a2ebe5352863b27c4ff83d3d6f6961de00ba3ada81e697a1519c9f86849561dc3da8d3cc8df5a79c2cd2288c08f7c033b6bbefff02ba938cb450b38cc0db81c3 From 08dc7ffb703a2f0f20f43ab17d235ef804afcf9d Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 8 Jan 2018 09:09:58 -0600 Subject: [PATCH 065/155] 5.42.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 776178a..bf0f574 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ /solid-5.39.0.tar.xz /solid-5.40.0.tar.xz /solid-5.41.0.tar.xz +/solid-5.42.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 54d21b4..9e029b6 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.41.0 +Version: 5.42.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -116,6 +116,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon Jan 08 2018 Rex Dieter - 5.42.0-1 +- 5.42.0 + * Mon Dec 04 2017 Rex Dieter - 5.41.0-1 - 5.41.0 diff --git a/sources b/sources index 3d1792c..6b235b3 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.41.0.tar.xz) = a2ebe5352863b27c4ff83d3d6f6961de00ba3ada81e697a1519c9f86849561dc3da8d3cc8df5a79c2cd2288c08f7c033b6bbefff02ba938cb450b38cc0db81c3 +SHA512 (solid-5.42.0.tar.xz) = 2f7adfea5127821cec068151ecc8225ac09359494a890d3012b6d05eddc735f596982fb0742be95e2d8e4cbbf717dd7cc8119284ca39cfb4536f8c9ac433b66d From f9807e648206eb01a99da4d516dda18845b906e7 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Wed, 7 Feb 2018 10:19:14 -0600 Subject: [PATCH 066/155] 5.43.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index bf0f574..1c84aa6 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ /solid-5.40.0.tar.xz /solid-5.41.0.tar.xz /solid-5.42.0.tar.xz +/solid-5.43.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 9e029b6..ca0f419 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.42.0 +Version: 5.43.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -116,6 +116,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Wed Feb 07 2018 Rex Dieter - 5.43.0-1 +- 5.43.0 + * Mon Jan 08 2018 Rex Dieter - 5.42.0-1 - 5.42.0 diff --git a/sources b/sources index 6b235b3..f6fd1cf 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.42.0.tar.xz) = 2f7adfea5127821cec068151ecc8225ac09359494a890d3012b6d05eddc735f596982fb0742be95e2d8e4cbbf717dd7cc8119284ca39cfb4536f8c9ac433b66d +SHA512 (solid-5.43.0.tar.xz) = 6a7dc7d75a0340e69900758be5aecc201bf8c1e5a28b549e4f50107ae9ff800701b0abb88cf0c917347723e62d3222f4e066e399c916c537f3560ac7b9d20f1d From 8b5a87dfe990b91f70f3daa06ce27a60dbcb8f04 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Wed, 21 Feb 2018 10:37:16 -0600 Subject: [PATCH 067/155] old sources --- .gitignore | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.gitignore b/.gitignore index 1c84aa6..9ac56de 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1 @@ -/solid-5.36.0.tar.xz -/solid-5.37.0.tar.xz -/solid-5.38.0.tar.xz -/solid-5.39.0.tar.xz -/solid-5.40.0.tar.xz -/solid-5.41.0.tar.xz -/solid-5.42.0.tar.xz /solid-5.43.0.tar.xz From 5b4336ff89f90366ca57bc3b1bd21c050dea6e60 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Wed, 21 Feb 2018 10:37:27 -0600 Subject: [PATCH 068/155] backport automount fix (kde#389479) use %ldconfig_scriptlets, %make_build, %find_lang_kf5 move translations to main pkg --- D10671.diff | 14 ++++++++++ kf5-solid.spec | 30 +++++++++++++--------- solid-5.25-fix-build-with-flex-2.6.0.patch | 16 ------------ 3 files changed, 32 insertions(+), 28 deletions(-) create mode 100644 D10671.diff delete mode 100644 solid-5.25-fix-build-with-flex-2.6.0.patch diff --git a/D10671.diff b/D10671.diff new file mode 100644 index 0000000..c869886 --- /dev/null +++ b/D10671.diff @@ -0,0 +1,14 @@ +diff --git a/src/solid/devices/backends/udisks2/udisksstorageaccess.cpp b/src/solid/devices/backends/udisks2/udisksstorageaccess.cpp +--- a/src/solid/devices/backends/udisks2/udisksstorageaccess.cpp ++++ b/src/solid/devices/backends/udisks2/udisksstorageaccess.cpp +@@ -111,7 +111,8 @@ + + const QString path = filePath(); + +- return !path.startsWith(QLatin1String("/media/")) ++ return !path.isEmpty() ++ && !path.startsWith(QLatin1String("/media/")) + && !path.startsWith(QLatin1String("/run/media/")) + && !path.startsWith(QDir::homePath()); + } + diff --git a/kf5-solid.spec b/kf5-solid.spec index ca0f419..be6c9f2 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.43.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -17,9 +17,10 @@ URL: https://solid.kde.org/ %endif Source0: http://download.kde.org/%{stable}/frameworks/%{versiondir}/%{framework}-%{version}.tar.xz -# Workaround https://bugzilla.redhat.com/show_bug.cgi?id=1364943 -# Technically only affects rawhide/f26, but is harmless elsewhere too -Patch0: solid-5.25-fix-build-with-flex-2.6.0.patch +## upstreamable patches +# https://bugs.kde.org/show_bug.cgi?id=389479 +# https://phabricator.kde.org/D10671 +Patch200: D10671.diff BuildRequires: extra-cmake-modules >= %{version} BuildRequires: kf5-rpm-macros >= %{version} @@ -72,14 +73,14 @@ Requires: %{name} = %{version}-%{release} Summary: Development files for %{name} Requires: %{name}%{?_isa} = %{version}-%{release} Requires: qt5-qtbase-devel - %description devel The %{name}-devel package contains libraries and header files for developing applications that use %{name}. %prep -%autosetup -n %{framework}-%{version} +%autosetup -n %{framework}-%{version} -p1 + %build mkdir %{_target_platform} @@ -87,23 +88,23 @@ pushd %{_target_platform} %{cmake_kf5} .. popd -make %{?_smp_mflags} -C %{_target_platform} +%make_build -C %{_target_platform} + %install make install/fast DESTDIR=%{buildroot} -C %{_target_platform} -%find_lang solid5_qt --with-qt --all-name +%find_lang_kf5 solid5_qt -%files +%files -f solid5_qt.lang %doc README.md TODO %license COPYING.LIB %{_kf5_bindir}/solid-hardware5 -%post libs -p /sbin/ldconfig -%postun libs -p /sbin/ldconfig +%ldconfig_scriptlets libs -%files libs -f solid5_qt.lang +%files libs %{_kf5_qmldir}/org/kde/solid/ %{_kf5_libdir}/libKF5Solid.so.* @@ -116,6 +117,11 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Wed Feb 21 2018 Rex Dieter - 5.43.0-2 +- backport automount fix (kde#389479) +- use %%ldconfig_scriptlets, %%make_build, %%find_lang_kf5 +- move translations to main pkg + * Wed Feb 07 2018 Rex Dieter - 5.43.0-1 - 5.43.0 diff --git a/solid-5.25-fix-build-with-flex-2.6.0.patch b/solid-5.25-fix-build-with-flex-2.6.0.patch deleted file mode 100644 index 8fd6d8d..0000000 --- a/solid-5.25-fix-build-with-flex-2.6.0.patch +++ /dev/null @@ -1,16 +0,0 @@ -diff --git a/CMakeLists.txt b/CMakeLists.txt -index 8a394d1..d88e824 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -45,6 +45,11 @@ set_package_properties(BISON PROPERTIES - PURPOSE "Required for the Predicate parser" - ) - -+# flex-2.6.0 generates C90-incompatible code. KDEFrameworksCompilerSettings -+# forces C90 standard though, overriding our CFLAGS env variable, so we must -+# override the -std flag here -+set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c99") -+ - if (CMAKE_SYSTEM_NAME MATCHES Linux) - find_package( UDev ) - From a6509f232b59800a8fd20d3d13bb37f149472a50 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sat, 3 Mar 2018 08:23:02 -0600 Subject: [PATCH 069/155] 5.44.0 --- .gitignore | 1 + D10671.diff | 14 -------------- kf5-solid.spec | 10 +++++----- sources | 2 +- 4 files changed, 7 insertions(+), 20 deletions(-) delete mode 100644 D10671.diff diff --git a/.gitignore b/.gitignore index 9ac56de..87da11d 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /solid-5.43.0.tar.xz +/solid-5.44.0.tar.xz diff --git a/D10671.diff b/D10671.diff deleted file mode 100644 index c869886..0000000 --- a/D10671.diff +++ /dev/null @@ -1,14 +0,0 @@ -diff --git a/src/solid/devices/backends/udisks2/udisksstorageaccess.cpp b/src/solid/devices/backends/udisks2/udisksstorageaccess.cpp ---- a/src/solid/devices/backends/udisks2/udisksstorageaccess.cpp -+++ b/src/solid/devices/backends/udisks2/udisksstorageaccess.cpp -@@ -111,7 +111,8 @@ - - const QString path = filePath(); - -- return !path.startsWith(QLatin1String("/media/")) -+ return !path.isEmpty() -+ && !path.startsWith(QLatin1String("/media/")) - && !path.startsWith(QLatin1String("/run/media/")) - && !path.startsWith(QDir::homePath()); - } - diff --git a/kf5-solid.spec b/kf5-solid.spec index be6c9f2..d741c0a 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,8 +1,8 @@ %global framework solid Name: kf5-%{framework} -Version: 5.43.0 -Release: 2%{?dist} +Version: 5.44.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -18,9 +18,6 @@ URL: https://solid.kde.org/ Source0: http://download.kde.org/%{stable}/frameworks/%{versiondir}/%{framework}-%{version}.tar.xz ## upstreamable patches -# https://bugs.kde.org/show_bug.cgi?id=389479 -# https://phabricator.kde.org/D10671 -Patch200: D10671.diff BuildRequires: extra-cmake-modules >= %{version} BuildRequires: kf5-rpm-macros >= %{version} @@ -117,6 +114,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Sat Mar 03 2018 Rex Dieter - 5.44.0-1 +- 5.44.0 + * Wed Feb 21 2018 Rex Dieter - 5.43.0-2 - backport automount fix (kde#389479) - use %%ldconfig_scriptlets, %%make_build, %%find_lang_kf5 diff --git a/sources b/sources index f6fd1cf..741b46a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.43.0.tar.xz) = 6a7dc7d75a0340e69900758be5aecc201bf8c1e5a28b549e4f50107ae9ff800701b0abb88cf0c917347723e62d3222f4e066e399c916c537f3560ac7b9d20f1d +SHA512 (solid-5.44.0.tar.xz) = 5e60699251be9703c33332fb5a445cea5e8e18d6b9adce093e1a3cdc89c6084696ce8fb9745458a6aa6f1bff8a499fba2a76fd641fe2b24541cb3371d2bd5f91 From 3d6730d7835d9ee2c99d27178807bfd7123edaaf Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sun, 8 Apr 2018 07:47:45 -0500 Subject: [PATCH 070/155] 5.45.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 87da11d..12e34fd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /solid-5.43.0.tar.xz /solid-5.44.0.tar.xz +/solid-5.45.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index d741c0a..f7009e1 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.44.0 +Version: 5.45.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -114,6 +114,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Sun Apr 08 2018 Rex Dieter - 5.45.0-1 +- 5.45.0 + * Sat Mar 03 2018 Rex Dieter - 5.44.0-1 - 5.44.0 diff --git a/sources b/sources index 741b46a..fec7dad 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.44.0.tar.xz) = 5e60699251be9703c33332fb5a445cea5e8e18d6b9adce093e1a3cdc89c6084696ce8fb9745458a6aa6f1bff8a499fba2a76fd641fe2b24541cb3371d2bd5f91 +SHA512 (solid-5.45.0.tar.xz) = 3b650269b6552e6466ad8edb455c20f930cc777dce64187b535e0889611a69b76044e1ff0f8d33926900aa30764ec17f5637fd5b9fab129e48c106cd3a06ec49 From 655fcef9e9547de2422833bd65ae9e250cde4646 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Wed, 2 May 2018 10:56:47 -0500 Subject: [PATCH 071/155] pull in upstream fixes --- ...t-handling-of-removable-file-systems.patch | 49 ++++++++ ...sks-Optimize-several-property-checks.patch | 101 +++++++++++++++ ...uplicate-property-entries-in-the-cac.patch | 58 +++++++++ ...rty-cache-when-an-interface-is-remov.patch | 43 +++++++ ...e-mount-point-after-mount-operations.patch | 118 ++++++++++++++++++ kf5-solid.spec | 10 +- 6 files changed, 378 insertions(+), 1 deletion(-) create mode 100644 0001-UDisks-Correct-handling-of-removable-file-systems.patch create mode 100644 0002-UDisks-Optimize-several-property-checks.patch create mode 100644 0003-Avoid-creating-duplicate-property-entries-in-the-cac.patch create mode 100644 0004-Invalidate-property-cache-when-an-interface-is-remov.patch create mode 100644 0005-Update-mount-point-after-mount-operations.patch diff --git a/0001-UDisks-Correct-handling-of-removable-file-systems.patch b/0001-UDisks-Correct-handling-of-removable-file-systems.patch new file mode 100644 index 0000000..91845ea --- /dev/null +++ b/0001-UDisks-Correct-handling-of-removable-file-systems.patch @@ -0,0 +1,49 @@ +From 122a6cd8989a4bd3096fddea908a1c2b223be62a Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Stefan=20Br=C3=BCns?= +Date: Sun, 8 Apr 2018 22:12:10 +0200 +Subject: [PATCH 1/5] [UDisks] Correct handling of removable file systems + +Summary: +Filesystems which have no fstab entry have an empty filepath (aka +mountpoint), but these should be mountable nevertheless. +The StorageAccess.ignored flag should only be used as a hint if a +device (filesystem) should create a device item in e.g Dolphin. + +BUG: 391706 +CCBUG: 389479 + +Reviewers: ngraham, broulik + +Reviewed By: ngraham + +Subscribers: #frameworks + +Tags: #frameworks + +Differential Revision: https://phabricator.kde.org/D12051 +--- + src/solid/devices/backends/udisks2/udisksstorageaccess.cpp | 8 ++++---- + 1 file changed, 4 insertions(+), 4 deletions(-) + +diff --git a/src/solid/devices/backends/udisks2/udisksstorageaccess.cpp b/src/solid/devices/backends/udisks2/udisksstorageaccess.cpp +index dd8f76f..7db2263 100644 +--- a/src/solid/devices/backends/udisks2/udisksstorageaccess.cpp ++++ b/src/solid/devices/backends/udisks2/udisksstorageaccess.cpp +@@ -111,10 +111,10 @@ bool StorageAccess::isIgnored() const + + const QString path = filePath(); + +- return !path.isEmpty() +- && !path.startsWith(QLatin1String("/media/")) +- && !path.startsWith(QLatin1String("/run/media/")) +- && !path.startsWith(QDir::homePath()); ++ bool inUserPath = path.startsWith(QLatin1String("/media/")) || ++ path.startsWith(QLatin1String("/run/media/")) || ++ path.startsWith(QDir::homePath()); ++ return !inUserPath; + } + + bool StorageAccess::setup() +-- +2.14.3 + diff --git a/0002-UDisks-Optimize-several-property-checks.patch b/0002-UDisks-Optimize-several-property-checks.patch new file mode 100644 index 0000000..8c93670 --- /dev/null +++ b/0002-UDisks-Optimize-several-property-checks.patch @@ -0,0 +1,101 @@ +From 3c0f767f0337fc136976545cb29f89d76a4a5a8c Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Stefan=20Br=C3=BCns?= +Date: Tue, 10 Apr 2018 06:52:58 +0200 +Subject: [PATCH 2/5] [UDisks] Optimize several property checks + +Summary: +Use QStringLiteral for hasInterface argument + +Retrieve MountPoints propery just once when checking mount state. + +Test Plan: +make +solid-hardware5 list details + +Reviewers: #frameworks, broulik + +Reviewed By: broulik + +Subscribers: broulik + +Tags: #frameworks + +Differential Revision: https://phabricator.kde.org/D12123 +--- + src/solid/devices/backends/udisks2/udisksdevice.cpp | 19 ++++++++++--------- + 1 file changed, 10 insertions(+), 9 deletions(-) + +diff --git a/src/solid/devices/backends/udisks2/udisksdevice.cpp b/src/solid/devices/backends/udisks2/udisksdevice.cpp +index bbdd904..f3fdfff 100644 +--- a/src/solid/devices/backends/udisks2/udisksdevice.cpp ++++ b/src/solid/devices/backends/udisks2/udisksdevice.cpp +@@ -780,17 +780,17 @@ Solid::ErrorType Device::errorToSolidError(const QString &error) const + + bool Device::isBlock() const + { +- return hasInterface(UD2_DBUS_INTERFACE_BLOCK); ++ return hasInterface(QStringLiteral(UD2_DBUS_INTERFACE_BLOCK)); + } + + bool Device::isPartition() const + { +- return hasInterface(UD2_DBUS_INTERFACE_PARTITION); ++ return hasInterface(QStringLiteral(UD2_DBUS_INTERFACE_PARTITION)); + } + + bool Device::isPartitionTable() const + { +- return hasInterface(UD2_DBUS_INTERFACE_PARTITIONTABLE); ++ return hasInterface(QStringLiteral(UD2_DBUS_INTERFACE_PARTITIONTABLE)); + } + + bool Device::isStorageVolume() const +@@ -800,12 +800,12 @@ bool Device::isStorageVolume() const + + bool Device::isStorageAccess() const + { +- return hasInterface(UD2_DBUS_INTERFACE_FILESYSTEM) || isEncryptedContainer(); ++ return hasInterface(QStringLiteral(UD2_DBUS_INTERFACE_FILESYSTEM)) || isEncryptedContainer(); + } + + bool Device::isDrive() const + { +- return hasInterface(UD2_DBUS_INTERFACE_DRIVE); ++ return hasInterface(QStringLiteral(UD2_DBUS_INTERFACE_DRIVE)); + } + + bool Device::isOpticalDrive() const +@@ -837,12 +837,13 @@ bool Device::mightBeOpticalDisc() const + + bool Device::isMounted() const + { +- return propertyExists("MountPoints") && !qdbus_cast(prop("MountPoints")).isEmpty(); ++ QVariant mountPoints = prop(QStringLiteral("MountPoints")); ++ return mountPoints.isValid() && !qdbus_cast(mountPoints).isEmpty(); + } + + bool Device::isEncryptedContainer() const + { +- return hasInterface(UD2_DBUS_INTERFACE_ENCRYPTED); ++ return hasInterface(QStringLiteral(UD2_DBUS_INTERFACE_ENCRYPTED)); + } + + bool Device::isEncryptedCleartext() const +@@ -857,12 +858,12 @@ bool Device::isEncryptedCleartext() const + + bool Device::isSwap() const + { +- return hasInterface(UD2_DBUS_INTERFACE_SWAP); ++ return hasInterface(QStringLiteral(UD2_DBUS_INTERFACE_SWAP)); + } + + bool Device::isLoop() const + { +- return hasInterface(UD2_DBUS_INTERFACE_LOOP); ++ return hasInterface(QStringLiteral(UD2_DBUS_INTERFACE_LOOP)); + } + + QString Device::drivePath() const +-- +2.14.3 + diff --git a/0003-Avoid-creating-duplicate-property-entries-in-the-cac.patch b/0003-Avoid-creating-duplicate-property-entries-in-the-cac.patch new file mode 100644 index 0000000..a0f04cf --- /dev/null +++ b/0003-Avoid-creating-duplicate-property-entries-in-the-cac.patch @@ -0,0 +1,58 @@ +From 15047128e56b97f0c6df4628f87e3653a754ad95 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Stefan=20Br=C3=BCns?= +Date: Thu, 12 Apr 2018 00:02:29 +0200 +Subject: [PATCH 3/5] Avoid creating duplicate property entries in the cache + +Summary: +Properties are associated with a specific interface, although the Solid +UDisks2 backend merges properties from all interfaces into a single +namespace. +Fortunately most properties have either unique names accross interfaces, +or are consistent (e.g. "Size" in org.fd.UDisks2.{Block,Partition}), thus +this poses no problem in practice. +QMap<>::unite(other) behaves like QMap<>::insertMulti(item), i.e. the +map may contain multiple values per key, while QMap<>::insert(item) +updates the value for existing keys. + +Test Plan: +make +solid-hardware list details + +Reviewers: #frameworks, broulik + +Reviewed By: broulik + +Subscribers: broulik + +Tags: #frameworks + +Differential Revision: https://phabricator.kde.org/D12124 +--- + src/solid/devices/backends/udisks2/udisksdevicebackend.cpp | 8 ++++++-- + 1 file changed, 6 insertions(+), 2 deletions(-) + +diff --git a/src/solid/devices/backends/udisks2/udisksdevicebackend.cpp b/src/solid/devices/backends/udisks2/udisksdevicebackend.cpp +index 69ebc72..def7dff 100644 +--- a/src/solid/devices/backends/udisks2/udisksdevicebackend.cpp ++++ b/src/solid/devices/backends/udisks2/udisksdevicebackend.cpp +@@ -139,11 +139,15 @@ QVariantMap DeviceBackend::allProperties() const + QDBusPendingReply reply = QDBusConnection::systemBus().call(call); + + if (reply.isValid()) { +- m_propertyCache.unite(reply.value()); ++ auto props = reply.value(); ++ // Can not use QMap<>::unite(), as it allows multiple values per key ++ for (auto it = props.cbegin(); it != props.cend(); ++it) { ++ m_propertyCache.insert(it.key(), it.value()); ++ } + } else { + qWarning() << "Error getting props:" << reply.error().name() << reply.error().message(); + } +- //qDebug() << "After iface" << iface << ", cache now contains" << m_cache.size() << "items"; ++ //qDebug() << "After iface" << iface << ", cache now contains" << m_propertyCache.size() << "items"; + } + + return m_propertyCache; +-- +2.14.3 + diff --git a/0004-Invalidate-property-cache-when-an-interface-is-remov.patch b/0004-Invalidate-property-cache-when-an-interface-is-remov.patch new file mode 100644 index 0000000..df62931 --- /dev/null +++ b/0004-Invalidate-property-cache-when-an-interface-is-remov.patch @@ -0,0 +1,43 @@ +From 796dea6c044030bc2c02bcfcc967e1fffe9fa276 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Stefan=20Br=C3=BCns?= +Date: Thu, 12 Apr 2018 00:12:54 +0200 +Subject: [PATCH 4/5] Invalidate property cache when an interface is removed + +Summary: +As we do not know which property belongs to which interface we have to +drop the whole cache whenever one or multiples interface are removed. + +Test Plan: +make +solid-hardware5 list details +solid-hardware5 listen + +Reviewers: #frameworks, broulik + +Reviewed By: broulik + +Tags: #frameworks + +Differential Revision: https://phabricator.kde.org/D12126 +--- + src/solid/devices/backends/udisks2/udisksdevicebackend.cpp | 6 ++++++ + 1 file changed, 6 insertions(+) + +diff --git a/src/solid/devices/backends/udisks2/udisksdevicebackend.cpp b/src/solid/devices/backends/udisks2/udisksdevicebackend.cpp +index def7dff..2349d54 100644 +--- a/src/solid/devices/backends/udisks2/udisksdevicebackend.cpp ++++ b/src/solid/devices/backends/udisks2/udisksdevicebackend.cpp +@@ -247,4 +247,10 @@ void DeviceBackend::slotInterfacesRemoved(const QDBusObjectPath &object_path, co + Q_FOREACH (const QString &iface, interfaces) { + m_interfaces.removeAll(iface); + } ++ ++ // We don't know which property belongs to which interface, so remove all ++ m_propertyCache.clear(); ++ if (!m_interfaces.isEmpty()) { ++ allProperties(); ++ } + } +-- +2.14.3 + diff --git a/0005-Update-mount-point-after-mount-operations.patch b/0005-Update-mount-point-after-mount-operations.patch new file mode 100644 index 0000000..177767b --- /dev/null +++ b/0005-Update-mount-point-after-mount-operations.patch @@ -0,0 +1,118 @@ +From d735708ff11c40ee6b9bee64544250d55067403f Mon Sep 17 00:00:00 2001 +From: David Edmundson +Date: Tue, 1 May 2018 22:16:28 +0100 +Subject: [PATCH 5/5] Update mount point after mount operations + +Summary: +The order of udisks evaluation has changed from: + +call Mount +propertiesChanged +mount call returns + +call Mount +mount call returns +propertiesChanged + +The mount has finished, but the property is not yet updated. + +Solid caches properties, updating them when they change. This worked +before but due to the re-ordering client code gets "setupDone" requests +the mount point gets an outdated version from the cache and we get +errors. Invalidating the cache causes us to round-trip to the udisks +daemon meaning we'll have the correct values. + +BUG: 370975 + +Test Plan: +Diagnosed but with dbus-monitor trace +Asked someone on the bug report to test this + +Reviewers: #plasma + +Subscribers: #frameworks + +Tags: #frameworks + +Differential Revision: https://phabricator.kde.org/D12648 +--- + src/solid/devices/backends/udisks2/udisksdevice.cpp | 7 +++++++ + src/solid/devices/backends/udisks2/udisksdevice.h | 1 + + src/solid/devices/backends/udisks2/udisksstorageaccess.cpp | 8 ++++---- + 3 files changed, 12 insertions(+), 4 deletions(-) + +diff --git a/src/solid/devices/backends/udisks2/udisksdevice.cpp b/src/solid/devices/backends/udisks2/udisksdevice.cpp +index f3fdfff..0df32be 100644 +--- a/src/solid/devices/backends/udisks2/udisksdevice.cpp ++++ b/src/solid/devices/backends/udisks2/udisksdevice.cpp +@@ -157,6 +157,13 @@ QStringList Device::interfaces() const + return QStringList(); + } + ++void Device::invalidateCache() ++{ ++ if (m_backend) { ++ return m_backend->invalidateProperties(); ++ } ++} ++ + QObject *Device::createDeviceInterface(const Solid::DeviceInterface::Type &type) + { + if (!queryDeviceInterface(type)) { +diff --git a/src/solid/devices/backends/udisks2/udisksdevice.h b/src/solid/devices/backends/udisks2/udisksdevice.h +index 147d554..1492564 100644 +--- a/src/solid/devices/backends/udisks2/udisksdevice.h ++++ b/src/solid/devices/backends/udisks2/udisksdevice.h +@@ -61,6 +61,7 @@ public: + QVariant prop(const QString &key) const; + bool propertyExists(const QString &key) const; + QVariantMap allProperties() const; ++ void invalidateCache(); + + bool hasInterface(const QString &name) const; + QStringList interfaces() const; +diff --git a/src/solid/devices/backends/udisks2/udisksstorageaccess.cpp b/src/solid/devices/backends/udisks2/udisksstorageaccess.cpp +index 7db2263..d08f35d 100644 +--- a/src/solid/devices/backends/udisks2/udisksstorageaccess.cpp ++++ b/src/solid/devices/backends/udisks2/udisksstorageaccess.cpp +@@ -166,6 +166,7 @@ void StorageAccess::slotDBusReply(const QDBusMessage & /*reply*/) + mount(); + } else { // Don't broadcast setupDone unless the setup is really done. (Fix kde#271156) + m_setupInProgress = false; ++ m_device->invalidateCache(); + m_device->broadcastActionDone("setup"); + + checkAccessibility(); +@@ -191,6 +192,7 @@ void StorageAccess::slotDBusReply(const QDBusMessage & /*reply*/) + } + + m_teardownInProgress = false; ++ m_device->invalidateCache(); + m_device->broadcastActionDone("teardown"); + + checkAccessibility(); +@@ -227,9 +229,8 @@ void StorageAccess::slotSetupDone(int error, const QString &errorString) + { + m_setupInProgress = false; + //qDebug() << "SETUP DONE:" << m_device->udi(); +- emit setupDone(static_cast(error), errorString, m_device->udi()); +- + checkAccessibility(); ++ emit setupDone(static_cast(error), errorString, m_device->udi()); + } + + void StorageAccess::slotTeardownRequested() +@@ -241,9 +242,8 @@ void StorageAccess::slotTeardownRequested() + void StorageAccess::slotTeardownDone(int error, const QString &errorString) + { + m_teardownInProgress = false; +- emit teardownDone(static_cast(error), errorString, m_device->udi()); +- + checkAccessibility(); ++ emit teardownDone(static_cast(error), errorString, m_device->udi()); + } + + bool StorageAccess::mount() +-- +2.14.3 + diff --git a/kf5-solid.spec b/kf5-solid.spec index f7009e1..e435204 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.45.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -18,6 +18,11 @@ URL: https://solid.kde.org/ Source0: http://download.kde.org/%{stable}/frameworks/%{versiondir}/%{framework}-%{version}.tar.xz ## upstreamable patches +Patch1: 0001-UDisks-Correct-handling-of-removable-file-systems.patch +Patch2: 0002-UDisks-Optimize-several-property-checks.patch +Patch3: 0003-Avoid-creating-duplicate-property-entries-in-the-cac.patch +Patch4: 0004-Invalidate-property-cache-when-an-interface-is-remov.patch +Patch5: 0005-Update-mount-point-after-mount-operations.patch BuildRequires: extra-cmake-modules >= %{version} BuildRequires: kf5-rpm-macros >= %{version} @@ -114,6 +119,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Wed May 02 2018 Rex Dieter - 5.45.0-2 +- pull in upstream fixes + * Sun Apr 08 2018 Rex Dieter - 5.45.0-1 - 5.45.0 From 875f859e361d4ff72e63cc0d385152d0c86d4989 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sat, 5 May 2018 16:45:12 -0500 Subject: [PATCH 072/155] 5.46.0 --- .gitignore | 1 + ...t-handling-of-removable-file-systems.patch | 49 -------- ...sks-Optimize-several-property-checks.patch | 101 --------------- ...uplicate-property-entries-in-the-cac.patch | 58 --------- ...rty-cache-when-an-interface-is-remov.patch | 43 ------- ...e-mount-point-after-mount-operations.patch | 118 ------------------ kf5-solid.spec | 12 +- sources | 2 +- 8 files changed, 7 insertions(+), 377 deletions(-) delete mode 100644 0001-UDisks-Correct-handling-of-removable-file-systems.patch delete mode 100644 0002-UDisks-Optimize-several-property-checks.patch delete mode 100644 0003-Avoid-creating-duplicate-property-entries-in-the-cac.patch delete mode 100644 0004-Invalidate-property-cache-when-an-interface-is-remov.patch delete mode 100644 0005-Update-mount-point-after-mount-operations.patch diff --git a/.gitignore b/.gitignore index 12e34fd..7379ed5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /solid-5.43.0.tar.xz /solid-5.44.0.tar.xz /solid-5.45.0.tar.xz +/solid-5.46.0.tar.xz diff --git a/0001-UDisks-Correct-handling-of-removable-file-systems.patch b/0001-UDisks-Correct-handling-of-removable-file-systems.patch deleted file mode 100644 index 91845ea..0000000 --- a/0001-UDisks-Correct-handling-of-removable-file-systems.patch +++ /dev/null @@ -1,49 +0,0 @@ -From 122a6cd8989a4bd3096fddea908a1c2b223be62a Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Stefan=20Br=C3=BCns?= -Date: Sun, 8 Apr 2018 22:12:10 +0200 -Subject: [PATCH 1/5] [UDisks] Correct handling of removable file systems - -Summary: -Filesystems which have no fstab entry have an empty filepath (aka -mountpoint), but these should be mountable nevertheless. -The StorageAccess.ignored flag should only be used as a hint if a -device (filesystem) should create a device item in e.g Dolphin. - -BUG: 391706 -CCBUG: 389479 - -Reviewers: ngraham, broulik - -Reviewed By: ngraham - -Subscribers: #frameworks - -Tags: #frameworks - -Differential Revision: https://phabricator.kde.org/D12051 ---- - src/solid/devices/backends/udisks2/udisksstorageaccess.cpp | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -diff --git a/src/solid/devices/backends/udisks2/udisksstorageaccess.cpp b/src/solid/devices/backends/udisks2/udisksstorageaccess.cpp -index dd8f76f..7db2263 100644 ---- a/src/solid/devices/backends/udisks2/udisksstorageaccess.cpp -+++ b/src/solid/devices/backends/udisks2/udisksstorageaccess.cpp -@@ -111,10 +111,10 @@ bool StorageAccess::isIgnored() const - - const QString path = filePath(); - -- return !path.isEmpty() -- && !path.startsWith(QLatin1String("/media/")) -- && !path.startsWith(QLatin1String("/run/media/")) -- && !path.startsWith(QDir::homePath()); -+ bool inUserPath = path.startsWith(QLatin1String("/media/")) || -+ path.startsWith(QLatin1String("/run/media/")) || -+ path.startsWith(QDir::homePath()); -+ return !inUserPath; - } - - bool StorageAccess::setup() --- -2.14.3 - diff --git a/0002-UDisks-Optimize-several-property-checks.patch b/0002-UDisks-Optimize-several-property-checks.patch deleted file mode 100644 index 8c93670..0000000 --- a/0002-UDisks-Optimize-several-property-checks.patch +++ /dev/null @@ -1,101 +0,0 @@ -From 3c0f767f0337fc136976545cb29f89d76a4a5a8c Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Stefan=20Br=C3=BCns?= -Date: Tue, 10 Apr 2018 06:52:58 +0200 -Subject: [PATCH 2/5] [UDisks] Optimize several property checks - -Summary: -Use QStringLiteral for hasInterface argument - -Retrieve MountPoints propery just once when checking mount state. - -Test Plan: -make -solid-hardware5 list details - -Reviewers: #frameworks, broulik - -Reviewed By: broulik - -Subscribers: broulik - -Tags: #frameworks - -Differential Revision: https://phabricator.kde.org/D12123 ---- - src/solid/devices/backends/udisks2/udisksdevice.cpp | 19 ++++++++++--------- - 1 file changed, 10 insertions(+), 9 deletions(-) - -diff --git a/src/solid/devices/backends/udisks2/udisksdevice.cpp b/src/solid/devices/backends/udisks2/udisksdevice.cpp -index bbdd904..f3fdfff 100644 ---- a/src/solid/devices/backends/udisks2/udisksdevice.cpp -+++ b/src/solid/devices/backends/udisks2/udisksdevice.cpp -@@ -780,17 +780,17 @@ Solid::ErrorType Device::errorToSolidError(const QString &error) const - - bool Device::isBlock() const - { -- return hasInterface(UD2_DBUS_INTERFACE_BLOCK); -+ return hasInterface(QStringLiteral(UD2_DBUS_INTERFACE_BLOCK)); - } - - bool Device::isPartition() const - { -- return hasInterface(UD2_DBUS_INTERFACE_PARTITION); -+ return hasInterface(QStringLiteral(UD2_DBUS_INTERFACE_PARTITION)); - } - - bool Device::isPartitionTable() const - { -- return hasInterface(UD2_DBUS_INTERFACE_PARTITIONTABLE); -+ return hasInterface(QStringLiteral(UD2_DBUS_INTERFACE_PARTITIONTABLE)); - } - - bool Device::isStorageVolume() const -@@ -800,12 +800,12 @@ bool Device::isStorageVolume() const - - bool Device::isStorageAccess() const - { -- return hasInterface(UD2_DBUS_INTERFACE_FILESYSTEM) || isEncryptedContainer(); -+ return hasInterface(QStringLiteral(UD2_DBUS_INTERFACE_FILESYSTEM)) || isEncryptedContainer(); - } - - bool Device::isDrive() const - { -- return hasInterface(UD2_DBUS_INTERFACE_DRIVE); -+ return hasInterface(QStringLiteral(UD2_DBUS_INTERFACE_DRIVE)); - } - - bool Device::isOpticalDrive() const -@@ -837,12 +837,13 @@ bool Device::mightBeOpticalDisc() const - - bool Device::isMounted() const - { -- return propertyExists("MountPoints") && !qdbus_cast(prop("MountPoints")).isEmpty(); -+ QVariant mountPoints = prop(QStringLiteral("MountPoints")); -+ return mountPoints.isValid() && !qdbus_cast(mountPoints).isEmpty(); - } - - bool Device::isEncryptedContainer() const - { -- return hasInterface(UD2_DBUS_INTERFACE_ENCRYPTED); -+ return hasInterface(QStringLiteral(UD2_DBUS_INTERFACE_ENCRYPTED)); - } - - bool Device::isEncryptedCleartext() const -@@ -857,12 +858,12 @@ bool Device::isEncryptedCleartext() const - - bool Device::isSwap() const - { -- return hasInterface(UD2_DBUS_INTERFACE_SWAP); -+ return hasInterface(QStringLiteral(UD2_DBUS_INTERFACE_SWAP)); - } - - bool Device::isLoop() const - { -- return hasInterface(UD2_DBUS_INTERFACE_LOOP); -+ return hasInterface(QStringLiteral(UD2_DBUS_INTERFACE_LOOP)); - } - - QString Device::drivePath() const --- -2.14.3 - diff --git a/0003-Avoid-creating-duplicate-property-entries-in-the-cac.patch b/0003-Avoid-creating-duplicate-property-entries-in-the-cac.patch deleted file mode 100644 index a0f04cf..0000000 --- a/0003-Avoid-creating-duplicate-property-entries-in-the-cac.patch +++ /dev/null @@ -1,58 +0,0 @@ -From 15047128e56b97f0c6df4628f87e3653a754ad95 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Stefan=20Br=C3=BCns?= -Date: Thu, 12 Apr 2018 00:02:29 +0200 -Subject: [PATCH 3/5] Avoid creating duplicate property entries in the cache - -Summary: -Properties are associated with a specific interface, although the Solid -UDisks2 backend merges properties from all interfaces into a single -namespace. -Fortunately most properties have either unique names accross interfaces, -or are consistent (e.g. "Size" in org.fd.UDisks2.{Block,Partition}), thus -this poses no problem in practice. -QMap<>::unite(other) behaves like QMap<>::insertMulti(item), i.e. the -map may contain multiple values per key, while QMap<>::insert(item) -updates the value for existing keys. - -Test Plan: -make -solid-hardware list details - -Reviewers: #frameworks, broulik - -Reviewed By: broulik - -Subscribers: broulik - -Tags: #frameworks - -Differential Revision: https://phabricator.kde.org/D12124 ---- - src/solid/devices/backends/udisks2/udisksdevicebackend.cpp | 8 ++++++-- - 1 file changed, 6 insertions(+), 2 deletions(-) - -diff --git a/src/solid/devices/backends/udisks2/udisksdevicebackend.cpp b/src/solid/devices/backends/udisks2/udisksdevicebackend.cpp -index 69ebc72..def7dff 100644 ---- a/src/solid/devices/backends/udisks2/udisksdevicebackend.cpp -+++ b/src/solid/devices/backends/udisks2/udisksdevicebackend.cpp -@@ -139,11 +139,15 @@ QVariantMap DeviceBackend::allProperties() const - QDBusPendingReply reply = QDBusConnection::systemBus().call(call); - - if (reply.isValid()) { -- m_propertyCache.unite(reply.value()); -+ auto props = reply.value(); -+ // Can not use QMap<>::unite(), as it allows multiple values per key -+ for (auto it = props.cbegin(); it != props.cend(); ++it) { -+ m_propertyCache.insert(it.key(), it.value()); -+ } - } else { - qWarning() << "Error getting props:" << reply.error().name() << reply.error().message(); - } -- //qDebug() << "After iface" << iface << ", cache now contains" << m_cache.size() << "items"; -+ //qDebug() << "After iface" << iface << ", cache now contains" << m_propertyCache.size() << "items"; - } - - return m_propertyCache; --- -2.14.3 - diff --git a/0004-Invalidate-property-cache-when-an-interface-is-remov.patch b/0004-Invalidate-property-cache-when-an-interface-is-remov.patch deleted file mode 100644 index df62931..0000000 --- a/0004-Invalidate-property-cache-when-an-interface-is-remov.patch +++ /dev/null @@ -1,43 +0,0 @@ -From 796dea6c044030bc2c02bcfcc967e1fffe9fa276 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Stefan=20Br=C3=BCns?= -Date: Thu, 12 Apr 2018 00:12:54 +0200 -Subject: [PATCH 4/5] Invalidate property cache when an interface is removed - -Summary: -As we do not know which property belongs to which interface we have to -drop the whole cache whenever one or multiples interface are removed. - -Test Plan: -make -solid-hardware5 list details -solid-hardware5 listen - -Reviewers: #frameworks, broulik - -Reviewed By: broulik - -Tags: #frameworks - -Differential Revision: https://phabricator.kde.org/D12126 ---- - src/solid/devices/backends/udisks2/udisksdevicebackend.cpp | 6 ++++++ - 1 file changed, 6 insertions(+) - -diff --git a/src/solid/devices/backends/udisks2/udisksdevicebackend.cpp b/src/solid/devices/backends/udisks2/udisksdevicebackend.cpp -index def7dff..2349d54 100644 ---- a/src/solid/devices/backends/udisks2/udisksdevicebackend.cpp -+++ b/src/solid/devices/backends/udisks2/udisksdevicebackend.cpp -@@ -247,4 +247,10 @@ void DeviceBackend::slotInterfacesRemoved(const QDBusObjectPath &object_path, co - Q_FOREACH (const QString &iface, interfaces) { - m_interfaces.removeAll(iface); - } -+ -+ // We don't know which property belongs to which interface, so remove all -+ m_propertyCache.clear(); -+ if (!m_interfaces.isEmpty()) { -+ allProperties(); -+ } - } --- -2.14.3 - diff --git a/0005-Update-mount-point-after-mount-operations.patch b/0005-Update-mount-point-after-mount-operations.patch deleted file mode 100644 index 177767b..0000000 --- a/0005-Update-mount-point-after-mount-operations.patch +++ /dev/null @@ -1,118 +0,0 @@ -From d735708ff11c40ee6b9bee64544250d55067403f Mon Sep 17 00:00:00 2001 -From: David Edmundson -Date: Tue, 1 May 2018 22:16:28 +0100 -Subject: [PATCH 5/5] Update mount point after mount operations - -Summary: -The order of udisks evaluation has changed from: - -call Mount -propertiesChanged -mount call returns - -call Mount -mount call returns -propertiesChanged - -The mount has finished, but the property is not yet updated. - -Solid caches properties, updating them when they change. This worked -before but due to the re-ordering client code gets "setupDone" requests -the mount point gets an outdated version from the cache and we get -errors. Invalidating the cache causes us to round-trip to the udisks -daemon meaning we'll have the correct values. - -BUG: 370975 - -Test Plan: -Diagnosed but with dbus-monitor trace -Asked someone on the bug report to test this - -Reviewers: #plasma - -Subscribers: #frameworks - -Tags: #frameworks - -Differential Revision: https://phabricator.kde.org/D12648 ---- - src/solid/devices/backends/udisks2/udisksdevice.cpp | 7 +++++++ - src/solid/devices/backends/udisks2/udisksdevice.h | 1 + - src/solid/devices/backends/udisks2/udisksstorageaccess.cpp | 8 ++++---- - 3 files changed, 12 insertions(+), 4 deletions(-) - -diff --git a/src/solid/devices/backends/udisks2/udisksdevice.cpp b/src/solid/devices/backends/udisks2/udisksdevice.cpp -index f3fdfff..0df32be 100644 ---- a/src/solid/devices/backends/udisks2/udisksdevice.cpp -+++ b/src/solid/devices/backends/udisks2/udisksdevice.cpp -@@ -157,6 +157,13 @@ QStringList Device::interfaces() const - return QStringList(); - } - -+void Device::invalidateCache() -+{ -+ if (m_backend) { -+ return m_backend->invalidateProperties(); -+ } -+} -+ - QObject *Device::createDeviceInterface(const Solid::DeviceInterface::Type &type) - { - if (!queryDeviceInterface(type)) { -diff --git a/src/solid/devices/backends/udisks2/udisksdevice.h b/src/solid/devices/backends/udisks2/udisksdevice.h -index 147d554..1492564 100644 ---- a/src/solid/devices/backends/udisks2/udisksdevice.h -+++ b/src/solid/devices/backends/udisks2/udisksdevice.h -@@ -61,6 +61,7 @@ public: - QVariant prop(const QString &key) const; - bool propertyExists(const QString &key) const; - QVariantMap allProperties() const; -+ void invalidateCache(); - - bool hasInterface(const QString &name) const; - QStringList interfaces() const; -diff --git a/src/solid/devices/backends/udisks2/udisksstorageaccess.cpp b/src/solid/devices/backends/udisks2/udisksstorageaccess.cpp -index 7db2263..d08f35d 100644 ---- a/src/solid/devices/backends/udisks2/udisksstorageaccess.cpp -+++ b/src/solid/devices/backends/udisks2/udisksstorageaccess.cpp -@@ -166,6 +166,7 @@ void StorageAccess::slotDBusReply(const QDBusMessage & /*reply*/) - mount(); - } else { // Don't broadcast setupDone unless the setup is really done. (Fix kde#271156) - m_setupInProgress = false; -+ m_device->invalidateCache(); - m_device->broadcastActionDone("setup"); - - checkAccessibility(); -@@ -191,6 +192,7 @@ void StorageAccess::slotDBusReply(const QDBusMessage & /*reply*/) - } - - m_teardownInProgress = false; -+ m_device->invalidateCache(); - m_device->broadcastActionDone("teardown"); - - checkAccessibility(); -@@ -227,9 +229,8 @@ void StorageAccess::slotSetupDone(int error, const QString &errorString) - { - m_setupInProgress = false; - //qDebug() << "SETUP DONE:" << m_device->udi(); -- emit setupDone(static_cast(error), errorString, m_device->udi()); -- - checkAccessibility(); -+ emit setupDone(static_cast(error), errorString, m_device->udi()); - } - - void StorageAccess::slotTeardownRequested() -@@ -241,9 +242,8 @@ void StorageAccess::slotTeardownRequested() - void StorageAccess::slotTeardownDone(int error, const QString &errorString) - { - m_teardownInProgress = false; -- emit teardownDone(static_cast(error), errorString, m_device->udi()); -- - checkAccessibility(); -+ emit teardownDone(static_cast(error), errorString, m_device->udi()); - } - - bool StorageAccess::mount() --- -2.14.3 - diff --git a/kf5-solid.spec b/kf5-solid.spec index e435204..3135b7e 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,8 +1,8 @@ %global framework solid Name: kf5-%{framework} -Version: 5.45.0 -Release: 2%{?dist} +Version: 5.46.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -18,11 +18,6 @@ URL: https://solid.kde.org/ Source0: http://download.kde.org/%{stable}/frameworks/%{versiondir}/%{framework}-%{version}.tar.xz ## upstreamable patches -Patch1: 0001-UDisks-Correct-handling-of-removable-file-systems.patch -Patch2: 0002-UDisks-Optimize-several-property-checks.patch -Patch3: 0003-Avoid-creating-duplicate-property-entries-in-the-cac.patch -Patch4: 0004-Invalidate-property-cache-when-an-interface-is-remov.patch -Patch5: 0005-Update-mount-point-after-mount-operations.patch BuildRequires: extra-cmake-modules >= %{version} BuildRequires: kf5-rpm-macros >= %{version} @@ -119,6 +114,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Sat May 05 2018 Rex Dieter - 5.46.0-1 +- 5.46.0 + * Wed May 02 2018 Rex Dieter - 5.45.0-2 - pull in upstream fixes diff --git a/sources b/sources index fec7dad..38d9205 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.45.0.tar.xz) = 3b650269b6552e6466ad8edb455c20f930cc777dce64187b535e0889611a69b76044e1ff0f8d33926900aa30764ec17f5637fd5b9fab129e48c106cd3a06ec49 +SHA512 (solid-5.46.0.tar.xz) = 3b5a62f9723cd164a0ee2504e27a650bfae4a9d6b063db08e95d4a2735242092b39cb5b509d28408ca435adce18bf780c22a0acb4c8bf47749c5273edf6ed46c From 8a8086460265f875741829bfa1c095579a84339d Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sat, 2 Jun 2018 16:09:02 -0500 Subject: [PATCH 073/155] 5.47.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 7379ed5..9a7c211 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /solid-5.44.0.tar.xz /solid-5.45.0.tar.xz /solid-5.46.0.tar.xz +/solid-5.47.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 3135b7e..4684e01 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.46.0 +Version: 5.47.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -114,6 +114,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Sat Jun 02 2018 Rex Dieter - 5.47.0-1 +- 5.47.0 + * Sat May 05 2018 Rex Dieter - 5.46.0-1 - 5.46.0 diff --git a/sources b/sources index 38d9205..89e07c3 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.46.0.tar.xz) = 3b5a62f9723cd164a0ee2504e27a650bfae4a9d6b063db08e95d4a2735242092b39cb5b509d28408ca435adce18bf780c22a0acb4c8bf47749c5273edf6ed46c +SHA512 (solid-5.47.0.tar.xz) = 2f9d694abd467576f4cd636bce70cdebae587280807f3a78b5de00c8c70c36e51ea94f70b19df42ef2585d451d61b959eb44b642c7a34ef7b6baadd246857e6a From 9623cd629d26180be2747460846bf1bb1d0a0873 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Thu, 7 Jun 2018 13:44:26 -0500 Subject: [PATCH 074/155] cleanup, use %majmin, drop old Obsoletes, drop -libs --- .gitignore | 3 --- kf5-solid.spec | 38 +++++++++++++++----------------------- 2 files changed, 15 insertions(+), 26 deletions(-) diff --git a/.gitignore b/.gitignore index 9a7c211..62f68d6 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,2 @@ -/solid-5.43.0.tar.xz -/solid-5.44.0.tar.xz -/solid-5.45.0.tar.xz /solid-5.46.0.tar.xz /solid-5.47.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 4684e01..1537061 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -2,25 +2,25 @@ Name: kf5-%{framework} Version: 5.47.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ URL: https://solid.kde.org/ -%global versiondir %(echo %{version} | cut -d. -f1-2) +%global majmin %(echo %{version} | cut -d. -f1-2) %global revision %(echo %{version} | cut -d. -f3) %if %{revision} >= 50 %global stable unstable %else %global stable stable %endif -Source0: http://download.kde.org/%{stable}/frameworks/%{versiondir}/%{framework}-%{version}.tar.xz +Source0: http://download.kde.org/%{stable}/frameworks/%{majmin}/%{framework}-%{version}.tar.xz ## upstreamable patches -BuildRequires: extra-cmake-modules >= %{version} -BuildRequires: kf5-rpm-macros >= %{version} +BuildRequires: extra-cmake-modules >= %{majmin} +BuildRequires: kf5-rpm-macros >= %{majmin} BuildRequires: libupnp-devel BuildRequires: qt5-qtbase-devel BuildRequires: qt5-qtdeclarative-devel @@ -44,13 +44,11 @@ Requires: upower %endif %endif -Requires: kf5-filesystem >= %{version} +Requires: kf5-filesystem >= %{majmin} -Provides: %{name}-runtime = %{version}-%{release} -Provides: %{name}-runtime%{?_isa} = %{version}-%{release} -Obsoletes: %{name}-runtime < 4.99.0.1 - -Requires: %{name}-libs%{?_isa} = %{version}-%{release} +Obsoletes: kf5-solid-libs < 5.47-2 +Provides: kf5-solid-libs = %{version}-%{release} +Provides: kf5-solid-libs%{?_isa} = %{version}-%{release} %description Solid provides the following features for application developers: @@ -58,14 +56,6 @@ Solid provides the following features for application developers: - Power Management - Network Management -%package libs -Summary: Runtime libraries for Solid Framework -# When the split occured -Conflicts: %{name} < 5.4.0-1 -Requires: %{name} = %{version}-%{release} -%description libs -%{summary}. - %package devel Summary: Development files for %{name} Requires: %{name}%{?_isa} = %{version}-%{release} @@ -94,14 +84,13 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %find_lang_kf5 solid5_qt +%ldconfig_scriptlets + %files -f solid5_qt.lang %doc README.md TODO %license COPYING.LIB %{_kf5_bindir}/solid-hardware5 - -%ldconfig_scriptlets libs - -%files libs +#files libs %{_kf5_qmldir}/org/kde/solid/ %{_kf5_libdir}/libKF5Solid.so.* @@ -114,6 +103,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Thu Jun 07 2018 Rex Dieter - 5.47.0-2 +- cleanup, use %%majmin, drop old Obsoletes, drop -libs + * Sat Jun 02 2018 Rex Dieter - 5.47.0-1 - 5.47.0 From ddfb4a453319fbf04f5efc566e7521a057e18cf1 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 11 Jun 2018 22:58:11 -0500 Subject: [PATCH 075/155] better Obsoletes: kf5-solid-libs (#1590050) --- kf5-solid.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/kf5-solid.spec b/kf5-solid.spec index 1537061..3847f80 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.47.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -46,7 +46,7 @@ Requires: upower Requires: kf5-filesystem >= %{majmin} -Obsoletes: kf5-solid-libs < 5.47-2 +Obsoletes: kf5-solid-libs < 5.47.0-2 Provides: kf5-solid-libs = %{version}-%{release} Provides: kf5-solid-libs%{?_isa} = %{version}-%{release} @@ -103,6 +103,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon Jun 11 2018 Rex Dieter - 5.47.0-3 +- better Obsoletes: kf5-solid-libs (#1590050) + * Thu Jun 07 2018 Rex Dieter - 5.47.0-2 - cleanup, use %%majmin, drop old Obsoletes, drop -libs From 21a68682526893c6d4af1c9fe1d449407bf2751e Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sun, 8 Jul 2018 20:13:37 -0500 Subject: [PATCH 076/155] 5.48.0 --- .gitignore | 1 + kf5-solid.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 62f68d6..9e13875 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /solid-5.46.0.tar.xz /solid-5.47.0.tar.xz +/solid-5.48.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 3847f80..73ce375 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,8 +1,8 @@ %global framework solid Name: kf5-%{framework} -Version: 5.47.0 -Release: 3%{?dist} +Version: 5.48.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -103,6 +103,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon Jul 09 2018 Rex Dieter - 5.48.0-1 +- 5.48.0 + * Mon Jun 11 2018 Rex Dieter - 5.47.0-3 - better Obsoletes: kf5-solid-libs (#1590050) diff --git a/sources b/sources index 89e07c3..db373b2 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.47.0.tar.xz) = 2f9d694abd467576f4cd636bce70cdebae587280807f3a78b5de00c8c70c36e51ea94f70b19df42ef2585d451d61b959eb44b642c7a34ef7b6baadd246857e6a +SHA512 (solid-5.48.0.tar.xz) = 213019ef96f1531d9a893cfd3664d880b488c5b02a88f1b5aec057a942d2f8d3aa9d5fef3aca5d3110223b5d83f500800247fa501983cd11f8d5349da6f3b016 From b321ea5f417a246842110b0198b4fa7c3cd4657d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 13 Jul 2018 07:12:14 +0000 Subject: [PATCH 077/155] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- kf5-solid.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-solid.spec b/kf5-solid.spec index 73ce375..ca13651 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.48.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -103,6 +103,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Fri Jul 13 2018 Fedora Release Engineering - 5.48.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Mon Jul 09 2018 Rex Dieter - 5.48.0-1 - 5.48.0 From e3c3b9d3f940b7c069b87f8a1419ed49e926ef77 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 7 Aug 2018 10:28:58 -0500 Subject: [PATCH 078/155] 5.49.0 --- .gitignore | 1 + kf5-solid.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 9e13875..5f932f7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /solid-5.46.0.tar.xz /solid-5.47.0.tar.xz /solid-5.48.0.tar.xz +/solid-5.49.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index ca13651..5d5d93c 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,8 +1,8 @@ %global framework solid Name: kf5-%{framework} -Version: 5.48.0 -Release: 2%{?dist} +Version: 5.49.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -103,6 +103,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Tue Aug 07 2018 Rex Dieter - 5.49.0-1 +- 5.49.0 + * Fri Jul 13 2018 Fedora Release Engineering - 5.48.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild diff --git a/sources b/sources index db373b2..f2f4308 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.48.0.tar.xz) = 213019ef96f1531d9a893cfd3664d880b488c5b02a88f1b5aec057a942d2f8d3aa9d5fef3aca5d3110223b5d83f500800247fa501983cd11f8d5349da6f3b016 +SHA512 (solid-5.49.0.tar.xz) = a93fea0760a0240b61657c53961458ac9eda288afcc37b1ff92b4e16c8869789105457069ae2eea7d2e4bb58c66fb9a6191da566c375f791308c946a7580573d From 59b582e03b8cf09c93e63a58c993229812a499a7 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 4 Sep 2018 15:10:55 -0500 Subject: [PATCH 079/155] 5.50.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 5f932f7..e4171a4 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /solid-5.47.0.tar.xz /solid-5.48.0.tar.xz /solid-5.49.0.tar.xz +/solid-5.50.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 5d5d93c..b428c2d 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.49.0 +Version: 5.50.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -103,6 +103,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Tue Sep 04 2018 Rex Dieter - 5.50.0-1 +- 5.50.0 + * Tue Aug 07 2018 Rex Dieter - 5.49.0-1 - 5.49.0 diff --git a/sources b/sources index f2f4308..e76da3d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.49.0.tar.xz) = a93fea0760a0240b61657c53961458ac9eda288afcc37b1ff92b4e16c8869789105457069ae2eea7d2e4bb58c66fb9a6191da566c375f791308c946a7580573d +SHA512 (solid-5.50.0.tar.xz) = f51c7bcaed7b2390f1b290791d7e9dc4a86ce8a925a2955c072be66274257c81c7872f76105fa8a03b35c184a8598551aa2bfa74017de487fc5a3521ea49d6a1 From 448d943b143fc6518b0b253d3035abd6001f10bf Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Wed, 10 Oct 2018 15:51:25 -0500 Subject: [PATCH 080/155] 5.51.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index e4171a4..0db6b62 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /solid-5.48.0.tar.xz /solid-5.49.0.tar.xz /solid-5.50.0.tar.xz +/solid-5.51.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index b428c2d..124724f 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.50.0 +Version: 5.51.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -103,6 +103,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Wed Oct 10 2018 Rex Dieter - 5.51.0-1 +- 5.51.0 + * Tue Sep 04 2018 Rex Dieter - 5.50.0-1 - 5.50.0 diff --git a/sources b/sources index e76da3d..98475ac 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.50.0.tar.xz) = f51c7bcaed7b2390f1b290791d7e9dc4a86ce8a925a2955c072be66274257c81c7872f76105fa8a03b35c184a8598551aa2bfa74017de487fc5a3521ea49d6a1 +SHA512 (solid-5.51.0.tar.xz) = 4a57a96f9080734781f4bddc33aa3ebc312fdf784e61cd143f76e0a222cec26bcb62322f68422d770ca8494b64344f0870fa63d66fec17bc3a209511c168d226 From 5f08b4266231b00a30278afdd38715359fccd92c Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Wed, 10 Oct 2018 16:19:09 -0500 Subject: [PATCH 081/155] update %%files --- kf5-solid.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/kf5-solid.spec b/kf5-solid.spec index 124724f..776ad23 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -89,6 +89,7 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %files -f solid5_qt.lang %doc README.md TODO %license COPYING.LIB +%{_kf5_sysconfdir}/xdg/%{framework}.* %{_kf5_bindir}/solid-hardware5 #files libs %{_kf5_qmldir}/org/kde/solid/ From 8acb5f472450783f07587d0d455a72eec1fdae88 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sun, 4 Nov 2018 12:51:25 -0600 Subject: [PATCH 082/155] 5.52.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 0db6b62..5c9e72c 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ /solid-5.49.0.tar.xz /solid-5.50.0.tar.xz /solid-5.51.0.tar.xz +/solid-5.52.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 776ad23..21ef910 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.51.0 +Version: 5.52.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -104,6 +104,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Sun Nov 04 2018 Rex Dieter - 5.52.0-1 +- 5.52.0 + * Wed Oct 10 2018 Rex Dieter - 5.51.0-1 - 5.51.0 diff --git a/sources b/sources index 98475ac..c1a0692 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.51.0.tar.xz) = 4a57a96f9080734781f4bddc33aa3ebc312fdf784e61cd143f76e0a222cec26bcb62322f68422d770ca8494b64344f0870fa63d66fec17bc3a209511c168d226 +SHA512 (solid-5.52.0.tar.xz) = baae7fd654e6da92d634ff76a94db1da3eb9dce6bd66634c84d00c7d8e5c20ca98713a8802d92e834b1760bd4058b3432598934b22b3c5456ae43506803b0384 From 0be6f0553d66ff2dcad30072d76d9d3c101a76e2 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sun, 9 Dec 2018 08:43:22 -0600 Subject: [PATCH 083/155] 5.53.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 5c9e72c..5603cf1 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ /solid-5.50.0.tar.xz /solid-5.51.0.tar.xz /solid-5.52.0.tar.xz +/solid-5.53.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 21ef910..ee853ce 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.52.0 +Version: 5.53.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -104,6 +104,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Sun Dec 09 2018 Rex Dieter - 5.53.0-1 +- 5.53.0 + * Sun Nov 04 2018 Rex Dieter - 5.52.0-1 - 5.52.0 diff --git a/sources b/sources index c1a0692..0681e75 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.52.0.tar.xz) = baae7fd654e6da92d634ff76a94db1da3eb9dce6bd66634c84d00c7d8e5c20ca98713a8802d92e834b1760bd4058b3432598934b22b3c5456ae43506803b0384 +SHA512 (solid-5.53.0.tar.xz) = 598559f76cb6bf8cb4012126e20beae2cc29caae3636fe285877c408b09317722e1c96f6d252783ea6ceebe95a084f84d0db1a4250afb56268c7d58b3056d207 From f3f7f9a045c78ae8a0a0524851b66efe6f6534bf Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Wed, 9 Jan 2019 08:11:43 -0600 Subject: [PATCH 084/155] 5.54.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 5603cf1..fa4d323 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ /solid-5.51.0.tar.xz /solid-5.52.0.tar.xz /solid-5.53.0.tar.xz +/solid-5.54.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index ee853ce..d1cb5ff 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.53.0 +Version: 5.54.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -104,6 +104,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Wed Jan 09 2019 Rex Dieter - 5.54.0-1 +- 5.54.0 + * Sun Dec 09 2018 Rex Dieter - 5.53.0-1 - 5.53.0 diff --git a/sources b/sources index 0681e75..f9a6e8c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.53.0.tar.xz) = 598559f76cb6bf8cb4012126e20beae2cc29caae3636fe285877c408b09317722e1c96f6d252783ea6ceebe95a084f84d0db1a4250afb56268c7d58b3056d207 +SHA512 (solid-5.54.0.tar.xz) = 5728b617d5d6ec6acc71cd4707ab25e3c753c9616c2b5b1d4b1c66899faa526b395c206c3d3b3f36cb4e2f005f1267c12c9f73cf4d9fffd486eae64fbf78d855 From acefde82190371b882e5a0c52b53fb2ea5f1b2d0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 1 Feb 2019 05:41:32 +0000 Subject: [PATCH 085/155] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- kf5-solid.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-solid.spec b/kf5-solid.spec index d1cb5ff..2c2f30c 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.54.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -104,6 +104,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Fri Feb 01 2019 Fedora Release Engineering - 5.54.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Wed Jan 09 2019 Rex Dieter - 5.54.0-1 - 5.54.0 From 42d813c1cfbcb508118b81a2b68d4328177b9473 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 4 Feb 2019 11:20:41 -0600 Subject: [PATCH 086/155] 5.55.0 --- .gitignore | 1 + kf5-solid.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index fa4d323..d70fe00 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ /solid-5.52.0.tar.xz /solid-5.53.0.tar.xz /solid-5.54.0.tar.xz +/solid-5.55.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 2c2f30c..16f7ee7 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,8 +1,8 @@ %global framework solid Name: kf5-%{framework} -Version: 5.54.0 -Release: 2%{?dist} +Version: 5.55.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -104,6 +104,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon Feb 04 2019 Rex Dieter - 5.55.0-1 +- 5.55.0 + * Fri Feb 01 2019 Fedora Release Engineering - 5.54.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild diff --git a/sources b/sources index f9a6e8c..db3a982 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.54.0.tar.xz) = 5728b617d5d6ec6acc71cd4707ab25e3c753c9616c2b5b1d4b1c66899faa526b395c206c3d3b3f36cb4e2f005f1267c12c9f73cf4d9fffd486eae64fbf78d855 +SHA512 (solid-5.55.0.tar.xz) = 899207e88dc896c30030b7d8d8361d8535cb895a92c4b3f6ae27b535d5633df25dc2d93dd0519d1c7679f33e49981b22d76438d71a1461c2a9a098f93ca53c40 From a0096eb502f51ee795d8144f00f9b19d4a6b06f5 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 5 Mar 2019 09:13:10 -0600 Subject: [PATCH 087/155] 5.56.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index d70fe00..f28786a 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ /solid-5.53.0.tar.xz /solid-5.54.0.tar.xz /solid-5.55.0.tar.xz +/solid-5.56.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 16f7ee7..2707997 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.55.0 +Version: 5.56.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -104,6 +104,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Tue Mar 05 2019 Rex Dieter - 5.56.0-1 +- 5.56.0 + * Mon Feb 04 2019 Rex Dieter - 5.55.0-1 - 5.55.0 diff --git a/sources b/sources index db3a982..9769da1 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.55.0.tar.xz) = 899207e88dc896c30030b7d8d8361d8535cb895a92c4b3f6ae27b535d5633df25dc2d93dd0519d1c7679f33e49981b22d76438d71a1461c2a9a098f93ca53c40 +SHA512 (solid-5.56.0.tar.xz) = b7c6666f42c8b2c018409ba3404cc6a895f68d9225762f5c6b30bb861190c8cba005043d0cf122c57e8920065ff23ac77adf29379f8b3d097cd22685af80bf5a From 918b17e69d672aa3498908bce2142cd3425f7628 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 9 Apr 2019 10:19:43 -0500 Subject: [PATCH 088/155] 5.57.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index f28786a..70a1079 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ /solid-5.54.0.tar.xz /solid-5.55.0.tar.xz /solid-5.56.0.tar.xz +/solid-5.57.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 2707997..0d4a0f2 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.56.0 +Version: 5.57.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -104,6 +104,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Tue Apr 09 2019 Rex Dieter - 5.57.0-1 +- 5.57.0 + * Tue Mar 05 2019 Rex Dieter - 5.56.0-1 - 5.56.0 diff --git a/sources b/sources index 9769da1..0e29c2d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.56.0.tar.xz) = b7c6666f42c8b2c018409ba3404cc6a895f68d9225762f5c6b30bb861190c8cba005043d0cf122c57e8920065ff23ac77adf29379f8b3d097cd22685af80bf5a +SHA512 (solid-5.57.0.tar.xz) = b43bdbf7ad9bb2c6892efe6121f6ffd1b051549964a0eb519f18fb0eac20e7a4b461db5f5c1df76b6963d97f317414deea000238a2a24af6676faa1373c8acc8 From 12e20490a1a7aff5495e654b7ac88bbb81916534 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 7 May 2019 14:07:52 -0500 Subject: [PATCH 089/155] 5.58.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 70a1079..33dd7af 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ /solid-5.55.0.tar.xz /solid-5.56.0.tar.xz /solid-5.57.0.tar.xz +/solid-5.58.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 0d4a0f2..0ac4670 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.57.0 +Version: 5.58.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -104,6 +104,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Tue May 07 2019 Rex Dieter - 5.58.0-1 +- 5.58.0 + * Tue Apr 09 2019 Rex Dieter - 5.57.0-1 - 5.57.0 diff --git a/sources b/sources index 0e29c2d..4bb8261 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.57.0.tar.xz) = b43bdbf7ad9bb2c6892efe6121f6ffd1b051549964a0eb519f18fb0eac20e7a4b461db5f5c1df76b6963d97f317414deea000238a2a24af6676faa1373c8acc8 +SHA512 (solid-5.58.0.tar.xz) = f0b741be7702bae8cd80be83e41a2d328a85c04913e9a5cf745b81e22cacd493bf62931c6e1a0c283e1fb45000bf8e103436dae521a842f439f9cfcfa471781e From fd23a731b32ee502ca7404080994ba73024a8cdb Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Thu, 6 Jun 2019 12:53:32 -0500 Subject: [PATCH 090/155] 5.59.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 33dd7af..9dbf3da 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ /solid-5.56.0.tar.xz /solid-5.57.0.tar.xz /solid-5.58.0.tar.xz +/solid-5.59.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 0ac4670..bfda377 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.58.0 +Version: 5.59.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -104,6 +104,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Thu Jun 06 2019 Rex Dieter - 5.59.0-1 +- 5.59.0 + * Tue May 07 2019 Rex Dieter - 5.58.0-1 - 5.58.0 diff --git a/sources b/sources index 4bb8261..231aa82 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.58.0.tar.xz) = f0b741be7702bae8cd80be83e41a2d328a85c04913e9a5cf745b81e22cacd493bf62931c6e1a0c283e1fb45000bf8e103436dae521a842f439f9cfcfa471781e +SHA512 (solid-5.59.0.tar.xz) = fc3fa7b13f2899b2d198c38ca7e09e74e8e97eedd673081033950ba07999f0fbe1fc0a6779ae188cd9295571cc627642ea3fb2f3dbd0a26c3670bfda81262e55 From ddf15a1544be5848d081774b95fcd9cb820d93f9 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sat, 13 Jul 2019 12:23:55 -0500 Subject: [PATCH 091/155] 5.60.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 9dbf3da..dabb889 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,4 @@ /solid-5.57.0.tar.xz /solid-5.58.0.tar.xz /solid-5.59.0.tar.xz +/solid-5.60.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index bfda377..3464d42 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.59.0 +Version: 5.60.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -104,6 +104,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Sat Jul 13 2019 Rex Dieter - 5.60.0-1 +- 5.60.0 + * Thu Jun 06 2019 Rex Dieter - 5.59.0-1 - 5.59.0 diff --git a/sources b/sources index 231aa82..2d2ec39 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.59.0.tar.xz) = fc3fa7b13f2899b2d198c38ca7e09e74e8e97eedd673081033950ba07999f0fbe1fc0a6779ae188cd9295571cc627642ea3fb2f3dbd0a26c3670bfda81262e55 +SHA512 (solid-5.60.0.tar.xz) = 51781374fede9e16f546924d1a103704e68e1d67a852d53ca9c6e69cf00c3b46a92533b398aad7ba434eefbf25f6201696f46af532623bc5cfac01e4f1cae755 From dc1aba03e2aa99ef68945f4784fb0e491ad11bf0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 25 Jul 2019 11:44:45 +0000 Subject: [PATCH 092/155] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- kf5-solid.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-solid.spec b/kf5-solid.spec index 3464d42..50a5b60 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.60.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -104,6 +104,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Thu Jul 25 2019 Fedora Release Engineering - 5.60.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Sat Jul 13 2019 Rex Dieter - 5.60.0-1 - 5.60.0 From a7e0caee91973f8f18455ec578102e9891ab1ce1 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 29 Jul 2019 11:12:15 -0500 Subject: [PATCH 093/155] update %%files --- kf5-solid.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kf5-solid.spec b/kf5-solid.spec index 50a5b60..f2f1099 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -89,7 +89,7 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %files -f solid5_qt.lang %doc README.md TODO %license COPYING.LIB -%{_kf5_sysconfdir}/xdg/%{framework}.* +%{_kf5_datadir}/qlogging-categories5/%{framework}.* %{_kf5_bindir}/solid-hardware5 #files libs %{_kf5_qmldir}/org/kde/solid/ From 6b3de3dfee16c6f00dabb60ad7c69dd03daff4cb Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Wed, 7 Aug 2019 10:14:45 -0500 Subject: [PATCH 094/155] 5.61.0 --- .gitignore | 1 + kf5-solid.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index dabb889..13b0643 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ /solid-5.58.0.tar.xz /solid-5.59.0.tar.xz /solid-5.60.0.tar.xz +/solid-5.61.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index f2f1099..0aa428b 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,8 +1,8 @@ %global framework solid Name: kf5-%{framework} -Version: 5.60.0 -Release: 2%{?dist} +Version: 5.61.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -104,6 +104,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Wed Aug 07 2019 Rex Dieter - 5.61.0-1 +- 5.61.0 + * Thu Jul 25 2019 Fedora Release Engineering - 5.60.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild diff --git a/sources b/sources index 2d2ec39..56f53be 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.60.0.tar.xz) = 51781374fede9e16f546924d1a103704e68e1d67a852d53ca9c6e69cf00c3b46a92533b398aad7ba434eefbf25f6201696f46af532623bc5cfac01e4f1cae755 +SHA512 (solid-5.61.0.tar.xz) = 5a0aea44255a72ca3c92a8851d2ffe38eab9e68330787fc8ed9436d53da4aa5ffd2441efbf9ab41e5b5e1f4a5fd180aa1e80e3dfd5a843c944e0acd064ca1ceb From 37fccbf875a404095891d99dcc556fd628e777d1 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 16 Sep 2019 16:48:00 -0500 Subject: [PATCH 095/155] 5.62.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 13b0643..7b6dbcb 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,4 @@ /solid-5.59.0.tar.xz /solid-5.60.0.tar.xz /solid-5.61.0.tar.xz +/solid-5.62.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 0aa428b..a78b3ff 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.61.0 +Version: 5.62.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -104,6 +104,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon Sep 16 2019 Rex Dieter - 5.62.0-1 +- 5.62.0 + * Wed Aug 07 2019 Rex Dieter - 5.61.0-1 - 5.61.0 diff --git a/sources b/sources index 56f53be..0d9cd27 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.61.0.tar.xz) = 5a0aea44255a72ca3c92a8851d2ffe38eab9e68330787fc8ed9436d53da4aa5ffd2441efbf9ab41e5b5e1f4a5fd180aa1e80e3dfd5a843c944e0acd064ca1ceb +SHA512 (solid-5.62.0.tar.xz) = 75cf1307b9c6c3c1de1fdbc653cc03866c35d755190b4d4c308b86921d424df037da21dbb013edfdaeb9d1249ee67e958e44ba4f6918d4873186f44d84485697 From 8dcd9322af9b547931a9015a463bb02dbf17eb21 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 22 Oct 2019 08:44:21 -0500 Subject: [PATCH 096/155] 5.63.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 7b6dbcb..5fcba5e 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,4 @@ /solid-5.60.0.tar.xz /solid-5.61.0.tar.xz /solid-5.62.0.tar.xz +/solid-5.63.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index a78b3ff..bfb3b82 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.62.0 +Version: 5.63.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -104,6 +104,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Tue Oct 22 2019 Rex Dieter - 5.63.0-1 +- 5.63.0 + * Mon Sep 16 2019 Rex Dieter - 5.62.0-1 - 5.62.0 diff --git a/sources b/sources index 0d9cd27..7ce77d1 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.62.0.tar.xz) = 75cf1307b9c6c3c1de1fdbc653cc03866c35d755190b4d4c308b86921d424df037da21dbb013edfdaeb9d1249ee67e958e44ba4f6918d4873186f44d84485697 +SHA512 (solid-5.63.0.tar.xz) = 135eb9a71699a22d5dd201402c87216961a17aadc88bf326dee10df007134a09fcfcab61792d9e7c8323abdc7b081a9117778934aca1b0e408b90d11f245f45a From bef929eb6c848bd3b2f298cda4ff12b823872f44 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Fri, 8 Nov 2019 10:38:27 -0600 Subject: [PATCH 097/155] 5.64.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 5fcba5e..e4ef58c 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,4 @@ /solid-5.61.0.tar.xz /solid-5.62.0.tar.xz /solid-5.63.0.tar.xz +/solid-5.64.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index bfb3b82..9342864 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.63.0 +Version: 5.64.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -104,6 +104,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Fri Nov 08 2019 Rex Dieter - 5.64.0-1 +- 5.64.0 + * Tue Oct 22 2019 Rex Dieter - 5.63.0-1 - 5.63.0 diff --git a/sources b/sources index 7ce77d1..3f73ebb 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.63.0.tar.xz) = 135eb9a71699a22d5dd201402c87216961a17aadc88bf326dee10df007134a09fcfcab61792d9e7c8323abdc7b081a9117778934aca1b0e408b90d11f245f45a +SHA512 (solid-5.64.0.tar.xz) = f1294431973799369afc541db24d33c7c75fd17cce4b843da9c17c782e0a8afd2ba0032e46119c036ddf943747af33c2aa96a1c318ed531c5842b38a1010f857 From c780e6cd93bfc00285989a7a2724d0b8f71d9249 Mon Sep 17 00:00:00 2001 From: Troy Dawson Date: Mon, 16 Dec 2019 13:46:15 -0800 Subject: [PATCH 098/155] Use Recommends on newer RHEL releases --- kf5-solid.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kf5-solid.spec b/kf5-solid.spec index 9342864..814e337 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -33,7 +33,7 @@ BuildRequires: bison BuildRequires: flex # really runtime-only dep, but doesn't hurt to check availability at buildtime BuildRequires: media-player-info -%if 0%{?fedora} > 23 +%if 0%{?fedora} > 23 || 0%{?rhel} > 7 Recommends: media-player-info Recommends: udisks2 Recommends: upower From 1c3d3bffc0b59c44ad7e8bfc4e131a0a6f86f313 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 17 Dec 2019 11:20:12 -0600 Subject: [PATCH 099/155] 5.65.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index e4ef58c..0ca3d60 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,4 @@ /solid-5.62.0.tar.xz /solid-5.63.0.tar.xz /solid-5.64.0.tar.xz +/solid-5.65.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 814e337..5487224 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.64.0 +Version: 5.65.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -104,6 +104,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Tue Dec 17 2019 Rex Dieter - 5.65.0-1 +- 5.65.0 + * Fri Nov 08 2019 Rex Dieter - 5.64.0-1 - 5.64.0 diff --git a/sources b/sources index 3f73ebb..883b79f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.64.0.tar.xz) = f1294431973799369afc541db24d33c7c75fd17cce4b843da9c17c782e0a8afd2ba0032e46119c036ddf943747af33c2aa96a1c318ed531c5842b38a1010f857 +SHA512 (solid-5.65.0.tar.xz) = 6594f919f5c26c844f0c5e4ef5f6bb375915fdcba744c173765270eb569a5623311c6e86cf4278a19479c3ec7c24210945828d59956135000dbe6f72bf799018 From 07977e1d7a824a08be0272575ab9994f17786b11 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 7 Jan 2020 14:24:35 -0600 Subject: [PATCH 100/155] 5.66.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 0ca3d60..37d12ab 100644 --- a/.gitignore +++ b/.gitignore @@ -18,3 +18,4 @@ /solid-5.63.0.tar.xz /solid-5.64.0.tar.xz /solid-5.65.0.tar.xz +/solid-5.66.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 5487224..89940af 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.65.0 +Version: 5.66.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -104,6 +104,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Tue Jan 07 2020 Rex Dieter - 5.66.0-1 +- 5.66.0 + * Tue Dec 17 2019 Rex Dieter - 5.65.0-1 - 5.65.0 diff --git a/sources b/sources index 883b79f..fb5081a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.65.0.tar.xz) = 6594f919f5c26c844f0c5e4ef5f6bb375915fdcba744c173765270eb569a5623311c6e86cf4278a19479c3ec7c24210945828d59956135000dbe6f72bf799018 +SHA512 (solid-5.66.0.tar.xz) = df00bb300a3d5cc3f11fb2fe9c1f64ebff1f7e906097ddf5586b1005299877e17d41529abb2d06510973ab80585084250cec81e89b6cb45291716b20ead0da5d From 35c6531ae0f281ec887c490bb6a939d5a97d8c4f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 29 Jan 2020 07:26:10 +0000 Subject: [PATCH 101/155] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- kf5-solid.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-solid.spec b/kf5-solid.spec index 89940af..d33ae33 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.66.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -104,6 +104,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Wed Jan 29 2020 Fedora Release Engineering - 5.66.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Tue Jan 07 2020 Rex Dieter - 5.66.0-1 - 5.66.0 From 185b939c204f03e15bef0440b3c5357b9a200779 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sun, 2 Feb 2020 18:16:11 -0600 Subject: [PATCH 102/155] 5.67.0 --- .gitignore | 1 + kf5-solid.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 37d12ab..038b0d2 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,4 @@ /solid-5.64.0.tar.xz /solid-5.65.0.tar.xz /solid-5.66.0.tar.xz +/solid-5.67.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index d33ae33..cf3ecea 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,8 +1,8 @@ %global framework solid Name: kf5-%{framework} -Version: 5.66.0 -Release: 2%{?dist} +Version: 5.67.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -104,6 +104,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon Feb 03 2020 Rex Dieter - 5.67.0-1 +- 5.67.0 + * Wed Jan 29 2020 Fedora Release Engineering - 5.66.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild diff --git a/sources b/sources index fb5081a..2321751 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.66.0.tar.xz) = df00bb300a3d5cc3f11fb2fe9c1f64ebff1f7e906097ddf5586b1005299877e17d41529abb2d06510973ab80585084250cec81e89b6cb45291716b20ead0da5d +SHA512 (solid-5.67.0.tar.xz) = fd5e96b397c6de719c0bcea1c44be069d4cce97d1bdd65b20416cd7dc83646bba83915e565b584cf5131d040809b1e3937084552503ccc7d2db0e2e638b453b1 From 3de2629557e73c1efca7a488d677dd437bdaf704 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Thu, 19 Mar 2020 22:23:45 -0500 Subject: [PATCH 103/155] 5.68.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 038b0d2..23373af 100644 --- a/.gitignore +++ b/.gitignore @@ -20,3 +20,4 @@ /solid-5.65.0.tar.xz /solid-5.66.0.tar.xz /solid-5.67.0.tar.xz +/solid-5.68.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index cf3ecea..2335130 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.67.0 +Version: 5.68.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -104,6 +104,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Fri Mar 20 2020 Rex Dieter - 5.68.0-1 +- 5.68.0 + * Mon Feb 03 2020 Rex Dieter - 5.67.0-1 - 5.67.0 diff --git a/sources b/sources index 2321751..9059fe1 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.67.0.tar.xz) = fd5e96b397c6de719c0bcea1c44be069d4cce97d1bdd65b20416cd7dc83646bba83915e565b584cf5131d040809b1e3937084552503ccc7d2db0e2e638b453b1 +SHA512 (solid-5.68.0.tar.xz) = df0a7520b698c28324c1881585d551aac885f43edb6e2dda4e95dc3a9fbb6d7609807a64042acf02bae72c55d6081205033228a1e250ada06b61ede5c3f544b7 From cd008c3e65249a5104b803bd7743ca2e5f6989c0 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 21 Apr 2020 13:50:13 -0500 Subject: [PATCH 104/155] 5.69.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 23373af..8080440 100644 --- a/.gitignore +++ b/.gitignore @@ -21,3 +21,4 @@ /solid-5.66.0.tar.xz /solid-5.67.0.tar.xz /solid-5.68.0.tar.xz +/solid-5.69.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 2335130..25b9aab 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.68.0 +Version: 5.69.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -104,6 +104,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Tue Apr 21 2020 Rex Dieter - 5.69.0-1 +- 5.69.0 + * Fri Mar 20 2020 Rex Dieter - 5.68.0-1 - 5.68.0 diff --git a/sources b/sources index 9059fe1..cda5a85 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.68.0.tar.xz) = df0a7520b698c28324c1881585d551aac885f43edb6e2dda4e95dc3a9fbb6d7609807a64042acf02bae72c55d6081205033228a1e250ada06b61ede5c3f544b7 +SHA512 (solid-5.69.0.tar.xz) = eaf9de6f2f01564062f1dbf15e2393f03a2875150eedff8b0bf94a5c3d28d6756e8775cb71152eeee3b06c4fefc18cac715ccd5fd2fb9347ebbae17c4ac67af4 From 549de4b43ac0ef08a2a422c4f2a66168808de54b Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 4 May 2020 17:12:38 -0500 Subject: [PATCH 105/155] 5.70.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 8080440..3ce7da4 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,4 @@ /solid-5.67.0.tar.xz /solid-5.68.0.tar.xz /solid-5.69.0.tar.xz +/solid-5.70.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 25b9aab..721eda7 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.69.0 +Version: 5.70.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -104,6 +104,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon May 04 2020 Rex Dieter - 5.70.0-1 +- 5.70.0 + * Tue Apr 21 2020 Rex Dieter - 5.69.0-1 - 5.69.0 diff --git a/sources b/sources index cda5a85..41a0274 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.69.0.tar.xz) = eaf9de6f2f01564062f1dbf15e2393f03a2875150eedff8b0bf94a5c3d28d6756e8775cb71152eeee3b06c4fefc18cac715ccd5fd2fb9347ebbae17c4ac67af4 +SHA512 (solid-5.70.0.tar.xz) = 31e7de3cd726d07452d40d43c6280a95f54abcccc63858e7af198ec0a5f01754b721539e26feb5f5cb16c07e58b6029b0a660d55d1efb3887a658ed93c5fe33f From cbcab29778a71d3343766adbc557d5916b7678b3 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 16 Jun 2020 10:01:19 -0500 Subject: [PATCH 106/155] 5.71.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 3ce7da4..1eae34a 100644 --- a/.gitignore +++ b/.gitignore @@ -23,3 +23,4 @@ /solid-5.68.0.tar.xz /solid-5.69.0.tar.xz /solid-5.70.0.tar.xz +/solid-5.71.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 721eda7..4c12e6d 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.70.0 +Version: 5.71.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -104,6 +104,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Tue Jun 16 2020 Rex Dieter - 5.71.0-1 +- 5.71.0 + * Mon May 04 2020 Rex Dieter - 5.70.0-1 - 5.70.0 diff --git a/sources b/sources index 41a0274..f25932f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.70.0.tar.xz) = 31e7de3cd726d07452d40d43c6280a95f54abcccc63858e7af198ec0a5f01754b721539e26feb5f5cb16c07e58b6029b0a660d55d1efb3887a658ed93c5fe33f +SHA512 (solid-5.71.0.tar.xz) = 506d18c8eb7612e35369613d1f75927ecc5efcd1e9d4f3791ecf732226e3f20f81d36c708e5600f23d74a23caf28f20f64877f4cebb9987392fcac18f74b12db From ed967a59ff541cc171a4322a85cf3df5cc691b09 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 7 Jul 2020 12:35:10 -0500 Subject: [PATCH 107/155] 5.72.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 1eae34a..b23701d 100644 --- a/.gitignore +++ b/.gitignore @@ -24,3 +24,4 @@ /solid-5.69.0.tar.xz /solid-5.70.0.tar.xz /solid-5.71.0.tar.xz +/solid-5.72.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 4c12e6d..4d12e1b 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.71.0 +Version: 5.72.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -104,6 +104,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Tue Jul 07 2020 Rex Dieter - 5.72.0-1 +- 5.72.0 + * Tue Jun 16 2020 Rex Dieter - 5.71.0-1 - 5.71.0 diff --git a/sources b/sources index f25932f..43d0f06 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.71.0.tar.xz) = 506d18c8eb7612e35369613d1f75927ecc5efcd1e9d4f3791ecf732226e3f20f81d36c708e5600f23d74a23caf28f20f64877f4cebb9987392fcac18f74b12db +SHA512 (solid-5.72.0.tar.xz) = f6474541e90af822353f15093ee11eafda1e135059e35219284e8a2ab7a5a606bd9df31ccb491d72c9dacd40ffb0ad87a697aaa47108a94c57c955734f4b3df0 From 7ce98c1878f59e3a91bc11877806b157481d7eb6 Mon Sep 17 00:00:00 2001 From: Igor Raits Date: Sat, 18 Jul 2020 10:52:41 +0200 Subject: [PATCH 108/155] Improve compatibility with new CMake macro Signed-off-by: Igor Raits --- kf5-solid.spec | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/kf5-solid.spec b/kf5-solid.spec index 4d12e1b..b60cb07 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,3 +1,4 @@ +%undefine __cmake_in_source_build %global framework solid Name: kf5-%{framework} @@ -70,16 +71,12 @@ developing applications that use %{name}. %build -mkdir %{_target_platform} -pushd %{_target_platform} -%{cmake_kf5} .. -popd - -%make_build -C %{_target_platform} +%{cmake_kf5} +%cmake_build %install -make install/fast DESTDIR=%{buildroot} -C %{_target_platform} +%cmake_install %find_lang_kf5 solid5_qt From 2ba13880616ed9bf12414c92f53a216c3d8b391e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 28 Jul 2020 03:20:53 +0000 Subject: [PATCH 109/155] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- kf5-solid.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-solid.spec b/kf5-solid.spec index b60cb07..7447b45 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -3,7 +3,7 @@ Name: kf5-%{framework} Version: 5.72.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -101,6 +101,9 @@ developing applications that use %{name}. %changelog +* Tue Jul 28 2020 Fedora Release Engineering - 5.72.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Tue Jul 07 2020 Rex Dieter - 5.72.0-1 - 5.72.0 From 1540307b1e8a168537e73c73cef9aa2d50a1798a Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 3 Aug 2020 11:57:30 -0500 Subject: [PATCH 110/155] 5.73.0 --- .gitignore | 1 + kf5-solid.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index b23701d..818f308 100644 --- a/.gitignore +++ b/.gitignore @@ -25,3 +25,4 @@ /solid-5.70.0.tar.xz /solid-5.71.0.tar.xz /solid-5.72.0.tar.xz +/solid-5.73.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 7447b45..e502c1d 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -2,8 +2,8 @@ %global framework solid Name: kf5-%{framework} -Version: 5.72.0 -Release: 2%{?dist} +Version: 5.73.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -101,6 +101,9 @@ developing applications that use %{name}. %changelog +* Mon Aug 03 2020 Rex Dieter - 5.73.0-1 +- 5.73.0 + * Tue Jul 28 2020 Fedora Release Engineering - 5.72.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild diff --git a/sources b/sources index 43d0f06..37668d9 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.72.0.tar.xz) = f6474541e90af822353f15093ee11eafda1e135059e35219284e8a2ab7a5a606bd9df31ccb491d72c9dacd40ffb0ad87a697aaa47108a94c57c955734f4b3df0 +SHA512 (solid-5.73.0.tar.xz) = 4ab8b555622e09e7b3611dfd33ead65598c2310458fe0cdcd8e34f7cd242abc1e634faf09fd43d231ebfccb486cd64bcd4c49272551d16b43029115462cc8506 From 0abe0d43ad42a1537de67c84eed6ada8c6c8fd77 Mon Sep 17 00:00:00 2001 From: Jan Grulich Date: Fri, 18 Sep 2020 11:02:52 +0200 Subject: [PATCH 111/155] 5.74.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 818f308..15c8d18 100644 --- a/.gitignore +++ b/.gitignore @@ -26,3 +26,4 @@ /solid-5.71.0.tar.xz /solid-5.72.0.tar.xz /solid-5.73.0.tar.xz +/solid-5.74.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index e502c1d..ee01e06 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -2,7 +2,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.73.0 +Version: 5.74.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -101,6 +101,9 @@ developing applications that use %{name}. %changelog +* Fri Sep 18 2020 Jan Grulich - 5.74.0-1 +- 5.74.0 + * Mon Aug 03 2020 Rex Dieter - 5.73.0-1 - 5.73.0 diff --git a/sources b/sources index 37668d9..e483c7a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.73.0.tar.xz) = 4ab8b555622e09e7b3611dfd33ead65598c2310458fe0cdcd8e34f7cd242abc1e634faf09fd43d231ebfccb486cd64bcd4c49272551d16b43029115462cc8506 +SHA512 (solid-5.74.0.tar.xz) = cc0190327552c63bca8627b96d9f59ec9fb4e4c1842d36c42455e8a458f97f972274765a94b70f311a4105d33f0abbd921b10a2db2b1e7f4c492e92268ca68b1 From 92c659e1a70278e2ac6276f62fe209dccf13973c Mon Sep 17 00:00:00 2001 From: Jan Grulich Date: Fri, 18 Sep 2020 12:10:20 +0200 Subject: [PATCH 112/155] Fix instalation of licence files --- kf5-solid.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kf5-solid.spec b/kf5-solid.spec index ee01e06..1014962 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -85,7 +85,7 @@ developing applications that use %{name}. %files -f solid5_qt.lang %doc README.md TODO -%license COPYING.LIB +%license LICENSES/*.txt %{_kf5_datadir}/qlogging-categories5/%{framework}.* %{_kf5_bindir}/solid-hardware5 #files libs From 6096a6ba501cb56602a52a40a5ad4bf5676a9d1d Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Wed, 14 Oct 2020 10:09:50 -0500 Subject: [PATCH 113/155] 5.75.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 15c8d18..0277da6 100644 --- a/.gitignore +++ b/.gitignore @@ -27,3 +27,4 @@ /solid-5.72.0.tar.xz /solid-5.73.0.tar.xz /solid-5.74.0.tar.xz +/solid-5.75.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 1014962..9e5a645 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -2,7 +2,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.74.0 +Version: 5.75.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -101,6 +101,9 @@ developing applications that use %{name}. %changelog +* Wed Oct 14 10:09:44 CDT 2020 Rex Dieter - 5.75.0-1 +- 5.75.0 + * Fri Sep 18 2020 Jan Grulich - 5.74.0-1 - 5.74.0 diff --git a/sources b/sources index e483c7a..2d46aae 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.74.0.tar.xz) = cc0190327552c63bca8627b96d9f59ec9fb4e4c1842d36c42455e8a458f97f972274765a94b70f311a4105d33f0abbd921b10a2db2b1e7f4c492e92268ca68b1 +SHA512 (solid-5.75.0.tar.xz) = 6fffe1f52e68499d4f6b40b235ebd0f3597c88c918db4bb90fd5e75f057571fe60ea37dca5f1fbfc5bf82f60a3b3c16b4a1e91b1f2a6b64f228ab31539c1d24c From 2a978c0d2fdbc67833a60f165e2743a03654eab4 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Thu, 5 Nov 2020 12:37:41 -0600 Subject: [PATCH 114/155] enable WIP api's (POWER_ASYNC, POWER_ASYNC_FREEDESKTOP, SOLID_JOB) relax dep on kf5-filesystem --- kf5-solid.spec | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/kf5-solid.spec b/kf5-solid.spec index 9e5a645..96c8387 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -3,7 +3,7 @@ Name: kf5-%{framework} Version: 5.75.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -45,7 +45,7 @@ Requires: upower %endif %endif -Requires: kf5-filesystem >= %{majmin} +Requires: kf5-filesystem Obsoletes: kf5-solid-libs < 5.47.0-2 Provides: kf5-solid-libs = %{version}-%{release} @@ -71,7 +71,11 @@ developing applications that use %{name}. %build -%{cmake_kf5} +%cmake_kf5 \ + -DWITH_NEW_POWER_ASYNC_API:BOOL=ON \ + -DWITH_NEW_POWER_ASYNC_FREEDESKTOP:BOOL=ON \ + -DWITH_NEW_SOLID_JOB:BOOL=ON + %cmake_build @@ -88,6 +92,8 @@ developing applications that use %{name}. %license LICENSES/*.txt %{_kf5_datadir}/qlogging-categories5/%{framework}.* %{_kf5_bindir}/solid-hardware5 +# if building with new WIP api's +%{_kf5_bindir}/solid-power #files libs %{_kf5_qmldir}/org/kde/solid/ %{_kf5_libdir}/libKF5Solid.so.* @@ -101,6 +107,10 @@ developing applications that use %{name}. %changelog +* Thu Nov 05 2020 Rex Dieter - 5.75.0-2 +- enable WIP api's (POWER_ASYNC, POWER_ASYNC_FREEDESKTOP, SOLID_JOB) +- relax dep on kf5-filesystem + * Wed Oct 14 10:09:44 CDT 2020 Rex Dieter - 5.75.0-1 - 5.75.0 From a5cdd9b251a8e57786be142ac8594a2b548300bb Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Thu, 19 Nov 2020 09:15:59 -0600 Subject: [PATCH 115/155] 5.76.0 --- .gitignore | 1 + kf5-solid.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 0277da6..a490940 100644 --- a/.gitignore +++ b/.gitignore @@ -28,3 +28,4 @@ /solid-5.73.0.tar.xz /solid-5.74.0.tar.xz /solid-5.75.0.tar.xz +/solid-5.76.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 96c8387..fbfafc8 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -2,8 +2,8 @@ %global framework solid Name: kf5-%{framework} -Version: 5.75.0 -Release: 2%{?dist} +Version: 5.76.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -107,6 +107,9 @@ developing applications that use %{name}. %changelog +* Thu Nov 19 09:15:52 CST 2020 Rex Dieter - 5.76.0-1 +- 5.76.0 + * Thu Nov 05 2020 Rex Dieter - 5.75.0-2 - enable WIP api's (POWER_ASYNC, POWER_ASYNC_FREEDESKTOP, SOLID_JOB) - relax dep on kf5-filesystem diff --git a/sources b/sources index 2d46aae..558a81a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.75.0.tar.xz) = 6fffe1f52e68499d4f6b40b235ebd0f3597c88c918db4bb90fd5e75f057571fe60ea37dca5f1fbfc5bf82f60a3b3c16b4a1e91b1f2a6b64f228ab31539c1d24c +SHA512 (solid-5.76.0.tar.xz) = 0219364d225befee1349ff0150648c35f5805d735ced67bec88b0f43ca372b721a34c3a37e4d2b1e05a4b13e47db9bbacfd151d34e61fcbd5426da02dbf88523 From 6f29f0aad4f884adb33eb835b4a4e1375c9c486f Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sun, 13 Dec 2020 14:22:09 -0600 Subject: [PATCH 116/155] 5.77.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index a490940..f59160a 100644 --- a/.gitignore +++ b/.gitignore @@ -29,3 +29,4 @@ /solid-5.74.0.tar.xz /solid-5.75.0.tar.xz /solid-5.76.0.tar.xz +/solid-5.77.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index fbfafc8..1fb87c1 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -2,7 +2,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.76.0 +Version: 5.77.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -107,6 +107,9 @@ developing applications that use %{name}. %changelog +* Sun Dec 13 14:22:06 CST 2020 Rex Dieter - 5.77.0-1 +- 5.77.0 + * Thu Nov 19 09:15:52 CST 2020 Rex Dieter - 5.76.0-1 - 5.76.0 diff --git a/sources b/sources index 558a81a..0476251 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.76.0.tar.xz) = 0219364d225befee1349ff0150648c35f5805d735ced67bec88b0f43ca372b721a34c3a37e4d2b1e05a4b13e47db9bbacfd151d34e61fcbd5426da02dbf88523 +SHA512 (solid-5.77.0.tar.xz) = bad8d9847cecef1cf7ceb46b6e766658ae48893d606df004d531da4347a8fdf7d3619a17c6505a0cbcd5b78c632f325c3fd8d766e8c512dcdd3a5c9d89d61475 From 5a773e413043be2d2fc23c6b1b8f977ef2cde42c Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 4 Jan 2021 08:59:25 -0600 Subject: [PATCH 117/155] 5.78.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index f59160a..485e526 100644 --- a/.gitignore +++ b/.gitignore @@ -30,3 +30,4 @@ /solid-5.75.0.tar.xz /solid-5.76.0.tar.xz /solid-5.77.0.tar.xz +/solid-5.78.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 1fb87c1..8a4f512 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -2,7 +2,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.77.0 +Version: 5.78.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -107,6 +107,9 @@ developing applications that use %{name}. %changelog +* Mon Jan 4 08:59:18 CST 2021 Rex Dieter - 5.78.0-1 +- 5.78.0 + * Sun Dec 13 14:22:06 CST 2020 Rex Dieter - 5.77.0-1 - 5.77.0 diff --git a/sources b/sources index 0476251..7d7746e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.77.0.tar.xz) = bad8d9847cecef1cf7ceb46b6e766658ae48893d606df004d531da4347a8fdf7d3619a17c6505a0cbcd5b78c632f325c3fd8d766e8c512dcdd3a5c9d89d61475 +SHA512 (solid-5.78.0.tar.xz) = dd30efff7ec7d6226ec9b5d02e4d4cae700e641398f28d3df4b5ad7e0d4954b5cb37cdd9991d743a4853c74d0cc3248c22f60569574b2b3c760db3cf2ac8258c From 08aa3575820aa04a29f2acac74440b156d9604f4 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 26 Jan 2021 15:47:58 +0000 Subject: [PATCH 118/155] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- kf5-solid.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-solid.spec b/kf5-solid.spec index 8a4f512..551d66f 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -3,7 +3,7 @@ Name: kf5-%{framework} Version: 5.78.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -107,6 +107,9 @@ developing applications that use %{name}. %changelog +* Tue Jan 26 2021 Fedora Release Engineering - 5.78.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Mon Jan 4 08:59:18 CST 2021 Rex Dieter - 5.78.0-1 - 5.78.0 From 7a60743608e4a4b0b78aee99514c3761f2a7de66 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sat, 6 Feb 2021 10:06:18 -0600 Subject: [PATCH 119/155] 5.79.0 --- .gitignore | 1 + kf5-solid.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 485e526..0978009 100644 --- a/.gitignore +++ b/.gitignore @@ -31,3 +31,4 @@ /solid-5.76.0.tar.xz /solid-5.77.0.tar.xz /solid-5.78.0.tar.xz +/solid-5.79.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 551d66f..3df43e7 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -2,8 +2,8 @@ %global framework solid Name: kf5-%{framework} -Version: 5.78.0 -Release: 2%{?dist} +Version: 5.79.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -107,6 +107,9 @@ developing applications that use %{name}. %changelog +* Sat Feb 06 2021 Rex Dieter - 5.79.0-1 +- 5.79.0 + * Tue Jan 26 2021 Fedora Release Engineering - 5.78.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild diff --git a/sources b/sources index 7d7746e..0ecca28 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.78.0.tar.xz) = dd30efff7ec7d6226ec9b5d02e4d4cae700e641398f28d3df4b5ad7e0d4954b5cb37cdd9991d743a4853c74d0cc3248c22f60569574b2b3c760db3cf2ac8258c +SHA512 (solid-5.79.0.tar.xz) = a946c4ae860250c98832e22c0f08e1a289023e86cb6606662ba802e3d82d0798870bacd013a02ec0c2f1b63cff40fe018658ad3d926bc6003b3a2c60a8546b80 From b961897d283d5d480ccae5114bf7fe29e64aa238 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sat, 6 Feb 2021 15:26:26 -0600 Subject: [PATCH 120/155] respin --- kf5-solid.spec | 5 ++++- sources | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/kf5-solid.spec b/kf5-solid.spec index 3df43e7..bd6621c 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -3,7 +3,7 @@ Name: kf5-%{framework} Version: 5.79.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -107,6 +107,9 @@ developing applications that use %{name}. %changelog +* Sat Feb 06 2021 Rex Dieter - 5.79.0-2 +- respin + * Sat Feb 06 2021 Rex Dieter - 5.79.0-1 - 5.79.0 diff --git a/sources b/sources index 0ecca28..c6cd077 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.79.0.tar.xz) = a946c4ae860250c98832e22c0f08e1a289023e86cb6606662ba802e3d82d0798870bacd013a02ec0c2f1b63cff40fe018658ad3d926bc6003b3a2c60a8546b80 +SHA512 (solid-5.79.0.tar.xz) = 4db08b74b25e0ae0ee97d056e14c9743aaf7c9d32958bc83d2debf39aeda2fb32ea2e0324e788d26447a7927fadb572dc11e84e79a58ad55895018b040baf13b From bf35c1b8a654991355a7b77a33138463ec0ef87e Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 9 Mar 2021 08:54:48 -0600 Subject: [PATCH 121/155] 5.80.0 --- .gitignore | 1 + kf5-solid.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 0978009..3b261e5 100644 --- a/.gitignore +++ b/.gitignore @@ -32,3 +32,4 @@ /solid-5.77.0.tar.xz /solid-5.78.0.tar.xz /solid-5.79.0.tar.xz +/solid-5.80.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index bd6621c..9742f59 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -2,8 +2,8 @@ %global framework solid Name: kf5-%{framework} -Version: 5.79.0 -Release: 2%{?dist} +Version: 5.80.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -107,6 +107,9 @@ developing applications that use %{name}. %changelog +* Tue Mar 09 2021 Rex Dieter - 5.80.0-1 +- 5.80.0 + * Sat Feb 06 2021 Rex Dieter - 5.79.0-2 - respin diff --git a/sources b/sources index c6cd077..a7088e3 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.79.0.tar.xz) = 4db08b74b25e0ae0ee97d056e14c9743aaf7c9d32958bc83d2debf39aeda2fb32ea2e0324e788d26447a7927fadb572dc11e84e79a58ad55895018b040baf13b +SHA512 (solid-5.80.0.tar.xz) = 8826187f729d435a64bd6b18888d48a87a9c2e910a2b91dbe081212a3bb0be5ff956190a6fb1337d0e8544d54923a0dafb4971f5dec68c2fa9adf66939a22cdf From 3aaa3e8fc785777454879da97799d9349fdfad25 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 6 Apr 2021 09:08:27 -0500 Subject: [PATCH 122/155] 5.81.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 3b261e5..529d2ce 100644 --- a/.gitignore +++ b/.gitignore @@ -33,3 +33,4 @@ /solid-5.78.0.tar.xz /solid-5.79.0.tar.xz /solid-5.80.0.tar.xz +/solid-5.81.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 9742f59..5b5bf5b 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -2,7 +2,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.80.0 +Version: 5.81.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -107,6 +107,9 @@ developing applications that use %{name}. %changelog +* Tue Apr 06 2021 Rex Dieter - 5.81.0-1 +- 5.81.0 + * Tue Mar 09 2021 Rex Dieter - 5.80.0-1 - 5.80.0 diff --git a/sources b/sources index a7088e3..ddf31d7 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.80.0.tar.xz) = 8826187f729d435a64bd6b18888d48a87a9c2e910a2b91dbe081212a3bb0be5ff956190a6fb1337d0e8544d54923a0dafb4971f5dec68c2fa9adf66939a22cdf +SHA512 (solid-5.81.0.tar.xz) = b4fdd64deca063421945f2de739d88963b093c167275e7466910de8657266c9e53c5f8010608b903c10cdf9d49e9ef7ca7962701c8dda7f806f4ad6c08af85f1 From 31ce07c6c410706438977022d4d05258ce8610c4 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 3 May 2021 08:51:44 -0500 Subject: [PATCH 123/155] 5.82.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 529d2ce..d1c86ff 100644 --- a/.gitignore +++ b/.gitignore @@ -34,3 +34,4 @@ /solid-5.79.0.tar.xz /solid-5.80.0.tar.xz /solid-5.81.0.tar.xz +/solid-5.82.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 5b5bf5b..756fb94 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -2,7 +2,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.81.0 +Version: 5.82.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -107,6 +107,9 @@ developing applications that use %{name}. %changelog +* Mon May 03 2021 Rex Dieter - 5.82.0-1 +- 5.82.0 + * Tue Apr 06 2021 Rex Dieter - 5.81.0-1 - 5.81.0 diff --git a/sources b/sources index ddf31d7..a6c31fb 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.81.0.tar.xz) = b4fdd64deca063421945f2de739d88963b093c167275e7466910de8657266c9e53c5f8010608b903c10cdf9d49e9ef7ca7962701c8dda7f806f4ad6c08af85f1 +SHA512 (solid-5.82.0.tar.xz) = ae15081a07e46590eb36f6c642adcded7bb519010f6f8bce1f38e14e97900f029a1ae0bc61d64d8a2752479ae54a9d2188e51698e0b46ebddd15bab6941ae59a From 86f880f925d0e5f5a94eb2df9fb6e643e4247b7b Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 8 Jun 2021 16:11:22 -0500 Subject: [PATCH 124/155] 5.83.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index d1c86ff..18aafbc 100644 --- a/.gitignore +++ b/.gitignore @@ -35,3 +35,4 @@ /solid-5.80.0.tar.xz /solid-5.81.0.tar.xz /solid-5.82.0.tar.xz +/solid-5.83.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 756fb94..e1813a8 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -2,7 +2,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.82.0 +Version: 5.83.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -107,6 +107,9 @@ developing applications that use %{name}. %changelog +* Tue Jun 08 2021 Rex Dieter - 5.83.0-1 +- 5.83.0 + * Mon May 03 2021 Rex Dieter - 5.82.0-1 - 5.82.0 diff --git a/sources b/sources index a6c31fb..9ed3074 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.82.0.tar.xz) = ae15081a07e46590eb36f6c642adcded7bb519010f6f8bce1f38e14e97900f029a1ae0bc61d64d8a2752479ae54a9d2188e51698e0b46ebddd15bab6941ae59a +SHA512 (solid-5.83.0.tar.xz) = 79850aa8195fa640caa27379aee876a0d4d5dbb8436bdecb4bdcfd3667d703195cf246013e715f1a5925b6c882635f94207feae27ba584853fb13153d3eecc0a From 5ab60a385fbb5aed48033f6669c91f48a47ab0f1 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 22 Jul 2021 10:02:30 +0000 Subject: [PATCH 125/155] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- kf5-solid.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-solid.spec b/kf5-solid.spec index e1813a8..d1147f5 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -3,7 +3,7 @@ Name: kf5-%{framework} Version: 5.83.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -107,6 +107,9 @@ developing applications that use %{name}. %changelog +* Thu Jul 22 2021 Fedora Release Engineering - 5.83.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Tue Jun 08 2021 Rex Dieter - 5.83.0-1 - 5.83.0 From 7e700160f50a8a833a7232a8c4571396e307c944 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Thu, 12 Aug 2021 11:18:10 -0500 Subject: [PATCH 126/155] 5.85.0 --- .gitignore | 1 + kf5-solid.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 18aafbc..645102d 100644 --- a/.gitignore +++ b/.gitignore @@ -36,3 +36,4 @@ /solid-5.81.0.tar.xz /solid-5.82.0.tar.xz /solid-5.83.0.tar.xz +/solid-5.85.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index d1147f5..4841e4f 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -2,8 +2,8 @@ %global framework solid Name: kf5-%{framework} -Version: 5.83.0 -Release: 2%{?dist} +Version: 5.85.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -107,6 +107,9 @@ developing applications that use %{name}. %changelog +* Thu Aug 12 2021 Rex Dieter - 5.85.0-1 +- 5.85.0 + * Thu Jul 22 2021 Fedora Release Engineering - 5.83.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild diff --git a/sources b/sources index 9ed3074..a2413a9 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.83.0.tar.xz) = 79850aa8195fa640caa27379aee876a0d4d5dbb8436bdecb4bdcfd3667d703195cf246013e715f1a5925b6c882635f94207feae27ba584853fb13153d3eecc0a +SHA512 (solid-5.85.0.tar.xz) = e84148cdc76d8f0c075f5e064c4e7b5a886fb1beb6f343f9ab450cd17db8aa5094f839dd0fc383bc4ef1764e75f1444841bd802093343544cea99ab9668ac4c5 From 1caaa35941ddb21f6446bde519a83659dd629550 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Fri, 20 Aug 2021 08:54:35 -0500 Subject: [PATCH 127/155] enable optional mobile support (#1995851) --- kf5-solid.spec | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/kf5-solid.spec b/kf5-solid.spec index 4841e4f..cb77e57 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,9 +1,8 @@ -%undefine __cmake_in_source_build %global framework solid Name: kf5-%{framework} Version: 5.85.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -34,6 +33,8 @@ BuildRequires: bison BuildRequires: flex # really runtime-only dep, but doesn't hurt to check availability at buildtime BuildRequires: media-player-info +BuildRequires: pkgconfig(libimobiledevice-1.0) +BuildRequires: pkgconfig(mount) %if 0%{?fedora} > 23 || 0%{?rhel} > 7 Recommends: media-player-info Recommends: udisks2 @@ -107,6 +108,9 @@ developing applications that use %{name}. %changelog +* Fri Aug 20 2021 Rex Dieter - 5.85.0-2 +- enable optional mobile support (#1995851) + * Thu Aug 12 2021 Rex Dieter - 5.85.0-1 - 5.85.0 From 40d73d956a0254b72503f7c10600f8dcb6b7ca68 Mon Sep 17 00:00:00 2001 From: Marc Deop Date: Wed, 15 Sep 2021 00:22:47 +0200 Subject: [PATCH 128/155] 5.86.0 --- .gitignore | 1 + kf5-solid.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 645102d..21b4ec1 100644 --- a/.gitignore +++ b/.gitignore @@ -37,3 +37,4 @@ /solid-5.82.0.tar.xz /solid-5.83.0.tar.xz /solid-5.85.0.tar.xz +/solid-5.86.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index cb77e57..baedbd7 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,8 +1,8 @@ %global framework solid Name: kf5-%{framework} -Version: 5.85.0 -Release: 2%{?dist} +Version: 5.86.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -108,6 +108,9 @@ developing applications that use %{name}. %changelog +* Tue Sep 14 2021 Marc Deop - 5.86.0-1 +- 5.86.0 + * Fri Aug 20 2021 Rex Dieter - 5.85.0-2 - enable optional mobile support (#1995851) diff --git a/sources b/sources index a2413a9..2a24dea 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.85.0.tar.xz) = e84148cdc76d8f0c075f5e064c4e7b5a886fb1beb6f343f9ab450cd17db8aa5094f839dd0fc383bc4ef1764e75f1444841bd802093343544cea99ab9668ac4c5 +SHA512 (solid-5.86.0.tar.xz) = 3076c9a060bfdaafc52f3a1eefcb2213320bb3c18d59b0b85b4f90e587291d2f5447ffe11a307b50b08792ae4faefbead88bc94dc870368dec8f79a6d6d7b6e4 From 25f18405db57a2262759629faae94f69f51f76d0 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 5 Oct 2021 09:30:32 -0500 Subject: [PATCH 129/155] 5.87.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 21b4ec1..243cbad 100644 --- a/.gitignore +++ b/.gitignore @@ -38,3 +38,4 @@ /solid-5.83.0.tar.xz /solid-5.85.0.tar.xz /solid-5.86.0.tar.xz +/solid-5.87.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index baedbd7..30fc25f 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.86.0 +Version: 5.87.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -108,6 +108,9 @@ developing applications that use %{name}. %changelog +* Tue Oct 05 2021 Rex Dieter - 5.87.0-1 +- 5.87.0 + * Tue Sep 14 2021 Marc Deop - 5.86.0-1 - 5.86.0 diff --git a/sources b/sources index 2a24dea..db90d11 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.86.0.tar.xz) = 3076c9a060bfdaafc52f3a1eefcb2213320bb3c18d59b0b85b4f90e587291d2f5447ffe11a307b50b08792ae4faefbead88bc94dc870368dec8f79a6d6d7b6e4 +SHA512 (solid-5.87.0.tar.xz) = c77b201e6b304534b1f932912fd6a650801caabaabb03d6b3826d0c21c625556bb243d04186c609070530b8ddd4aca33c655719cdc18b1a96444422ff36cbea2 From 9b021d59d3f9c0a20e9e979009d9e9bb78c5543e Mon Sep 17 00:00:00 2001 From: Marc Deop Date: Tue, 9 Nov 2021 10:07:30 +0100 Subject: [PATCH 130/155] 5.88.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 243cbad..2a04525 100644 --- a/.gitignore +++ b/.gitignore @@ -39,3 +39,4 @@ /solid-5.85.0.tar.xz /solid-5.86.0.tar.xz /solid-5.87.0.tar.xz +/solid-5.88.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 30fc25f..b3fa691 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.87.0 +Version: 5.88.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -108,6 +108,9 @@ developing applications that use %{name}. %changelog +* Mon Nov 08 2021 Marc Deop - 5.88.0-1 +- 5.88.0 + * Tue Oct 05 2021 Rex Dieter - 5.87.0-1 - 5.87.0 diff --git a/sources b/sources index db90d11..426f434 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.87.0.tar.xz) = c77b201e6b304534b1f932912fd6a650801caabaabb03d6b3826d0c21c625556bb243d04186c609070530b8ddd4aca33c655719cdc18b1a96444422ff36cbea2 +SHA512 (solid-5.88.0.tar.xz) = dbdd619402b036c7d6d4003b1d61ca82e68333a5afb0c424cc8a7236927ac7f42d97c14ad11bebb2729632cbee9681399da2d32dfd1566c400fee8f3a13dc4fa From a033dc6ad60f2341236ffd94121d58a2ca0346dc Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Wed, 8 Dec 2021 09:44:02 -0600 Subject: [PATCH 131/155] 5.89.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 2a04525..4f9117d 100644 --- a/.gitignore +++ b/.gitignore @@ -40,3 +40,4 @@ /solid-5.86.0.tar.xz /solid-5.87.0.tar.xz /solid-5.88.0.tar.xz +/solid-5.89.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index b3fa691..dcd00e9 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.88.0 +Version: 5.89.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -108,6 +108,9 @@ developing applications that use %{name}. %changelog +* Wed Dec 08 2021 Rex Dieter - 5.89.0-1 +- 5.89.0 + * Mon Nov 08 2021 Marc Deop - 5.88.0-1 - 5.88.0 diff --git a/sources b/sources index 426f434..92dfe29 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.88.0.tar.xz) = dbdd619402b036c7d6d4003b1d61ca82e68333a5afb0c424cc8a7236927ac7f42d97c14ad11bebb2729632cbee9681399da2d32dfd1566c400fee8f3a13dc4fa +SHA512 (solid-5.89.0.tar.xz) = cd580a01eb6044eb44ff18f2d010cda7cac54ca1ce6ce6d64e6201f07fe31776223136bc22d3e17cd66aa23e6fae192e82a22b8e32a61280d2f3a4dcaae83a24 From 89e1ed91a6ec76b65d642cd4e9db43110fb233fa Mon Sep 17 00:00:00 2001 From: Marc Deop Date: Tue, 4 Jan 2022 09:37:45 +0100 Subject: [PATCH 132/155] 5.90.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 4f9117d..2c83317 100644 --- a/.gitignore +++ b/.gitignore @@ -41,3 +41,4 @@ /solid-5.87.0.tar.xz /solid-5.88.0.tar.xz /solid-5.89.0.tar.xz +/solid-5.90.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index dcd00e9..54c901b 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.89.0 +Version: 5.90.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -108,6 +108,9 @@ developing applications that use %{name}. %changelog +* Tue Jan 04 2022 Marc Deop i Argemí (Private) - 5.90.0-1 +- 5.90.0 + * Wed Dec 08 2021 Rex Dieter - 5.89.0-1 - 5.89.0 diff --git a/sources b/sources index 92dfe29..866b452 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.89.0.tar.xz) = cd580a01eb6044eb44ff18f2d010cda7cac54ca1ce6ce6d64e6201f07fe31776223136bc22d3e17cd66aa23e6fae192e82a22b8e32a61280d2f3a4dcaae83a24 +SHA512 (solid-5.90.0.tar.xz) = 407ebc65b96f4e74862e30a80016c58d338ddc6e037cee5dbec928e3c2a6d1ae8d81e76eaf9a7a619ef2b7c0bad6e7642a96da0fbbe158fcf90519c5b2d758d7 From 4fd6b2b608a5655fb2fbd92835ef39d16264a622 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 20 Jan 2022 14:48:05 +0000 Subject: [PATCH 133/155] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- kf5-solid.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-solid.spec b/kf5-solid.spec index 54c901b..74f7e27 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.90.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -108,6 +108,9 @@ developing applications that use %{name}. %changelog +* Thu Jan 20 2022 Fedora Release Engineering - 5.90.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Tue Jan 04 2022 Marc Deop i Argemí (Private) - 5.90.0-1 - 5.90.0 From 5c95d5e9095c17ce2e47334d9d87b21113a80610 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Fri, 11 Feb 2022 12:38:34 -0600 Subject: [PATCH 134/155] 5.91.0 --- .gitignore | 1 + kf5-solid.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 2c83317..52291f4 100644 --- a/.gitignore +++ b/.gitignore @@ -42,3 +42,4 @@ /solid-5.88.0.tar.xz /solid-5.89.0.tar.xz /solid-5.90.0.tar.xz +/solid-5.91.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 74f7e27..a7ea6e5 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,8 +1,8 @@ %global framework solid Name: kf5-%{framework} -Version: 5.90.0 -Release: 2%{?dist} +Version: 5.91.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -108,6 +108,9 @@ developing applications that use %{name}. %changelog +* Fri Feb 11 2022 Rex Dieter - 5.91.0-1 +- 5.91.0 + * Thu Jan 20 2022 Fedora Release Engineering - 5.90.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild diff --git a/sources b/sources index 866b452..2ccc8c9 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.90.0.tar.xz) = 407ebc65b96f4e74862e30a80016c58d338ddc6e037cee5dbec928e3c2a6d1ae8d81e76eaf9a7a619ef2b7c0bad6e7642a96da0fbbe158fcf90519c5b2d758d7 +SHA512 (solid-5.91.0.tar.xz) = 381cfd658b5cf8a6448f42bbc5e43122d7d2438facd7e33ae9f8346b258e7ea00838b2b317594403f34b2c12ca62eef8b9c3f82126453027a33556fa12a58450 From 2dbcd9bf72a3a3a8f8e7d729d02699f660132c86 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Fri, 11 Feb 2022 13:56:22 -0600 Subject: [PATCH 135/155] update %%files --- kf5-solid.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/kf5-solid.spec b/kf5-solid.spec index a7ea6e5..b79aadb 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -100,7 +100,6 @@ developing applications that use %{name}. %{_kf5_libdir}/libKF5Solid.so.* %files devel -%{_kf5_includedir}/solid_version.h %{_kf5_includedir}/Solid/ %{_kf5_libdir}/libKF5Solid.so %{_kf5_libdir}/cmake/KF5Solid/ From b795b121628067b6467ea55b90957e717bc1d7bb Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Thu, 10 Mar 2022 15:13:08 -0600 Subject: [PATCH 136/155] 5.92.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 52291f4..8a22abd 100644 --- a/.gitignore +++ b/.gitignore @@ -43,3 +43,4 @@ /solid-5.89.0.tar.xz /solid-5.90.0.tar.xz /solid-5.91.0.tar.xz +/solid-5.92.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index b79aadb..b564144 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.91.0 +Version: 5.92.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -107,6 +107,9 @@ developing applications that use %{name}. %changelog +* Thu Mar 10 2022 Rex Dieter - 5.92.0-1 +- 5.92.0 + * Fri Feb 11 2022 Rex Dieter - 5.91.0-1 - 5.91.0 diff --git a/sources b/sources index 2ccc8c9..5bb42f4 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.91.0.tar.xz) = 381cfd658b5cf8a6448f42bbc5e43122d7d2438facd7e33ae9f8346b258e7ea00838b2b317594403f34b2c12ca62eef8b9c3f82126453027a33556fa12a58450 +SHA512 (solid-5.92.0.tar.xz) = 14be0e88e261dde525a227129a371c63de1a173a4dddd403fc191864ecf83468c20bad43c3ac06a751234a1dfb09d4371c574293bf1de9fb719d52730ec3643b From 4064c5e48d43ccaed1daf3bcd965146b1a5862e6 Mon Sep 17 00:00:00 2001 From: Justin Zobel Date: Sun, 10 Apr 2022 13:32:30 +0930 Subject: [PATCH 137/155] Update to 5.93 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 1 + 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 8a22abd..47370ae 100644 --- a/.gitignore +++ b/.gitignore @@ -44,3 +44,4 @@ /solid-5.90.0.tar.xz /solid-5.91.0.tar.xz /solid-5.92.0.tar.xz +./solid-5.93.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index b564144..7241615 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.92.0 +Version: 5.93.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -107,6 +107,9 @@ developing applications that use %{name}. %changelog +* Sun Apr 10 2022 Justin Zobel - 5.93-1 +- Update to 5.93 + * Thu Mar 10 2022 Rex Dieter - 5.92.0-1 - 5.92.0 diff --git a/sources b/sources index 5bb42f4..6f71ead 100644 --- a/sources +++ b/sources @@ -1 +1,2 @@ SHA512 (solid-5.92.0.tar.xz) = 14be0e88e261dde525a227129a371c63de1a173a4dddd403fc191864ecf83468c20bad43c3ac06a751234a1dfb09d4371c574293bf1de9fb719d52730ec3643b +SHA512 (solid-5.93.0.tar.xz) = 028e045da3759586a7dcdf6fc00ae1d359eef87aef0c02251b669e81b8a076fea1ef69193d5122b21871d89b4232eec1aad3e469d9f1541e4aea629a0b1288bb From 259dd3262d7844b4a2678cccb83e6d3fe46407f6 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Fri, 13 May 2022 11:28:22 -0500 Subject: [PATCH 138/155] 5.94.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 3 +-- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 47370ae..697abaf 100644 --- a/.gitignore +++ b/.gitignore @@ -45,3 +45,4 @@ /solid-5.91.0.tar.xz /solid-5.92.0.tar.xz ./solid-5.93.tar.xz +/solid-5.94.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 7241615..e2bb7b0 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.93.0 +Version: 5.94.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -107,6 +107,9 @@ developing applications that use %{name}. %changelog +* Fri May 13 2022 Rex Dieter - 5.94.0-1 +- 5.94.0 + * Sun Apr 10 2022 Justin Zobel - 5.93-1 - Update to 5.93 diff --git a/sources b/sources index 6f71ead..06377d9 100644 --- a/sources +++ b/sources @@ -1,2 +1 @@ -SHA512 (solid-5.92.0.tar.xz) = 14be0e88e261dde525a227129a371c63de1a173a4dddd403fc191864ecf83468c20bad43c3ac06a751234a1dfb09d4371c574293bf1de9fb719d52730ec3643b -SHA512 (solid-5.93.0.tar.xz) = 028e045da3759586a7dcdf6fc00ae1d359eef87aef0c02251b669e81b8a076fea1ef69193d5122b21871d89b4232eec1aad3e469d9f1541e4aea629a0b1288bb +SHA512 (solid-5.94.0.tar.xz) = c72da5c52512c97a4ff164e34d06d572a7747f9f434ad574bc3bd106574bef617db48a1b00b2cca6b944f9ab5bf74563e36d25fa7618fd56782506d61ebfea37 From 79665c56fae344e8497f1c2ea4626690613f54b6 Mon Sep 17 00:00:00 2001 From: Marc Deop Date: Sun, 3 Jul 2022 23:25:45 +0200 Subject: [PATCH 139/155] 5.96.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 697abaf..0ba2324 100644 --- a/.gitignore +++ b/.gitignore @@ -46,3 +46,4 @@ /solid-5.92.0.tar.xz ./solid-5.93.tar.xz /solid-5.94.0.tar.xz +/solid-5.96.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index e2bb7b0..ee5bc84 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.94.0 +Version: 5.96.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -107,6 +107,9 @@ developing applications that use %{name}. %changelog +* Sun Jul 03 2022 Marc Deop - 5.96.0-1 +- 5.96.0 + * Fri May 13 2022 Rex Dieter - 5.94.0-1 - 5.94.0 diff --git a/sources b/sources index 06377d9..5043816 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.94.0.tar.xz) = c72da5c52512c97a4ff164e34d06d572a7747f9f434ad574bc3bd106574bef617db48a1b00b2cca6b944f9ab5bf74563e36d25fa7618fd56782506d61ebfea37 +SHA512 (solid-5.96.0.tar.xz) = 5a13db666f99aedcf0c893d3fbe0488390fca66605d2aabb30ca07e2d3a0a7e9832c06e3cf7574a25e78bcd6a002d04ac9b8e4de29ad6c5e2e191555896316a3 From 366934497877df001071ca820c3830209d5baf52 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 21 Jul 2022 16:14:18 +0000 Subject: [PATCH 140/155] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- kf5-solid.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-solid.spec b/kf5-solid.spec index ee5bc84..38232ca 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.96.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -107,6 +107,9 @@ developing applications that use %{name}. %changelog +* Thu Jul 21 2022 Fedora Release Engineering - 5.96.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Sun Jul 03 2022 Marc Deop - 5.96.0-1 - 5.96.0 From 3981534f507a386ac2a2f6c8800ef2d8abf8cb9f Mon Sep 17 00:00:00 2001 From: Justin Zobel Date: Sun, 14 Aug 2022 13:13:29 +0930 Subject: [PATCH 141/155] Update to 5.97.0 --- .gitignore | 1 + kf5-solid.spec | 7 +++++-- sources | 1 + 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 0ba2324..74989f6 100644 --- a/.gitignore +++ b/.gitignore @@ -47,3 +47,4 @@ ./solid-5.93.tar.xz /solid-5.94.0.tar.xz /solid-5.96.0.tar.xz +/solid-5.97.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 38232ca..1eb3f01 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,8 +1,8 @@ %global framework solid Name: kf5-%{framework} -Version: 5.96.0 -Release: 2%{?dist} +Version: 5.97.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -107,6 +107,9 @@ developing applications that use %{name}. %changelog +* Sat Aug 13 2022 Justin Zobel - 5.97.0-1 +- Update to 5.97.0 + * Thu Jul 21 2022 Fedora Release Engineering - 5.96.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild diff --git a/sources b/sources index 5043816..7a3e8b9 100644 --- a/sources +++ b/sources @@ -1 +1,2 @@ SHA512 (solid-5.96.0.tar.xz) = 5a13db666f99aedcf0c893d3fbe0488390fca66605d2aabb30ca07e2d3a0a7e9832c06e3cf7574a25e78bcd6a002d04ac9b8e4de29ad6c5e2e191555896316a3 +SHA512 (solid-5.97.0.tar.xz) = e3853e42f795173a19434bc5e583a4aced8ab09ef3d7c5308e87aedc716aeac2629b03bb07ba779b368c1237c37e5ae6e0b1cefb6076bc93e6fc1a5e77ccd0f6 From e43afbaceb495eb6e23da4b15e37d7c3c0a7ef41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Deop=20i=20Argem=C3=AD?= Date: Thu, 15 Sep 2022 17:59:18 +0200 Subject: [PATCH 142/155] 5.98.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 3 +-- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 74989f6..d0ea678 100644 --- a/.gitignore +++ b/.gitignore @@ -48,3 +48,4 @@ /solid-5.94.0.tar.xz /solid-5.96.0.tar.xz /solid-5.97.0.tar.xz +/solid-5.98.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 1eb3f01..f74d367 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.97.0 +Version: 5.98.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -107,6 +107,9 @@ developing applications that use %{name}. %changelog +* Thu Sep 15 2022 Marc Deop - 5.98.0-1 +- 5.98.0 + * Sat Aug 13 2022 Justin Zobel - 5.97.0-1 - Update to 5.97.0 diff --git a/sources b/sources index 7a3e8b9..c47cda4 100644 --- a/sources +++ b/sources @@ -1,2 +1 @@ -SHA512 (solid-5.96.0.tar.xz) = 5a13db666f99aedcf0c893d3fbe0488390fca66605d2aabb30ca07e2d3a0a7e9832c06e3cf7574a25e78bcd6a002d04ac9b8e4de29ad6c5e2e191555896316a3 -SHA512 (solid-5.97.0.tar.xz) = e3853e42f795173a19434bc5e583a4aced8ab09ef3d7c5308e87aedc716aeac2629b03bb07ba779b368c1237c37e5ae6e0b1cefb6076bc93e6fc1a5e77ccd0f6 +SHA512 (solid-5.98.0.tar.xz) = 0a291f771cc77ac7e4ed804d619cd2d4638cf505e6c813f2e7e7a4ca6ffc60726939e346fc87053666c1d71e855fa1907712c9f59d235ce8bb2cca3ee730afb6 From 9d47a46d9f1220d36781d3b337d5d95910ab796b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Deop=20i=20Argem=C3=AD?= Date: Fri, 14 Oct 2022 17:00:04 +0200 Subject: [PATCH 143/155] 5.99.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index d0ea678..22d5dc8 100644 --- a/.gitignore +++ b/.gitignore @@ -49,3 +49,4 @@ /solid-5.96.0.tar.xz /solid-5.97.0.tar.xz /solid-5.98.0.tar.xz +/solid-5.99.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index f74d367..5f7f7bd 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.98.0 +Version: 5.99.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -107,6 +107,9 @@ developing applications that use %{name}. %changelog +* Fri Oct 14 2022 Marc Deop - 5.99.0-1 +- 5.99.0 + * Thu Sep 15 2022 Marc Deop - 5.98.0-1 - 5.98.0 diff --git a/sources b/sources index c47cda4..86a3759 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.98.0.tar.xz) = 0a291f771cc77ac7e4ed804d619cd2d4638cf505e6c813f2e7e7a4ca6ffc60726939e346fc87053666c1d71e855fa1907712c9f59d235ce8bb2cca3ee730afb6 +SHA512 (solid-5.99.0.tar.xz) = bb3a1877fdb39d4406e655013bdd233be0815994ca74b466ad8b8059399d5dc63c3c9d08ee729d481f7ab92f7d9a64f04e469c28e28d8413c6a95f4febebb4c6 From b7f67af2e5a421a25975ee3561973cbfab56fe26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Deop=20i=20Argem=C3=AD?= Date: Sun, 6 Nov 2022 22:29:02 +0100 Subject: [PATCH 144/155] 5.100.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 22d5dc8..2fae309 100644 --- a/.gitignore +++ b/.gitignore @@ -50,3 +50,4 @@ /solid-5.97.0.tar.xz /solid-5.98.0.tar.xz /solid-5.99.0.tar.xz +/solid-5.100.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 5f7f7bd..b1f8a81 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.99.0 +Version: 5.100.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -107,6 +107,9 @@ developing applications that use %{name}. %changelog +* Sun Nov 06 2022 Marc Deop - 5.100.0-1 +- 5.100.0 + * Fri Oct 14 2022 Marc Deop - 5.99.0-1 - 5.99.0 diff --git a/sources b/sources index 86a3759..ca28c3b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.99.0.tar.xz) = bb3a1877fdb39d4406e655013bdd233be0815994ca74b466ad8b8059399d5dc63c3c9d08ee729d481f7ab92f7d9a64f04e469c28e28d8413c6a95f4febebb4c6 +SHA512 (solid-5.100.0.tar.xz) = 7323859c0ef59911ec2fb76f56e79b5b6a1ac0f5c58630114748a3eb1c39f33faf7291b83f341146125416dd08e35ae4f86d2e97dfdec1d94a5beb66d445d43e From b35f3eeee6fd26b8644caf9574a34664004b3451 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Deop=20i=20Argem=C3=AD?= Date: Mon, 12 Dec 2022 16:02:53 +0100 Subject: [PATCH 145/155] 5.101.0 --- .gitignore | 1 + kf5-solid.spec | 13 ++++++------- sources | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index 2fae309..8c28b42 100644 --- a/.gitignore +++ b/.gitignore @@ -51,3 +51,4 @@ /solid-5.98.0.tar.xz /solid-5.99.0.tar.xz /solid-5.100.0.tar.xz +/solid-5.101.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index b1f8a81..a5e6b04 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.100.0 +Version: 5.101.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -9,12 +9,7 @@ License: LGPLv2+ URL: https://solid.kde.org/ %global majmin %(echo %{version} | cut -d. -f1-2) -%global revision %(echo %{version} | cut -d. -f3) -%if %{revision} >= 50 -%global stable unstable -%else -%global stable stable -%endif +%global stable %stable_kf5 Source0: http://download.kde.org/%{stable}/frameworks/%{majmin}/%{framework}-%{version}.tar.xz ## upstreamable patches @@ -107,6 +102,10 @@ developing applications that use %{name}. %changelog +* Mon Dec 12 2022 Marc Deop - 5.101.0-1 +- 5.101.0 +- use new macros to simplify code + * Sun Nov 06 2022 Marc Deop - 5.100.0-1 - 5.100.0 diff --git a/sources b/sources index ca28c3b..3195fab 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.100.0.tar.xz) = 7323859c0ef59911ec2fb76f56e79b5b6a1ac0f5c58630114748a3eb1c39f33faf7291b83f341146125416dd08e35ae4f86d2e97dfdec1d94a5beb66d445d43e +SHA512 (solid-5.101.0.tar.xz) = f6f977665f528b65caa9e271fda340da720cb6b10a313125753a2c66802417378c9f31278593d315d05a54e6ecb5015d675431ca1296174cfb7b83457687121f From 6a009b160f0e8435731d6d28b9a66b1db6ce2c12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Deop=20i=20Argem=C3=AD?= Date: Sat, 14 Jan 2023 16:40:35 +0100 Subject: [PATCH 146/155] 5.102.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 8c28b42..8ee2564 100644 --- a/.gitignore +++ b/.gitignore @@ -52,3 +52,4 @@ /solid-5.99.0.tar.xz /solid-5.100.0.tar.xz /solid-5.101.0.tar.xz +/solid-5.102.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index a5e6b04..8bb9470 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.101.0 +Version: 5.102.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -102,6 +102,9 @@ developing applications that use %{name}. %changelog +* Sat Jan 14 2023 Marc Deop - 5.102.0-1 +- 5.102.0 + * Mon Dec 12 2022 Marc Deop - 5.101.0-1 - 5.101.0 - use new macros to simplify code diff --git a/sources b/sources index 3195fab..ae44f8e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.101.0.tar.xz) = f6f977665f528b65caa9e271fda340da720cb6b10a313125753a2c66802417378c9f31278593d315d05a54e6ecb5015d675431ca1296174cfb7b83457687121f +SHA512 (solid-5.102.0.tar.xz) = 93e835ec5c1e34908ff70b0dde90492c5e202160fb69ab4f62cf5c8146fc3ad6c76078fd6b9ac5ea19d62dbce46ff443c9de9c48b6b28bdbbb074681880634fd From c44ca75941243f2f43fb527b455a327a062f2c5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Deop=20i=20Argem=C3=AD?= Date: Sun, 15 Jan 2023 17:46:22 +0100 Subject: [PATCH 147/155] fix: use macros from macros.kf5 instead of custom code --- kf5-solid.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kf5-solid.spec b/kf5-solid.spec index 8bb9470..1756abe 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -8,7 +8,7 @@ Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware infor License: LGPLv2+ URL: https://solid.kde.org/ -%global majmin %(echo %{version} | cut -d. -f1-2) +%global majmin %majmin_ver_kf5 %global stable %stable_kf5 Source0: http://download.kde.org/%{stable}/frameworks/%{majmin}/%{framework}-%{version}.tar.xz From 54b3b02c7d704002c835f9bb8b3c59e3a773b53f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 19 Jan 2023 14:44:43 +0000 Subject: [PATCH 148/155] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- kf5-solid.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-solid.spec b/kf5-solid.spec index 1756abe..680dd75 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.102.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -102,6 +102,9 @@ developing applications that use %{name}. %changelog +* Thu Jan 19 2023 Fedora Release Engineering - 5.102.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Sat Jan 14 2023 Marc Deop - 5.102.0-1 - 5.102.0 From 0de0c1d67575aa9968020c56aa75e33fca689997 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Deop=20i=20Argem=C3=AD?= Date: Sun, 5 Feb 2023 17:38:20 +0100 Subject: [PATCH 149/155] 5.103.0 --- .gitignore | 1 + kf5-solid.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 8ee2564..110cd30 100644 --- a/.gitignore +++ b/.gitignore @@ -53,3 +53,4 @@ /solid-5.100.0.tar.xz /solid-5.101.0.tar.xz /solid-5.102.0.tar.xz +/solid-5.103.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 680dd75..ef0b964 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,8 +1,8 @@ %global framework solid Name: kf5-%{framework} -Version: 5.102.0 -Release: 2%{?dist} +Version: 5.103.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information License: LGPLv2+ @@ -102,6 +102,9 @@ developing applications that use %{name}. %changelog +* Sun Feb 05 2023 Marc Deop - 5.103.0-1 +- 5.103.0 + * Thu Jan 19 2023 Fedora Release Engineering - 5.102.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild diff --git a/sources b/sources index ae44f8e..c02a8e5 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.102.0.tar.xz) = 93e835ec5c1e34908ff70b0dde90492c5e202160fb69ab4f62cf5c8146fc3ad6c76078fd6b9ac5ea19d62dbce46ff443c9de9c48b6b28bdbbb074681880634fd +SHA512 (solid-5.103.0.tar.xz) = 5394c4f64a741e331904cecc57ff1f789f3076bb48046348d85a3944b36e6de4574ed6182bfb447ead8717d4049480b585f05e1433b7e5605c64348ad9d962bb From 4e55612f72aab7aa696d96854592fce114ad0735 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Deop=20i=20Argem=C3=AD?= Date: Sat, 4 Mar 2023 17:24:41 +0100 Subject: [PATCH 150/155] 5.104.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 110cd30..f8d7f71 100644 --- a/.gitignore +++ b/.gitignore @@ -54,3 +54,4 @@ /solid-5.101.0.tar.xz /solid-5.102.0.tar.xz /solid-5.103.0.tar.xz +/solid-5.104.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index ef0b964..aa26209 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.103.0 +Version: 5.104.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -102,6 +102,9 @@ developing applications that use %{name}. %changelog +* Sat Mar 04 2023 Marc Deop i Argemí - 5.104.0-1 +- 5.104.0 + * Sun Feb 05 2023 Marc Deop - 5.103.0-1 - 5.103.0 diff --git a/sources b/sources index c02a8e5..7886ca2 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.103.0.tar.xz) = 5394c4f64a741e331904cecc57ff1f789f3076bb48046348d85a3944b36e6de4574ed6182bfb447ead8717d4049480b585f05e1433b7e5605c64348ad9d962bb +SHA512 (solid-5.104.0.tar.xz) = 84cfaf46feaa9b32fc6836dc62f0f429930605b14ac138d4aae504a8dd424b9c3d559011b5fb414784f8a2fd7829f967fe29c949e52ec64d577d0b18fbab8609 From 9d7f00af886c43059684a576127bcff8bfc254ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Deop=20i=20Argem=C3=AD?= Date: Sun, 2 Apr 2023 10:21:00 +0200 Subject: [PATCH 151/155] 5.105.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index f8d7f71..91912db 100644 --- a/.gitignore +++ b/.gitignore @@ -55,3 +55,4 @@ /solid-5.102.0.tar.xz /solid-5.103.0.tar.xz /solid-5.104.0.tar.xz +/solid-5.105.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index aa26209..44410bf 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.104.0 +Version: 5.105.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -102,6 +102,9 @@ developing applications that use %{name}. %changelog +* Sun Apr 02 2023 Marc Deop i Argemí - 5.105.0-1 +- 5.105.0 + * Sat Mar 04 2023 Marc Deop i Argemí - 5.104.0-1 - 5.104.0 diff --git a/sources b/sources index 7886ca2..9e15499 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.104.0.tar.xz) = 84cfaf46feaa9b32fc6836dc62f0f429930605b14ac138d4aae504a8dd424b9c3d559011b5fb414784f8a2fd7829f967fe29c949e52ec64d577d0b18fbab8609 +SHA512 (solid-5.105.0.tar.xz) = a7e5940b52139084352a5d3ab52b24fa6831902d759445c8d8202fbd88e6aff0f023e9c165295df60464df9495beab624ad640403590bb4d6b2b9b10298bf980 From 8ecba27afe52ce3db6080787ef4075b3d76a0a89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Deop=20i=20Argem=C3=AD?= Date: Mon, 15 May 2023 21:55:31 +0200 Subject: [PATCH 152/155] 5.106.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 91912db..25add0c 100644 --- a/.gitignore +++ b/.gitignore @@ -56,3 +56,4 @@ /solid-5.103.0.tar.xz /solid-5.104.0.tar.xz /solid-5.105.0.tar.xz +/solid-5.106.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 44410bf..3ee9c9b 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.105.0 +Version: 5.106.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -102,6 +102,9 @@ developing applications that use %{name}. %changelog +* Mon May 15 2023 Marc Deop i Argemí - 5.106.0-1 +- 5.106.0 + * Sun Apr 02 2023 Marc Deop i Argemí - 5.105.0-1 - 5.105.0 diff --git a/sources b/sources index 9e15499..cf6d2d3 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.105.0.tar.xz) = a7e5940b52139084352a5d3ab52b24fa6831902d759445c8d8202fbd88e6aff0f023e9c165295df60464df9495beab624ad640403590bb4d6b2b9b10298bf980 +SHA512 (solid-5.106.0.tar.xz) = 28edc90c9062aeba0443b8a4f238c76f65b66aae8ba092d2ee0a6d72bcc6503c86da245560d3f5efdf2ed87c3195114fdf4ff4a4a26faed1e8deae2cfa77d24b From 665d74edfe3fc70152846f7c9f78b8f2aec342b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Deop=20i=20Argem=C3=AD?= Date: Sat, 3 Jun 2023 15:29:27 +0200 Subject: [PATCH 153/155] 5.107.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 25add0c..587c26a 100644 --- a/.gitignore +++ b/.gitignore @@ -57,3 +57,4 @@ /solid-5.104.0.tar.xz /solid-5.105.0.tar.xz /solid-5.106.0.tar.xz +/solid-5.107.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 3ee9c9b..72cd0d8 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.106.0 +Version: 5.107.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -102,6 +102,9 @@ developing applications that use %{name}. %changelog +* Sat Jun 03 2023 Marc Deop i Argemí - 5.107.0-1 +- 5.107.0 + * Mon May 15 2023 Marc Deop i Argemí - 5.106.0-1 - 5.106.0 diff --git a/sources b/sources index cf6d2d3..6c1dc71 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.106.0.tar.xz) = 28edc90c9062aeba0443b8a4f238c76f65b66aae8ba092d2ee0a6d72bcc6503c86da245560d3f5efdf2ed87c3195114fdf4ff4a4a26faed1e8deae2cfa77d24b +SHA512 (solid-5.107.0.tar.xz) = b42db5f0109fd253e15bebdd2dd8fbd131e0e4fa18242c3145a8db3ddaaef9a2e792d966e61a9c1331d7bec921cd45edf92967add8d86a2954859acf174707ef From a7840b9d1f946252d69cd1c2ceb9e2a25b136983 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Deop=20i=20Argem=C3=AD?= Date: Sun, 2 Jul 2023 19:32:20 +0200 Subject: [PATCH 154/155] 5.108.0 --- .gitignore | 1 + kf5-solid.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 587c26a..a8910b2 100644 --- a/.gitignore +++ b/.gitignore @@ -58,3 +58,4 @@ /solid-5.105.0.tar.xz /solid-5.106.0.tar.xz /solid-5.107.0.tar.xz +/solid-5.108.0.tar.xz diff --git a/kf5-solid.spec b/kf5-solid.spec index 72cd0d8..72ed7cd 100644 --- a/kf5-solid.spec +++ b/kf5-solid.spec @@ -1,7 +1,7 @@ %global framework solid Name: kf5-%{framework} -Version: 5.107.0 +Version: 5.108.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 integration module that provides hardware information @@ -102,6 +102,9 @@ developing applications that use %{name}. %changelog +* Sun Jul 02 2023 Marc Deop i Argemí - 5.108.0-1 +- 5.108.0 + * Sat Jun 03 2023 Marc Deop i Argemí - 5.107.0-1 - 5.107.0 diff --git a/sources b/sources index 6c1dc71..14f496a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (solid-5.107.0.tar.xz) = b42db5f0109fd253e15bebdd2dd8fbd131e0e4fa18242c3145a8db3ddaaef9a2e792d966e61a9c1331d7bec921cd45edf92967add8d86a2954859acf174707ef +SHA512 (solid-5.108.0.tar.xz) = 49ea3886be8f4e6a277ae29353f816d290ad76c8192b5d7d6043710124e3fa40523e75d2fb6fb05f452a654b80193c2557104e8f0a529bc90064ac6382e3c569 From b93693281aae939b55968c1a6400cca08e8cff2c Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Mon, 30 Oct 2023 22:51:56 +0300 Subject: [PATCH 155/155] Remove unnecessary files --- sources | 1 - sources.basename | 1 - 2 files changed, 2 deletions(-) delete mode 100644 sources delete mode 100644 sources.basename diff --git a/sources b/sources deleted file mode 100644 index 14f496a..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (solid-5.108.0.tar.xz) = 49ea3886be8f4e6a277ae29353f816d290ad76c8192b5d7d6043710124e3fa40523e75d2fb6fb05f452a654b80193c2557104e8f0a529bc90064ac6382e3c569 diff --git a/sources.basename b/sources.basename deleted file mode 100644 index ebc81a1..0000000 --- a/sources.basename +++ /dev/null @@ -1 +0,0 @@ -solid