guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: gprolog: Update to 1.5.0.


From: guix-commits
Subject: branch master updated: gnu: gprolog: Update to 1.5.0.
Date: Wed, 04 Aug 2021 03:41:56 -0400

This is an automated email from the git hooks/post-receive script.

efraim pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 1914d24  gnu: gprolog: Update to 1.5.0.
1914d24 is described below

commit 1914d24b452ca6dad30fad6f1faa5f611fa740b0
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Wed Aug 4 10:26:06 2021 +0300

    gnu: gprolog: Update to 1.5.0.
    
    * gnu/packages/prolog.scm (gprolog): Update to 1.5.0.
    [arguments]: Rename custom 'change-dir-n-fix-shells to 'change-dir and
    remove substitution.
---
 gnu/packages/prolog.scm | 13 +++++--------
 1 file changed, 5 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/prolog.scm b/gnu/packages/prolog.scm
index a5c57cd..4eb0f4d 100644
--- a/gnu/packages/prolog.scm
+++ b/gnu/packages/prolog.scm
@@ -2,6 +2,7 @@
 ;;; Copyright © 2013 Nikita Karetnikov <nikita@karetnikov.org>
 ;;; Copyright © 2013 Mark H Weaver <mhw@netris.org>
 ;;; Copyright © 2020 Brett Gilio <brettg@gnu.org>
+;;; Copyright © 2021 Efraim Flashner <efraim@flashner.co.il>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -42,7 +43,7 @@
 (define-public gprolog
   (package
     (name "gprolog")
-    (version "1.4.5")
+    (version "1.5.0")
     (source
       (origin
         (method url-fetch)
@@ -53,7 +54,7 @@
                                   ".tar.gz")))
         (sha256
          (base32
-          "0z4cc42n3k6i35b8mr816iwsvrpxshw6d7dgz6s2h1hy0l7g1p5z"))))
+          "009ca4wn2q6xdmb0js0vz647cw5ygsqyyqc9svmjgahg7js441k7"))))
     (build-system gnu-build-system)
     (arguments
      `(#:configure-flags
@@ -61,13 +62,9 @@
               "--with-install-dir=" %output "/share/gprolog"))
        #:phases
        (modify-phases %standard-phases
-         (add-before 'configure 'change-dir-n-fix-shells
+         (add-before 'configure 'change-dir
            (lambda _
-             (chdir "src")
-             (substitute* "configure"
-               (("-/bin/sh")  (string-append "-"  (which "sh")))
-               (("= /bin/sh") (string-append "= " (which "sh"))))
-             #t)))))
+             (chdir "src"))))))
     (home-page "https://www.gnu.org/software/gprolog/";)
     (synopsis "Prolog compiler")
     (description



reply via email to

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