unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#67315] [PATCH 1/2] gnu: lean: Use G-expressions.
@ 2023-11-21  3:54 Zhu Zihao
  2023-11-21  4:48 ` [bug#67315] [PATCH 2/2] gnu: lean: Update to 3.51.1 Zhu Zihao
  2023-12-11 22:49 ` bug#67315: [PATCH 1/2] gnu: lean: Use G-expressions Ludovic Courtès
  0 siblings, 2 replies; 3+ messages in thread
From: Zhu Zihao @ 2023-11-21  3:54 UTC (permalink / raw)
  To: 67315; +Cc: Zhu Zihao

* gnu/packages/lean.scm (lean)[arguments]: Use G-expressions.
---
 gnu/packages/lean.scm | 49 +++++++++++++++++++++++--------------------
 1 file changed, 26 insertions(+), 23 deletions(-)

diff --git a/gnu/packages/lean.scm b/gnu/packages/lean.scm
index 12c1849cdb..a8ad085d7e 100644
--- a/gnu/packages/lean.scm
+++ b/gnu/packages/lean.scm
@@ -3,6 +3,7 @@
 ;;; Copyright © 2020 Brett Gilio <brettg@gnu.org>
 ;;; Copyright © 2020 Tobias Geerinckx-Rice <me@tobias.gr>
 ;;; Copyright © 2022 Pradana Aumars <paumars@courrier.dev>
+;;; Copyright © 2023 Zhu Zihao <all_but_last@163.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -25,6 +26,7 @@ (define-module (gnu packages lean)
   #:use-module (guix build-system cmake)
   #:use-module (guix build-system python)
   #:use-module ((guix licenses) #:prefix license:)
+  #:use-module (guix gexp)
   #:use-module (guix packages)
   #:use-module (guix git-download)
   #:use-module (guix download)
@@ -52,29 +54,30 @@ (define-public lean
     (inputs
      (list bash-minimal gmp))
     (arguments
-     `(#:build-type "Release"           ; default upstream build type
-       ;; XXX: Test phases currently fail on 32-bit sytems.
-       ;; Tests for those architectures have been temporarily
-       ;; disabled, pending further investigation.
-       #:tests? ,(and (not (%current-target-system))
-                      (let ((arch (%current-system)))
-                        (not (or (string-prefix? "i686" arch)
-                                 (string-prefix? "armhf" arch)))))
-       #:phases
-       (modify-phases %standard-phases
-         (add-after 'patch-source-shebangs 'patch-tests-shebangs
-           (lambda _
-             (let ((sh (which "sh"))
-                   (bash (which "bash")))
-               (substitute* (find-files "tests/lean" "\\.sh$")
-                 (("#![[:blank:]]?/bin/sh")
-                  (string-append "#!" sh))
-                 (("#![[:blank:]]?/bin/bash")
-                  (string-append "#!" bash))
-                 (("#![[:blank:]]?usr/bin/env bash")
-                  (string-append "#!" bash))))))
-         (add-before 'configure 'chdir-to-src
-           (lambda _ (chdir "src"))))))
+     (list
+      #:build-type "Release"            ; default upstream build type
+      ;; XXX: Test phases currently fail on 32-bit sytems.
+      ;; Tests for those architectures have been temporarily
+      ;; disabled, pending further investigation.
+      #:tests? (and (not (%current-target-system))
+                    (let ((arch (%current-system)))
+                      (not (or (string-prefix? "i686" arch)
+                               (string-prefix? "armhf" arch)))))
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-after 'patch-source-shebangs 'patch-tests-shebangs
+            (lambda _
+              (let ((sh (which "sh"))
+                    (bash (which "bash")))
+                (substitute* (find-files "tests/lean" "\\.sh$")
+                  (("#![[:blank:]]?/bin/sh")
+                   (string-append "#!" sh))
+                  (("#![[:blank:]]?/bin/bash")
+                   (string-append "#!" bash))
+                  (("#![[:blank:]]?usr/bin/env bash")
+                   (string-append "#!" bash))))))
+          (add-before 'configure 'chdir-to-src
+            (lambda _ (chdir "src"))))))
     (synopsis "Theorem prover and programming language")
     (description
      "Lean is a theorem prover and programming language with a small trusted

base-commit: d20ece07dbb09382f361c8bbf0bcab9e83d8b73e
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [bug#67315] [PATCH 2/2] gnu: lean: Update to 3.51.1.
  2023-11-21  3:54 [bug#67315] [PATCH 1/2] gnu: lean: Use G-expressions Zhu Zihao
@ 2023-11-21  4:48 ` Zhu Zihao
  2023-12-11 22:49 ` bug#67315: [PATCH 1/2] gnu: lean: Use G-expressions Ludovic Courtès
  1 sibling, 0 replies; 3+ messages in thread
From: Zhu Zihao @ 2023-11-21  4:48 UTC (permalink / raw)
  To: 67315; +Cc: Zhu Zihao

* gnu/packages/lean.scm (lean): Update to 3.51.1.
[home-page]: Use new home page.
[arguments]<#:phases>: Remove stale phase 'patch-tests-shebangs'.
[inputs]: Remove bash-minimal.

Change-Id: Ib90a124b4a6b06fb30223ad4b9254249e56dd086
---
 gnu/packages/lean.scm | 24 +++++++-----------------
 1 file changed, 7 insertions(+), 17 deletions(-)

diff --git a/gnu/packages/lean.scm b/gnu/packages/lean.scm
index a8ad085d7e..1533200426 100644
--- a/gnu/packages/lean.scm
+++ b/gnu/packages/lean.scm
@@ -40,19 +40,20 @@ (define-module (gnu packages lean)
 (define-public lean
   (package
     (name "lean")
-    (version "3.41.0")
-    (home-page "https://github.com/leanprover-community/lean")
+    (version "3.51.1")
+    (home-page "https://lean-lang.org" )
     (source (origin
               (method git-fetch)
-              (uri (git-reference (url home-page)
-                                  (commit (string-append "v" version))))
+              (uri (git-reference
+                    (url "https://github.com/leanprover-community/lean")
+                    (commit (string-append "v" version))))
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "0mpxlfjq460x1vi3v6qzgjv74asg0qlhykd51pj347795x5b1hf1"))))
+                "17g4d3lqnbl1yfy2pjannf73v8qhc5003d2jkmrqiy05zkqs8d9n"))))
     (build-system cmake-build-system)
     (inputs
-     (list bash-minimal gmp))
+     (list gmp))
     (arguments
      (list
       #:build-type "Release"            ; default upstream build type
@@ -65,17 +66,6 @@ (define-public lean
                                (string-prefix? "armhf" arch)))))
       #:phases
       #~(modify-phases %standard-phases
-          (add-after 'patch-source-shebangs 'patch-tests-shebangs
-            (lambda _
-              (let ((sh (which "sh"))
-                    (bash (which "bash")))
-                (substitute* (find-files "tests/lean" "\\.sh$")
-                  (("#![[:blank:]]?/bin/sh")
-                   (string-append "#!" sh))
-                  (("#![[:blank:]]?/bin/bash")
-                   (string-append "#!" bash))
-                  (("#![[:blank:]]?usr/bin/env bash")
-                   (string-append "#!" bash))))))
           (add-before 'configure 'chdir-to-src
             (lambda _ (chdir "src"))))))
     (synopsis "Theorem prover and programming language")
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 3+ messages in thread

* bug#67315: [PATCH 1/2] gnu: lean: Use G-expressions.
  2023-11-21  3:54 [bug#67315] [PATCH 1/2] gnu: lean: Use G-expressions Zhu Zihao
  2023-11-21  4:48 ` [bug#67315] [PATCH 2/2] gnu: lean: Update to 3.51.1 Zhu Zihao
@ 2023-12-11 22:49 ` Ludovic Courtès
  1 sibling, 0 replies; 3+ messages in thread
From: Ludovic Courtès @ 2023-12-11 22:49 UTC (permalink / raw)
  To: Zhu Zihao; +Cc: 67315-done

Hi,

Zhu Zihao <all_but_last@163.com> skribis:

> * gnu/packages/lean.scm (lean)[arguments]: Use G-expressions.

[...]

> * gnu/packages/lean.scm (lean): Update to 3.51.1.
> [home-page]: Use new home page.
> [arguments]<#:phases>: Remove stale phase 'patch-tests-shebangs'.
> [inputs]: Remove bash-minimal.
>
> Change-Id: Ib90a124b4a6b06fb30223ad4b9254249e56dd086

Applied, thanks!

Ludo’.




^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-12-11 22:51 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-11-21  3:54 [bug#67315] [PATCH 1/2] gnu: lean: Use G-expressions Zhu Zihao
2023-11-21  4:48 ` [bug#67315] [PATCH 2/2] gnu: lean: Update to 3.51.1 Zhu Zihao
2023-12-11 22:49 ` bug#67315: [PATCH 1/2] gnu: lean: Use G-expressions Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).