GNU bug report logs - #56564
[PATCH 1/3] gnu: gmsh: Remove input labels.

Previous Next

Package: guix-patches;

Reported by: "Paul A. Patience" <paul <at> apatience.com>

Date: Thu, 14 Jul 2022 19:49:02 UTC

Severity: normal

Tags: patch

Done: Christopher Baines <mail <at> cbaines.net>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 56564 in the body.
You can then email your comments to 56564 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#56564; Package guix-patches. (Thu, 14 Jul 2022 19:49:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to "Paul A. Patience" <paul <at> apatience.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Thu, 14 Jul 2022 19:49:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: "Paul A. Patience" <paul <at> apatience.com>
To: guix-patches <at> gnu.org
Cc: "Paul A. Patience" <paul <at> apatience.com>
Subject: [PATCH 1/3] gnu: gmsh: Remove input labels.
Date: Thu, 14 Jul 2022 19:47:55 +0000
* gnu/packages/maths.scm (gmsh)[inputs]: Remove labels.
---
 gnu/packages/maths.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index 83a04f7301..18fcf4d99b 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -2984,9 +2984,9 @@ (define-public gmsh
            metis
            opencascade-occt))
     (inputs
-     `(("fontconfig" ,fontconfig)
-       ("libxft" ,libxft)
-       ("python" ,python)))
+     (list fontconfig
+           libxft
+           python))
     (arguments
      `(#:configure-flags `("-DENABLE_SYSTEM_CONTRIB:BOOL=ON"
                            "-DENABLE_BUILD_SHARED:BOOL=ON"
--
2.37.0






Information forwarded to guix-patches <at> gnu.org:
bug#56564; Package guix-patches. (Thu, 14 Jul 2022 19:51:01 GMT) Full text and rfc822 format available.

Message #8 received at 56564 <at> debbugs.gnu.org (full text, mbox):

From: "Paul A. Patience" <paul <at> apatience.com>
To: 56564 <at> debbugs.gnu.org
Cc: "Paul A. Patience" <paul <at> apatience.com>
Subject: [PATCH 2/3] gnu: gmsh: Remove trailing booleans.
Date: Thu, 14 Jul 2022 19:50:29 +0000
* gnu/packages/maths.scm (gmsh)[snippet, arguments]: Remove trailing
booleans.
---
 gnu/packages/maths.scm | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index 18fcf4d99b..b3fe262204 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -2967,9 +2967,7 @@ (define-public gmsh
        (base32 "0asd9p64ng5l2zk5glc33x3ynnvdpndlflg3q9mr0jxr7y9x0lrm"))
       (modules '((guix build utils)))
       (snippet
-       '(begin
-          (delete-file-recursively "contrib/metis")
-          #t))))
+       '(delete-file-recursively "contrib/metis"))))
     (build-system cmake-build-system)
     (propagated-inputs
      (list fltk
@@ -3014,8 +3012,7 @@ (define-public gmsh
                                            "/lib/libgmsh.so")))
                (substitute* "api/gmsh.py"
                  (("find_library\\(\"gmsh\"\\)")
-                  (simple-format #f "\"~a\"" libgmsh))))
-             #t)))))
+                  (simple-format #f "\"~a\"" libgmsh)))))))))
     (home-page "http://gmsh.info/")
     (synopsis "3D finite element grid generator")
     (description "Gmsh is a 3D finite element grid generator with a built-in
--
2.37.0






Information forwarded to guix-patches <at> gnu.org:
bug#56564; Package guix-patches. (Thu, 14 Jul 2022 19:51:02 GMT) Full text and rfc822 format available.

Message #11 received at 56564 <at> debbugs.gnu.org (full text, mbox):

From: "Paul A. Patience" <paul <at> apatience.com>
To: 56564 <at> debbugs.gnu.org
Cc: "Paul A. Patience" <paul <at> apatience.com>
Subject: [PATCH 3/3] gnu: gmsh: Update to 4.10.5.
Date: Thu, 14 Jul 2022 19:50:37 +0000
* gnu/packages/maths.scm (gmsh): Update to 4.10.5.
[source]: Reindent.
---
 gnu/packages/maths.scm | 26 +++++++++++++-------------
 1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index b3fe262204..6a84f47468 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -2953,21 +2953,21 @@ (define-public opencascade-occt
 (define-public gmsh
   (package
     (name "gmsh")
-    (version "4.9.5")
+    (version "4.10.5")
     (source
      (origin
-      (method git-fetch)
-      (uri (git-reference
-            (url "https://gitlab.onelab.info/gmsh/gmsh.git")
-            (commit
-             (string-append "gmsh_"
-                            (string-replace-substring version "." "_")))))
-      (file-name (git-file-name name version))
-      (sha256
-       (base32 "0asd9p64ng5l2zk5glc33x3ynnvdpndlflg3q9mr0jxr7y9x0lrm"))
-      (modules '((guix build utils)))
-      (snippet
-       '(delete-file-recursively "contrib/metis"))))
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://gitlab.onelab.info/gmsh/gmsh.git")
+             (commit
+              (string-append "gmsh_"
+                             (string-replace-substring version "." "_")))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "08p39yjgf3lbnjg90skpmsq9n1a9pmwppdmy5s94dc6sq2nfr7xl"))
+       (modules '((guix build utils)))
+       (snippet
+        '(delete-file-recursively "contrib/metis"))))
     (build-system cmake-build-system)
     (propagated-inputs
      (list fltk
--
2.37.0






Reply sent to Christopher Baines <mail <at> cbaines.net>:
You have taken responsibility. (Fri, 15 Jul 2022 09:10:02 GMT) Full text and rfc822 format available.

Notification sent to "Paul A. Patience" <paul <at> apatience.com>:
bug acknowledged by developer. (Fri, 15 Jul 2022 09:10:02 GMT) Full text and rfc822 format available.

Message #16 received at 56564-done <at> debbugs.gnu.org (full text, mbox):

From: Christopher Baines <mail <at> cbaines.net>
To: "Paul A. Patience" <paul <at> apatience.com>
Cc: 56564-done <at> debbugs.gnu.org
Subject: Re: [bug#56564] [PATCH 3/3] gnu: gmsh: Update to 4.10.5.
Date: Fri, 15 Jul 2022 10:08:35 +0100
[Message part 1 (text/plain, inline)]
"Paul A. Patience" <paul <at> apatience.com> writes:

> * gnu/packages/maths.scm (gmsh): Update to 4.10.5.
> [source]: Reindent.
> ---
>  gnu/packages/maths.scm | 26 +++++++++++++-------------
>  1 file changed, 13 insertions(+), 13 deletions(-)

Thanks Paul, I've pushed this patch series as
a15b769c2f81034884ef0ae7fa8c1cea8df45c56.

Chris
[signature.asc (application/pgp-signature, inline)]

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Fri, 12 Aug 2022 11:24:08 GMT) Full text and rfc822 format available.

This bug report was last modified 2 years and 310 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.