Update to 3.12.1

This commit is contained in:
Kalev Lember 2014-04-16 00:19:32 +02:00
parent 5a9e1d65be
commit dff56615a0
4 changed files with 7 additions and 91 deletions

1
.gitignore vendored
View File

@ -44,3 +44,4 @@
/gnome-online-accounts-3.11.91.tar.xz
/gnome-online-accounts-3.11.92.tar.xz
/gnome-online-accounts-3.12.0.tar.xz
/gnome-online-accounts-3.12.1.tar.xz

View File

@ -1,84 +0,0 @@
From 12f262db0bb09d095b31522e3b37cae0bf133655 Mon Sep 17 00:00:00 2001
From: Debarshi Ray <debarshir@gnome.org>
Date: Mon, 31 Mar 2014 17:31:06 +0200
Subject: [PATCH 1/2] facebook: Update README
Facebook changed the layout of their OAuth2 developer documentation
website. Add new URLs with information relevant to us.
Fixes: https://bugzilla.gnome.org/726609
---
README | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/README b/README
index 2cb2cb7..97464af 100644
--- a/README
+++ b/README
@@ -5,7 +5,11 @@ GNOME Online Accounts - Single sign-on framework for GNOME
Facebook
--------
-OAuth 2.0: https://developers.facebook.com/docs/authentication/
+OAuth 2.0:
+https://developers.facebook.com/docs/authentication/
+https://developers.facebook.com/docs/facebook-login/manually-build-a-login-flow
+https://developers.facebook.com/docs/reference/dialogs/oauth/
+
Scopes: https://developers.facebook.com/docs/authentication/permissions/
Notes:
--
1.8.5.3
From 0673724e0af4d7f619dbee020e0feddca730a967 Mon Sep 17 00:00:00 2001
From: Debarshi Ray <debarshir@gnome.org>
Date: Mon, 31 Mar 2014 18:06:58 +0200
Subject: [PATCH 2/2] facebook: Update the code to request a compact web UI
Earlier we were using m.facebook.com as the host in the authorization
URI. That does not work anymore. Now we need to use www.facebook.com
and display=popup.
According to:
https://developers.facebook.com/docs/facebook-login/manually-build-a-login-flow
https://developers.facebook.com/docs/reference/dialogs/oauth/
Fixes: https://bugzilla.gnome.org/726609
---
src/goabackend/goafacebookprovider.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/src/goabackend/goafacebookprovider.c b/src/goabackend/goafacebookprovider.c
index 481b6aa..8d0814a 100644
--- a/src/goabackend/goafacebookprovider.c
+++ b/src/goabackend/goafacebookprovider.c
@@ -1,6 +1,6 @@
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
/*
- * Copyright (C) 2011, 2012, 2013 Red Hat, Inc.
+ * Copyright (C) 2011, 2012, 2013, 2014 Red Hat, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@@ -104,6 +104,7 @@ build_authorization_uri (GoaOAuth2Provider *provider,
uri = g_strdup_printf ("%s"
"?response_type=token"
+ "&display=popup"
"&redirect_uri=%s"
"&client_id=%s"
"&scope=%s",
@@ -117,7 +118,7 @@ build_authorization_uri (GoaOAuth2Provider *provider,
static const gchar *
get_authorization_uri (GoaOAuth2Provider *provider)
{
- return "https://m.facebook.com/dialog/oauth";
+ return "https://www.facebook.com/dialog/oauth";
}
static const gchar *
--
1.8.5.3

View File

@ -1,6 +1,6 @@
Name: gnome-online-accounts
Version: 3.12.0
Release: 2%{?dist}
Version: 3.12.1
Release: 1%{?dist}
Summary: Single sign-on framework for GNOME
Group: System Environment/Libraries
@ -25,9 +25,6 @@ BuildRequires: libxml2-devel
Requires: realmd
# https://bugzilla.gnome.org/show_bug.cgi?id=726609
Patch0: facebook-updates-and-fixes.patch
%description
GNOME Online Accounts provides interfaces so that applications and libraries
in GNOME can access the user's online accounts. It has providers for Google,
@ -47,7 +44,6 @@ developing applications that use %{name}.
%prep
%setup -q
%patch0 -p1 -b .facebook-updates-and-fixes
%build
%configure \
@ -119,6 +115,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
%{_libdir}/goa-1.0/include
%changelog
* Wed Apr 16 2014 Kalev Lember <kalevlember@gmail.com> - 3.12.1-1
- Update to 3.12.1
* Tue Apr 01 2014 Debarshi Ray <rishi@fedoraproject.org> - 3.12.0-2
- Popup is too small to display Facebook authorization (GNOME #726609)

View File

@ -1 +1 @@
e15c6a09ae4c0868b757099684896e3b gnome-online-accounts-3.12.0.tar.xz
729cb9ccbc83fceb1ce2e1808dd10b74 gnome-online-accounts-3.12.1.tar.xz