From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:42419) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ioNl2-0002Jh-NF for guix-patches@gnu.org; Mon, 06 Jan 2020 03:29:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ioNl0-0004Pg-Ks for guix-patches@gnu.org; Mon, 06 Jan 2020 03:29:04 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:39008) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ioNl0-0004P9-Hz for guix-patches@gnu.org; Mon, 06 Jan 2020 03:29:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ioNl0-00035S-Eh for guix-patches@gnu.org; Mon, 06 Jan 2020 03:29:02 -0500 Subject: [bug#38965] [PATCH 11/12] gnu: coq-interval: Update to 3.4.1. References: <874kx9xa9u.fsf@gnu.org> In-Reply-To: <874kx9xa9u.fsf@gnu.org> Resent-Message-ID: From: Brett Gilio Date: Mon, 06 Jan 2020 02:28:23 -0600 Message-ID: <878smlvviw.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/x-patch Content-Disposition: inline; filename=0011-gnu-coq-interval-Update-to-3.4.1.patch Content-Description: [PATCH 11/12] gnu: coq-interval: Update to 3.4.1. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 38965@debbugs.gnu.org >From a846a0ecb584c8f76e366db33a720ab68f6df0d7 Mon Sep 17 00:00:00 2001 From: Brett Gilio Date: Mon, 6 Jan 2020 02:19:57 -0600 Subject: [PATCH 11/12] gnu: coq-interval: Update to 3.4.1. To: guix-patches@gnu.org * gnu/packages/coq.scm (coq-interval): Update to 3.4.1. [source]: Use GIT-FETCH and GIT-FILE-NAME. [native-inputs]: Add autoconf and automake for remake. --- gnu/packages/coq.scm | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/gnu/packages/coq.scm b/gnu/packages/coq.scm index 5a48aede30..11604da30e 100644 --- a/gnu/packages/coq.scm +++ b/gnu/packages/coq.scm @@ -21,6 +21,7 @@ (define-module (gnu packages coq) #:use-module (gnu packages) + #:use-module (gnu packages autotools) #:use-module (gnu packages base) #:use-module (gnu packages bison) #:use-module (gnu packages boost) @@ -452,17 +453,22 @@ provides BigN, BigZ, BigQ that used to be part of Coq standard library.") (define-public coq-interval (package (name "coq-interval") - (version "3.4.0") - (source (origin - (method url-fetch) - (uri (string-append "https://gforge.inria.fr/frs/download.php/" - "file/37524/interval-" version ".tar.gz")) - (sha256 - (base32 - "023j9sd64brqvjdidqkn5m8d7a93zd9r86ggh573z9nkjm2m7vvg")))) + (version "3.4.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gitlab.inria.fr/coqinterval/interval.git") + (commit (string-append "interval-" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "03q3dfqi3r3f7aji5s06ig4aav9ajcwswwdzi5lrgr69z0m487k4")))) (build-system gnu-build-system) (native-inputs - `(("ocaml" ,ocaml) + `(("autoconf" ,autoconf) + ("automake" ,automake) + ("ocaml" ,ocaml) ("which" ,which) ("coq" ,coq))) (propagated-inputs -- 2.24.1