GNU bug report logs - #62350
[PATCH 0/2] Update python-numpy-next.

Previous Next

Package: guix-patches;

Reported by: Greg Hogan <code <at> greghogan.com>

Date: Tue, 21 Mar 2023 19:14:02 UTC

Severity: normal

Tags: patch

Done: Greg Hogan <code <at> greghogan.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 62350 in the body.
You can then email your comments to 62350 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#62350; Package guix-patches. (Tue, 21 Mar 2023 19:14:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Greg Hogan <code <at> greghogan.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Tue, 21 Mar 2023 19:14:02 GMT) Full text and rfc822 format available.

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

From: Greg Hogan <code <at> greghogan.com>
To: guix-patches <at> gnu.org
Cc: Greg Hogan <code <at> greghogan.com>
Subject: [PATCH 0/2] Update python-numpy-next.
Date: Tue, 21 Mar 2023 19:04:45 +0000
Greg Hogan (2):
  gnu: python-typing-extensions: Update to 4.5.0.
  gnu: python-numpy-next: Update to 1.24.2.

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

-- 
2.40.0





Information forwarded to guix-patches <at> gnu.org:
bug#62350; Package guix-patches. (Tue, 21 Mar 2023 19:21:02 GMT) Full text and rfc822 format available.

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

From: Greg Hogan <code <at> greghogan.com>
To: 62350 <at> debbugs.gnu.org
Cc: Greg Hogan <code <at> greghogan.com>
Subject: [PATCH 1/2] gnu: python-typing-extensions: Update to 4.5.0.
Date: Tue, 21 Mar 2023 19:20:24 +0000
See https://github.com/python/typing/tree/master/typing_extensions for
notice about repository change.

* gnu/packages/python-xyz.scm (python-typing-extensions): Update to 4.5.0.
[source]: Update repository URL.
[arguments](%standard-phases): Remove 'enter-source-directory'.
---
 gnu/packages/python-xyz.scm | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index ac10290237..e3778b0a44 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -22533,26 +22533,23 @@ (define-public python-typeguard
 (define-public python-typing-extensions
   (package
     (name "python-typing-extensions")
-    (version "4.0.1")
+    (version "4.5.0")
     (source (origin
               ;; The test script is missing from the PyPI archive.
               (method git-fetch)
               (uri (git-reference
-                    (url "https://github.com/python/typing")
+                    (url "https://github.com/python/typing_extensions")
                     (commit version)))
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "0a35fh5wk9s538x0w3dz95y0avnhd2srzyv9s1a372711n8hdl4p"))))
+                "1fymg0hirbmv51avwv17s426hi8bwg0pq8yjci1n7qzr2p3dp3my"))))
     (build-system python-build-system)
     (arguments
      (list
       #:tests? #f       ;requires Python's test module, not available in Guix
       #:phases
       #~(modify-phases %standard-phases
-          (add-after 'unpack 'enter-source-directory
-            (lambda _
-              (chdir "typing_extensions")))
           ;; XXX: PEP 517 manual build copied from python-isort.
           (replace 'build
             (lambda _
-- 
2.40.0





Information forwarded to guix-patches <at> gnu.org:
bug#62350; Package guix-patches. (Tue, 21 Mar 2023 19:21:02 GMT) Full text and rfc822 format available.

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

From: Greg Hogan <code <at> greghogan.com>
To: 62350 <at> debbugs.gnu.org
Cc: Greg Hogan <code <at> greghogan.com>
Subject: [PATCH 2/2] gnu: python-numpy-next: Update to 1.24.2.
Date: Tue, 21 Mar 2023 19:20:25 +0000
* gnu/packages/python-xyz.scm (python-numpy-next): Update to 1.24.2.
[native-inputs]: Add python-typing-extensions.
---
 gnu/packages/python-xyz.scm | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index e3778b0a44..79c68d4ee5 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -6304,7 +6304,7 @@ (define-public python-numpy-next
   (package
     (inherit python-numpy)
     (name "python-numpy-next")
-    (version "1.22.3")
+    (version "1.24.2")
     (source
      (origin
        (inherit (package-source python-numpy))
@@ -6314,7 +6314,10 @@ (define-public python-numpy-next
              version "/numpy-" version ".tar.gz"))
        (sha256
         (base32
-         "19dw91pqbqcniw2z57kiyqs1qp56g7kqy1bdyv664g8s62sc01m9"))))))
+         "08ibxgknpvn35wmgqjlwxwns96hb4bvimfkw2z6v43481r9ryfh0"))))
+      (native-inputs
+       (modify-inputs (package-native-inputs python-numpy)
+         (append python-typing-extensions)))))
 
 (define-public python-numpy-documentation
   (package
-- 
2.40.0





Reply sent to Greg Hogan <code <at> greghogan.com>:
You have taken responsibility. (Thu, 11 May 2023 20:56:02 GMT) Full text and rfc822 format available.

Notification sent to Greg Hogan <code <at> greghogan.com>:
bug acknowledged by developer. (Thu, 11 May 2023 20:56:02 GMT) Full text and rfc822 format available.

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

From: Greg Hogan <code <at> greghogan.com>
To: 62350-done <at> debbugs.gnu.org
Subject: Re: bug#62350: Acknowledgement ([PATCH 0/2] Update python-numpy-next.)
Date: Thu, 11 May 2023 16:54:48 -0400
python-typing-extensions has already been updated with a different
commit. Closing this issue as I will simply update python-numpy in my
manifest.




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

This bug report was last modified 315 days ago.

Previous Next


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