GNU bug report logs - #72146
[PATCH] gnu: python-imagesize: Update to 1.4.1.

Previous Next

Package: guix-patches;

Reported by: jgart <jgart <at> dismail.de>

Date: Wed, 17 Jul 2024 02:30:02 UTC

Severity: normal

Tags: patch

Done: Greg Hogan <code <at> greghogan.com>

To reply to this bug, email your comments to 72146 AT debbugs.gnu.org.
There is no need to reopen the bug first.

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

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


Report forwarded to lars <at> 6xq.net, marius <at> gnu.org, me <at> bonfacemunyoki.com, sharlatanus <at> gmail.com, tanguy <at> bioneland.org, jgart <at> dismail.de, guix-patches <at> gnu.org:
bug#72146; Package guix-patches. (Wed, 17 Jul 2024 02:30:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to jgart <jgart <at> dismail.de>:
New bug report received and forwarded. Copy sent to lars <at> 6xq.net, marius <at> gnu.org, me <at> bonfacemunyoki.com, sharlatanus <at> gmail.com, tanguy <at> bioneland.org, jgart <at> dismail.de, guix-patches <at> gnu.org. (Wed, 17 Jul 2024 02:30:02 GMT) Full text and rfc822 format available.

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

From: jgart <jgart <at> dismail.de>
To: guix-patches <at> gnu.org
Cc: jgart <jgart <at> dismail.de>
Subject: [PATCH] gnu: python-imagesize: Update to 1.4.1.
Date: Tue, 16 Jul 2024 21:27:41 -0500
* gnu/packages/python-xyz.scm (python-imagesize): Update to 1.4.1.
[build-system]: Use pyproject-build-system.
---
 gnu/packages/python-xyz.scm | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index c6cbb22684..350811d48d 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -23039,20 +23039,20 @@ (define-public python-pefile
 (define-public python-imagesize
   (package
     (name "python-imagesize")
-    (version "1.2.0")
+    (version "1.4.1")
     (source
-      (origin
-      (method url-fetch)
-      (uri (pypi-uri "imagesize" version))
-      (sha256
-       (base32
-        "1cd24x0vqbd6c8ym1n21qc0aj54mfb7rzdqglmwk9xxixajbbxmi"))))
-    (build-system python-build-system)
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "imagesize" version))
+       (sha256
+        (base32
+         "0jndjx26p8qibrx997p3kb6vfbqbdxkv74jsrkav177vmx2085b9"))))
+    (build-system pyproject-build-system)
     (home-page "https://github.com/shibukawa/imagesize_py")
     (synopsis "Gets image size of files in various formats in Python")
     (description
-      "This package allows determination of image size from
-     PNG, JPEG, JPEG2000 and GIF files in pure Python.")
+     "This package allows determination of image size from PNG, JPEG,
+JPEG2000 and GIF files in pure Python.")
     (license license:expat)))
 
 (define-public python-termstyle

base-commit: a800c49fb767f549fbc0eefe8dce6daa5da8604c
-- 
2.45.2





Reply sent to Greg Hogan <code <at> greghogan.com>:
You have taken responsibility. (Tue, 11 Mar 2025 16:23:02 GMT) Full text and rfc822 format available.

Notification sent to jgart <jgart <at> dismail.de>:
bug acknowledged by developer. (Tue, 11 Mar 2025 16:23:02 GMT) Full text and rfc822 format available.

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

From: Greg Hogan <code <at> greghogan.com>
To: jgart <jgart <at> dismail.de>
Cc: Sharlatan Hellseher <sharlatanus <at> gmail.com>,
 Munyoki Kilyungi <me <at> bonfacemunyoki.com>, Lars-Dominik Braun <lars <at> 6xq.net>,
 72146-done <at> debbugs.gnu.org, Marius Bakke <marius <at> gnu.org>,
 Tanguy Le Carrour <tanguy <at> bioneland.org>
Subject: Re: [bug#72146] [PATCH] gnu: python-imagesize: Update to 1.4.1.
Date: Tue, 11 Mar 2025 12:21:58 -0400
On Tue, Jul 16, 2024 at 10:30 PM jgart via Guix-patches via
<guix-patches <at> gnu.org> wrote:
>
> * gnu/packages/python-xyz.scm (python-imagesize): Update to 1.4.1.
> [build-system]: Use pyproject-build-system.
> ---
>  gnu/packages/python-xyz.scm | 20 ++++++++++----------
>  1 file changed, 10 insertions(+), 10 deletions(-)
>
> diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
> index c6cbb22684..350811d48d 100644
> --- a/gnu/packages/python-xyz.scm
> +++ b/gnu/packages/python-xyz.scm
> @@ -23039,20 +23039,20 @@ (define-public python-pefile
>  (define-public python-imagesize
>    (package
>      (name "python-imagesize")
> -    (version "1.2.0")
> +    (version "1.4.1")
>      (source
> -      (origin
> -      (method url-fetch)
> -      (uri (pypi-uri "imagesize" version))
> -      (sha256
> -       (base32
> -        "1cd24x0vqbd6c8ym1n21qc0aj54mfb7rzdqglmwk9xxixajbbxmi"))))
> -    (build-system python-build-system)
> +     (origin
> +       (method url-fetch)
> +       (uri (pypi-uri "imagesize" version))
> +       (sha256
> +        (base32
> +         "0jndjx26p8qibrx997p3kb6vfbqbdxkv74jsrkav177vmx2085b9"))))
> +    (build-system pyproject-build-system)
>      (home-page "https://github.com/shibukawa/imagesize_py")
>      (synopsis "Gets image size of files in various formats in Python")
>      (description
> -      "This package allows determination of image size from
> -     PNG, JPEG, JPEG2000 and GIF files in pure Python.")
> +     "This package allows determination of image size from PNG, JPEG,
> +JPEG2000 and GIF files in pure Python.")
>      (license license:expat)))
>
>  (define-public python-termstyle
>
> base-commit: a800c49fb767f549fbc0eefe8dce6daa5da8604c
> --
> 2.45.2

Looks identical to 49982bb455ad15814181172571826603151ff503. Closing.




This bug report was last modified 2 days ago.

Previous Next


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