GNU bug report logs - #64181
[PATCH] gnu: mmg: Update to 5.7.1.

Previous Next

Package: guix-patches;

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

Date: Tue, 20 Jun 2023 01:42: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 64181 in the body.
You can then email your comments to 64181 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#64181; Package guix-patches. (Tue, 20 Jun 2023 01:42: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. (Tue, 20 Jun 2023 01:42: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] gnu: mmg: Update to 5.7.1.
Date: Tue, 20 Jun 2023 01:40:51 +0000
* gnu/packages/graphics.scm (mmg): Update to 5.7.1.
[arguments]<#:configure-flags>: Set -DCMAKE_INSTALL_MANDIR. Add
-DBUILD_DOC=ON and -DUSE_SCOTCH=ON, the defaults of which changed since
the last version. Scotch is still autodetected, but explicitly enabling
it causes the configuration to fail if it is not found.
<#:phases>: Do not copy the manual pages, because the build now does it.
---
 gnu/packages/graphics.scm | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm
index 3a65b96919..2a7a86d9a0 100644
--- a/gnu/packages/graphics.scm
+++ b/gnu/packages/graphics.scm
@@ -2395,7 +2395,7 @@ (define-public discregrid
 (define-public mmg
   (package
     (name "mmg")
-    (version "5.6.0")
+    (version "5.7.1")
     (source
      (origin
        (method git-fetch)
@@ -2404,7 +2404,7 @@ (define-public mmg
              (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "173biz5skbwg27i5w6layg7mydjzv3rmi1ywhra4rx9rjf5c0cc5"))))
+        (base32 "0skb7yzsw6y44zp9gb729i5xks7qd97nvn3z6jhz4jksqksx7lz0"))))
     (build-system cmake-build-system)
     (outputs '("out" "lib" "doc"))
     (arguments
@@ -2414,11 +2414,14 @@ (define-public mmg
                    ;; The build doesn't honor -DCMAKE_INSTALL_BINDIR, hence
                    ;; the adjust-bindir phase.
                    ;;(string-append "-DCMAKE_INSTALL_BINDIR=" #$output "/bin")
+                   (string-append "-DCMAKE_INSTALL_MANDIR=" #$output "/share/man")
                    "-DBUILD_SHARED_LIBS=ON"
+                   "-DBUILD_DOC=ON"
                    "-DBUILD_TESTING=ON"
                    ;; The longer tests are for continuous integration and
                    ;; depend on input data which must be downloaded.
                    "-DONLY_VERY_SHORT_TESTS=ON"
+                   "-DUSE_SCOTCH=ON"
                    ;; TODO: Add Elas (from
                    ;; https://github.com/ISCDtoolbox/LinearElasticity).
                    "-DUSE_ELAS=OFF"
@@ -2443,9 +2446,6 @@ (define-public mmg
                    (invoke "make" "doc")))
                (add-after 'install 'install-doc
                  (lambda _
-                   (copy-recursively
-                    "../source/doc/man" (string-append #$output
-                                                       "/share/man/man1"))
                    (copy-recursively
                     "doc" (string-append #$output:doc "/share/doc/"
                                          #$name "-" #$version))))

base-commit: d884fc9e2efecfba09af4694f5a13ad7fc6f704f
prerequisite-patch-id: 52027b181c066ac91bc56fc0af511a34f3516651
-- 
2.40.1






Information forwarded to guix-patches <at> gnu.org:
bug#64181; Package guix-patches. (Tue, 20 Jun 2023 14:21:01 GMT) Full text and rfc822 format available.

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

From: "Paul A. Patience" <paul <at> apatience.com>
To: "64181 <at> debbugs.gnu.org" <64181 <at> debbugs.gnu.org>
Subject: Re: [PATCH] gnu: mmg: Update to 5.7.1.
Date: Tue, 20 Jun 2023 14:19:48 +0000
Sorry, I didn't realize the prerequisite-patch-id field was being added to the patch.
Please disregard it, it is unnecessary.

On Monday, June 19th, 2023 at 9:40 PM, Paul A. Patience <paul <at> apatience.com> wrote:
> base-commit: d884fc9e2efecfba09af4694f5a13ad7fc6f704f
> prerequisite-patch-id: 52027b181c066ac91bc56fc0af511a34f3516651

Best regards,
Paul





Information forwarded to guix-patches <at> gnu.org:
bug#64181; Package guix-patches. (Sun, 25 Jun 2023 21:00:02 GMT) Full text and rfc822 format available.

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

From: Ludovic Courtès <ludovic.courtes <at> inria.fr>
To: "Paul A. Patience" <paul <at> apatience.com>
Cc: 64181 <at> debbugs.gnu.org
Subject: Re: bug#64181: [PATCH] gnu: mmg: Update to 5.7.1.
Date: Sun, 25 Jun 2023 22:59:24 +0200
Hi Paul,

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

> * gnu/packages/graphics.scm (mmg): Update to 5.7.1.
> [arguments]<#:configure-flags>: Set -DCMAKE_INSTALL_MANDIR. Add
> -DBUILD_DOC=ON and -DUSE_SCOTCH=ON, the defaults of which changed since
> the last version. Scotch is still autodetected, but explicitly enabling
> it causes the configuration to fail if it is not found.
> <#:phases>: Do not copy the manual pages, because the build now does it.

Applied, thanks!

Ludo’.




Reply sent to Christopher Baines <mail <at> cbaines.net>:
You have taken responsibility. (Mon, 26 Jun 2023 08:55:02 GMT) Full text and rfc822 format available.

Notification sent to "Paul A. Patience" <paul <at> apatience.com>:
bug acknowledged by developer. (Mon, 26 Jun 2023 08:55:03 GMT) Full text and rfc822 format available.

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

From: Christopher Baines <mail <at> cbaines.net>
To: 64181-done <at> debbugs.gnu.org
Subject: Re: [bug#64181] [PATCH] gnu: mmg: Update to 5.7.1.
Date: Mon, 26 Jun 2023 09:53:52 +0100
[Message part 1 (text/plain, inline)]
Ludovic Courtès <ludovic.courtes <at> inria.fr> writes:

> Hi Paul,
>
> "Paul A. Patience" <paul <at> apatience.com> skribis:
>
>> * gnu/packages/graphics.scm (mmg): Update to 5.7.1.
>> [arguments]<#:configure-flags>: Set -DCMAKE_INSTALL_MANDIR. Add
>> -DBUILD_DOC=ON and -DUSE_SCOTCH=ON, the defaults of which changed since
>> the last version. Scotch is still autodetected, but explicitly enabling
>> it causes the configuration to fail if it is not found.
>> <#:phases>: Do not copy the manual pages, because the build now does it.
>
> Applied, thanks!

Marking as done.
[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. (Mon, 24 Jul 2023 11:24:12 GMT) Full text and rfc822 format available.

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

Previous Next


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