unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: rennes@openmailbox.org
To: guix-devel@gnu.org
Subject: [PATCH 3/6] gnu: gnome-documents
Date: Sun, 28 Feb 2016 16:29:40 -0600	[thread overview]
Message-ID: <c6b5920b746579defbc83dc93641d9ca@openmailbox.org> (raw)

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

Hi,

I attached liboauth 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

Thanks

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-Add-liboauth.patch --]
[-- Type: text/x-diff; name=0001-gnu-Add-liboauth.patch, Size: 1884 bytes --]

From 68a4b6d2d28c76ced527d363152afb997a127388 Mon Sep 17 00:00:00 2001
From: Rene Saavedra <rennes@openmailbox.org>
Date: Sun, 28 Feb 2016 16:25:00 -0600
Subject: [PATCH] gnu: Add liboauth.

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

diff --git a/gnu/packages/liboauth.scm b/gnu/packages/liboauth.scm
new file mode 100644
index 0000000..5552b2d
--- /dev/null
+++ b/gnu/packages/liboauth.scm
@@ -0,0 +1,36 @@
+(define-module (gnu packages liboauth)
+  #: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 gnuzilla)
+  #:use-module (gnu packages pkg-config))
+
+(define-public liboauth
+  (package
+    (name "liboauth")
+    (version "1.0.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://sourceforge/liboauth/"
+                           name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "07w1aq8y8wld43wmbk2q8134p3bfkp2vma78mmsfgw2jn1bh3xhd"))))
+    (build-system gnu-build-system)
+    (arguments
+     '(#:configure-flags '("--enable-nss"))) ; instead of OpenSSL.
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (inputs
+     `(("nss" ,nss)))
+    (home-page "https://sourceforge.net/projects/liboauth")
+    (synopsis "Collection of POSIX-C functions implementing the OAuth API")
+    (description
+     "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.")
+    (license license:gpl2+))) ; distributed under MIT or GPL.
-- 
2.6.3


             reply	other threads:[~2016-02-28 22:29 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-02-28 22:29 rennes [this message]
2016-03-29 20:21 ` [PATCH 3/6] gnu: gnome-documents Ludovic Courtès
2016-03-31  1:33   ` rennes
2016-04-06 22:05     ` Leo Famulari
2016-04-10  2:46       ` rennes
2016-04-10  3:05         ` Leo Famulari
2016-04-10  4:47       ` rennes

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

  List information: https://guix.gnu.org/

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

  git send-email \
    --in-reply-to=c6b5920b746579defbc83dc93641d9ca@openmailbox.org \
    --to=rennes@openmailbox.org \
    --cc=guix-devel@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 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).