summaryrefslogtreecommitdiff
path: root/graphics/libheif
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2021-01-04 11:06:21 +0000
committerwiz <wiz@pkgsrc.org>2021-01-04 11:06:21 +0000
commitd6fcc642d66534e940827af29f9ba71d6d8de4bd (patch)
treec091a1fc62196d89751efdc660c13a08f874f24e /graphics/libheif
parent55fab10c96955e30cef6131257bab785ae4d38d9 (diff)
downloadpkgsrc-d6fcc642d66534e940827af29f9ba71d6d8de4bd.tar.gz
libheif: update to 1.10.0.
v1.10.0 - read all auxiliary images, improve macOS compatibility new API: may access all (vendor-dependent) auxiliary images (e.g. hdrgainmap, semanticskinmatte, ...) change the way images with odd sizes are written so that macOS can read them when ICC profile is present, will now write two colr boxes (nclx and ICC) into AVIF files. Also reads files with two colr boxes alpha image is now saved as monochrome loading of 16bit greyscale PNGs in heif_enc heif_enc, option "-E" deprecated remove dependency on alloca() fix known bugs
Diffstat (limited to 'graphics/libheif')
-rw-r--r--graphics/libheif/Makefile5
-rw-r--r--graphics/libheif/distinfo11
-rw-r--r--graphics/libheif/patches/patch-examples_heif__convert.cc18
3 files changed, 7 insertions, 27 deletions
diff --git a/graphics/libheif/Makefile b/graphics/libheif/Makefile
index 635fa6abf0f..261ccbbfaa1 100644
--- a/graphics/libheif/Makefile
+++ b/graphics/libheif/Makefile
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.7 2020/11/16 11:05:52 ryoon Exp $
+# $NetBSD: Makefile,v 1.8 2021/01/04 11:06:21 wiz Exp $
-DISTNAME= libheif-1.9.1
-PKGREVISION= 1
+DISTNAME= libheif-1.10.0
CATEGORIES= graphics
MASTER_SITES= ${MASTER_SITE_GITHUB:=strukturag/}
GITHUB_PROJECT= libheif
diff --git a/graphics/libheif/distinfo b/graphics/libheif/distinfo
index 90f5dc573be..616fe595563 100644
--- a/graphics/libheif/distinfo
+++ b/graphics/libheif/distinfo
@@ -1,10 +1,9 @@
-$NetBSD: distinfo,v 1.7 2020/10/02 17:13:17 otis Exp $
+$NetBSD: distinfo,v 1.8 2021/01/04 11:06:21 wiz Exp $
-SHA1 (libheif-1.9.1.tar.gz) = 4fd8929b68af2b8f8870f5f7e5ce6918b35460c6
-RMD160 (libheif-1.9.1.tar.gz) = 92a6ff1b051c53da86643ef87c4d6c252772306b
-SHA512 (libheif-1.9.1.tar.gz) = a41ff9666877904da095c72af743b56196c75ce90deaeb1998be7eba9729a62282827e7e916e2a067489cc78e558c55fbb6d70da6a5b5281f6d2efcccbe6dbbe
-Size (libheif-1.9.1.tar.gz) = 1556450 bytes
+SHA1 (libheif-1.10.0.tar.gz) = 07b62ecf81bd7f8547fd1f800f8127c087126940
+RMD160 (libheif-1.10.0.tar.gz) = 106aa96344b2a7b3090f24bd865c6704a60bded4
+SHA512 (libheif-1.10.0.tar.gz) = 85550afe4d2c4a0af16213f51b7c9e9478f87199941d125aa7622ee42e5473a2344f3460d9c684b1805d45f903a98b77b4081f539d5b8c445fbf9443c8341629
+Size (libheif-1.10.0.tar.gz) = 1681115 bytes
SHA1 (patch-configure) = 859f4ae06e77a79a723f2760d426c88787916a9c
-SHA1 (patch-examples_heif__convert.cc) = 6bdcf91c237824aaa63541370d342d86f5255db8
SHA1 (patch-examples_heif__info.cc) = ecc286a3a93741c57c2c717b0eba5861027bbe39
SHA1 (patch-libheif_heif__hevc.cc) = 341b7c2a96ff6448b757bfe70b5d7e19acb04f1b
diff --git a/graphics/libheif/patches/patch-examples_heif__convert.cc b/graphics/libheif/patches/patch-examples_heif__convert.cc
deleted file mode 100644
index 8be4f7afb61..00000000000
--- a/graphics/libheif/patches/patch-examples_heif__convert.cc
+++ /dev/null
@@ -1,18 +0,0 @@
-$NetBSD: patch-examples_heif__convert.cc,v 1.3 2020/09/29 06:04:58 triaxx Exp $
-
-Include alloca.h on SunOS
-
---- examples/heif_convert.cc.orig 2020-09-23 14:02:39.000000000 +0000
-+++ examples/heif_convert.cc
-@@ -27,8 +27,10 @@
- #include "config.h"
- #endif
-
--#if defined(_MSC_VER) || defined(__MINGW32__)
-+#if defined(_MSC_VER) || defined(__MINGW32__) || defined(__NetBSD__)
- # include <malloc.h>
-+#elif defined(__FreeBSD__)
-+# include <stdlib.h>
- #else
- # include <alloca.h>
- #endif