From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark H Weaver Subject: [PATCH] gnu: gnupg: Add support for version 1.4.16 Date: Wed, 05 Mar 2014 18:07:54 -0500 Message-ID: <87r46gkzw5.fsf@yeeloong.lan> Mime-Version: 1.0 Content-Type: text/x-patch; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54871) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WLKwC-0005rs-PC for guix-devel@gnu.org; Wed, 05 Mar 2014 18:09:25 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WLKw8-0004ez-7J for guix-devel@gnu.org; Wed, 05 Mar 2014 18:09:20 -0500 Received: from world.peace.net ([96.39.62.75]:37944) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WLKw8-0004es-34 for guix-devel@gnu.org; Wed, 05 Mar 2014 18:09:16 -0500 Content-Disposition: inline; filename=0001-gnu-gnupg-Add-support-for-version-1.4.16.patch Content-Description: [PATCH] gnu: gnupg: Add support for version 1.4.16 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: guix-devel@gnu.org >From 90929b7126a6676ca30f8e968d4b6ca3e10a4d3d Mon Sep 17 00:00:00 2001 From: Mark H Weaver Date: Wed, 5 Mar 2014 16:21:24 -0500 Subject: [PATCH] gnu: gnupg: Add support for version 1.4.16. * gnu/packages/gnupg.scm (gnupg-1): New variable. --- gnu/packages/gnupg.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/gnupg.scm b/gnu/packages/gnupg.scm index 85ce076..f9f7290 100644 --- a/gnu/packages/gnupg.scm +++ b/gnu/packages/gnupg.scm @@ -2,6 +2,7 @@ ;;; Copyright =C2=A9 2012, 2013, 2014 Ludovic Court=C3=A8s ;;; Copyright =C2=A9 2013 Andreas Enge ;;; Copyright =C2=A9 2014 Eric Bavier +;;; Copyright =C2=A9 2014 Mark H Weaver ;;; ;;; This file is part of GNU Guix. ;;; @@ -213,6 +214,31 @@ components), libgpg-error (centralized GnuPG error val= ues), and libskba (working with X.509 certificates and CMS data).") (license gpl3+))) =20 +(define-public gnupg-1 + (package (inherit gnupg) + (version "1.4.16") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://gnupg/gnupg/gnupg-" version + ".tar.bz2")) + (sha256 + (base32 + "0bsa1yqa3ybhvmc4ys73amdpcmckrlq1fsxjl2980cxada778fvv")))) + (inputs + `(("zlib" ,guix:zlib) + ("bzip2" ,guix:bzip2) + ("curl" ,curl) + ("readline" ,readline) + ("libgpg-error" ,libgpg-error))) + (arguments + `(#:phases (alist-cons-after + 'unpack 'patch-check-sh + (lambda _ + (substitute* "checks/Makefile.in" + (("/bin/sh") (which "bash")))) + %standard-phases))))) + (define-public gpgme (package (name "gpgme") --=20 1.8.4