Re: [PATCH 1/6] gnu: gnome-documents

2016-03-29 Thread Ludovic Courtès
Hi!

ren...@openmailbox.org skribis:

> From cda9164a3b21e0fe4855c606d6b09140c2a68fe7 Mon Sep 17 00:00:00 2001
> From: Rene Saavedra 
> Date: Fri, 26 Feb 2016 18:30:52 -0600
> Subject: [PATCH] gnu: Add libzapojit.

Sorry for the delay!  I’m happy to report that I’ve finally pushed the
patch as 3a9a4c51e8ddc5b4282de7a37cdb96e878a7feed.  :-)

Please note the commit log and copyright line (see
).

Could you send updated versions of the other patches of this series
(apart from the Tracker one, which we discussed already) with a proper
commit log and copyright line?

Thank you!

Ludo’.



[PATCH 1/6] gnu: gnome-documents

2016-02-26 Thread rennes

Hi,

According to observations, I attached the map and the first 
package(libzapojit).


This is the map of non-packaged programs required for gnome-documents:

 1) libzapojit
 2) tracker
 5) libgdata
 3) liboauth
 4) uhttpmock
 6) gnome-documents


I wait your comments, thanks.
From cda9164a3b21e0fe4855c606d6b09140c2a68fe7 Mon Sep 17 00:00:00 2001
From: Rene Saavedra 
Date: Fri, 26 Feb 2016 18:30:52 -0600
Subject: [PATCH] gnu: Add libzapojit.

---
 gnu/packages/libzapojit.scm | 38 ++
 1 file changed, 38 insertions(+)
 create mode 100644 gnu/packages/libzapojit.scm

diff --git a/gnu/packages/libzapojit.scm b/gnu/packages/libzapojit.scm
new file mode 100644
index 000..590652a
--- /dev/null
+++ b/gnu/packages/libzapojit.scm
@@ -0,0 +1,38 @@
+(define-module (gnu packages libzapojit)
+  #:use-module ((guix licenses) #:prefix license:)
+  #:use-module (guix build-system gnu)
+  #:use-module (guix download)
+  #:use-module (guix packages)
+  #:use-module (guix utils)
+  #:use-module (gnu packages glib)
+  #:use-module (gnu packages gnome)
+  #:use-module (gnu packages pkg-config))
+
+(define-public libzapojit
+  (package
+(name "libzapojit")
+(version "0.0.3")
+(source
+ (origin
+   (method url-fetch)
+   (uri (string-append "mirror://gnome/sources/" name "/"
+   (version-major+minor version) "/"
+   name "-" version ".tar.xz"))
+   (sha256
+(base32
+ "0zn3s7ryjc3k1abj4k55dr2na844l451nrg9s6cvnnhh569zj99x"
+(build-system gnu-build-system)
+(native-inputs
+ `(("gobject-introspection" ,gobject-introspection)
+   ("intltool" ,intltool)
+   ("pkg-config" ,pkg-config)))
+(inputs
+ `(("gnome-online-accounts" ,gnome-online-accounts)
+   ("json-glib" ,json-glib)
+   ("rest" ,rest)))
+(home-page "https://wiki.gnome.org/Projects/Zapojit;)
+(synopsis "Library for accessing SkyDrive and Hotmail")
+(description
+ "Libzapojit is a GLib-based library for accessing online service APIs
+using the Microsoft SkyDrive and Hotmail REST protocols.")
+(license license:lgpl2.1+)))
-- 
2.6.3