From af3c612a25a78f67dd2e90c67a2f6f04d2715da10363e7196e67e99b429ee75e Mon Sep 17 00:00:00 2001 From: Hrvoje Senjan Date: Thu, 16 Jun 2016 15:48:59 +0000 Subject: [PATCH 01/14] start with 5.7 beta OBS-URL: https://build.opensuse.org/package/show/KDE:Frameworks5/discover?expand=0&rev=32 --- discover-5.6.4.tar.xz | 3 --- discover-5.6.95.tar.xz | 3 +++ discover.spec | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) delete mode 100644 discover-5.6.4.tar.xz create mode 100644 discover-5.6.95.tar.xz diff --git a/discover-5.6.4.tar.xz b/discover-5.6.4.tar.xz deleted file mode 100644 index 11d4af2..0000000 --- a/discover-5.6.4.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8b9a1e986a633f1a47ef3649e997f6d5d7339c0d12e5890f8ceba10acfb93951 -size 868028 diff --git a/discover-5.6.95.tar.xz b/discover-5.6.95.tar.xz new file mode 100644 index 0000000..3624d63 --- /dev/null +++ b/discover-5.6.95.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a53de558be80ab0595b7230f07d807d18610e7f4f3ea10db9e8799f747119d01 +size 808736 diff --git a/discover.spec b/discover.spec index 08f64ff..9c670ef 100644 --- a/discover.spec +++ b/discover.spec @@ -18,7 +18,7 @@ %bcond_without lang Name: discover -Version: 5.6.4 +Version: 5.6.95 Release: 0 Summary: KDE Software Installer License: GPL-2.0 @@ -36,8 +36,8 @@ BuildRequires: update-desktop-files BuildRequires: cmake(KF5Archive) BuildRequires: cmake(KF5Attica) BuildRequires: cmake(KF5Config) -BuildRequires: cmake(KF5Crash) BuildRequires: cmake(KF5CoreAddons) +BuildRequires: cmake(KF5Crash) BuildRequires: cmake(KF5DBusAddons) BuildRequires: cmake(KF5Declarative) BuildRequires: cmake(KF5I18n) From a772f71ca7294efb6307fc08a2df0bd539d3422a2ba5d4dca9e878f28a6027e3 Mon Sep 17 00:00:00 2001 From: Hrvoje Senjan Date: Thu, 16 Jun 2016 16:49:44 +0000 Subject: [PATCH 02/14] OBS-URL: https://build.opensuse.org/package/show/KDE:Frameworks5/discover?expand=0&rev=33 --- discover.spec | 3 --- fix_for_gcc4.diff | 34 ---------------------------------- 2 files changed, 37 deletions(-) delete mode 100644 fix_for_gcc4.diff diff --git a/discover.spec b/discover.spec index 9c670ef..7869381 100644 --- a/discover.spec +++ b/discover.spec @@ -25,8 +25,6 @@ License: GPL-2.0 Group: System/GUI/KDE Url: https://quickgit.kde.org/?p=discover.git Source0: %{name}-%{version}.tar.xz -#PATCH-FIX-UPSTREAM fix_for_gcc4.diff -- adjust the connect call so that it also builds with gcc48 -Patch1: fix_for_gcc4.diff BuildRequires: PackageKit-Qt5-devel BuildRequires: cmake >= 2.8.12 BuildRequires: extra-cmake-modules @@ -77,7 +75,6 @@ This is the systray plasmoid to notify the user that updates are available %prep %setup -q -%patch1 -p1 %build %cmake_kf5 -d build diff --git a/fix_for_gcc4.diff b/fix_for_gcc4.diff deleted file mode 100644 index 47d63e7..0000000 --- a/fix_for_gcc4.diff +++ /dev/null @@ -1,34 +0,0 @@ -diff --git a/libdiscover/backends/PackageKitBackend/PKTransaction.cpp b/libdiscover/backends/PackageKitBackend/PKTransaction.cpp -index 9afa28a..ca35c66 100644 ---- a/libdiscover/backends/PackageKitBackend/PKTransaction.cpp -+++ b/libdiscover/backends/PackageKitBackend/PKTransaction.cpp -@@ -64,13 +64,13 @@ void PKTransaction::start() - }; - Q_ASSERT(m_trans); - -- connect(m_trans, &PackageKit::Transaction::finished, this, &PKTransaction::cleanup); -- connect(m_trans, &PackageKit::Transaction::errorCode, this, &PKTransaction::errorFound); -- connect(m_trans, &PackageKit::Transaction::mediaChangeRequired, this, &PKTransaction::mediaChange); -- connect(m_trans, &PackageKit::Transaction::requireRestart, this, &PKTransaction::requireRestart); -- connect(m_trans, &PackageKit::Transaction::itemProgress, this, &PKTransaction::progressChanged); -- connect(m_trans, &PackageKit::Transaction::eulaRequired, this, &PKTransaction::eulaRequired); -- connect(m_trans, &PackageKit::Transaction::allowCancelChanged, this, &PKTransaction::cancellableChanged); -+ connect(m_trans.data(), &PackageKit::Transaction::finished, this, &PKTransaction::cleanup); -+ connect(m_trans.data(), &PackageKit::Transaction::errorCode, this, &PKTransaction::errorFound); -+ connect(m_trans.data(), &PackageKit::Transaction::mediaChangeRequired, this, &PKTransaction::mediaChange); -+ connect(m_trans.data(), &PackageKit::Transaction::requireRestart, this, &PKTransaction::requireRestart); -+ connect(m_trans.data(), &PackageKit::Transaction::itemProgress, this, &PKTransaction::progressChanged); -+ connect(m_trans.data(), &PackageKit::Transaction::eulaRequired, this, &PKTransaction::eulaRequired); -+ connect(m_trans.data(), &PackageKit::Transaction::allowCancelChanged, this, &PKTransaction::cancellableChanged); - - setCancellable(m_trans->allowCancel()); - } -@@ -106,7 +106,7 @@ void PKTransaction::cleanup(PackageKit::Transaction::Exit exit, uint runtime) - cancel = true; - } - -- disconnect(m_trans, nullptr, this, nullptr); -+ disconnect(m_trans.data(), nullptr, this, nullptr); - m_trans = nullptr; - - PackageKit::Transaction* t = PackageKit::Daemon::resolve(resource()->packageName(), PackageKit::Transaction::FilterArch); From 4b7170c623c7849775862055000f0580db3ea64650aca7e8b96d0f77c7339d84 Mon Sep 17 00:00:00 2001 From: Hrvoje Senjan Date: Thu, 16 Jun 2016 21:05:17 +0000 Subject: [PATCH 03/14] OBS-URL: https://build.opensuse.org/package/show/KDE:Frameworks5/discover?expand=0&rev=34 --- discover.spec | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/discover.spec b/discover.spec index 7869381..6a64ac3 100644 --- a/discover.spec +++ b/discover.spec @@ -83,14 +83,12 @@ This is the systray plasmoid to notify the user that updates are available %install %kf5_makeinstall -C build %suse_update_desktop_file -r org.kde.discover Qt KDE System PackageManager - %suse_update_desktop_file -r plasma-discover-updater Qt KDE System PackageManager %if %{with lang} %find_lang libdiscover %{name}.lang %find_lang plasma-discover-exporter %{name}.lang %find_lang plasma-discover-notifier %{name}.lang %find_lang plasma-discover %{name}.lang - %find_lang plasma-discover-updater %{name}.lang %find_lang plasma_applet_org.kde.muonnotifier plasma.lang %else @@ -101,19 +99,18 @@ This is the systray plasmoid to notify the user that updates are available %defattr(-,root,root) %doc COPYING COPYING.GFDL COPYING.LIB %{_kf5_bindir}/plasma-discover -%{_kf5_bindir}/plasma-discover-updater %{_kf5_libdir}/plasma-discover/ %{_kf5_plugindir}/discover-notifier/ %{_kf5_plugindir}/discover/ %{_kf5_qmldir}/ %{_kf5_applicationsdir}/org.kde.discover.desktop -%{_kf5_applicationsdir}/plasma-discover-updater.desktop %{_kf5_iconsdir}/hicolor/*/apps/plasmadiscover.* %{_kf5_notifydir}/discoverabstractnotifier.notifyrc %{_kf5_kxmlguidir}/plasmadiscover/ -%{_kf5_kxmlguidir}/plasmadiscoverupdater/ %{_kf5_sharedir}/libdiscover/ %{_kf5_sharedir}/plasmadiscover/ +%{_kf5_appstreamdir}/ +%{_kf5_configdir}/discover_ktexteditor_codesnippets_core.knsrc %if %{with lang} %files lang -f %{name}.lang From 90de72722b879389281c94192c0d2de3a11ba8be4f9deb794189c027f8f8bec5 Mon Sep 17 00:00:00 2001 From: Hrvoje Senjan Date: Thu, 16 Jun 2016 21:17:59 +0000 Subject: [PATCH 04/14] OBS-URL: https://build.opensuse.org/package/show/KDE:Frameworks5/discover?expand=0&rev=35 --- discover.spec | 2 -- 1 file changed, 2 deletions(-) diff --git a/discover.spec b/discover.spec index 6a64ac3..fad8fb4 100644 --- a/discover.spec +++ b/discover.spec @@ -86,10 +86,8 @@ This is the systray plasmoid to notify the user that updates are available %if %{with lang} %find_lang libdiscover %{name}.lang - %find_lang plasma-discover-exporter %{name}.lang %find_lang plasma-discover-notifier %{name}.lang %find_lang plasma-discover %{name}.lang - %find_lang plasma_applet_org.kde.muonnotifier plasma.lang %else touch plasma.lang From 9ec3ba2a1a8e06958c6ebd396fcc8ca452bc495eb20936c5fa0ad0047365c5bd Mon Sep 17 00:00:00 2001 From: Raymond Wooninck Date: Fri, 17 Jun 2016 19:54:25 +0000 Subject: [PATCH 05/14] OBS-URL: https://build.opensuse.org/package/show/KDE:Frameworks5/discover?expand=0&rev=36 --- discover.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/discover.spec b/discover.spec index fad8fb4..2368d00 100644 --- a/discover.spec +++ b/discover.spec @@ -88,7 +88,6 @@ This is the systray plasmoid to notify the user that updates are available %find_lang libdiscover %{name}.lang %find_lang plasma-discover-notifier %{name}.lang %find_lang plasma-discover %{name}.lang - %find_lang plasma_applet_org.kde.muonnotifier plasma.lang %else touch plasma.lang %endif From 8f0163758fd8ad2f455d95f881f1e428303ff6932fb552f8778df879174ca318 Mon Sep 17 00:00:00 2001 From: Raymond Wooninck Date: Fri, 17 Jun 2016 20:14:20 +0000 Subject: [PATCH 06/14] OBS-URL: https://build.opensuse.org/package/show/KDE:Frameworks5/discover?expand=0&rev=37 --- discover.spec | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/discover.spec b/discover.spec index 2368d00..442fb8d 100644 --- a/discover.spec +++ b/discover.spec @@ -88,8 +88,6 @@ This is the systray plasmoid to notify the user that updates are available %find_lang libdiscover %{name}.lang %find_lang plasma-discover-notifier %{name}.lang %find_lang plasma-discover %{name}.lang -%else - touch plasma.lang %endif %files @@ -114,7 +112,7 @@ This is the systray plasmoid to notify the user that updates are available %defattr(-,root,root) %endif -%files plasmoid -f plasma.lang +%files plasmoid %defattr(-,root,root) %doc COPYING COPYING.GFDL COPYING.LIB %dir %{_kf5_sharedir}/plasma From 43566f5320db2b40b68d09819bb0a25b83a8a52a8ad5ceae9765766970413a7a Mon Sep 17 00:00:00 2001 From: Raymond Wooninck Date: Fri, 17 Jun 2016 20:26:44 +0000 Subject: [PATCH 07/14] OBS-URL: https://build.opensuse.org/package/show/KDE:Frameworks5/discover?expand=0&rev=38 --- discover.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/discover.spec b/discover.spec index 442fb8d..ab5d68b 100644 --- a/discover.spec +++ b/discover.spec @@ -88,6 +88,9 @@ This is the systray plasmoid to notify the user that updates are available %find_lang libdiscover %{name}.lang %find_lang plasma-discover-notifier %{name}.lang %find_lang plasma-discover %{name}.lang + %find_lang plasma_applet_org.kde.discovernotifier plasma.lang +%else + touch plasma.lang %endif %files @@ -112,7 +115,7 @@ This is the systray plasmoid to notify the user that updates are available %defattr(-,root,root) %endif -%files plasmoid +%files plasmoid -f plasma.lang %defattr(-,root,root) %doc COPYING COPYING.GFDL COPYING.LIB %dir %{_kf5_sharedir}/plasma From ebad759a9088b6e173759c940fcd21c9f0917abca64d2d7831115b05c2832b8a Mon Sep 17 00:00:00 2001 From: Hrvoje Senjan Date: Thu, 30 Jun 2016 12:08:34 +0000 Subject: [PATCH 08/14] start with 5.7 no tars yet OBS-URL: https://build.opensuse.org/package/show/KDE:Frameworks5/discover?expand=0&rev=39 --- discover.changes | 8 ++++++++ discover.spec | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/discover.changes b/discover.changes index e5c59d9..aca24e8 100644 --- a/discover.changes +++ b/discover.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Thu Jun 30 12:02:18 UTC 2016 - hrvoje.senjan@gmail.com + +- Update to 5.7.0 + * New feature release + * For more details please see: + https://www.kde.org/announcements/plasma-5.7.0.php + ------------------------------------------------------------------- Sun May 15 16:50:10 UTC 2016 - hrvoje.senjan@gmail.com diff --git a/discover.spec b/discover.spec index ab5d68b..1296033 100644 --- a/discover.spec +++ b/discover.spec @@ -18,7 +18,7 @@ %bcond_without lang Name: discover -Version: 5.6.95 +Version: 5.7.0 Release: 0 Summary: KDE Software Installer License: GPL-2.0 From 188f2762328af677c1e3925377cb2eaa82908d3f9fe2017d3f0d090e43920a36 Mon Sep 17 00:00:00 2001 From: Hrvoje Senjan Date: Thu, 30 Jun 2016 13:56:55 +0000 Subject: [PATCH 09/14] tars OBS-URL: https://build.opensuse.org/package/show/KDE:Frameworks5/discover?expand=0&rev=40 --- discover-5.6.95.tar.xz | 3 --- discover-5.7.0.tar.xz | 3 +++ 2 files changed, 3 insertions(+), 3 deletions(-) delete mode 100644 discover-5.6.95.tar.xz create mode 100644 discover-5.7.0.tar.xz diff --git a/discover-5.6.95.tar.xz b/discover-5.6.95.tar.xz deleted file mode 100644 index 3624d63..0000000 --- a/discover-5.6.95.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a53de558be80ab0595b7230f07d807d18610e7f4f3ea10db9e8799f747119d01 -size 808736 diff --git a/discover-5.7.0.tar.xz b/discover-5.7.0.tar.xz new file mode 100644 index 0000000..d53c735 --- /dev/null +++ b/discover-5.7.0.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbe9e2fe14b0246cfe082172d5c4857622098048809cda2efdd37a499e564269 +size 821400 From c3e199b80aae2d82766ebb2d147fcf374e4fc023cd0637ba5d17d2514e656998 Mon Sep 17 00:00:00 2001 From: Hrvoje Senjan Date: Thu, 30 Jun 2016 15:43:57 +0000 Subject: [PATCH 10/14] new tars OBS-URL: https://build.opensuse.org/package/show/KDE:Frameworks5/discover?expand=0&rev=41 --- discover-5.7.0.tar.xz | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/discover-5.7.0.tar.xz b/discover-5.7.0.tar.xz index d53c735..339524f 100644 --- a/discover-5.7.0.tar.xz +++ b/discover-5.7.0.tar.xz @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cbe9e2fe14b0246cfe082172d5c4857622098048809cda2efdd37a499e564269 -size 821400 +oid sha256:8f63864f0a2de71a65843bb1e072e68a3d7f03807faf3e1e24c4656a5e1a6348 +size 809488 From b9d6056f4eece666ab3c9bda35a4f50a5424a7de06cdf3e8fca58012096bf228 Mon Sep 17 00:00:00 2001 From: Hrvoje Senjan Date: Tue, 5 Jul 2016 15:37:15 +0000 Subject: [PATCH 11/14] OBS-URL: https://build.opensuse.org/package/show/KDE:Frameworks5/discover?expand=0&rev=42 --- discover.changes | 1 + 1 file changed, 1 insertion(+) diff --git a/discover.changes b/discover.changes index aca24e8..1da971b 100644 --- a/discover.changes +++ b/discover.changes @@ -5,6 +5,7 @@ Thu Jun 30 12:02:18 UTC 2016 - hrvoje.senjan@gmail.com * New feature release * For more details please see: https://www.kde.org/announcements/plasma-5.7.0.php +- Drop upstreamed fix_for_gcc4.diff ------------------------------------------------------------------- Sun May 15 16:50:10 UTC 2016 - hrvoje.senjan@gmail.com From d9d93a4efa63f16457722080a9c31901f5a0c8d9056373a6c50d5633380bd24d Mon Sep 17 00:00:00 2001 From: Hrvoje Senjan Date: Wed, 13 Jul 2016 06:21:34 +0000 Subject: [PATCH 12/14] start with 5.7.1 OBS-URL: https://build.opensuse.org/package/show/KDE:Frameworks5/discover?expand=0&rev=43 --- discover-5.7.0.tar.xz | 3 --- discover-5.7.1.tar.xz | 3 +++ discover.changes | 8 ++++++++ discover.spec | 2 +- 4 files changed, 12 insertions(+), 4 deletions(-) delete mode 100644 discover-5.7.0.tar.xz create mode 100644 discover-5.7.1.tar.xz diff --git a/discover-5.7.0.tar.xz b/discover-5.7.0.tar.xz deleted file mode 100644 index 339524f..0000000 --- a/discover-5.7.0.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8f63864f0a2de71a65843bb1e072e68a3d7f03807faf3e1e24c4656a5e1a6348 -size 809488 diff --git a/discover-5.7.1.tar.xz b/discover-5.7.1.tar.xz new file mode 100644 index 0000000..618469c --- /dev/null +++ b/discover-5.7.1.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edd2859723ac56031809d3fd39f38ed7bbf89fdecf262bb00d5799eba5228fe4 +size 814996 diff --git a/discover.changes b/discover.changes index 1da971b..302c36a 100644 --- a/discover.changes +++ b/discover.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Wed Jul 13 06:13:23 UTC 2016 - hrvoje.senjan@gmail.com + +- Update to 5.7.1 + * New bugfix release + * For more details please see: + https://www.kde.org/announcements/plasma-5.7.1.php + ------------------------------------------------------------------- Thu Jun 30 12:02:18 UTC 2016 - hrvoje.senjan@gmail.com diff --git a/discover.spec b/discover.spec index 1296033..95ed349 100644 --- a/discover.spec +++ b/discover.spec @@ -18,7 +18,7 @@ %bcond_without lang Name: discover -Version: 5.7.0 +Version: 5.7.1 Release: 0 Summary: KDE Software Installer License: GPL-2.0 From 68610128276deed577680906b8254ccdf730935a431ce7569558ee8e33d88e7c Mon Sep 17 00:00:00 2001 From: Hrvoje Senjan Date: Wed, 20 Jul 2016 09:02:54 +0000 Subject: [PATCH 13/14] start with 5.7.2 OBS-URL: https://build.opensuse.org/package/show/KDE:Frameworks5/discover?expand=0&rev=44 --- discover-5.7.1.tar.xz | 3 --- discover-5.7.2.tar.xz | 3 +++ discover.changes | 8 ++++++++ discover.spec | 2 +- 4 files changed, 12 insertions(+), 4 deletions(-) delete mode 100644 discover-5.7.1.tar.xz create mode 100644 discover-5.7.2.tar.xz diff --git a/discover-5.7.1.tar.xz b/discover-5.7.1.tar.xz deleted file mode 100644 index 618469c..0000000 --- a/discover-5.7.1.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:edd2859723ac56031809d3fd39f38ed7bbf89fdecf262bb00d5799eba5228fe4 -size 814996 diff --git a/discover-5.7.2.tar.xz b/discover-5.7.2.tar.xz new file mode 100644 index 0000000..60fffc3 --- /dev/null +++ b/discover-5.7.2.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0bd6cd6973630ec6fe951a12266ada561b72bcae500679e42acff20da69e34e +size 815068 diff --git a/discover.changes b/discover.changes index 302c36a..484c7ec 100644 --- a/discover.changes +++ b/discover.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Wed Jul 20 08:54:15 UTC 2016 - hrvoje.senjan@gmail.com + +- Update to 5.7.2 + * New bugfix release + * For more details please see: + https://www.kde.org/announcements/plasma-5.7.2.php + ------------------------------------------------------------------- Wed Jul 13 06:13:23 UTC 2016 - hrvoje.senjan@gmail.com diff --git a/discover.spec b/discover.spec index 95ed349..c2433e1 100644 --- a/discover.spec +++ b/discover.spec @@ -18,7 +18,7 @@ %bcond_without lang Name: discover -Version: 5.7.1 +Version: 5.7.2 Release: 0 Summary: KDE Software Installer License: GPL-2.0 From 8f65edeaff1004078e129cf8585781c2c237e37536408f5163daa66cabc5b8ac Mon Sep 17 00:00:00 2001 From: Hrvoje Senjan Date: Tue, 2 Aug 2016 11:39:36 +0000 Subject: [PATCH 14/14] start with 5.7.3 OBS-URL: https://build.opensuse.org/package/show/KDE:Frameworks5/discover?expand=0&rev=45 --- discover-5.7.2.tar.xz | 3 --- discover-5.7.3.tar.xz | 3 +++ discover.changes | 8 ++++++++ discover.spec | 2 +- 4 files changed, 12 insertions(+), 4 deletions(-) delete mode 100644 discover-5.7.2.tar.xz create mode 100644 discover-5.7.3.tar.xz diff --git a/discover-5.7.2.tar.xz b/discover-5.7.2.tar.xz deleted file mode 100644 index 60fffc3..0000000 --- a/discover-5.7.2.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e0bd6cd6973630ec6fe951a12266ada561b72bcae500679e42acff20da69e34e -size 815068 diff --git a/discover-5.7.3.tar.xz b/discover-5.7.3.tar.xz new file mode 100644 index 0000000..070840e --- /dev/null +++ b/discover-5.7.3.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4a9140c36f809b11ddd1974b1eb48e4a6fcee3f51490526d4036757f849ab7b +size 815736 diff --git a/discover.changes b/discover.changes index 484c7ec..0d96c0d 100644 --- a/discover.changes +++ b/discover.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Tue Aug 2 11:35:50 UTC 2016 - hrvoje.senjan@gmail.com + +- Update to 5.7.3 + * New bugfix release + * For more details please see: + https://www.kde.org/announcements/plasma-5.7.3.php + ------------------------------------------------------------------- Wed Jul 20 08:54:15 UTC 2016 - hrvoje.senjan@gmail.com diff --git a/discover.spec b/discover.spec index c2433e1..63edd3f 100644 --- a/discover.spec +++ b/discover.spec @@ -18,7 +18,7 @@ %bcond_without lang Name: discover -Version: 5.7.2 +Version: 5.7.3 Release: 0 Summary: KDE Software Installer License: GPL-2.0