Hello community,

here is the log from the commit of package libkgapi for openSUSE:Factory 
checked in at 2018-01-17 21:53:04
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libkgapi (Old)
 and      /work/SRC/openSUSE:Factory/.libkgapi.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libkgapi"

Wed Jan 17 21:53:04 2018 rev:26 rq:564391 version:17.12.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/libkgapi/libkgapi.changes        2017-12-18 
08:54:06.526437306 +0100
+++ /work/SRC/openSUSE:Factory/.libkgapi.new/libkgapi.changes   2018-01-17 
21:53:05.689862132 +0100
@@ -1,0 +2,16 @@
+Sat Jan 13 18:20:40 UTC 2018 - wba...@tmo.at
+
+- Add Fix-token-page-URL.patch to make authentification with
+  Google services work again after a change by Google (kde#388483)
+
+-------------------------------------------------------------------
+Thu Jan 11 23:41:22 CET 2018 - lbeltr...@kde.org
+
+- Update to 17.12.1
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-17.12.1.php
+- Changes since 17.12.0:
+  * None
+
+-------------------------------------------------------------------

Old:
----
  libkgapi-17.12.0.tar.xz

New:
----
  Fix-token-page-URL.patch
  libkgapi-17.12.1.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ libkgapi.spec ++++++
--- /var/tmp/diff_new_pack.hvrPaa/_old  2018-01-17 21:53:06.497824340 +0100
+++ /var/tmp/diff_new_pack.hvrPaa/_new  2018-01-17 21:53:06.509823779 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libkgapi
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,13 +19,15 @@
 %bcond_without lang
 
 Name:           libkgapi
-Version:        17.12.0
+Version:        17.12.1
 Release:        0
 Summary:        Extension for accessing your Google data
 License:        GPL-2.0+
 Group:          System/GUI/KDE
 Url:            http://www.kde.org
 Source0:        %{name}-%{version}.tar.xz
+# PATCH-FIX-UPSTREAM
+Patch:          Fix-token-page-URL.patch
 BuildRequires:  extra-cmake-modules >= 1.0.0
 BuildRequires:  kcalcore-devel
 BuildRequires:  kcontacts5-devel
@@ -129,6 +131,7 @@
 
 %prep
 %setup -q -n libkgapi-%{version}
+%patch -p1
 
 %build
   %cmake_kf5 -d build -- -DBUILD_TESTING=ON

++++++ Fix-token-page-URL.patch ++++++
>From 2980ace5fc69f900432f18481397c5498dcc4bb1 Mon Sep 17 00:00:00 2001
From: David Kahles <david.kahle...@gmail.com>
Date: Fri, 12 Jan 2018 15:23:53 +0100
Subject: Fix token page URL

Summary:
It seems like Google changed the URL of the token page.
Maybe we should use QString::startsWith, to be futureproof?

BUG: 388483

Test Plan:
- Login in KOrganizer and KMail works again
- All tests pass (though i think there is no oauth2 test)

Reviewers: dvratil, mlaurent

Reviewed By: mlaurent

Differential Revision: https://phabricator.kde.org/D9843
---
 src/core/ui/authwidget_p.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/core/ui/authwidget_p.h b/src/core/ui/authwidget_p.h
index 78b0e7f..29ece44 100644
--- a/src/core/ui/authwidget_p.h
+++ b/src/core/ui/authwidget_p.h
@@ -79,7 +79,7 @@ class Q_DECL_HIDDEN AuthWidgetPrivate: public QObject {
     bool isSigninPage(const QUrl &url) const { return url.path() == 
QLatin1String("/signin/oauth"); }
     bool isUsernameFrame(const QUrl &url) { return url.path() == 
QLatin1String("/signin/oauth/identifier"); }
     bool isPasswordFrame(const QUrl &url) { return url.path() == 
QLatin1String("/signin/v2/challenge/pwd"); }
-    bool isTokenPage(const QUrl &url) { return url.path() == 
QLatin1String("/o/oauth2/approval/v2"); }
+    bool isTokenPage(const QUrl &url) { return url.path() == 
QLatin1String("/o/oauth2/approval/v2/approvalnativeapp"); }
 
     void setSslIcon(const QString &icon);
 
-- 
cgit v0.11.2

++++++ libkgapi-17.12.0.tar.xz -> libkgapi-17.12.1.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkgapi-17.12.0/CMakeLists.txt 
new/libkgapi-17.12.1/CMakeLists.txt
--- old/libkgapi-17.12.0/CMakeLists.txt 2017-12-08 02:04:05.000000000 +0100
+++ new/libkgapi-17.12.1/CMakeLists.txt 2018-01-09 02:20:12.000000000 +0100
@@ -1,5 +1,5 @@
 cmake_minimum_required(VERSION 3.0)
-set(PIM_VERSION "5.7.0")
+set(PIM_VERSION "5.7.1")
 
 set(KGAPI_LIB_VERSION ${PIM_VERSION})
 
@@ -23,8 +23,8 @@
 include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
 
 
-set(KCALENDARCORE_LIB_VERSION "5.7.0")
-set(KCONTACTS_LIB_VERSION "5.7.0")
+set(KCALENDARCORE_LIB_VERSION "5.7.1")
+set(KCONTACTS_LIB_VERSION "5.7.1")
 
 ecm_setup_version(PROJECT
     VARIABLE_PREFIX KGAPI
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkgapi-17.12.0/poqm/en_GB/libkgapi_qt.po 
new/libkgapi-17.12.1/poqm/en_GB/libkgapi_qt.po
--- old/libkgapi-17.12.0/poqm/en_GB/libkgapi_qt.po      2017-12-08 
02:04:05.000000000 +0100
+++ new/libkgapi-17.12.1/poqm/en_GB/libkgapi_qt.po      2018-01-09 
02:20:10.000000000 +0100
@@ -7,9 +7,9 @@
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2014-08-23 01:46+0000\n"
-"PO-Revision-Date: 2017-02-26 14:48+0000\n"
+"PO-Revision-Date: 2017-12-29 12:23+0000\n"
 "Last-Translator: Steve Allewell <steve.allew...@gmail.com>\n"
-"Language-Team: English <kde-l10n-en...@kde.org>\n"
+"Language-Team: British English <kde-i18n-...@kde.org>\n"
 "Language: en_GB\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -222,7 +222,7 @@
 "\n"
 "Google replied '%1'"
 msgstr ""
-"Requested resource does not exist anymore.\n"
+"Requested resource does not exist any more.\n"
 "\n"
 "Google replied '%1'"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkgapi-17.12.0/poqm/tr/libkgapi_qt.po 
new/libkgapi-17.12.1/poqm/tr/libkgapi_qt.po
--- old/libkgapi-17.12.0/poqm/tr/libkgapi_qt.po 2017-12-08 02:04:05.000000000 
+0100
+++ new/libkgapi-17.12.1/poqm/tr/libkgapi_qt.po 2018-01-09 02:20:12.000000000 
+0100
@@ -11,8 +11,8 @@
 "POT-Creation-Date: 2014-08-23 01:46+0000\n"
 "PO-Revision-Date: 2017-06-05 12:21+0000\n"
 "Last-Translator: Mesutcan <mesutc...@gmail.com>\n"
-"Language-Team: Turkish (http://www.transifex.com/projects/p/extragear-libs-k-";
-"tr/language/tr/)\n"
+"Language-Team: Turkish (http://www.transifex.com/projects/p/extragear-";
+"libs-k-tr/language/tr/)\n"
 "Language: tr\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkgapi-17.12.0/poqm/zh_CN/libkgapi_qt.po 
new/libkgapi-17.12.1/poqm/zh_CN/libkgapi_qt.po
--- old/libkgapi-17.12.0/poqm/zh_CN/libkgapi_qt.po      2017-12-08 
02:04:05.000000000 +0100
+++ new/libkgapi-17.12.1/poqm/zh_CN/libkgapi_qt.po      2018-01-09 
02:20:12.000000000 +0100
@@ -17,6 +17,19 @@
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Generator: crowdin.com\n"
 "X-Qt-Contexts: true\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Qt-Contexts: true\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: crowdin.com\n"
+"X-Crowdin-Project: kdeorg\n"
+"X-Crowdin-Language: zh-CN\n"
+"X-Crowdin-File: /kf5-stable/messages/pim/libkgapi_qt.pot\n"
+"Project-Id-Version: kdeorg\n"
+"Last-Translator: guoyunhebrave <guoyunhebr...@gmail.com>\n"
+"Language-Team: Chinese Simplified\n"
+"Language: zh_CN\n"
+"PO-Revision-Date: 2018-01-08 18:07-0500\n"
 
 #: src/blogger/blogfetchjob.cpp:103
 msgctxt "KGAPI2::Blogger::BlogFetchJob|"


Reply via email to