unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: rennes@openmailbox.org
To: ludo@gnu.org
Cc: guix-devel@gnu.org
Subject: Re: [PATCH 3/6] gnu: gnome-documents
Date: Wed, 30 Mar 2016 19:33:17 -0600	[thread overview]
Message-ID: <8c9fa1cade7304d10cac7f48d5f0ff6d@openmailbox.org> (raw)
In-Reply-To: <87twjpghn7.fsf@gnu.org>

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

Hi,

On 2016-03-29 14:21, ludo@gnu.org wrote:
> rennes@openmailbox.org skribis:
> 
>> +    (arguments
>> +     '(#:configure-flags '("--enable-nss"))) ; instead of OpenSSL.
> 
> If there’s a particular reason for this choice, could you mention it in
> a comment?
> 
>> +    (synopsis "Collection of POSIX-C functions implementing the OAuth 
>> API")
> 
> s/POSIX-C/C/
> 
>> +    (description
>> +     "Liboauth provides functions to escape and encode stings 
>> according to
>                                                            ^^
> *strings
> 
>> +    (license license:gpl2+))) ; distributed under MIT or GPL.
> 
> “MIT” is probably either the Expat or the X11 license.  Please check 
> the
> license texts at:
> 
>   http://directory.fsf.org/wiki/License:Expat
>   http://directory.fsf.org/wiki/License:X11
> 
> Thanks,
> Ludo’.

I Attached the patch corrected.

Clarifying, nss had used instead of openssl because I saw it as an 
option. But in the subsequentes packages OpenSSL is required.

On the other hand I have two questions:
a) Regarding the copyright in the 'Submitting Patches' section I can not 
find the part that describes it.
b) I can use the 'gnu/packages/gnome.scm' file to generate the patch or 
is indifferent ?

Thank you

[-- 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: 1956 bytes --]

From cabbfd0d8a0472d60a250e12b49cb10098419d1c Mon Sep 17 00:00:00 2001
From: Rene Saavedra <rennes@openmailbox.org>
Date: Wed, 30 Mar 2016 19:03:57 -0600
Subject: [PATCH] gnu: Add liboauth.

* gnu/packages/gnome.scm (liboauth): New variable.

---
 gnu/packages/liboauth.scm | 37 +++++++++++++++++++++++++++++++++++++
 1 file changed, 37 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..be6c946
--- /dev/null
+++ b/gnu/packages/liboauth.scm
@@ -0,0 +1,37 @@
+;;; Copyright © 2016 Rene Saavedra <rennes@openmailbox.org>
+
+(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 pkg-config)
+  #:use-module (gnu packages tls))
+
+(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)
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (inputs
+     `(("openssl" ,openssl)))
+    (home-page "https://sourceforge.net/projects/liboauth")
+    (synopsis "Collection of s/POSIX-C/C/ functions implementing the OAuth API")
+    (description
+     "Liboauth provides functions to escape and encode strings 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 (list license:gpl2+
+                   license:openssl)))) ; OpenSSL library.
-- 
2.6.3


  reply	other threads:[~2016-03-31  1:33 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-02-28 22:29 [PATCH 3/6] gnu: gnome-documents rennes
2016-03-29 20:21 ` Ludovic Courtès
2016-03-31  1:33   ` rennes [this message]
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=8c9fa1cade7304d10cac7f48d5f0ff6d@openmailbox.org \
    --to=rennes@openmailbox.org \
    --cc=guix-devel@gnu.org \
    --cc=ludo@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).