guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

10/30: gnu: proof-general: Update to 4.4.


From: guix-commits
Subject: 10/30: gnu: proof-general: Update to 4.4.
Date: Thu, 2 Apr 2020 14:55:46 -0400 (EDT)

mbakke pushed a commit to branch master
in repository guix.

commit 5bd5d6ef2d42367398176aea87fe6a1fe61ab198
Author: John Soo <address@hidden>
AuthorDate: Sun Mar 29 02:18:56 2020 -0700

    gnu: proof-general: Update to 4.4.
    
    * gnu/packages/coq.scm (proof-general): Update to 4.4.
    [source]: Change to GIT-FETCH.
    [arguments]: Remove obsolete substitutions.
    
    Signed-off-by: Marius Bakke <address@hidden>
---
 gnu/packages/coq.scm | 18 ++++++++----------
 1 file changed, 8 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/coq.scm b/gnu/packages/coq.scm
index f883c2f..2ff31c5 100644
--- a/gnu/packages/coq.scm
+++ b/gnu/packages/coq.scm
@@ -132,15 +132,17 @@ It is developed using Objective Caml and Camlp5.")
 (define-public proof-general
   (package
     (name "proof-general")
-    (version "4.2")
+    (version "4.4")
     (source (origin
-              (method url-fetch)
-              (uri (string-append
-                    "http://proofgeneral.inf.ed.ac.uk/releases/";
-                    "ProofGeneral-" version ".tgz"))
+              (method git-fetch)
+              (uri (git-reference
+                    (url (string-append
+                          "https://github.com/ProofGeneral/PG";))
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
               (sha256
                (base32
-                "09qb0myq66fw17v4ziz401ilsb5xlxz1nl2wsp69d0vrfy0bcrrm"))))
+                "0bdfk91wf71z80mdfnl8hpinripndcjgdkz854zil6521r84nqk8"))))
     (build-system gnu-build-system)
     (native-inputs
      `(("which" ,which)
@@ -175,10 +177,6 @@ It is developed using Objective Caml and Camlp5.")
                             (emacs (assoc-ref inputs "host-emacs")))
                         (define (coq-prog name)
                           (string-append coq "/bin/" name))
-                        (emacs-substitute-variables "coq/coq.el"
-                          ("coq-prog-name"           (coq-prog "coqtop"))
-                          ("coq-compiler"            (coq-prog "coqc"))
-                          ("coq-dependency-analyzer" (coq-prog "coqdep")))
                         (substitute* "Makefile"
                           (("/sbin/install-info") "install-info"))
                         (substitute* "bin/proofgeneral"



reply via email to

[Prev in Thread] Current Thread [Next in Thread]