GNU bug report logs - #70080
[PATCH 0/2] Update libheif

Previous Next

Package: guix-patches;

Reported by: Vinicius Monego <monego <at> posteo.net>

Date: Fri, 29 Mar 2024 17:30:02 UTC

Severity: normal

Tags: patch

Done: Vinicius Monego <monego <at> posteo.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 70080 in the body.
You can then email your comments to 70080 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#70080; Package guix-patches. (Fri, 29 Mar 2024 17:30:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Vinicius Monego <monego <at> posteo.net>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Fri, 29 Mar 2024 17:30:02 GMT) Full text and rfc822 format available.

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

From: Vinicius Monego <monego <at> posteo.net>
To: guix-patches <at> gnu.org
Cc: Vinicius Monego <monego <at> posteo.net>
Subject: [PATCH 0/2] Update libheif
Date: Fri, 29 Mar 2024 17:29:01 +0000
Vinicius Monego (2):
  gnu: libheif: Update to 1.17.6.
  gnu: libheif: Enable tests.

 gnu/packages/image.scm | 14 ++++++--------
 1 file changed, 6 insertions(+), 8 deletions(-)


base-commit: 232796ce60288b877d6908de06c02b4861cd53bf
-- 
2.39.2





Information forwarded to guix-patches <at> gnu.org:
bug#70080; Package guix-patches. (Fri, 29 Mar 2024 17:32:02 GMT) Full text and rfc822 format available.

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

From: Vinicius Monego <monego <at> posteo.net>
To: 70080 <at> debbugs.gnu.org
Cc: Vinicius Monego <monego <at> posteo.net>
Subject: [PATCH 1/2] gnu: libheif: Update to 1.17.6.
Date: Fri, 29 Mar 2024 17:30:28 +0000
* gnu/packages/image.scm (libheif): Update to 1.17.6.
[inputs]: Use package labels.

Change-Id: I8de9374ea0a93eb7e80734992362821da1fb0621
---
 gnu/packages/image.scm | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm
index 6accf68ef0..8fb752b586 100644
--- a/gnu/packages/image.scm
+++ b/gnu/packages/image.scm
@@ -28,7 +28,7 @@
 ;;; Copyright © 2020, 2023 Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
 ;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <janneke <at> gnu.org>
 ;;; Copyright © 2020 Zhu Zihao <all_but_last <at> 163.com>
-;;; Copyright © 2020, 2021, 2022, 2023 Vinicius Monego <monego <at> posteo.net>
+;;; Copyright © 2020, 2021, 2022, 2023, 2024 Vinicius Monego <monego <at> posteo.net>
 ;;; Copyright © 2021 Sharlatan Hellseher <sharlatanus <at> gmail.com>
 ;;; Copyright © 2021 Nicolò Balzarotti <nicolo <at> nixo.xyz>
 ;;; Copyright © 2021 Alexandr Vityazev <avityazev <at> posteo.org>
@@ -2547,7 +2547,7 @@ (define-public libavif
 (define-public libheif
   (package
     (name "libheif")
-    (version "1.12.0")
+    (version "1.17.6")
     (source
      (origin
        (method git-fetch)
@@ -2556,16 +2556,16 @@ (define-public libheif
              (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "0cp2d216hp7gw3n56x3g5q5n8jb9ganyanrlibxw8fw16il8nca6"))))
+        (base32 "00rc8ffc2s9dz9szhy0f0raas8wnn5cyni1imd5lqz79by6qz7x6"))))
     (build-system cmake-build-system)
     (arguments
      `(#:tests? #f)) ;no test target although there is a tests folder
     (native-inputs
      (list autoconf automake libtool pkg-config))
     (inputs
-     `(("gdk-pixbuf" ,gdk-pixbuf) ;optional
-       ("libjpeg" ,libjpeg-turbo)
-       ("libpng" ,libpng)))
+      (list gdk-pixbuf ; optional
+            libjpeg-turbo
+            libpng))
      ;; Propagated to satisfy 'libheif.pc'.
      (propagated-inputs
       (list dav1d libaom libde265 x265))
-- 
2.39.2





Information forwarded to guix-patches <at> gnu.org:
bug#70080; Package guix-patches. (Fri, 29 Mar 2024 17:32:02 GMT) Full text and rfc822 format available.

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

From: Vinicius Monego <monego <at> posteo.net>
To: 70080 <at> debbugs.gnu.org
Cc: Vinicius Monego <monego <at> posteo.net>
Subject: [PATCH 2/2] gnu: libheif: Enable tests.
Date: Fri, 29 Mar 2024 17:30:29 +0000
* gnu/packages/image.scm (libheif)[arguments]: Remove #:tests?.

Change-Id: Ibf89a3eb3ff3a78962896147f385ef4de0493e3e
---
 gnu/packages/image.scm | 2 --
 1 file changed, 2 deletions(-)

diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm
index 8fb752b586..baae5366b7 100644
--- a/gnu/packages/image.scm
+++ b/gnu/packages/image.scm
@@ -2558,8 +2558,6 @@ (define-public libheif
        (sha256
         (base32 "00rc8ffc2s9dz9szhy0f0raas8wnn5cyni1imd5lqz79by6qz7x6"))))
     (build-system cmake-build-system)
-    (arguments
-     `(#:tests? #f)) ;no test target although there is a tests folder
     (native-inputs
      (list autoconf automake libtool pkg-config))
     (inputs
-- 
2.39.2





Information forwarded to guix-patches <at> gnu.org:
bug#70080; Package guix-patches. (Tue, 02 Apr 2024 18:18:02 GMT) Full text and rfc822 format available.

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

From: Efraim Flashner <efraim <at> flashner.co.il>
To: Vinicius Monego <monego <at> posteo.net>
Cc: 70080 <at> debbugs.gnu.org
Subject: Re: [bug#70080] [PATCH 0/2] Update libheif
Date: Tue, 2 Apr 2024 21:16:52 +0300
[Message part 1 (text/plain, inline)]
LGTM!

-- 
Efraim Flashner   <efraim <at> flashner.co.il>   רנשלפ םירפא
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[signature.asc (application/pgp-signature, inline)]

Reply sent to Vinicius Monego <monego <at> posteo.net>:
You have taken responsibility. (Sat, 06 Apr 2024 19:21:03 GMT) Full text and rfc822 format available.

Notification sent to Vinicius Monego <monego <at> posteo.net>:
bug acknowledged by developer. (Sat, 06 Apr 2024 19:21:03 GMT) Full text and rfc822 format available.

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

From: Vinicius Monego <monego <at> posteo.net>
To: Efraim Flashner <efraim <at> flashner.co.il>
Cc: 70080-done <at> debbugs.gnu.org
Subject: Re: [bug#70080] [PATCH 0/2] Update libheif
Date: Sat, 06 Apr 2024 19:20:19 +0000
Em ter, 2024-04-02 às 21:16 +0300, Efraim Flashner escreveu:
> LGTM!
> 
Patches pushed.

Vinicius




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Sun, 05 May 2024 11:24:12 GMT) Full text and rfc822 format available.

This bug report was last modified 11 days ago.

Previous Next


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