From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:42428) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ioNl3-0002Jk-84 for guix-patches@gnu.org; Mon, 06 Jan 2020 03:29:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ioNl2-0004RU-2k for guix-patches@gnu.org; Mon, 06 Jan 2020 03:29:05 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:39009) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ioNl1-0004Ql-Vq for guix-patches@gnu.org; Mon, 06 Jan 2020 03:29:04 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ioNl0-00035a-TO for guix-patches@gnu.org; Mon, 06 Jan 2020 03:29:02 -0500 Subject: [bug#38965] [PATCH 12/12] gnu: coq-equations: Update to 1.2.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:35 -0600 Message-ID: <875zhpvvik.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/x-patch Content-Disposition: inline; filename=0012-gnu-coq-equations-Update-to-1.2.1.patch Content-Description: [PATCH 12/12] gnu: coq-equations: Update to 1.2.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 89b5acd77c520c2cf72c0dda28bd1a1c0ea97e55 Mon Sep 17 00:00:00 2001 From: Brett Gilio Date: Mon, 6 Jan 2020 02:20:41 -0600 Subject: [PATCH 12/12] gnu: coq-equations: Update to 1.2.1. To: guix-patches@gnu.org * gnu/packages/coq.scm (coq-equations): Update to 1.2.1. [arguments]: Replace configure phase to run configure shell script. Remove redundant COQLIB. --- gnu/packages/coq.scm | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/gnu/packages/coq.scm b/gnu/packages/coq.scm index 11604da30e..618e302fa1 100644 --- a/gnu/packages/coq.scm +++ b/gnu/packages/coq.scm @@ -549,16 +549,16 @@ uses Ltac to synthesize the substitution operation.") (define-public coq-equations (package (name "coq-equations") - (version "1.2") + (version "1.2.1") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/mattam82/Coq-Equations.git") - (commit (string-append "v" version "-8.9")))) + (commit (string-append "v" version "-8.10")))) (file-name (git-file-name name version)) (sha256 (base32 - "1q3wvicr43bgy7xn1diwh4j43mnrhprrc2xd22qlbz9cl6bhf8bj")))) + "023q5dww3drw35dm9bi9p9d0wrj9k7vax7hfdsprf8l340pb4s0k")))) (build-system gnu-build-system) (native-inputs `(("ocaml" ,ocaml) @@ -570,10 +570,9 @@ uses Ltac to synthesize the substitution operation.") (modify-phases %standard-phases (replace 'configure (lambda* (#:key outputs #:allow-other-keys) - (invoke "coq_makefile" "-f" "_CoqProject" "-o" "Makefile"))) + (invoke "sh" "./configure.sh"))) (replace 'install (lambda* (#:key outputs #:allow-other-keys) - (setenv "COQLIB" (string-append (assoc-ref outputs "out") "/lib/coq/")) (invoke "make" (string-append "COQLIB=" (assoc-ref outputs "out") "/lib/coq/") -- 2.24.1