GNU bug report logs - #33469
[PATCH 0/4] PETSc/SLEPc update

Previous Next

Package: guix-patches;

Reported by: Paul Garlick <pgarlick <at> tourbillion-technology.com>

Date: Thu, 22 Nov 2018 20:36:02 UTC

Severity: normal

Tags: patch

Done: Marius Bakke <mbakke <at> fastmail.com>

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 33469 in the body.
You can then email your comments to 33469 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#33469; Package guix-patches. (Thu, 22 Nov 2018 20:36:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Paul Garlick <pgarlick <at> tourbillion-technology.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Thu, 22 Nov 2018 20:36:02 GMT) Full text and rfc822 format available.

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

From: Paul Garlick <pgarlick <at> tourbillion-technology.com>
To: guix-patches <at> gnu.org
Cc: Paul Garlick <pgarlick <at> tourbillion-technology.com>
Subject: [PATCH 0/4] PETSc/SLEPc update
Date: Thu, 22 Nov 2018 20:34:21 +0000
Hi Guix,

This patch series updates PETSc, SLEPc, python-petsc4py and python-slepc4py.
The python packages need to keep in sync with the main packages such that
the version numbers 'major.minor' are the same.

For example, python-petsc4py version 3.10.x matches petsc version 3.10.y.

Best regards,

Paul.

Paul Garlick (4):
  gnu: petsc: Update to 3.10.2
  gnu: slepc: Update to 3.10.1.
  gnu: python-petsc4py: Update to 3.10.0.
  gnu: python-slepc4py: Update to 3.10.0.

 gnu/packages/maths.scm | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

-- 
1.8.3.1





Information forwarded to guix-patches <at> gnu.org:
bug#33469; Package guix-patches. (Thu, 22 Nov 2018 20:41:02 GMT) Full text and rfc822 format available.

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

From: Paul Garlick <pgarlick <at> tourbillion-technology.com>
To: 33469 <at> debbugs.gnu.org
Cc: Paul Garlick <pgarlick <at> tourbillion-technology.com>
Subject: [PATCH 1/4] gnu: petsc: Update to 3.10.2
Date: Thu, 22 Nov 2018 20:40:07 +0000
* gnu/packages/maths.scm (petsc): Update to 3.10.2.
---
 gnu/packages/maths.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index cc4635b..b4cbcab 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -1655,7 +1655,7 @@ September 2004}")
 (define-public petsc
   (package
     (name "petsc")
-    (version "3.9.3")
+    (version "3.10.2")
     (source
      (origin
       (method url-fetch)
@@ -1663,7 +1663,7 @@ September 2004}")
       (uri (string-append "http://ftp.mcs.anl.gov/pub/petsc/release-snapshots/"
                           "petsc-lite-" version ".tar.gz"))
       (sha256
-       (base32 "1fwkbwv4g7zf2lc8fw865xd0bl9anb6jaczfis5dff7h449gwa48"))))
+       (base32 "0bl64pydak3rblnjffi482r8bin4xim9sb37ksl2jkcxf0i0irsi"))))
     (outputs '("out"                    ;libraries and headers
                "examples"))             ;~30MiB of examples
     (build-system gnu-build-system)
-- 
1.8.3.1





Information forwarded to guix-patches <at> gnu.org:
bug#33469; Package guix-patches. (Thu, 22 Nov 2018 20:42:01 GMT) Full text and rfc822 format available.

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

From: Paul Garlick <pgarlick <at> tourbillion-technology.com>
To: 33469 <at> debbugs.gnu.org
Cc: Paul Garlick <pgarlick <at> tourbillion-technology.com>
Subject: [PATCH 2/4] gnu: slepc: Update to 3.10.1.
Date: Thu, 22 Nov 2018 20:40:08 +0000
* gnu/packages/maths.scm (slepc): Update to 3.10.1.
---
 gnu/packages/maths.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index b4cbcab..6053d76 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -1871,7 +1871,7 @@ savings are consistently > 5x.")
 (define-public slepc
   (package
     (name "slepc")
-    (version "3.9.2")
+    (version "3.10.1")
     (source
      (origin
        (method url-fetch)
@@ -1879,7 +1879,7 @@ savings are consistently > 5x.")
                            version ".tar.gz"))
        (sha256
         (base32
-         "0gmhdqac8zm3jx43h935z7bflazjnpvqxjv4jh5za2y1z2rqax94"))))
+         "188j1a133q91h8pivpnzwcf78kz8dvz2nzf6ndnjygdbqb48fizn"))))
     (build-system gnu-build-system)
     (native-inputs
      `(("python" ,python-2)))
-- 
1.8.3.1





Information forwarded to guix-patches <at> gnu.org:
bug#33469; Package guix-patches. (Thu, 22 Nov 2018 20:42:02 GMT) Full text and rfc822 format available.

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

From: Paul Garlick <pgarlick <at> tourbillion-technology.com>
To: 33469 <at> debbugs.gnu.org
Cc: Paul Garlick <pgarlick <at> tourbillion-technology.com>
Subject: [PATCH 3/4] gnu: python-petsc4py: Update to 3.10.0.
Date: Thu, 22 Nov 2018 20:40:09 +0000
* gnu/packages/maths.scm (python-petsc4py): Update to 3.10.0.
---
 gnu/packages/maths.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index 6053d76..12d2e63 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -1812,14 +1812,14 @@ scientific applications modeled by partial differential equations.")
 (define-public python-petsc4py
   (package
     (name "python-petsc4py")
-    (version "3.9.1")
+    (version "3.10.0")
     (source
       (origin
         (method url-fetch)
         (uri (pypi-uri "petsc4py" version))
         (sha256
           (base32
-            "1f8zd1ac9irsgkyqmzq30d9kl10fy1nh6zk312dhs43g449fkkhc"))))
+            "0ch3g6dsvxl7qi984fcssv7cxfbif4bw04gkvxl2l1b8wrmvrm25"))))
     (build-system python-build-system)
     (arguments
      `(#:phases
-- 
1.8.3.1





Information forwarded to guix-patches <at> gnu.org:
bug#33469; Package guix-patches. (Thu, 22 Nov 2018 20:42:02 GMT) Full text and rfc822 format available.

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

From: Paul Garlick <pgarlick <at> tourbillion-technology.com>
To: 33469 <at> debbugs.gnu.org
Cc: Paul Garlick <pgarlick <at> tourbillion-technology.com>
Subject: [PATCH 4/4] gnu: python-slepc4py: Update to 3.10.0.
Date: Thu, 22 Nov 2018 20:40:10 +0000
* gnu/packages/maths.scm (python-slepc4py): Update to 3.10.0.
---
 gnu/packages/maths.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index 12d2e63..0cf8916 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -1978,14 +1978,14 @@ arising after the discretization of partial differential equations.")
 (define-public python-slepc4py
   (package
     (name "python-slepc4py")
-    (version "3.9.0")
+    (version "3.10.0")
     (source
       (origin
         (method url-fetch)
         (uri (pypi-uri "slepc4py" version))
         (sha256
           (base32
-            "02xr0vndgibgkz3rgprqk05n3mk5mpgqw550sr4681vcsgz4zvb7"))))
+            "0x049dyc8frgh79fvvavf4vlbqp4mgm61nsaivzdav4316vvlv1j"))))
     (build-system python-build-system)
     (arguments
      `(#:phases
-- 
1.8.3.1





Reply sent to Marius Bakke <mbakke <at> fastmail.com>:
You have taken responsibility. (Fri, 23 Nov 2018 19:29:02 GMT) Full text and rfc822 format available.

Notification sent to Paul Garlick <pgarlick <at> tourbillion-technology.com>:
bug acknowledged by developer. (Fri, 23 Nov 2018 19:29:02 GMT) Full text and rfc822 format available.

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

From: Marius Bakke <mbakke <at> fastmail.com>
To: Paul Garlick <pgarlick <at> tourbillion-technology.com>,
 33469-done <at> debbugs.gnu.org
Cc: Paul Garlick <pgarlick <at> tourbillion-technology.com>
Subject: Re: [bug#33469] [PATCH 0/4] PETSc/SLEPc update
Date: Fri, 23 Nov 2018 20:28:47 +0100
[Message part 1 (text/plain, inline)]
Paul Garlick <pgarlick <at> tourbillion-technology.com> writes:

> Hi Guix,
>
> This patch series updates PETSc, SLEPc, python-petsc4py and python-slepc4py.
> The python packages need to keep in sync with the main packages such that
> the version numbers 'major.minor' are the same.
>
> For example, python-petsc4py version 3.10.x matches petsc version 3.10.y.
>
> Best regards,
>
> Paul.
>
> Paul Garlick (4):
>   gnu: petsc: Update to 3.10.2
>   gnu: slepc: Update to 3.10.1.
>   gnu: python-petsc4py: Update to 3.10.0.
>   gnu: python-slepc4py: Update to 3.10.0.

Pushed as dc240b6aa..57d30004e, thank you!
[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. (Sat, 22 Dec 2018 12:24:06 GMT) Full text and rfc822 format available.

This bug report was last modified 5 years and 118 days ago.

Previous Next


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