unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* bug#27092: [PATCH 1/3] gnu: Add liboauth.
@ 2017-05-27  3:23 Kei Kebreau
  2017-05-27  3:23 ` bug#27093: [PATCH 2/3] gnu: Add libgdata Kei Kebreau
                   ` (3 more replies)
  0 siblings, 4 replies; 18+ messages in thread
From: Kei Kebreau @ 2017-05-27  3:23 UTC (permalink / raw)
  To: 27092; +Cc: Kei Kebreau

* gnu/packages/web.scm (liboauth): New variable.
---
 gnu/packages/web.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index bcc20bfdd..ea4ad9b31 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -19,6 +19,7 @@
 ;;; Copyright © 2016 Bake Timmons <b3timmons@speedymail.org>
 ;;; Copyright © 2017 Thomas Danckaert <post@thomasdanckaert.be>
 ;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com>
+;;; Copyright © 2017 Kei Kebreau <kei@openmailbox.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -68,6 +69,7 @@
   #:use-module (gnu packages gnome)
   #:use-module (gnu packages gnu-doc)
   #:use-module (gnu packages gnupg)
+  #:use-module (gnu packages gnuzilla)
   #:use-module (gnu packages gperf)
   #:use-module (gnu packages gtk)
   #:use-module (gnu packages icu4c)
@@ -708,6 +710,34 @@ modifying pages and incoming and outgoing headers, monitoring pages for
 changes, and much more.")
     (license l:gpl2+)))
 
+(define-public liboauth
+  (package
+    (name "liboauth")
+    (version "1.0.3")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "mirror://sourceforge/liboauth/liboauth-"
+                                  version ".tar.gz"))
+              (sha256
+               (base32
+                "07w1aq8y8wld43wmbk2q8134p3bfkp2vma78mmsfgw2jn1bh3xhd"))))
+    (build-system gnu-build-system)
+    (arguments '(#:configure-flags '("--enable-nss")))
+    (native-inputs `(("pkg-config" ,pkg-config)))
+    (propagated-inputs
+     `(("curl" ,curl)
+       ("nss" ,nss)))
+    (home-page "https://sourceforge.net/projects/liboauth")
+    (synopsis "C library implementing the http://oauth.net API")
+    (description
+     "liboauth is a collection of c functions implementing the http://oauth.net
+API.  liboauth provides functions to escape and encode stings according to
+OAuth specifications and offers high-level functionality built on top to sign
+requests or verify signatures using either NSS or OpenSSL for calculating the
+hash/signatures.")
+    ;; Source code may be distributed under either license.
+    (license (list l:expat l:gpl2+))))
+
 (define-public libyaml
   (package
     (name "libyaml")
-- 
2.13.0

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* bug#27093: [PATCH 2/3] gnu: Add libgdata.
  2017-05-27  3:23 bug#27092: [PATCH 1/3] gnu: Add liboauth Kei Kebreau
@ 2017-05-27  3:23 ` Kei Kebreau
  2017-05-27 13:58   ` Leo Famulari
  2017-05-27  3:23 ` bug#27094: [PATCH 3/3] gnu: shotwell: Update to 0.26.1 Kei Kebreau
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 18+ messages in thread
From: Kei Kebreau @ 2017-05-27  3:23 UTC (permalink / raw)
  To: 27093; +Cc: Kei Kebreau

* gnu/packages/gnome.scm (libgdata): New variable.
---
 gnu/packages/gnome.scm | 42 +++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 41 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 299f11b2d..d7d92dd90 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -14,7 +14,7 @@
 ;;; Copyright © 2015, 2016 Efraim Flashner <efraim@flashner.co.il>
 ;;; Copyright © 2016, 2017 Rene Saavedra <rennes@openmailbox.org>
 ;;; Copyright © 2016 Jochem Raat <jchmrt@riseup.net>
-;;; Copyright © 2016 Kei Kebreau <kei@openmailbox.org>
+;;; Copyright © 2016, 2017 Kei Kebreau <kei@openmailbox.org>
 ;;; Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org>
 ;;; Copyright © 2016 Roel Janssen <roel@gnu.org>
 ;;; Copyright © 2016 Leo Famulari <leo@famulari.name>
@@ -238,6 +238,46 @@ relationship modeling, and network diagrams.  The program supports various file
 formats like PNG, SVG, PDF and EPS.")
       (license license:gpl2+))))
 
+(define-public libgdata
+  (package
+    (name "libgdata")
+    (version "0.16.1")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "mirror://gnome/sources/" name "/"
+                                  (version-major+minor version)  "/"
+                                  name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "09q8h1129xjpw33rvzz7856drygxwlm0s64z9cm0vbmjxiqy0h47"))))
+    (build-system gnu-build-system)
+    (arguments
+     '(#:configure-flags '("--disable-tests")
+       #:tests? #f)) ; See <https://bugzilla.gnome.org/show_bug.cgi?id=739956>.
+    (native-inputs
+     `(("glib:bin" ,glib "bin")
+       ("intltool" ,intltool)
+       ("pkg-config" ,pkg-config)
+       ("uhttpmock" ,uhttpmock)))
+    (inputs
+     `(("cyrus-sasl" ,cyrus-sasl)
+       ("glib" ,glib)
+       ("glib-networking" ,glib-networking)
+       ("json-glib" ,json-glib)
+       ("libsoup" ,libsoup)))
+    (propagated-inputs
+     `(("gcr" ,gcr)
+       ("gnome-online-accounts" ,gnome-online-accounts)
+       ("liboauth" ,liboauth)
+       ("libxml2" ,libxml2)))
+    (home-page "https://wiki.gnome.org/Projects/libgdata")
+    (synopsis "Library for accessing online service APIs")
+    (description
+     "libgdata is a GLib-based library for accessing online service APIs using
+the GData protocol — most notably, Google's services.  It provides APIs to
+access the common Google services, and has full asynchronous support.")
+    (license license:lgpl2.1+)))
+
 (define-public gnome-common
   (package
     (name "gnome-common")
-- 
2.13.0

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* bug#27094: [PATCH 3/3] gnu: shotwell: Update to 0.26.1.
  2017-05-27  3:23 bug#27092: [PATCH 1/3] gnu: Add liboauth Kei Kebreau
  2017-05-27  3:23 ` bug#27093: [PATCH 2/3] gnu: Add libgdata Kei Kebreau
@ 2017-05-27  3:23 ` Kei Kebreau
  2017-05-27 13:59   ` Leo Famulari
  2017-05-31  6:21   ` Ricardo Wurmus
  2017-05-27 13:56 ` bug#27092: [PATCH 1/3] gnu: Add liboauth Leo Famulari
  2017-05-31 13:57 ` Ludovic Courtès
  3 siblings, 2 replies; 18+ messages in thread
From: Kei Kebreau @ 2017-05-27  3:23 UTC (permalink / raw)
  To: 27094; +Cc: Kei Kebreau

* gnu/packages/gnome.scm (shotwell): Update to 0.26.1.
[inputs]: Add libgdata.
---
 gnu/packages/gnome.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index d7d92dd90..38c44de9c 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -4043,7 +4043,7 @@ metadata in photo and video files of various formats.")
 (define-public shotwell
   (package
     (name "shotwell")
-    (version "0.25.5")
+    (version "0.26.1")
     (source (origin
               (method url-fetch)
               (uri (string-append "mirror://gnome/sources/" name "/"
@@ -4051,7 +4051,7 @@ metadata in photo and video files of various formats.")
                                   name "-" version ".tar.xz"))
               (sha256
                (base32
-                "10pv3v789hky8h7ladqzzmgvkmgy3c41n4xz0nnyjmpycwl26g29"))))
+                "0xak1f69lp1yx3p8jgmr9c0z3jypi8zjpy3kiknn5n9g2f5cqq0a"))))
     (build-system glib-or-gtk-build-system)
     (propagated-inputs
      `(("dconf" ,dconf)))
@@ -4066,6 +4066,7 @@ metadata in photo and video files of various formats.")
      `(("glib:bin" ,glib "bin")
        ("gstreamer" ,gstreamer)
        ("gst-plugins-base" ,gst-plugins-base)
+       ("libgdata" ,libgdata)
        ("libgee" ,libgee)
        ("gexiv2" ,gexiv2)
        ("libraw" ,libraw)
-- 
2.13.0

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* bug#27092: [PATCH 1/3] gnu: Add liboauth.
  2017-05-27  3:23 bug#27092: [PATCH 1/3] gnu: Add liboauth Kei Kebreau
  2017-05-27  3:23 ` bug#27093: [PATCH 2/3] gnu: Add libgdata Kei Kebreau
  2017-05-27  3:23 ` bug#27094: [PATCH 3/3] gnu: shotwell: Update to 0.26.1 Kei Kebreau
@ 2017-05-27 13:56 ` Leo Famulari
  2017-05-28  0:35   ` Kei Kebreau
  2017-05-31 13:57 ` Ludovic Courtès
  3 siblings, 1 reply; 18+ messages in thread
From: Leo Famulari @ 2017-05-27 13:56 UTC (permalink / raw)
  To: Kei Kebreau; +Cc: 27092

[-- Attachment #1: Type: text/plain, Size: 220 bytes --]

On Fri, May 26, 2017 at 11:23:02PM -0400, Kei Kebreau wrote:
> * gnu/packages/web.scm (liboauth): New variable.

> +     "liboauth is a collection of c functions implementing the http://oauth.net

s/c/C

Otherwise LGTM!

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 18+ messages in thread

* bug#27093: [PATCH 2/3] gnu: Add libgdata.
  2017-05-27  3:23 ` bug#27093: [PATCH 2/3] gnu: Add libgdata Kei Kebreau
@ 2017-05-27 13:58   ` Leo Famulari
  2017-05-27 15:16     ` Kei Kebreau
  0 siblings, 1 reply; 18+ messages in thread
From: Leo Famulari @ 2017-05-27 13:58 UTC (permalink / raw)
  To: Kei Kebreau; +Cc: 27093

[-- Attachment #1: Type: text/plain, Size: 378 bytes --]

On Fri, May 26, 2017 at 11:23:03PM -0400, Kei Kebreau wrote:
> * gnu/packages/gnome.scm (libgdata): New variable.

> +    (arguments
> +     '(#:configure-flags '("--disable-tests")
> +       #:tests? #f)) ; See <https://bugzilla.gnome.org/show_bug.cgi?id=739956>.

That bug report is a couple years old. Did they still not release the
fix? Okay if not, I just want to clarify.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 18+ messages in thread

* bug#27094: [PATCH 3/3] gnu: shotwell: Update to 0.26.1.
  2017-05-27  3:23 ` bug#27094: [PATCH 3/3] gnu: shotwell: Update to 0.26.1 Kei Kebreau
@ 2017-05-27 13:59   ` Leo Famulari
  2017-05-27 15:29     ` Kei Kebreau
  2017-05-31  6:21   ` Ricardo Wurmus
  1 sibling, 1 reply; 18+ messages in thread
From: Leo Famulari @ 2017-05-27 13:59 UTC (permalink / raw)
  To: Kei Kebreau; +Cc: 27094

[-- Attachment #1: Type: text/plain, Size: 284 bytes --]

On Fri, May 26, 2017 at 11:23:04PM -0400, Kei Kebreau wrote:
> * gnu/packages/gnome.scm (shotwell): Update to 0.26.1.
> [inputs]: Add libgdata.

Thanks!

> +       ("libgdata" ,libgdata)

Any idea how it uses libgdata? Does this new Shotwell still respect our
privacy when we run it?

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 18+ messages in thread

* bug#27093: [PATCH 2/3] gnu: Add libgdata.
  2017-05-27 13:58   ` Leo Famulari
@ 2017-05-27 15:16     ` Kei Kebreau
  2017-05-27 15:43       ` Leo Famulari
  0 siblings, 1 reply; 18+ messages in thread
From: Kei Kebreau @ 2017-05-27 15:16 UTC (permalink / raw)
  To: Leo Famulari; +Cc: 27093

[-- Attachment #1: Type: text/plain, Size: 573 bytes --]

Leo Famulari <leo@famulari.name> writes:

> On Fri, May 26, 2017 at 11:23:03PM -0400, Kei Kebreau wrote:
>> * gnu/packages/gnome.scm (libgdata): New variable.
>
>> +    (arguments
>> +     '(#:configure-flags '("--disable-tests")
>> + #:tests? #f)) ; See
>> <https://bugzilla.gnome.org/show_bug.cgi?id=739956>.
>
> That bug report is a couple years old. Did they still not release the
> fix? Okay if not, I just want to clarify.

I found a follow-up commit that supposedly fixes the tests, so that
build is happening right now (the webkitgtk dependency will take a
while).

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

^ permalink raw reply	[flat|nested] 18+ messages in thread

* bug#27094: [PATCH 3/3] gnu: shotwell: Update to 0.26.1.
  2017-05-27 13:59   ` Leo Famulari
@ 2017-05-27 15:29     ` Kei Kebreau
  2017-05-27 15:43       ` Leo Famulari
  0 siblings, 1 reply; 18+ messages in thread
From: Kei Kebreau @ 2017-05-27 15:29 UTC (permalink / raw)
  To: Leo Famulari; +Cc: 27094

[-- Attachment #1: Type: text/plain, Size: 885 bytes --]

Leo Famulari <leo@famulari.name> writes:

> On Fri, May 26, 2017 at 11:23:04PM -0400, Kei Kebreau wrote:
>> * gnu/packages/gnome.scm (shotwell): Update to 0.26.1.
>> [inputs]: Add libgdata.
>
> Thanks!
>
>> +       ("libgdata" ,libgdata)
>
> Any idea how it uses libgdata? Does this new Shotwell still respect our
> privacy when we run it?

There appears to be a part of the Shotwell program called Shotwell
Connect. It seems that this program only connects to Facebook/Google
when a user authenticates themselves. The privacy policies and
descriptions of functionality are available here:

https://wiki.gnome.org/Apps/Shotwell/YoutubePrivacyPolicy
https://wiki.gnome.org/Apps/Shotwell/FacebookPrivacyPolicy
http://shotwell-project.org/doc/html/share-upload.html

The communication with privacy-disrespecting services is limited to
plugins, which can be disabled at the user's option.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

^ permalink raw reply	[flat|nested] 18+ messages in thread

* bug#27094: [PATCH 3/3] gnu: shotwell: Update to 0.26.1.
  2017-05-27 15:29     ` Kei Kebreau
@ 2017-05-27 15:43       ` Leo Famulari
  0 siblings, 0 replies; 18+ messages in thread
From: Leo Famulari @ 2017-05-27 15:43 UTC (permalink / raw)
  To: Kei Kebreau; +Cc: 27094

[-- Attachment #1: Type: text/plain, Size: 1137 bytes --]

On Sat, May 27, 2017 at 11:29:53AM -0400, Kei Kebreau wrote:
> Leo Famulari <leo@famulari.name> writes:
> 
> > On Fri, May 26, 2017 at 11:23:04PM -0400, Kei Kebreau wrote:
> >> * gnu/packages/gnome.scm (shotwell): Update to 0.26.1.
> >> [inputs]: Add libgdata.
> >
> > Thanks!
> >
> >> +       ("libgdata" ,libgdata)
> >
> > Any idea how it uses libgdata? Does this new Shotwell still respect our
> > privacy when we run it?
> 
> There appears to be a part of the Shotwell program called Shotwell
> Connect. It seems that this program only connects to Facebook/Google
> when a user authenticates themselves. The privacy policies and
> descriptions of functionality are available here:
> 
> https://wiki.gnome.org/Apps/Shotwell/YoutubePrivacyPolicy
> https://wiki.gnome.org/Apps/Shotwell/FacebookPrivacyPolicy
> http://shotwell-project.org/doc/html/share-upload.html
> 
> The communication with privacy-disrespecting services is limited to
> plugins, which can be disabled at the user's option.

Cool, as long as it doesn't upload all my photos when I run Shotwell :)
Thanks for digging up this documentation!

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 18+ messages in thread

* bug#27093: [PATCH 2/3] gnu: Add libgdata.
  2017-05-27 15:16     ` Kei Kebreau
@ 2017-05-27 15:43       ` Leo Famulari
  2017-05-28  0:34         ` Kei Kebreau
  0 siblings, 1 reply; 18+ messages in thread
From: Leo Famulari @ 2017-05-27 15:43 UTC (permalink / raw)
  To: Kei Kebreau; +Cc: 27093

[-- Attachment #1: Type: text/plain, Size: 696 bytes --]

On Sat, May 27, 2017 at 11:16:37AM -0400, Kei Kebreau wrote:
> Leo Famulari <leo@famulari.name> writes:
> 
> > On Fri, May 26, 2017 at 11:23:03PM -0400, Kei Kebreau wrote:
> >> * gnu/packages/gnome.scm (libgdata): New variable.
> >
> >> +    (arguments
> >> +     '(#:configure-flags '("--disable-tests")
> >> + #:tests? #f)) ; See
> >> <https://bugzilla.gnome.org/show_bug.cgi?id=739956>.
> >
> > That bug report is a couple years old. Did they still not release the
> > fix? Okay if not, I just want to clarify.
> 
> I found a follow-up commit that supposedly fixes the tests, so that
> build is happening right now (the webkitgtk dependency will take a
> while).

Thanks :)

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 18+ messages in thread

* bug#27093: [PATCH 2/3] gnu: Add libgdata.
  2017-05-27 15:43       ` Leo Famulari
@ 2017-05-28  0:34         ` Kei Kebreau
  2017-05-30 20:49           ` Ricardo Wurmus
  0 siblings, 1 reply; 18+ messages in thread
From: Kei Kebreau @ 2017-05-28  0:34 UTC (permalink / raw)
  To: Leo Famulari; +Cc: 27093


[-- Attachment #1.1: Type: text/plain, Size: 806 bytes --]

Leo Famulari <leo@famulari.name> writes:

> On Sat, May 27, 2017 at 11:16:37AM -0400, Kei Kebreau wrote:
>> Leo Famulari <leo@famulari.name> writes:
>> 
>> > On Fri, May 26, 2017 at 11:23:03PM -0400, Kei Kebreau wrote:
>> >> * gnu/packages/gnome.scm (libgdata): New variable.
>> >
>> >> +    (arguments
>> >> +     '(#:configure-flags '("--disable-tests")
>> >> + #:tests? #f)) ; See
>> >> <https://bugzilla.gnome.org/show_bug.cgi?id=739956>.
>> >
>> > That bug report is a couple years old. Did they still not release the
>> > fix? Okay if not, I just want to clarify.
>> 
>> I found a follow-up commit that supposedly fixes the tests, so that
>> build is happening right now (the webkitgtk dependency will take a
>> while).
>
> Thanks :)

All tests should be running properly now!

[-- Attachment #1.2: 0002-gnu-Add-libgdata.patch --]
[-- Type: text/plain, Size: 25590 bytes --]

From 2f4aa38aad8630818caee04c7d769a66488967b3 Mon Sep 17 00:00:00 2001
From: Kei Kebreau <kei@openmailbox.org>
Date: Fri, 26 May 2017 01:13:23 -0400
Subject: [PATCH 2/3] gnu: Add libgdata.

* gnu/packages/gnome.scm (libgdata): New variable.
* gnu/packages/patches/libgdata-fix-tests.patch,
gnu/packages/patches/libgdata-glib-duplicate-tests.patch: New files.
* gnu/local.mk (dist_patch_DATA): Add them.
---
 gnu/local.mk                                       |   2 +
 gnu/packages/gnome.scm                             |  52 +++-
 gnu/packages/patches/libgdata-fix-tests.patch      | 325 +++++++++++++++++++++
 .../patches/libgdata-glib-duplicate-tests.patch    |  16 +
 4 files changed, 394 insertions(+), 1 deletion(-)
 create mode 100644 gnu/packages/patches/libgdata-fix-tests.patch
 create mode 100644 gnu/packages/patches/libgdata-glib-duplicate-tests.patch

diff --git a/gnu/local.mk b/gnu/local.mk
index 6847b6190..26a839ad3 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -729,6 +729,8 @@ dist_patch_DATA =						\
   %D%/packages/patches/libevent-2.1-dns-tests.patch		\
   %D%/packages/patches/libevent-2.1-skip-failing-test.patch	\
   %D%/packages/patches/libextractor-ffmpeg-3.patch		\
+  %D%/packages/patches/libgdata-fix-tests.patch			\
+  %D%/packages/patches/libgdata-glib-duplicate-tests.patch	\
   %D%/packages/patches/libgit2-use-after-free.patch		\
   %D%/packages/patches/libjxr-fix-function-signature.patch	\
   %D%/packages/patches/libjxr-fix-typos.patch			\
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 299f11b2d..6ffa10b25 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -14,7 +14,7 @@
 ;;; Copyright © 2015, 2016 Efraim Flashner <efraim@flashner.co.il>
 ;;; Copyright © 2016, 2017 Rene Saavedra <rennes@openmailbox.org>
 ;;; Copyright © 2016 Jochem Raat <jchmrt@riseup.net>
-;;; Copyright © 2016 Kei Kebreau <kei@openmailbox.org>
+;;; Copyright © 2016, 2017 Kei Kebreau <kei@openmailbox.org>
 ;;; Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org>
 ;;; Copyright © 2016 Roel Janssen <roel@gnu.org>
 ;;; Copyright © 2016 Leo Famulari <leo@famulari.name>
@@ -238,6 +238,56 @@ relationship modeling, and network diagrams.  The program supports various file
 formats like PNG, SVG, PDF and EPS.")
       (license license:gpl2+))))
 
+(define-public libgdata
+  (package
+    (name "libgdata")
+    (version "0.16.1")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "mirror://gnome/sources/" name "/"
+                                  (version-major+minor version)  "/"
+                                  name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "09q8h1129xjpw33rvzz7856drygxwlm0s64z9cm0vbmjxiqy0h47"))
+              (patches
+               (search-patches "libgdata-fix-tests.patch"
+                               "libgdata-glib-duplicate-tests.patch"))))
+    (build-system gnu-build-system)
+    (arguments
+     '(#:phases
+       (modify-phases %standard-phases
+         (add-before 'check 'use-empty-ssl-cert-file
+           (lambda _
+             ;; The ca-certificates.crt is not available in the build
+             ;; environment.
+             (setenv "SSL_CERT_FILE" "/dev/null")
+             #t)))))
+    (native-inputs
+     `(("glib:bin" ,glib "bin")
+       ("gsettings-desktop-schemas" ,gsettings-desktop-schemas)
+       ("intltool" ,intltool)
+       ("pkg-config" ,pkg-config)
+       ("uhttpmock" ,uhttpmock)))
+    (inputs
+     `(("cyrus-sasl" ,cyrus-sasl)
+       ("glib" ,glib)
+       ("glib-networking" ,glib-networking)
+       ("json-glib" ,json-glib)
+       ("libsoup" ,libsoup)))
+    (propagated-inputs
+     `(("gcr" ,gcr)
+       ("gnome-online-accounts" ,gnome-online-accounts)
+       ("liboauth" ,liboauth)
+       ("libxml2" ,libxml2)))
+    (home-page "https://wiki.gnome.org/Projects/libgdata")
+    (synopsis "Library for accessing online service APIs")
+    (description
+     "libgdata is a GLib-based library for accessing online service APIs using
+the GData protocol — most notably, Google's services.  It provides APIs to
+access the common Google services, and has full asynchronous support.")
+    (license license:lgpl2.1+)))
+
 (define-public gnome-common
   (package
     (name "gnome-common")
diff --git a/gnu/packages/patches/libgdata-fix-tests.patch b/gnu/packages/patches/libgdata-fix-tests.patch
new file mode 100644
index 000000000..dc86b3ab5
--- /dev/null
+++ b/gnu/packages/patches/libgdata-fix-tests.patch
@@ -0,0 +1,325 @@
+From c87a112246e0bcbd5c3a8aa484a50c617d710dbf Mon Sep 17 00:00:00 2001
+From: Philip Withnall <philip.withnall@collabora.co.uk>
+Date: Fri, 12 Dec 2014 17:31:01 +0000
+Subject: [PATCH] tests: Eliminate ISO 8601 formatting workaround for dates
+
+Follow up to commit 732017e4e5235e28c578cc3367fa0c4548b65495.
+
+https://bugzilla.gnome.org/show_bug.cgi?id=739956
+---
+ gdata/tests/calendar.c | 20 ++++++++++----------
+ gdata/tests/general.c  | 34 +++++++++++++++++-----------------
+ gdata/tests/tasks.c    | 34 +++++++++++++++++-----------------
+ gdata/tests/youtube.c  | 16 ++++++++--------
+ 4 files changed, 52 insertions(+), 52 deletions(-)
+
+diff --git a/gdata/tests/calendar.c b/gdata/tests/calendar.c
+index bb1d609..c54ddda 100644
+--- a/gdata/tests/calendar.c
++++ b/gdata/tests/calendar.c
+@@ -620,7 +620,7 @@ test_event_xml (void)
+ 			"<gCal:guestsCanInviteOthers value='false'/>"
+ 			"<gCal:guestsCanSeeGuests value='false'/>"
+ 			"<gCal:anyoneCanAddSelf value='false'/>"
+-			"<gd:when startTime='2009-04-17T15:00:00.000001+00:00' endTime='2009-04-17T17:00:00.000001+00:00'/>"
++			"<gd:when startTime='2009-04-17T15:00:00Z' endTime='2009-04-17T17:00:00Z'/>"
+ 			"<gd:who email='john.smith@example.com' "
+ 			        "rel='http://schemas.google.com/g/2005#event.organizer' "
+ 			        "valueString='John Smith\342\200\275'/>"
+@@ -706,7 +706,7 @@ test_event_xml_dates (void)
+ 			"<gCal:guestsCanSeeGuests value='false'/>"
+ 			"<gCal:anyoneCanAddSelf value='false'/>"
+ 			"<gd:when startTime='2009-04-17'/>"
+-			"<gd:when startTime='2009-04-17T15:00:00.000001+00:00'/>"
++			"<gd:when startTime='2009-04-17T15:00:00Z'/>"
+ 			"<gd:when startTime='2009-04-27' endTime='2009-05-06'/>"
+ 		"</entry>");
+ 
+@@ -934,25 +934,25 @@ test_query_uri (void)
+ 
+ 	/* Check the built query URI with a normal feed URI */
+ 	query_uri = gdata_query_get_query_uri (GDATA_QUERY (query), "http://example.com");
+-	g_assert_cmpstr (query_uri, ==, "http://example.com?q=q&futureevents=true&orderby=starttime&recurrence-expansion-start=2009-04-17T15:00:00.000001+00:00"
+-	                                "&recurrence-expansion-end=2010-04-17T15:00:00.000001+00:00&singleevents=true&sortorder=descending"
+-	                                "&start-min=2009-04-17T15:00:00.000001+00:00&start-max=2010-04-17T15:00:00.000001+00:00&ctz=America%2FLos_Angeles&max-attendees=15"
++	g_assert_cmpstr (query_uri, ==, "http://example.com?q=q&futureevents=true&orderby=starttime&recurrence-expansion-start=2009-04-17T15:00:00Z"
++	                                "&recurrence-expansion-end=2010-04-17T15:00:00Z&singleevents=true&sortorder=descending"
++	                                "&start-min=2009-04-17T15:00:00Z&start-max=2010-04-17T15:00:00Z&ctz=America%2FLos_Angeles&max-attendees=15"
+ 	                                "&showdeleted=true");
+ 	g_free (query_uri);
+ 
+ 	/* …with a feed URI with a trailing slash */
+ 	query_uri = gdata_query_get_query_uri (GDATA_QUERY (query), "http://example.com/");
+-	g_assert_cmpstr (query_uri, ==, "http://example.com/?q=q&futureevents=true&orderby=starttime&recurrence-expansion-start=2009-04-17T15:00:00.000001+00:00"
+-	                                "&recurrence-expansion-end=2010-04-17T15:00:00.000001+00:00&singleevents=true&sortorder=descending"
+-	                                "&start-min=2009-04-17T15:00:00.000001+00:00&start-max=2010-04-17T15:00:00.000001+00:00&ctz=America%2FLos_Angeles&max-attendees=15"
++	g_assert_cmpstr (query_uri, ==, "http://example.com/?q=q&futureevents=true&orderby=starttime&recurrence-expansion-start=2009-04-17T15:00:00Z"
++	                                "&recurrence-expansion-end=2010-04-17T15:00:00Z&singleevents=true&sortorder=descending"
++	                                "&start-min=2009-04-17T15:00:00Z&start-max=2010-04-17T15:00:00Z&ctz=America%2FLos_Angeles&max-attendees=15"
+ 	                                "&showdeleted=true");
+ 	g_free (query_uri);
+ 
+ 	/* …with a feed URI with pre-existing arguments */
+ 	query_uri = gdata_query_get_query_uri (GDATA_QUERY (query), "http://example.com/bar/?test=test&this=that");
+ 	g_assert_cmpstr (query_uri, ==, "http://example.com/bar/?test=test&this=that&q=q&futureevents=true&orderby=starttime"
+-	                                "&recurrence-expansion-start=2009-04-17T15:00:00.000001+00:00&recurrence-expansion-end=2010-04-17T15:00:00.000001+00:00"
+-	                                "&singleevents=true&sortorder=descending&start-min=2009-04-17T15:00:00.000001+00:00&start-max=2010-04-17T15:00:00.000001+00:00"
++	                                "&recurrence-expansion-start=2009-04-17T15:00:00Z&recurrence-expansion-end=2010-04-17T15:00:00Z"
++	                                "&singleevents=true&sortorder=descending&start-min=2009-04-17T15:00:00Z&start-max=2010-04-17T15:00:00Z"
+ 	                                "&ctz=America%2FLos_Angeles&max-attendees=15&showdeleted=true");
+ 	g_free (query_uri);
+ 
+diff --git a/gdata/tests/general.c b/gdata/tests/general.c
+index 237a908..f828d2e 100644
+--- a/gdata/tests/general.c
++++ b/gdata/tests/general.c
+@@ -528,8 +528,8 @@ test_entry_parse_xml (void)
+ 			 "<?xml version='1.0' encoding='UTF-8'?>"
+ 			 "<entry xmlns='http://www.w3.org/2005/Atom' xmlns:gd='http://schemas.google.com/g/2005' xmlns:ns='http://example.com/'>"
+ 				"<title type='text'>Testing unhandled XML</title>"
+-				"<updated>2009-01-25T14:07:37.000001+00:00</updated>"
+-				"<published>2009-01-23T14:06:37.000001+00:00</published>"
++				"<updated>2009-01-25T14:07:37Z</updated>"
++				"<published>2009-01-23T14:06:37Z</published>"
+ 				"<content type='text'>Here we test unhandled XML elements.</content>"
+ 				"<foobar>Test!</foobar>"
+ 				"<barfoo shizzle=\"zing\"/>"
+@@ -569,8 +569,8 @@ test_entry_parse_xml_kind_category (void)
+ 			 "<?xml version='1.0' encoding='UTF-8'?>"
+ 			 "<entry xmlns='http://www.w3.org/2005/Atom' xmlns:gd='http://schemas.google.com/g/2005'>"
+ 				"<title type='text'>Testing kind categories</title>"
+-				"<updated>2009-01-25T14:07:37.000001+00:00</updated>"
+-				"<published>2009-01-23T14:06:37.000001+00:00</published>"
++				"<updated>2009-01-25T14:07:37Z</updated>"
++				"<published>2009-01-23T14:06:37Z</published>"
+ 				"<content type='text'>Here we test kind categories.</content>"
+ 			"<category term='http://schemas.google.com/docs/2007#file' "
+ 			          "scheme='http://schemas.google.com/g/2005#kind' "
+@@ -620,7 +620,7 @@ test_entry_parse_json (void)
+ 		"{"
+ 			"\"title\":\"A title\","
+ 			"\"id\":\"some-id\","
+-			"\"updated\":\"2009-01-25T14:07:37.000001+00:00\","
++			"\"updated\":\"2009-01-25T14:07:37Z\","
+ 			"\"etag\":\"some-etag\","
+ 			"\"selfLink\":\"http://example.com/\","
+ 			"\"kind\":\"kind#kind\","
+@@ -760,8 +760,8 @@ test_entry_escaping (void)
+ 		"<entry xmlns='http://www.w3.org/2005/Atom' xmlns:gd='http://schemas.google.com/g/2005'>"
+ 			"<title type='text'>Escaped content &amp; stuff</title>"
+ 			"<id>http://foo.com/?foo&amp;bar</id>"
+-			"<updated>2010-12-10T17:21:24.000001+00:00</updated>"
+-			"<published>2010-12-10T17:21:24.000001+00:00</published>"
++			"<updated>2010-12-10T17:21:24Z</updated>"
++			"<published>2010-12-10T17:21:24Z</published>"
+ 			"<summary type='text'>Summary &amp; stuff</summary>"
+ 			"<rights>Free &amp; open source</rights>"
+ 			"<content type='text'>Content &amp; things.</content>"
+@@ -1106,7 +1106,7 @@ test_feed_escaping (void)
+ 		"<feed xmlns='http://www.w3.org/2005/Atom'>"
+ 			"<title type='text'>Test feed &amp; stuff.</title>"
+ 			"<id>http://foo.com?foo&amp;bar</id>"
+-			"<updated>2010-12-10T17:49:15.000001+00:00</updated>"
++			"<updated>2010-12-10T17:49:15Z</updated>"
+ 		"</feed>");
+ 	g_object_unref (feed);
+ }
+@@ -1157,28 +1157,28 @@ test_query_dates (void)
+ 	/* updated-min */
+ 	gdata_query_set_updated_min (query, 1373280114); /* 2013-07-08T10:41:54Z */
+ 	query_uri = gdata_query_get_query_uri (query, "http://example.com");
+-	g_assert_cmpstr (query_uri, ==, "http://example.com?q=baz&updated-min=2013-07-08T10:41:54.000001+00:00");
++	g_assert_cmpstr (query_uri, ==, "http://example.com?q=baz&updated-min=2013-07-08T10:41:54Z");
+ 	g_free (query_uri);
+ 	gdata_query_set_updated_min (query, -1);
+ 
+ 	/* updated-max */
+ 	gdata_query_set_updated_max (query, 1373280114); /* 2013-07-08T10:41:54Z */
+ 	query_uri = gdata_query_get_query_uri (query, "http://example.com");
+-	g_assert_cmpstr (query_uri, ==, "http://example.com?q=baz&updated-max=2013-07-08T10:41:54.000001+00:00");
++	g_assert_cmpstr (query_uri, ==, "http://example.com?q=baz&updated-max=2013-07-08T10:41:54Z");
+ 	g_free (query_uri);
+ 	gdata_query_set_updated_max (query, -1);
+ 
+ 	/* published-min */
+ 	gdata_query_set_published_min (query, 1373280114); /* 2013-07-08T10:41:54Z */
+ 	query_uri = gdata_query_get_query_uri (query, "http://example.com");
+-	g_assert_cmpstr (query_uri, ==, "http://example.com?q=baz&published-min=2013-07-08T10:41:54.000001+00:00");
++	g_assert_cmpstr (query_uri, ==, "http://example.com?q=baz&published-min=2013-07-08T10:41:54Z");
+ 	g_free (query_uri);
+ 	gdata_query_set_published_min (query, -1);
+ 
+ 	/* published-max */
+ 	gdata_query_set_published_max (query, 1373280114); /* 2013-07-08T10:41:54Z */
+ 	query_uri = gdata_query_get_query_uri (query, "http://example.com");
+-	g_assert_cmpstr (query_uri, ==, "http://example.com?q=baz&published-max=2013-07-08T10:41:54.000001+00:00");
++	g_assert_cmpstr (query_uri, ==, "http://example.com?q=baz&published-max=2013-07-08T10:41:54Z");
+ 	g_free (query_uri);
+ 	gdata_query_set_published_max (query, -1);
+ 
+@@ -3127,7 +3127,7 @@ test_gd_reminder (void)
+ 	gdata_test_assert_xml (reminder,
+ 			 "<?xml version='1.0' encoding='UTF-8'?>"
+ 			 "<gd:reminder xmlns='http://www.w3.org/2005/Atom' xmlns:gd='http://schemas.google.com/g/2005' "
+-				"absoluteTime='2005-06-07T00:55:00.000001+00:00' method='alert'/>");
++				"absoluteTime='2005-06-07T00:55:00Z' method='alert'/>");
+ 	g_object_unref (reminder);
+ }
+ 
+@@ -3218,8 +3218,8 @@ test_gd_when (void)
+ 	/* Check the outputted XML is the same */
+ 	gdata_test_assert_xml (when,
+ 			 "<?xml version='1.0' encoding='UTF-8'?>"
+-			 "<gd:when xmlns='http://www.w3.org/2005/Atom' xmlns:gd='http://schemas.google.com/g/2005' startTime='2005-06-07T01:00:00.000001+00:00' "
+-				"endTime='2005-06-07T02:00:00.000001+00:00'/>");
++			 "<gd:when xmlns='http://www.w3.org/2005/Atom' xmlns:gd='http://schemas.google.com/g/2005' startTime='2005-06-07T01:00:00Z' "
++				"endTime='2005-06-07T02:00:00Z'/>");
+ 	g_object_unref (when);
+ 
+ 	/* Now parse a time with different information */
+@@ -3258,7 +3258,7 @@ test_gd_when (void)
+ 			 "<gd:when xmlns='http://www.w3.org/2005/Atom' xmlns:gd='http://schemas.google.com/g/2005' startTime='2005-06-06' "
+ 				"endTime='2005-06-08' valueString='This weekend'>"
+ 				"<gd:reminder minutes='15'/>"
+-				"<gd:reminder absoluteTime='2005-06-06T00:00:00.000001+00:00' method='alert'/>"
++				"<gd:reminder absoluteTime='2005-06-06T00:00:00Z' method='alert'/>"
+ 				"<foobar/>"
+ 			 "</gd:when>");
+ 	g_object_unref (when);
+@@ -3278,7 +3278,7 @@ test_gd_when_escaping (void)
+ 	gdata_test_assert_xml (when,
+ 	                 "<?xml version='1.0' encoding='UTF-8'?>"
+ 	                 "<gd:when xmlns='http://www.w3.org/2005/Atom' xmlns:gd='http://schemas.google.com/g/2005' "
+-	                          "startTime='2005-06-07T01:00:00.000001+00:00' valueString='Value string &amp; stuff!'/>");
++	                          "startTime='2005-06-07T01:00:00Z' valueString='Value string &amp; stuff!'/>");
+ 	g_object_unref (when);
+ }
+ 
+diff --git a/gdata/tests/tasks.c b/gdata/tests/tasks.c
+index 7a5bc7e..7bf3174 100644
+--- a/gdata/tests/tasks.c
++++ b/gdata/tests/tasks.c
+@@ -122,11 +122,11 @@ test_query_uri (void)
+ 	g_assert_cmpstr (query_uri, ==,
+ 	                 "http://example.com"
+ 	                 "?maxResults=10"
+-	                 "&updatedMin=1970-01-01T01:53:09.000001+00:00"
+-	                 "&completedMin=1970-01-01T01:34:38.000001+00:00"
+-	                 "&completedMax=1970-01-01T00:20:34.000001+00:00"
+-	                 "&dueMin=1970-01-01T00:39:05.000001+00:00"
+-	                 "&dueMax=1970-01-01T00:57:36.000001+00:00"
++	                 "&updatedMin=1970-01-01T01:53:09Z"
++	                 "&completedMin=1970-01-01T01:34:38Z"
++	                 "&completedMax=1970-01-01T00:20:34Z"
++	                 "&dueMin=1970-01-01T00:39:05Z"
++	                 "&dueMax=1970-01-01T00:57:36Z"
+ 	                 "&showCompleted=true"
+ 	                 "&showDeleted=true"
+ 	                 "&showHidden=true");
+@@ -148,11 +148,11 @@ test_query_uri (void)
+ 	g_assert_cmpstr (query_uri, ==,
+ 	                 "http://example.com"
+ 	                 "?maxResults=10"
+-	                 "&updatedMin=1970-01-01T01:53:09.000001+00:00"
+-	                 "&completedMin=1970-01-01T01:34:38.000001+00:00"
+-	                 "&completedMax=1970-01-01T00:20:34.000001+00:00"
+-	                 "&dueMin=1970-01-01T00:39:05.000001+00:00"
+-	                 "&dueMax=1970-01-01T00:57:36.000001+00:00"
++	                 "&updatedMin=1970-01-01T01:53:09Z"
++	                 "&completedMin=1970-01-01T01:34:38Z"
++	                 "&completedMax=1970-01-01T00:20:34Z"
++	                 "&dueMin=1970-01-01T00:39:05Z"
++	                 "&dueMax=1970-01-01T00:57:36Z"
+ 	                 "&showCompleted=false"
+ 	                 "&showDeleted=false"
+ 	                 "&showHidden=false");
+@@ -317,8 +317,8 @@ test_task_properties (void)
+ 			"\"title\": \"some-other-title\","
+ 			"\"notes\": \"more-notes\","
+ 			"\"status\": \"completed\","
+-			"\"due\": \"2014-08-30T17:20:00.000001+00:00\","
+-			"\"completed\": \"2014-08-30T17:20:00.000001+00:00\","
++			"\"due\": \"2014-08-30T17:20:00Z\","
++			"\"completed\": \"2014-08-30T17:20:00Z\","
+ 			"\"deleted\": true,"
+ 			"\"hidden\": false"
+ 		"}");
+@@ -332,8 +332,8 @@ test_task_properties (void)
+ 			"\"title\": \"some-other-title\","
+ 			"\"notes\": \"more-notes\","
+ 			"\"status\": \"completed\","
+-			"\"due\": \"2014-08-30T17:20:00.000001+00:00\","
+-			"\"completed\": \"2014-08-30T17:20:00.000001+00:00\","
++			"\"due\": \"2014-08-30T17:20:00Z\","
++			"\"completed\": \"2014-08-30T17:20:00Z\","
+ 			"\"deleted\": false,"
+ 			"\"hidden\": false"
+ 		"}");
+@@ -496,14 +496,14 @@ test_task_parser_normal (void)
+ 			"\"id\": \"some-id\","
+ 			"\"etag\": \"some-etag\","
+ 			"\"title\": \"some-title \\\"with quotes\\\"\","
+-			"\"updated\": \"2014-08-30T19:40:00.000001+00:00\","
++			"\"updated\": \"2014-08-30T19:40:00Z\","
+ 			"\"selfLink\": \"http://some-uri/\","
+ 			"\"parent\": \"some-parent-id\","
+ 			"\"position\": \"some-position\","
+ 			"\"notes\": \"Some notes!\","
+ 			"\"status\": \"needsAction\","
+-			"\"due\": \"2014-08-30T20:00:00.000001+00:00\","
+-			"\"completed\": \"2014-08-30T20:10:05.000001+00:00\","
++			"\"due\": \"2014-08-30T20:00:00Z\","
++			"\"completed\": \"2014-08-30T20:10:05Z\","
+ 			"\"deleted\": false,"
+ 			"\"hidden\": true,"
+ 			/* Unhandled for the moment: */
+diff --git a/gdata/tests/youtube.c b/gdata/tests/youtube.c
+index a1e070a..1195bc3 100644
+--- a/gdata/tests/youtube.c
++++ b/gdata/tests/youtube.c
+@@ -967,8 +967,8 @@ test_parsing_yt_recorded (void)
+ 				"gd:etag='W/\"CEMFSX47eCp7ImA9WxVUGEw.\"'>"
+ 				"<title type='text'>Judas Priest - Painkiller</title>"
+ 				"<id>tag:youtube.com,2008:video:JAagedeKdcQ</id>"
+-				"<updated>2009-03-23T12:46:58.000001+00:00</updated>"
+-				"<published>2006-05-16T14:06:37.000001+00:00</published>"
++				"<updated>2009-03-23T12:46:58Z</updated>"
++				"<published>2006-05-16T14:06:37Z</published>"
+ 				"<category term='http://gdata.youtube.com/schemas/2007#video' scheme='http://schemas.google.com/g/2005#kind'/>"
+ 				"<link href='http://www.youtube.com/watch?v=JAagedeKdcQ' rel='http://www.iana.org/assignments/relation/alternate' type='text/html'/>"
+ 				"<link href='http://gdata.youtube.com/feeds/api/videos/JAagedeKdcQ?client=ytapi-google-jsdemo' rel='http://www.iana.org/assignments/relation/self' type='application/atom+xml'/>"
+@@ -1055,8 +1055,8 @@ test_parsing_yt_access_control (void)
+ 				"gd:etag='W/\"CEMFSX47eCp7ImA9WxVUGEw.\"'>"
+ 				"<title type='text'>Judas Priest - Painkiller</title>"
+ 				"<id>tag:youtube.com,2008:video:JAagedeKdcQ</id>"
+-				"<updated>2009-03-23T12:46:58.000001+00:00</updated>"
+-				"<published>2006-05-16T14:06:37.000001+00:00</published>"
++				"<updated>2009-03-23T12:46:58Z</updated>"
++				"<published>2006-05-16T14:06:37Z</published>"
+ 				"<category term='http://gdata.youtube.com/schemas/2007#video' scheme='http://schemas.google.com/g/2005#kind'/>"
+ 				"<link href='http://www.youtube.com/watch?v=JAagedeKdcQ' rel='http://www.iana.org/assignments/relation/alternate' type='text/html'/>"
+ 				"<link href='http://gdata.youtube.com/feeds/api/videos/JAagedeKdcQ?client=ytapi-google-jsdemo' rel='http://www.iana.org/assignments/relation/self' type='application/atom+xml'/>"
+@@ -1255,8 +1255,8 @@ test_parsing_georss_where (void)
+ 		       "xmlns:gml='http://www.opengis.net/gml'>"
+ 			"<title type='text'>Some video somewhere</title>"
+ 			"<id>tag:youtube.com,2008:video:JAagedeKdcQ</id>"
+-			"<updated>2009-03-23T12:46:58.000001+00:00</updated>"
+-			"<published>2006-05-16T14:06:37.000001+00:00</published>"
++			"<updated>2009-03-23T12:46:58Z</updated>"
++			"<published>2006-05-16T14:06:37Z</published>"
+ 			"<category term='http://gdata.youtube.com/schemas/2007#video' scheme='http://schemas.google.com/g/2005#kind'/>"
+ 			"<link href='http://www.youtube.com/watch?v=JAagedeKdcQ' rel='http://www.iana.org/assignments/relation/alternate' type='text/html'/>"
+ 			"<link href='http://gdata.youtube.com/feeds/api/videos/JAagedeKdcQ?client=ytapi-google-jsdemo' rel='http://www.iana.org/assignments/relation/self' type='application/atom+xml'/>"
+@@ -1295,8 +1295,8 @@ test_parsing_georss_where (void)
+ 		       "xmlns:gml='http://www.opengis.net/gml'>"
+ 			"<title type='text'>Some video somewhere</title>"
+ 			"<id>tag:youtube.com,2008:video:JAagedeKdcQ</id>"
+-			"<updated>2009-03-23T12:46:58.000001+00:00</updated>"
+-			"<published>2006-05-16T14:06:37.000001+00:00</published>"
++			"<updated>2009-03-23T12:46:58Z</updated>"
++			"<published>2006-05-16T14:06:37Z</published>"
+ 			"<category term='http://gdata.youtube.com/schemas/2007#video' scheme='http://schemas.google.com/g/2005#kind'/>"
+ 			"<link href='http://www.youtube.com/watch?v=JAagedeKdcQ' rel='http://www.iana.org/assignments/relation/alternate' type='text/html'/>"
+ 			"<link href='http://gdata.youtube.com/feeds/api/videos/JAagedeKdcQ?client=ytapi-google-jsdemo' rel='http://www.iana.org/assignments/relation/self' type='application/atom+xml'/>"
+-- 
+1.9.3
diff --git a/gnu/packages/patches/libgdata-glib-duplicate-tests.patch b/gnu/packages/patches/libgdata-glib-duplicate-tests.patch
new file mode 100644
index 000000000..d5d8d064d
--- /dev/null
+++ b/gnu/packages/patches/libgdata-glib-duplicate-tests.patch
@@ -0,0 +1,16 @@
+diff -ur a/gdata/tests/oauth1-authorizer.c b/gdata/tests/oauth1-authorizer.c
+--- a/gdata/tests/oauth1-authorizer.c	1969-12-31 19:00:00.000000000 -0500
++++ b/gdata/tests/oauth1-authorizer.c	2017-05-27 19:35:30.551725678 -0400
+@@ -1045,10 +1045,10 @@
+ 	/* Sync request-authentication-uri tests */
+ 	g_test_add ("/oauth1-authorizer/request-authentication-uri/sync", OAuth1AuthorizerData, NULL, set_up_oauth1_authorizer_data,
+ 	            test_oauth1_authorizer_request_authentication_uri_sync, tear_down_oauth1_authorizer_data);
+-	g_test_add ("/oauth1-authorizer/request-authentication-uri/sync/multiple-domains", OAuth1AuthorizerData, NULL,
++	g_test_add ("/oauth1-authorizer/request-authentication-uri/sync/multiple-domains1", OAuth1AuthorizerData, NULL,
+ 	            set_up_oauth1_authorizer_data_multiple_domains, test_oauth1_authorizer_request_authentication_uri_sync,
+ 	            tear_down_oauth1_authorizer_data);
+-	g_test_add ("/oauth1-authorizer/request-authentication-uri/sync/multiple-domains", OAuth1AuthorizerData, NULL,
++	g_test_add ("/oauth1-authorizer/request-authentication-uri/sync/multiple-domains2", OAuth1AuthorizerData, NULL,
+ 	            set_up_oauth1_authorizer_data_locale, test_oauth1_authorizer_request_authentication_uri_sync,
+ 	            tear_down_oauth1_authorizer_data);
+ 	g_test_add ("/oauth1-authorizer/request-authentication-uri/sync/cancellation", OAuth1AuthorizerData, NULL,
-- 
2.13.0


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* bug#27092: [PATCH 1/3] gnu: Add liboauth.
  2017-05-27 13:56 ` bug#27092: [PATCH 1/3] gnu: Add liboauth Leo Famulari
@ 2017-05-28  0:35   ` Kei Kebreau
  2017-05-28 23:04     ` Marius Bakke
  0 siblings, 1 reply; 18+ messages in thread
From: Kei Kebreau @ 2017-05-28  0:35 UTC (permalink / raw)
  To: Leo Famulari; +Cc: 27092-done

[-- Attachment #1: Type: text/plain, Size: 344 bytes --]

Leo Famulari <leo@famulari.name> writes:

> On Fri, May 26, 2017 at 11:23:02PM -0400, Kei Kebreau wrote:
>> * gnu/packages/web.scm (liboauth): New variable.
>
>> + "liboauth is a collection of c functions implementing the
>> http://oauth.net
>
> s/c/C
>
> Otherwise LGTM!

Thanks! Pushed to staging as 1622637bb74d03cd3070ce14195252ead032d99d.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

^ permalink raw reply	[flat|nested] 18+ messages in thread

* bug#27092: [PATCH 1/3] gnu: Add liboauth.
  2017-05-28  0:35   ` Kei Kebreau
@ 2017-05-28 23:04     ` Marius Bakke
  0 siblings, 0 replies; 18+ messages in thread
From: Marius Bakke @ 2017-05-28 23:04 UTC (permalink / raw)
  To: Kei Kebreau, Leo Famulari; +Cc: 27092-done

[-- Attachment #1: Type: text/plain, Size: 494 bytes --]

Kei Kebreau <kei@openmailbox.org> writes:

> Leo Famulari <leo@famulari.name> writes:
>
>> On Fri, May 26, 2017 at 11:23:02PM -0400, Kei Kebreau wrote:
>>> * gnu/packages/web.scm (liboauth): New variable.
>>
>>> + "liboauth is a collection of c functions implementing the
>>> http://oauth.net
>>
>> s/c/C
>>
>> Otherwise LGTM!
>
> Thanks! Pushed to staging as 1622637bb74d03cd3070ce14195252ead032d99d.

This push only included "liboauth". Was there anything holding back the
two other patches?

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

^ permalink raw reply	[flat|nested] 18+ messages in thread

* bug#27093: [PATCH 2/3] gnu: Add libgdata.
  2017-05-28  0:34         ` Kei Kebreau
@ 2017-05-30 20:49           ` Ricardo Wurmus
  2017-05-30 21:06             ` Kei Kebreau
  0 siblings, 1 reply; 18+ messages in thread
From: Ricardo Wurmus @ 2017-05-30 20:49 UTC (permalink / raw)
  To: Kei Kebreau; +Cc: 27093


Kei Kebreau <kei@openmailbox.org> writes:

> All tests should be running properly now!
> From 2f4aa38aad8630818caee04c7d769a66488967b3 Mon Sep 17 00:00:00 2001
> From: Kei Kebreau <kei@openmailbox.org>
> Date: Fri, 26 May 2017 01:13:23 -0400
> Subject: [PATCH 2/3] gnu: Add libgdata.
>
> * gnu/packages/gnome.scm (libgdata): New variable.
> * gnu/packages/patches/libgdata-fix-tests.patch,
> gnu/packages/patches/libgdata-glib-duplicate-tests.patch: New files.
> * gnu/local.mk (dist_patch_DATA): Add them.

I wanted to commit this just now but noticed that it depends on
liboauth, which is unavailable.  Did you forget to submit that patch?

--
Ricardo

GPG: BCA6 89B6 3655 3801 C3C6  2150 197A 5888 235F ACAC
https://elephly.net

^ permalink raw reply	[flat|nested] 18+ messages in thread

* bug#27093: [PATCH 2/3] gnu: Add libgdata.
  2017-05-30 20:49           ` Ricardo Wurmus
@ 2017-05-30 21:06             ` Kei Kebreau
  2017-05-31  6:19               ` Ricardo Wurmus
  0 siblings, 1 reply; 18+ messages in thread
From: Kei Kebreau @ 2017-05-30 21:06 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: 27093

[-- Attachment #1: Type: text/plain, Size: 934 bytes --]

Ricardo Wurmus <rekado@elephly.net> writes:

> Kei Kebreau <kei@openmailbox.org> writes:
>
>> All tests should be running properly now!
>> From 2f4aa38aad8630818caee04c7d769a66488967b3 Mon Sep 17 00:00:00 2001
>> From: Kei Kebreau <kei@openmailbox.org>
>> Date: Fri, 26 May 2017 01:13:23 -0400
>> Subject: [PATCH 2/3] gnu: Add libgdata.
>>
>> * gnu/packages/gnome.scm (libgdata): New variable.
>> * gnu/packages/patches/libgdata-fix-tests.patch,
>> gnu/packages/patches/libgdata-glib-duplicate-tests.patch: New files.
>> * gnu/local.mk (dist_patch_DATA): Add them.
>
> I wanted to commit this just now but noticed that it depends on
> liboauth, which is unavailable.  Did you forget to submit that patch?
>

I'm fairly sure I submitted it, as I remember it being
reviewed. Regardless, I've already commited these to the staging
branch.

> --
> Ricardo
>
> GPG: BCA6 89B6 3655 3801 C3C6  2150 197A 5888 235F ACAC
> https://elephly.net

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

^ permalink raw reply	[flat|nested] 18+ messages in thread

* bug#27093: [PATCH 2/3] gnu: Add libgdata.
  2017-05-30 21:06             ` Kei Kebreau
@ 2017-05-31  6:19               ` Ricardo Wurmus
  0 siblings, 0 replies; 18+ messages in thread
From: Ricardo Wurmus @ 2017-05-31  6:19 UTC (permalink / raw)
  To: Kei Kebreau; +Cc: 27093-done


Kei Kebreau <kei@openmailbox.org> writes:

> Ricardo Wurmus <rekado@elephly.net> writes:
>
>> Kei Kebreau <kei@openmailbox.org> writes:
>>
>>> All tests should be running properly now!
>>> From 2f4aa38aad8630818caee04c7d769a66488967b3 Mon Sep 17 00:00:00 2001
>>> From: Kei Kebreau <kei@openmailbox.org>
>>> Date: Fri, 26 May 2017 01:13:23 -0400
>>> Subject: [PATCH 2/3] gnu: Add libgdata.
>>>
>>> * gnu/packages/gnome.scm (libgdata): New variable.
>>> * gnu/packages/patches/libgdata-fix-tests.patch,
>>> gnu/packages/patches/libgdata-glib-duplicate-tests.patch: New files.
>>> * gnu/local.mk (dist_patch_DATA): Add them.
>>
>> I wanted to commit this just now but noticed that it depends on
>> liboauth, which is unavailable.  Did you forget to submit that patch?
>>
>
> I'm fairly sure I submitted it, as I remember it being
> reviewed. Regardless, I've already commited these to the staging
> branch.

Ah, staging.  Well in that case I’ll close this bug (and the third of
this series).  Sending email to 27093-done@debbugs.gnu.org.  Maybe I
didn’t see it because only the first of this series was closed.

I find it helpful to submit a cover letter first, wait for debbugs to
acknowledge it, and then send the patch set to the assigned bug email
address.  This way they all stay together.

--
Ricardo

GPG: BCA6 89B6 3655 3801 C3C6  2150 197A 5888 235F ACAC
https://elephly.net

^ permalink raw reply	[flat|nested] 18+ messages in thread

* bug#27094: [PATCH 3/3] gnu: shotwell: Update to 0.26.1.
  2017-05-27  3:23 ` bug#27094: [PATCH 3/3] gnu: shotwell: Update to 0.26.1 Kei Kebreau
  2017-05-27 13:59   ` Leo Famulari
@ 2017-05-31  6:21   ` Ricardo Wurmus
  1 sibling, 0 replies; 18+ messages in thread
From: Ricardo Wurmus @ 2017-05-31  6:21 UTC (permalink / raw)
  To: Kei Kebreau; +Cc: 27094-done


I’m closing this bug as it has been pushed to the staging branch with
commit dfb0323db04438d6dceebcb0f7280aceab70049b.

--
Ricardo

  GPG: BCA6 89B6 3655 3801 C3C6  2150 197A 5888 235F ACAC
  https://elephly.net

^ permalink raw reply	[flat|nested] 18+ messages in thread

* bug#27092: [PATCH 1/3] gnu: Add liboauth.
  2017-05-27  3:23 bug#27092: [PATCH 1/3] gnu: Add liboauth Kei Kebreau
                   ` (2 preceding siblings ...)
  2017-05-27 13:56 ` bug#27092: [PATCH 1/3] gnu: Add liboauth Leo Famulari
@ 2017-05-31 13:57 ` Ludovic Courtès
  3 siblings, 0 replies; 18+ messages in thread
From: Ludovic Courtès @ 2017-05-31 13:57 UTC (permalink / raw)
  To: Kei Kebreau; +Cc: 27092

Hi!

Kei Kebreau <kei@openmailbox.org> skribis:

> * gnu/packages/web.scm (liboauth): New variable.

[...]

> +    (home-page "https://sourceforge.net/projects/liboauth")
> +    (synopsis "C library implementing the http://oauth.net API")

Maybe replace the URL with “OAuth”?

> +     "liboauth is a collection of c functions implementing the http://oauth.net
> +API.

Likewise: @uref{http://oauth.net,OAuth}.

> liboauth provides functions to escape and encode stings according to

Typo: “strings”.

> +OAuth specifications and offers high-level functionality built on top to sign
> +requests or verify signatures using either NSS or OpenSSL for calculating the
> +hash/signatures.")

I would omit “using either …” since our package uses just one of them
anyway (and it’s an implementation detail).

OK with these changes, thanks!

Ludo’.

^ permalink raw reply	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2017-05-31 13:58 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-27  3:23 bug#27092: [PATCH 1/3] gnu: Add liboauth Kei Kebreau
2017-05-27  3:23 ` bug#27093: [PATCH 2/3] gnu: Add libgdata Kei Kebreau
2017-05-27 13:58   ` Leo Famulari
2017-05-27 15:16     ` Kei Kebreau
2017-05-27 15:43       ` Leo Famulari
2017-05-28  0:34         ` Kei Kebreau
2017-05-30 20:49           ` Ricardo Wurmus
2017-05-30 21:06             ` Kei Kebreau
2017-05-31  6:19               ` Ricardo Wurmus
2017-05-27  3:23 ` bug#27094: [PATCH 3/3] gnu: shotwell: Update to 0.26.1 Kei Kebreau
2017-05-27 13:59   ` Leo Famulari
2017-05-27 15:29     ` Kei Kebreau
2017-05-27 15:43       ` Leo Famulari
2017-05-31  6:21   ` Ricardo Wurmus
2017-05-27 13:56 ` bug#27092: [PATCH 1/3] gnu: Add liboauth Leo Famulari
2017-05-28  0:35   ` Kei Kebreau
2017-05-28 23:04     ` Marius Bakke
2017-05-31 13:57 ` Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).