Hi,

I attached uhttpmock patch.

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

Note:
I use "glib-networking" and "gsettings-desktop-schemas" for check phase.


Thanks
From 8ae39f33c0e10c53c21886bf7cf55c47dbc28214 Mon Sep 17 00:00:00 2001
From: Rene Saavedra <ren...@openmailbox.org>
Date: Sun, 28 Feb 2016 21:57:17 -0600
Subject: [PATCH] gnu: Add uhttpmock.

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

diff --git a/gnu/packages/uhttpmock.scm b/gnu/packages/uhttpmock.scm
new file mode 100644
index 0000000..65c163e
--- /dev/null
+++ b/gnu/packages/uhttpmock.scm
@@ -0,0 +1,48 @@
+(define-module (gnu packages uhttpmock)
+  #:use-module ((guix licenses) #:prefix license:)
+  #:use-module (guix build-system glib-or-gtk)  
+  #: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 uhttpmock
+  (package
+    (name "uhttpmock")
+    (version "0.5.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "http://tecnocode.co.uk/downloads/uhttpmock/";
+                           name "-" version ".tar.xz"))
+       (sha256
+        (base32
+         "0vniyx341pnnmvxmqacc49k0g7h9a9nhknfslidrqmxj5lm1ini6"))))
+    (build-system glib-or-gtk-build-system)
+    (arguments
+     `(#:configure-flags
+       '("--with-ca-certificates=/etc/ssl/certs/ca-certificates.crt")
+       #:phases
+       (modify-phases %standard-phases
+         (add-before 'check 'use-empty-ssl-cert-file
+                     (lambda _
+                       ; Search for ca-certificates.crt files
+                       ; during the check phase.
+                       (setenv "SSL_CERT_FILE" "/dev/null")
+                       #t)))))
+    (native-inputs
+     `(("gobject-introspection" ,gobject-introspection)
+       ("pkg-config" ,pkg-config)))
+    (inputs
+     `(("glib-networking" ,glib-networking)
+       ("gsettings-desktop-schemas" ,gsettings-desktop-schemas)
+       ("libsoup" ,libsoup)))
+    (home-page "https://gitlab.com/groups/uhttpmock";)
+    (synopsis "Library for mocking web service APIs which use HTTP or HTTPS")
+    (description
+     "Uhttpmock is a project for mocking web service APIs which use HTTP or
+HTTPS.  It provides a library, libuhttpmock, which implements recording and
+playback of HTTP request/response traces.")
+    (license license:lgpl2.1+)))
-- 
2.6.3

Reply via email to