From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33996) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dESKk-0001Qc-Pd for guix-patches@gnu.org; Fri, 26 May 2017 23:24:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dESKh-0000Fb-0i for guix-patches@gnu.org; Fri, 26 May 2017 23:24:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:37111) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dESKg-0000FT-TQ for guix-patches@gnu.org; Fri, 26 May 2017 23:24:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dESKg-0002RC-Px for guix-patches@gnu.org; Fri, 26 May 2017 23:24:02 -0400 Subject: bug#27093: [PATCH 2/3] gnu: Add libgdata. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33931) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dESKE-0001P5-4U for guix-patches@gnu.org; Fri, 26 May 2017 23:23:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dESKB-0008Ur-O6 for guix-patches@gnu.org; Fri, 26 May 2017 23:23:34 -0400 Received: from lb1.openmailbox.org ([5.79.108.160]:42464 helo=mail.openmailbox.org) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dESKB-0008TC-GI for guix-patches@gnu.org; Fri, 26 May 2017 23:23:31 -0400 From: Kei Kebreau Date: Fri, 26 May 2017 23:23:03 -0400 Message-Id: <20170527032304.22189-2-kei@openmailbox.org> In-Reply-To: <20170527032304.22189-1-kei@openmailbox.org> References: <20170527032304.22189-1-kei@openmailbox.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 27093@debbugs.gnu.org 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 =C2=A9 2015, 2016 Efraim Flashner ;;; Copyright =C2=A9 2016, 2017 Rene Saavedra ;;; Copyright =C2=A9 2016 Jochem Raat -;;; Copyright =C2=A9 2016 Kei Kebreau +;;; Copyright =C2=A9 2016, 2017 Kei Kebreau ;;; Copyright =C2=A9 2016 Jan Nieuwenhuizen ;;; Copyright =C2=A9 2016 Roel Janssen ;;; Copyright =C2=A9 2016 Leo Famulari @@ -238,6 +238,46 @@ relationship modeling, and network diagrams. The pr= ogram supports various file formats like PNG, SVG, PDF and EPS.") (license license:gpl2+)))) =20 +(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 . + (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 =E2=80=94 most notably, Google's services. It provid= es APIs to +access the common Google services, and has full asynchronous support.") + (license license:lgpl2.1+))) + (define-public gnome-common (package (name "gnome-common") --=20 2.13.0