From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:42163) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ioNk3-0001Vr-EY for guix-patches@gnu.org; Mon, 06 Jan 2020 03:28:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ioNk2-0003e6-5G for guix-patches@gnu.org; Mon, 06 Jan 2020 03:28:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:38993) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ioNk2-0003dv-2U for guix-patches@gnu.org; Mon, 06 Jan 2020 03:28:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ioNk2-00032r-0L for guix-patches@gnu.org; Mon, 06 Jan 2020 03:28:02 -0500 Subject: [bug#38965] [PATCH 05/12] gnu: coq-flocq: Update to 3.2.0. References: <874kx9xa9u.fsf@gnu.org> In-Reply-To: <874kx9xa9u.fsf@gnu.org> Resent-Message-ID: From: Brett Gilio Date: Mon, 06 Jan 2020 02:27:15 -0600 Message-ID: <87pnfxvvks.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/x-patch; charset=utf-8 Content-Disposition: inline; filename=0005-gnu-coq-flocq-Update-to-3.2.0.patch Content-Transfer-Encoding: quoted-printable Content-Description: [PATCH 05/12] gnu: coq-flocq: Update to 3.2.0. 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 241cfab94794ed4edcaaa338ba48b8292e5c6a0a Mon Sep 17 00:00:00 2001 From: Brett Gilio Date: Mon, 6 Jan 2020 01:35:55 -0600 Subject: [PATCH 05/12] gnu: coq-flocq: Update to 3.2.0. To: guix-patches@gnu.org * gnu/packages/coq.scm (coq-flocq): Update to 3.2.0. [source]: Use GIT-FETCH and GIT-FILE-NAME. [native-inputs]: Add autoconf and automake for remake. [arguments]: Add remove-failing-examples phase to work around union error. --- gnu/packages/coq.scm | 30 ++++++++++++++++++++---------- 1 file changed, 20 insertions(+), 10 deletions(-) diff --git a/gnu/packages/coq.scm b/gnu/packages/coq.scm index f0869b0d90..e7baae908c 100644 --- a/gnu/packages/coq.scm +++ b/gnu/packages/coq.scm @@ -207,18 +207,22 @@ provers.") (define-public coq-flocq (package (name "coq-flocq") - (version "3.1.0") - (source (origin - (method url-fetch) - ;; Use the =E2=80=98Latest version=E2=80=99 link for a stabl= e URI across releases. - (uri (string-append "https://gforge.inria.fr/frs/download.ph= p/" - "file/37901/flocq-" version ".tar.gz")) - (sha256 - (base32 - "02szrgz9m0ac51la1lqpiv6i2g0zbgx9gz5rp0q1g00ajldyna5c")))) + (version "3.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gitlab.inria.fr/flocq/flocq.git") + (commit (string-append "flocq-" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "15bi36x7zj0glsb3s2gwqd4wswhfzh36rbp7imbyff53a7nna95l")))) (build-system gnu-build-system) (native-inputs - `(("ocaml" ,ocaml) + `(("autoconf" ,autoconf) + ("automake" ,automake) + ("ocaml" ,ocaml) ("which" ,which) ("coq" ,coq))) (arguments @@ -227,6 +231,12 @@ provers.") "/lib/coq/user-contrib/Flocq")) #:phases (modify-phases %standard-phases + (add-after 'unpack 'remove-failing-examples + (lambda _ + (substitute* "Remakefile.in" + ;; Fails on a union error. + (("Double_rounding_odd_radix.v") "")) + #t)) (add-before 'configure 'fix-remake (lambda _ (substitute* "remake.cpp" --=20 2.24.1