From 41b3b98e19ddcb1b79adf67afcc2b71ed3890003e2777b93e988a8d6a925b35f Mon Sep 17 00:00:00 2001 From: Hrvoje Senjan Date: Tue, 1 Jul 2014 22:28:46 +0000 Subject: [PATCH 1/3] 5.0.0 OBS-URL: https://build.opensuse.org/package/show/KDE:Frameworks5/kauth?expand=0&rev=28 --- kauth-4.100.0.tar.xz | 3 --- kauth-5.0.0.tar.xz | 3 +++ kauth.changes | 10 ++++++++++ kauth.spec | 6 +++--- 4 files changed, 16 insertions(+), 6 deletions(-) delete mode 100644 kauth-4.100.0.tar.xz create mode 100644 kauth-5.0.0.tar.xz diff --git a/kauth-4.100.0.tar.xz b/kauth-4.100.0.tar.xz deleted file mode 100644 index 2486348..0000000 --- a/kauth-4.100.0.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ce8114879837cad63bd5397e9f7914b45e0083bad92bd84b41d66f2874274f07 -size 2727348 diff --git a/kauth-5.0.0.tar.xz b/kauth-5.0.0.tar.xz new file mode 100644 index 0000000..af9e149 --- /dev/null +++ b/kauth-5.0.0.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edfe226693004db0e097430b9dd81b658c35a4127740891c63aebafd631fc703 +size 2723456 diff --git a/kauth.changes b/kauth.changes index e39d6c8..4d6c6dc 100644 --- a/kauth.changes +++ b/kauth.changes @@ -1,3 +1,13 @@ +------------------------------------------------------------------- +Tue Jul 1 21:36:06 UTC 2014 - hrvoje.senjan@gmail.com + +- Update to 5.0.0 + * Final release of KDE Frameworks 5 + * API improvements and cleanups + * Buildsystem fixes + * For more details please see: + http://www.kde.org/announcements/announce-frameworks5-5.0.0.php + ------------------------------------------------------------------- Wed Jun 11 22:24:49 UTC 2014 - hrvoje.senjan@gmail.com diff --git a/kauth.spec b/kauth.spec index 2a29ecb..5b6f19d 100644 --- a/kauth.spec +++ b/kauth.spec @@ -18,10 +18,10 @@ %define lname libKF5Auth5 Name: kauth -Version: 4.100.0 +Version: 5.0.0 Release: 0 BuildRequires: cmake >= 2.8.12 -BuildRequires: extra-cmake-modules >= 0.0.14 +BuildRequires: extra-cmake-modules >= 1.0.0 BuildRequires: fdupes BuildRequires: kcoreaddons-devel >= %{_kf5_version} BuildRequires: kf5-filesystem @@ -33,7 +33,7 @@ Summary: Framework which lets applications perform actions as a privilege License: LGPL-2.1+ Group: System/GUI/KDE Url: http://www.kde.org -Source: http://download.kde.org/unstable/frameworks/%{version}/%{name}-%{version}.tar.xz +Source: http://download.kde.org/stable/frameworks/%{version}/%{name}-%{version}.tar.xz Source1: baselibs.conf # PATCH-FIX-UPSTREAM polkit-qt5-support.patch -- add support for polkit-qt-1 Qt5 port, https://git.reviewboard.kde.org/r/118264/ Patch0: polkit-qt5-support.patch From 55940f0a8e4c81b6a563f7424131870f9241be95c6c2db9e31add5b7136e047a Mon Sep 17 00:00:00 2001 From: Hrvoje Senjan Date: Fri, 4 Jul 2014 01:18:45 +0000 Subject: [PATCH 2/3] OBS-URL: https://build.opensuse.org/package/show/KDE:Frameworks5/kauth?expand=0&rev=30 --- ...ash-to-searched-backend-helper-plugi.patch | 27 +++++++++++++++++++ kauth.changes | 2 ++ kauth.spec | 3 +++ 3 files changed, 32 insertions(+) create mode 100644 0001-Pass-trailing-slash-to-searched-backend-helper-plugi.patch diff --git a/0001-Pass-trailing-slash-to-searched-backend-helper-plugi.patch b/0001-Pass-trailing-slash-to-searched-backend-helper-plugi.patch new file mode 100644 index 0000000..8c0df2b --- /dev/null +++ b/0001-Pass-trailing-slash-to-searched-backend-helper-plugi.patch @@ -0,0 +1,27 @@ +From f900d7d4798503479b88346a2689ec6bee417193 Mon Sep 17 00:00:00 2001 +From: Hrvoje Senjan +Date: Wed, 2 Jul 2014 09:32:23 +0200 +Subject: [PATCH 1/1] Pass trailing slash to searched backend/helper plugin dir + Unbreaks plugin loading + +CCMAIL: aleixpol@kde.org +--- + src/BackendsManager.cpp | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/BackendsManager.cpp b/src/BackendsManager.cpp +index cd0bf3f..0dd4661 100644 +--- a/src/BackendsManager.cpp ++++ b/src/BackendsManager.cpp +@@ -44,7 +44,7 @@ QList< QObject * > BackendsManager::retrieveInstancesIn(const QString &subdir) + { + QList retlist; + foreach (const QString& pPath, QCoreApplication::libraryPaths()) { +- QDir pluginPath(pPath + subdir); ++ QDir pluginPath(pPath + QLatin1Char('/') + subdir); + if (!pluginPath.exists() || pPath.isEmpty()) { + continue; + } +-- +2.0.0 + diff --git a/kauth.changes b/kauth.changes index 4d6c6dc..4ba9bc5 100644 --- a/kauth.changes +++ b/kauth.changes @@ -7,6 +7,8 @@ Tue Jul 1 21:36:06 UTC 2014 - hrvoje.senjan@gmail.com * Buildsystem fixes * For more details please see: http://www.kde.org/announcements/announce-frameworks5-5.0.0.php +- Added 0001-Pass-trailing-slash-to-searched-backend-helper-plugi.patch, + fixes helper/backend plugin loading ------------------------------------------------------------------- Wed Jun 11 22:24:49 UTC 2014 - hrvoje.senjan@gmail.com diff --git a/kauth.spec b/kauth.spec index 5b6f19d..8618fbf 100644 --- a/kauth.spec +++ b/kauth.spec @@ -37,6 +37,8 @@ Source: http://download.kde.org/stable/frameworks/%{version}/%{name}-%{v Source1: baselibs.conf # PATCH-FIX-UPSTREAM polkit-qt5-support.patch -- add support for polkit-qt-1 Qt5 port, https://git.reviewboard.kde.org/r/118264/ Patch0: polkit-qt5-support.patch +# PATCH-FIX-UPSTREAM 0001-Pass-trailing-slash-to-searched-backend-helper-plugi.patch +Patch1: 0001-Pass-trailing-slash-to-searched-backend-helper-plugi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build %description @@ -66,6 +68,7 @@ Development files. %prep %setup -q %patch0 -p1 +%patch1 -p1 %build %cmake_kf5 -d build -- -DSYSCONF_INSTALL_DIR=%{_kf5_sysconfdir} From ed6731b3bc4f2c1433fd305830a9ca219a5ed68f1b6c22248138570041ab6f84 Mon Sep 17 00:00:00 2001 From: Hrvoje Senjan Date: Tue, 8 Jul 2014 20:59:19 +0000 Subject: [PATCH 3/3] Fix announce link OBS-URL: https://build.opensuse.org/package/show/KDE:Frameworks5/kauth?expand=0&rev=31 --- kauth.changes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kauth.changes b/kauth.changes index 4ba9bc5..60764ef 100644 --- a/kauth.changes +++ b/kauth.changes @@ -6,7 +6,7 @@ Tue Jul 1 21:36:06 UTC 2014 - hrvoje.senjan@gmail.com * API improvements and cleanups * Buildsystem fixes * For more details please see: - http://www.kde.org/announcements/announce-frameworks5-5.0.0.php + http://www.kde.org/announcements/kde-frameworks-5.0.php - Added 0001-Pass-trailing-slash-to-searched-backend-helper-plugi.patch, fixes helper/backend plugin loading