all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#33469] [PATCH 0/4] PETSc/SLEPc update
@ 2018-11-22 20:34 Paul Garlick
  2018-11-22 20:40 ` [bug#33469] [PATCH 1/4] gnu: petsc: Update to 3.10.2 Paul Garlick
  2018-11-23 19:28 ` bug#33469: [PATCH 0/4] PETSc/SLEPc update Marius Bakke
  0 siblings, 2 replies; 6+ messages in thread
From: Paul Garlick @ 2018-11-22 20:34 UTC (permalink / raw)
  To: 33469; +Cc: Paul Garlick

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

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

* [bug#33469] [PATCH 1/4] gnu: petsc: Update to 3.10.2
  2018-11-22 20:34 [bug#33469] [PATCH 0/4] PETSc/SLEPc update Paul Garlick
@ 2018-11-22 20:40 ` Paul Garlick
  2018-11-22 20:40   ` [bug#33469] [PATCH 2/4] gnu: slepc: Update to 3.10.1 Paul Garlick
                     ` (2 more replies)
  2018-11-23 19:28 ` bug#33469: [PATCH 0/4] PETSc/SLEPc update Marius Bakke
  1 sibling, 3 replies; 6+ messages in thread
From: Paul Garlick @ 2018-11-22 20:40 UTC (permalink / raw)
  To: 33469; +Cc: Paul Garlick

* 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

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

* [bug#33469] [PATCH 2/4] gnu: slepc: Update to 3.10.1.
  2018-11-22 20:40 ` [bug#33469] [PATCH 1/4] gnu: petsc: Update to 3.10.2 Paul Garlick
@ 2018-11-22 20:40   ` Paul Garlick
  2018-11-22 20:40   ` [bug#33469] [PATCH 3/4] gnu: python-petsc4py: Update to 3.10.0 Paul Garlick
  2018-11-22 20:40   ` [bug#33469] [PATCH 4/4] gnu: python-slepc4py: " Paul Garlick
  2 siblings, 0 replies; 6+ messages in thread
From: Paul Garlick @ 2018-11-22 20:40 UTC (permalink / raw)
  To: 33469; +Cc: Paul Garlick

* 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

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

* [bug#33469] [PATCH 3/4] gnu: python-petsc4py: Update to 3.10.0.
  2018-11-22 20:40 ` [bug#33469] [PATCH 1/4] gnu: petsc: Update to 3.10.2 Paul Garlick
  2018-11-22 20:40   ` [bug#33469] [PATCH 2/4] gnu: slepc: Update to 3.10.1 Paul Garlick
@ 2018-11-22 20:40   ` Paul Garlick
  2018-11-22 20:40   ` [bug#33469] [PATCH 4/4] gnu: python-slepc4py: " Paul Garlick
  2 siblings, 0 replies; 6+ messages in thread
From: Paul Garlick @ 2018-11-22 20:40 UTC (permalink / raw)
  To: 33469; +Cc: Paul Garlick

* 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

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

* [bug#33469] [PATCH 4/4] gnu: python-slepc4py: Update to 3.10.0.
  2018-11-22 20:40 ` [bug#33469] [PATCH 1/4] gnu: petsc: Update to 3.10.2 Paul Garlick
  2018-11-22 20:40   ` [bug#33469] [PATCH 2/4] gnu: slepc: Update to 3.10.1 Paul Garlick
  2018-11-22 20:40   ` [bug#33469] [PATCH 3/4] gnu: python-petsc4py: Update to 3.10.0 Paul Garlick
@ 2018-11-22 20:40   ` Paul Garlick
  2 siblings, 0 replies; 6+ messages in thread
From: Paul Garlick @ 2018-11-22 20:40 UTC (permalink / raw)
  To: 33469; +Cc: Paul Garlick

* 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

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

* bug#33469: [PATCH 0/4] PETSc/SLEPc update
  2018-11-22 20:34 [bug#33469] [PATCH 0/4] PETSc/SLEPc update Paul Garlick
  2018-11-22 20:40 ` [bug#33469] [PATCH 1/4] gnu: petsc: Update to 3.10.2 Paul Garlick
@ 2018-11-23 19:28 ` Marius Bakke
  1 sibling, 0 replies; 6+ messages in thread
From: Marius Bakke @ 2018-11-23 19:28 UTC (permalink / raw)
  To: Paul Garlick, 33469-done

[-- Attachment #1: Type: text/plain, Size: 605 bytes --]

Paul Garlick <pgarlick@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!

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

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

end of thread, other threads:[~2018-11-23 19:29 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-22 20:34 [bug#33469] [PATCH 0/4] PETSc/SLEPc update Paul Garlick
2018-11-22 20:40 ` [bug#33469] [PATCH 1/4] gnu: petsc: Update to 3.10.2 Paul Garlick
2018-11-22 20:40   ` [bug#33469] [PATCH 2/4] gnu: slepc: Update to 3.10.1 Paul Garlick
2018-11-22 20:40   ` [bug#33469] [PATCH 3/4] gnu: python-petsc4py: Update to 3.10.0 Paul Garlick
2018-11-22 20:40   ` [bug#33469] [PATCH 4/4] gnu: python-slepc4py: " Paul Garlick
2018-11-23 19:28 ` bug#33469: [PATCH 0/4] PETSc/SLEPc update Marius Bakke

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.