unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#42238] gnu: metamath: Update to 0.183.
@ 2020-07-07  4:56 elaexuotee--- via Guix-patches via
  2020-07-07 12:04 ` Nicolas Goaziou
  2020-07-07 12:04 ` bug#42238: " Nicolas Goaziou
  0 siblings, 2 replies; 3+ messages in thread
From: elaexuotee--- via Guix-patches via @ 2020-07-07  4:56 UTC (permalink / raw)
  To: 42238


[-- Attachment #1.1: Type: text/plain, Size: 47 bytes --]

Upstream updated to 0.183 about a week ago.


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.2: 0001-gnu-metamath-Update-to-0.183.patch --]
[-- Type: text/x-patch, Size: 3214 bytes --]

From 5e7232c2a90ad302c0177bf008b6dd61b59f542e Mon Sep 17 00:00:00 2001
From: "B. Wilson" <elaexuotee@wilsonb.com>
Date: Tue, 7 Jul 2020 13:52:30 +0900
Subject: [PATCH] gnu: metamath: Update to 0.183.
To: guix-patches@gnu.org

* gnu/packages/maths.scm (metamath): Update to 0.183.
---
 gnu/packages/maths.scm | 48 ++++++++++++++++++------------------------
 1 file changed, 21 insertions(+), 27 deletions(-)

diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index 5ea505764a..dbc670178a 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -2411,32 +2411,26 @@ bindings to almost all functions of SLEPc.")
     (license license:bsd-3)))
 
 (define-public metamath
-  ;; Upstream pushed a commit on top of v0.182 that fixes a bug in Makefile.am.
-  ;; Using this commit lets us avoid directly including the patch here.  In the
-  ;; next version bump, we should be able to replace this and directly use the
-  ;; version tag.
-  (let ((commit "5df616efe4119ff88daf77e7041d45b6fa39c578")
-        (revision "0"))
-    (package
-      (name "metamath")
-      (version (git-version "0.182" revision commit))
-      (source
-       (origin
-         (method git-fetch)
-         (uri (git-reference
-               (url "https://github.com/metamath/metamath-exe.git")
-               (commit commit)))
-         (file-name (git-file-name name version))
-         (sha256
-          (base32 "0amjdgy42c7jypf6sz98iczlxcyl9bqx67ws1q8w2zdqk2izsyjp"))))
-      (build-system gnu-build-system)
-      (native-inputs
-       `(("autoconf" ,autoconf)
-         ("automake" ,automake)))
-      (home-page "http://us.metamath.org/")
-      (synopsis "Proof verifier based on a minimalistic formalism")
-      (description
-       "Metamath is a tiny formal language and that can express theorems in
+  (package
+    (name "metamath")
+    (version "0.183")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/metamath/metamath-exe.git")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1jjf4fy6j53i40dh0yv0f9sngnw4gs24cig99vsg3q0303pwrhg7"))))
+    (build-system gnu-build-system)
+    (native-inputs
+     `(("autoconf" ,autoconf)
+       ("automake" ,automake)))
+    (home-page "http://us.metamath.org/")
+    (synopsis "Proof verifier based on a minimalistic formalism")
+    (description
+     "Metamath is a tiny formal language and that can express theorems in
 abstract mathematics, with an accompyaning @command{metamath} executable that
 verifies databases of these proofs.  There is a public database,
 @url{https://github.com/metamath/set.mm, set.mm}, implementing first-order
@@ -2444,7 +2438,7 @@ logic and Zermelo-Frenkel set theory with Choice, along with a large swath of
 associated, high-level theorems, e.g.@: the fundamental theorem of arithmetic,
 the Cauchy-Schwarz inequality, Stirling's formula, etc.  See the Metamath
 book.")
-      (license license:gpl2+))))
+    (license license:gpl2+)))
 
 (define-public mumps
   (package
-- 
2.27.0


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 260 bytes --]

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

* [bug#42238] gnu: metamath: Update to 0.183.
  2020-07-07  4:56 [bug#42238] gnu: metamath: Update to 0.183 elaexuotee--- via Guix-patches via
@ 2020-07-07 12:04 ` Nicolas Goaziou
  2020-07-07 12:04 ` bug#42238: " Nicolas Goaziou
  1 sibling, 0 replies; 3+ messages in thread
From: Nicolas Goaziou @ 2020-07-07 12:04 UTC (permalink / raw)
  To: 42238; +Cc: elaexuotee

Hello,

elaexuotee--- via Guix-patches via <guix-patches@gnu.org> writes:

> * gnu/packages/maths.scm (metamath): Update to 0.183.

Applied. Thank you.

Regards,
-- 
Nicolas Goaziou




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

* bug#42238: gnu: metamath: Update to 0.183.
  2020-07-07  4:56 [bug#42238] gnu: metamath: Update to 0.183 elaexuotee--- via Guix-patches via
  2020-07-07 12:04 ` Nicolas Goaziou
@ 2020-07-07 12:04 ` Nicolas Goaziou
  1 sibling, 0 replies; 3+ messages in thread
From: Nicolas Goaziou @ 2020-07-07 12:04 UTC (permalink / raw)
  To: 42238-done

Applied. Closing.




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

end of thread, other threads:[~2020-07-07 12:05 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-07  4:56 [bug#42238] gnu: metamath: Update to 0.183 elaexuotee--- via Guix-patches via
2020-07-07 12:04 ` Nicolas Goaziou
2020-07-07 12:04 ` bug#42238: " Nicolas Goaziou

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).