all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Kei Kebreau <kei@openmailbox.org>
To: 27093@debbugs.gnu.org
Cc: Kei Kebreau <kei@openmailbox.org>
Subject: bug#27093: [PATCH 2/3] gnu: Add libgdata.
Date: Fri, 26 May 2017 23:23:03 -0400	[thread overview]
Message-ID: <20170527032304.22189-2-kei@openmailbox.org> (raw)
In-Reply-To: <20170527032304.22189-1-kei@openmailbox.org>

* 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

  reply	other threads:[~2017-05-27  3:24 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-05-27  3:23 bug#27092: [PATCH 1/3] gnu: Add liboauth Kei Kebreau
2017-05-27  3:23 ` Kei Kebreau [this message]
2017-05-27 13:58   ` bug#27093: [PATCH 2/3] gnu: Add libgdata 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

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20170527032304.22189-2-kei@openmailbox.org \
    --to=kei@openmailbox.org \
    --cc=27093@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.