pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/graphics/kimageformats
Module Name: pkgsrc
Committed By: markd
Date: Sat Jul 29 02:13:28 UTC 2023
Modified Files:
pkgsrc/graphics/kimageformats: Makefile PLIST distinfo
Log Message:
kimageformats: update to 5.108.0
5.99
pcx: Do not support sequential devices
Fix maximum number of channels (testcase added)
LibRaw_QIODevice::seek() avoid seek on a sequential device
LibRaw_QIODevice::seek() bounding checks
Camera RAW images plugin
Enables opening of XCF files with Width and/or Height greater than 32K
Replace C cast with reinterpret_cast
avif: adjust for libavif breaking change in YUV<->RGB conversion
Fix image allocation with Qt 6
5.100
Don't install desktop files for image formats when building against Qt6
raw: Don't seek back if we were asked to read too much
jxl: indicate when all frames have been read
avif: indicate when all frames have been read
avif: always indicate endless loop (bug 460085)
avif: return `false` in `canRead()` when `imageIndex >= imageCount`
Auto-rotate input images in readtest
jxl: remove C-style casts
avif: Use reinterpret_cast instead C cast
heif: replace C cast with static_cast
heif: use heif_init/heif_deinit with libheif 1.13.0+
FindLibRaw: fix include dir, should not contain prefix libraw/
Fix duplicated tests
ANI partial test and PIC test added
PSD: impreved support to sequential access device
Fix messages
CMakeLists: enable EXR test
Added EXR test image
Fixes for sequential devices
5.101
Fix missing DCI-P3 color space set
raw: LibRaw_QIODevice::read: fixed possible partial reading of an item
PSD multichannel testcases
Support to MCH with 4+ channels (treat as CMYK)
avif: Check if encoder/decoder is available in capabilities()
Fix condition for installing desktop files
5.102
raw: tweak seek implementation
heif: fix error handling
heif: rewrite plugin to use only libheif C API
5.103
psd: conversion speed improvements (kf5)
Fix writing TGA alpha depth flag
HDR support removed from RAW plugin
heif: reject invalid files with zero size
5.105
psd: Fix alpha blending (KF5)
5.106
Fix wrong alpha conversion
5.107
pcx: multiple fixes (2)
Avoid unnecessary conversions
RGB/SGI writer: fix alpha detection and image limit size
TGA writer: fix alpha detection and performance improvements
pcx: multiple fixes
PCX: Fix reading of the extended palette
5.108
jxl: add support for libjxl v0.9, drop support for old 0.6.1
To generate a diff of this commit:
cvs rdiff -u -r1.44 -r1.45 pkgsrc/graphics/kimageformats/Makefile
cvs rdiff -u -r1.3 -r1.4 pkgsrc/graphics/kimageformats/PLIST
cvs rdiff -u -r1.16 -r1.17 pkgsrc/graphics/kimageformats/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/graphics/kimageformats/Makefile
diff -u pkgsrc/graphics/kimageformats/Makefile:1.44 pkgsrc/graphics/kimageformats/Makefile:1.45
--- pkgsrc/graphics/kimageformats/Makefile:1.44 Tue Jun 6 08:02:11 2023
+++ pkgsrc/graphics/kimageformats/Makefile Sat Jul 29 02:13:28 2023
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.44 2023/06/06 08:02:11 wiz Exp $
+# $NetBSD: Makefile,v 1.45 2023/07/29 02:13:28 markd Exp $
DISTNAME= kimageformats-${KF5VER}
-PKGREVISION= 8
CATEGORIES= graphics
HOMEPAGE= https://community.kde.org/Frameworks
@@ -16,6 +15,7 @@ USE_TOOLS+= pkg-config
GCC_REQD+= 6
.include "../../archivers/karchive/buildlink3.mk"
+.include "../../graphics/libraw/buildlink3.mk"
.include "../../graphics/openexr/buildlink3.mk"
.include "../../x11/qt5-qtbase/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/graphics/kimageformats/PLIST
diff -u pkgsrc/graphics/kimageformats/PLIST:1.3 pkgsrc/graphics/kimageformats/PLIST:1.4
--- pkgsrc/graphics/kimageformats/PLIST:1.3 Tue Mar 30 10:58:25 2021
+++ pkgsrc/graphics/kimageformats/PLIST Sat Jul 29 02:13:28 2023
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.3 2021/03/30 10:58:25 markd Exp $
+@comment $NetBSD: PLIST,v 1.4 2023/07/29 02:13:28 markd Exp $
qt5/plugins/imageformats/kimg_ani.so
qt5/plugins/imageformats/kimg_eps.so
qt5/plugins/imageformats/kimg_exr.so
@@ -9,6 +9,7 @@ qt5/plugins/imageformats/kimg_pcx.so
qt5/plugins/imageformats/kimg_pic.so
qt5/plugins/imageformats/kimg_psd.so
qt5/plugins/imageformats/kimg_ras.so
+qt5/plugins/imageformats/kimg_raw.so
qt5/plugins/imageformats/kimg_rgb.so
qt5/plugins/imageformats/kimg_tga.so
qt5/plugins/imageformats/kimg_xcf.so
@@ -24,6 +25,7 @@ share/kservices5/qimageioplugins/pcx.des
share/kservices5/qimageioplugins/pic.desktop
share/kservices5/qimageioplugins/psd.desktop
share/kservices5/qimageioplugins/ras.desktop
+share/kservices5/qimageioplugins/raw.desktop
share/kservices5/qimageioplugins/rgb.desktop
share/kservices5/qimageioplugins/tga.desktop
share/kservices5/qimageioplugins/xcf.desktop
Index: pkgsrc/graphics/kimageformats/distinfo
diff -u pkgsrc/graphics/kimageformats/distinfo:1.16 pkgsrc/graphics/kimageformats/distinfo:1.17
--- pkgsrc/graphics/kimageformats/distinfo:1.16 Thu Sep 29 00:52:14 2022
+++ pkgsrc/graphics/kimageformats/distinfo Sat Jul 29 02:13:28 2023
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.16 2022/09/29 00:52:14 markd Exp $
+$NetBSD: distinfo,v 1.17 2023/07/29 02:13:28 markd Exp $
-BLAKE2s (kimageformats-5.98.0.tar.xz) = 06174e515ed2b4ac5103560b19ce08342a43ed70804c4b025d83deb389d55220
-SHA512 (kimageformats-5.98.0.tar.xz) = 4c37067ff252daa596bff0eba324774bf1b214e47b629326f83ee61904f71b06d0e4376484bda62419c0e4eaae8afde1ea6ab1c7b5aac7aabd3d722ebece9274
-Size (kimageformats-5.98.0.tar.xz) = 5312392 bytes
+BLAKE2s (kimageformats-5.108.0.tar.xz) = 4e339372a4e2c8539e165e96c98816b7b127a6929c816b1f6491aa0334fa9590
+SHA512 (kimageformats-5.108.0.tar.xz) = df43867153cecd876fd48fd8c9cbfe78016ed25fe6e1f074f4f395e4c0bf9f62c7bfbe3d40f79fca591d0e07324c4f58de214594a23c227e07bb33cf7f2805f0
+Size (kimageformats-5.108.0.tar.xz) = 12999676 bytes
Home |
Main Index |
Thread Index |
Old Index