From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: Re: [PATCH 3/6] gnu: gnome-documents Date: Wed, 6 Apr 2016 18:05:55 -0400 Message-ID: <20160406220555.GA8974@jasmine> References: <87twjpghn7.fsf@gnu.org> <8c9fa1cade7304d10cac7f48d5f0ff6d@openmailbox.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:52592) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1anvaJ-0002aG-4a for guix-devel@gnu.org; Wed, 06 Apr 2016 18:06:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1anvaF-0006Wr-Sg for guix-devel@gnu.org; Wed, 06 Apr 2016 18:05:59 -0400 Received: from out5-smtp.messagingengine.com ([66.111.4.29]:40602) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1anvaF-0006Wm-Nm for guix-devel@gnu.org; Wed, 06 Apr 2016 18:05:55 -0400 Content-Disposition: inline In-Reply-To: <8c9fa1cade7304d10cac7f48d5f0ff6d@openmailbox.org> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: rennes@openmailbox.org Cc: guix-devel@gnu.org On Wed, Mar 30, 2016 at 07:33:17PM -0600, rennes@openmailbox.org wrote: > * gnu/packages/gnome.scm (liboauth): New variable. This package looks good, but I think it should either go into an existing package module, or into a new module called oauth.scm. Either way, check commit f75bbb028 for an example of how to document this properly in the commit message, and make sure to include the full copyright statement in the file. Can you send an updated patch? Also, can you give an update on the status of the gnome-documents patch series? What remains to be done? > > --- > 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 > + > +(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 >