From b8c291fc88855820c2cce57372b378a95448ebdf Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Tue, 25 Mar 2014 16:12:19 +0100 Subject: gnu: recutils: Upgrade to 1.7. * gnu/packages/recutils.scm (recutils): Upgrade to 1.7. Add 'arguments' field. --- gnu/packages/recutils.scm | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'gnu/packages/recutils.scm') diff --git a/gnu/packages/recutils.scm b/gnu/packages/recutils.scm index 0e4d81b30f..7e78ac121d 100644 --- a/gnu/packages/recutils.scm +++ b/gnu/packages/recutils.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2012, 2013 Ludovic Courtès +;;; Copyright © 2012, 2013, 2014 Ludovic Courtès ;;; ;;; This file is part of GNU Guix. ;;; @@ -31,21 +31,27 @@ (define-public recutils (package (name "recutils") - (version "1.6") + (version "1.7") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/recutils/recutils-" version ".tar.gz")) (sha256 (base32 - "0dxmz73n4qaasqymx97nlw6in98r6lnsfp0586hwkn95d3ll306s")))) + "0cdwa4094x3yx7vn98xykvnlp9rngvd58d19vs3vh5hrvggccg93")))) (build-system gnu-build-system) + + ;; Running tests in parallel leads to test failures and crashes in + ;; torture/utils. + (arguments '(#:parallel-tests? #f)) + (native-inputs `(("emacs" ,emacs) ("bc" ,bc))) ;; TODO: Add more optional inputs. ;; FIXME: Our Bash doesn't have development headers (need for the 'readrec' ;; built-in command), but it's not clear how to get them installed. + ;; See . (inputs `(("curl" ,curl) ("libgcrypt" ,libgcrypt) ("check" ,check))) -- cgit v1.2.3