unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#70080] [PATCH 0/2] Update libheif
@ 2024-03-29 17:29 Vinicius Monego
  2024-03-29 17:30 ` [bug#70080] [PATCH 1/2] gnu: libheif: Update to 1.17.6 Vinicius Monego
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Vinicius Monego @ 2024-03-29 17:29 UTC (permalink / raw)
  To: 70080; +Cc: Vinicius Monego

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





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

* [bug#70080] [PATCH 1/2] gnu: libheif: Update to 1.17.6.
  2024-03-29 17:29 [bug#70080] [PATCH 0/2] Update libheif Vinicius Monego
@ 2024-03-29 17:30 ` Vinicius Monego
  2024-03-29 17:30 ` [bug#70080] [PATCH 2/2] gnu: libheif: Enable tests Vinicius Monego
  2024-04-02 18:16 ` [bug#70080] [PATCH 0/2] Update libheif Efraim Flashner
  2 siblings, 0 replies; 5+ messages in thread
From: Vinicius Monego @ 2024-03-29 17:30 UTC (permalink / raw)
  To: 70080; +Cc: Vinicius Monego

* 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@gmail.com>
 ;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
 ;;; Copyright © 2020 Zhu Zihao <all_but_last@163.com>
-;;; Copyright © 2020, 2021, 2022, 2023 Vinicius Monego <monego@posteo.net>
+;;; Copyright © 2020, 2021, 2022, 2023, 2024 Vinicius Monego <monego@posteo.net>
 ;;; Copyright © 2021 Sharlatan Hellseher <sharlatanus@gmail.com>
 ;;; Copyright © 2021 Nicolò Balzarotti <nicolo@nixo.xyz>
 ;;; Copyright © 2021 Alexandr Vityazev <avityazev@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





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

* [bug#70080] [PATCH 2/2] gnu: libheif: Enable tests.
  2024-03-29 17:29 [bug#70080] [PATCH 0/2] Update libheif Vinicius Monego
  2024-03-29 17:30 ` [bug#70080] [PATCH 1/2] gnu: libheif: Update to 1.17.6 Vinicius Monego
@ 2024-03-29 17:30 ` Vinicius Monego
  2024-04-02 18:16 ` [bug#70080] [PATCH 0/2] Update libheif Efraim Flashner
  2 siblings, 0 replies; 5+ messages in thread
From: Vinicius Monego @ 2024-03-29 17:30 UTC (permalink / raw)
  To: 70080; +Cc: Vinicius Monego

* 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





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

* [bug#70080] [PATCH 0/2] Update libheif
  2024-03-29 17:29 [bug#70080] [PATCH 0/2] Update libheif Vinicius Monego
  2024-03-29 17:30 ` [bug#70080] [PATCH 1/2] gnu: libheif: Update to 1.17.6 Vinicius Monego
  2024-03-29 17:30 ` [bug#70080] [PATCH 2/2] gnu: libheif: Enable tests Vinicius Monego
@ 2024-04-02 18:16 ` Efraim Flashner
  2024-04-06 19:20   ` bug#70080: " Vinicius Monego
  2 siblings, 1 reply; 5+ messages in thread
From: Efraim Flashner @ 2024-04-02 18:16 UTC (permalink / raw)
  To: Vinicius Monego; +Cc: 70080

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

LGTM!

-- 
Efraim Flashner   <efraim@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

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

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

* bug#70080: [PATCH 0/2] Update libheif
  2024-04-02 18:16 ` [bug#70080] [PATCH 0/2] Update libheif Efraim Flashner
@ 2024-04-06 19:20   ` Vinicius Monego
  0 siblings, 0 replies; 5+ messages in thread
From: Vinicius Monego @ 2024-04-06 19:20 UTC (permalink / raw)
  To: Efraim Flashner; +Cc: 70080-done

Em ter, 2024-04-02 às 21:16 +0300, Efraim Flashner escreveu:
> LGTM!
> 
Patches pushed.

Vinicius




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

end of thread, other threads:[~2024-04-06 19:21 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-29 17:29 [bug#70080] [PATCH 0/2] Update libheif Vinicius Monego
2024-03-29 17:30 ` [bug#70080] [PATCH 1/2] gnu: libheif: Update to 1.17.6 Vinicius Monego
2024-03-29 17:30 ` [bug#70080] [PATCH 2/2] gnu: libheif: Enable tests Vinicius Monego
2024-04-02 18:16 ` [bug#70080] [PATCH 0/2] Update libheif Efraim Flashner
2024-04-06 19:20   ` bug#70080: " Vinicius Monego

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).