Received: by mail.netbsd.org (Postfix, from userid 605) id B144284D08; Tue, 3 Jan 2023 16:38:54 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id DF23784CFF for ; Tue, 3 Jan 2023 16:38:53 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id VQsYnsyUp-08 for ; Tue, 3 Jan 2023 16:38:51 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 18F5B84CEA for ; Tue, 3 Jan 2023 16:38:51 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 12849FA90; Tue, 3 Jan 2023 16:38:51 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1672763931289690" MIME-Version: 1.0 Date: Tue, 3 Jan 2023 16:38:51 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/graphics/tiff To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20230103163851.12849FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1672763931289690 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Tue Jan 3 16:38:50 UTC 2023 Modified Files: pkgsrc/graphics/tiff: Makefile PLIST distinfo pkgsrc/graphics/tiff/patches: patch-Makefile.in Log Message: tiff: update to 4.5.0. Changes in TIFF v4.5.0 ====================== Major changes ------------- * Whole code base reformatting of .c/.h files using new .clang-format format * Documentation changed from static HTML and man pages to Restructured Text (rst). HTML and man pages are now build artifacts. Software configuration changes ------------------------------ * SONAME version bumped to 6 due to changes in symbol versioning. * autoconf/cmake: detect (not yet released) libjpeg-turbo 2.2 to take into its capability of handling both 8-bit JPEG and 12-bit JPEG in a single build. * autoconf/cmake: detect sphinx-build to build HTML and man pages * CMakeLists.txt: fix warning with -Wdev * CMake: correctly set default value of 'lzma' option when liblzma is detected (:issue:`482`) * CMake: Moved linking of CMath::CMath into CMath_LIBRARY check. * Fix CMake build to be compatible with FetchContent. * cmake: Correct duplicate definition of _CRT_SECURE_NO_WARNINGS (:issue:`443`) * cmake: Fixes for Visual Studio 2022. * Adds Requires.private generation so that pkg-config can correctly find the dependencies of libtiff. * Fix dependency on libm on Android * cmake: libtiffxx is static on win32 * Fix build in tif_lzw.c * CMake: Add options for disabling tools, tests, contrib and docs. Library changes --------------- New/improved functionalities: * Addition of an open option concept with the new functions :c:func:`TIFFOpenExt`, :c:func:`TIFFOpenWExt`, :c:func:`TIFFFdOpenExt`, :c:func:`TIFFClientOpenExt`, :c:func:`TIFFOpenOptionsAlloc`, :c:func:`TIFFOpenOptionsFree` * Leveraging above mentioned open option concept, addition of a new capability to limit the size of a single dynamic memory allocation done by the library with :c:func:`TIFFOpenOptionsSetMaxSingleMemAlloc` * Leveraging above mentioned open option concept, addition of a new capability to specify per-TIFF handle re-entrant error and warning callbacks with :c:func:`TIFFOpenOptionsSetErrorHandlerExtR` and :c:func:`TIFFOpenOptionsSetWarningHandlerExtR` * Related to IFD-Loop detection refactoring, the number of IFDs that libtiff can browse through has been extended from 65535 to 1048576. This value is a build-time setting that can be configured with CMake's TIFF_MAX_DIR_COUNT variable or autoconf's --with-max-dir-count option. API/ABI breaks: * tdir_t type updated to uint32_t. This type is now used for the return value of :c:func:`TIFFCurrentDirectory` and :c:func:`TIFFNumberOfDirectories`, and as the argument of :c:func:`TIFFSetDirectory` and :c:func:`TIFFUnlinkDirectory` Bug fixes: * TIFFWriteRawStrip(): restore capabilities to append data in the current strip (:issue:`489`) * _TIFFReadEncodedTileAndAllocBuffer(): avoid excessive memory allocation on broken files (:issue:`479`) * TIFFReadRGBATileExt(): fix (unsigned) integer overflow on strips/tiles > 2 GB (oss-fuzz #53137) * Replace sprintf calls with snprintf to fix warnings on macOS 13 SDK * Added warning messages for FIELD_IGNORE tags for writing and for TIFF_SETGET_UNDEFINED for reading added. (:issue:`438`) * tif_dirinfo.c: fix TIFFTAG_CLIPPATH tag declaration (:issue:`439`) * tif_dirinfo.c: fix TIFFTAG_COMPRESSION and _BITSPERSAMPLE tag declaration (:issue:`364`) * Revised handling of TIFFTAG_INKNAMES and related TIFFTAG_NUMBEROFINKS value (:issue:`149`, :issue:`150`, :issue:`152`, :issue:`168`, :issue:`250`, :issue:`269`,:issue:`398`, CVE-2022-3599, :issue:`456`) * TIFFAdvanceDirectory(): fix unsigned-integer-overflow in mapped case (oss-fuzz #52309) * Improved/fixes IFD-Loop Handling (:issue:`455`). * Update getimage to support large raster images. * Presetting of default tag values extended (e.g. PlanarConfig). (:issue:`449`) * Deal with RichTIFFIPTC tag written with LONG type (:issue:`225`) * TIFFSetValue(): Writing IFD8 & LONG8 tags to ClassicTIFF corrected (:issue:`442`) * tif_jpeg.c: allow to pass -DEXPECTED_JPEG_LIB_VERSION=number to do optional compile-time version check * TIFFReadFromUserBuffer(): fix clearing of TIFF_CODERSETUP flag that could cause issues with reading JPEG compressed files * _TIFFCheckFieldIsValidForCodec(): return FALSE when passed a codec-specific tag and the codec is not configured (:issue:`433`, :issue:`486`, CVE-2022-34526) * Add basic 16 bit cielab support. * WEBP codec: avoid temporary buffer and memcpy() on whole tile/strip decoding * tif_predict.c: make horAcc8() work with icc (ICC) 2021.6.0 20220226 -O2 Tools changes ------------- New/improved functionality: * :program:`tiffinfo`: Updated to parse through SubIFDs and show their tags. Bug fixes: * :program:`tiffcrop`: add check if (bps != 1) in writeSingleSection() (:issue:`169`) * :program:`tiffcrop`: Fix too many 'mode' options on command line (:issue:`470` and :issue:`450`) * :program:`tiffcrop`: Fix memory allocation to require a larger buffer (:issue:`271`, :issue:`381`, :issue:`386`, :issue:`388`, :issue:`389`, :issue:`435`, CVE-2022-3570, CVE-2022-3598) * :program:`tiffcrop`: disable incompatibility of -Z, -X, -Y, -z options with any PAGE_MODE_x option (:issue:`411`, CVE-2022-3627, :issue:`413`, CVE-2022-3597, :issue:`426`, CVE-2022-3626) * :program:`tiffcrop`: -S option mutually exclusive (:issue:`349`, :issue:`414`, :issue:`422`, :issue:`423`, :issue:`424`) * :program:`tiffcrop`: fix floating-point exception (:issue:`415`, :issue:`427`, :issue:`428`, CVE-2022-2056, CVE-2022-2057, CVE-2022-2058) * :program:`tiff2pdf`: Don't try to seek into stdout (:issue:`441`) * :program:`tiffinfo`: update curdir from uint16_t to tdir_t for more than 64k IFD handling. To generate a diff of this commit: cvs rdiff -u -r1.154 -r1.155 pkgsrc/graphics/tiff/Makefile cvs rdiff -u -r1.30 -r1.31 pkgsrc/graphics/tiff/PLIST cvs rdiff -u -r1.103 -r1.104 pkgsrc/graphics/tiff/distinfo cvs rdiff -u -r1.2 -r1.3 pkgsrc/graphics/tiff/patches/patch-Makefile.in Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1672763931289690 Content-Disposition: inline Content-Length: 30339 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/tiff/Makefile diff -u pkgsrc/graphics/tiff/Makefile:1.154 pkgsrc/graphics/tiff/Makefile:1.155 --- pkgsrc/graphics/tiff/Makefile:1.154 Sun Jun 5 14:02:44 2022 +++ pkgsrc/graphics/tiff/Makefile Tue Jan 3 16:38:50 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.154 2022/06/05 14:02:44 gdt Exp $ +# $NetBSD: Makefile,v 1.155 2023/01/03 16:38:50 wiz Exp $ -VERSION_BASE= 4.4.0 +VERSION_BASE= 4.5.0 # Accomodate testing unreleased versions. #VERSION_RC= rc1 DISTNAME= tiff-${VERSION_BASE}${VERSION_RC} Index: pkgsrc/graphics/tiff/PLIST diff -u pkgsrc/graphics/tiff/PLIST:1.30 pkgsrc/graphics/tiff/PLIST:1.31 --- pkgsrc/graphics/tiff/PLIST:1.30 Sun May 29 12:24:16 2022 +++ pkgsrc/graphics/tiff/PLIST Tue Jan 3 16:38:50 2023 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.30 2022/05/29 12:24:16 gdt Exp $ +@comment $NetBSD: PLIST,v 1.31 2023/01/03 16:38:50 wiz Exp $ bin/fax2ps bin/fax2tiff bin/pal2rgb @@ -30,6 +30,8 @@ man/man1/fax2tiff.1 man/man1/pal2rgb.1 man/man1/ppm2tiff.1 man/man1/raw2tiff.1 +man/man1/rgb2ycbcr.1 +man/man1/thumbnail.1 man/man1/tiff2bw.1 man/man1/tiff2pdf.1 man/man1/tiff2ps.1 @@ -44,23 +46,33 @@ man/man1/tiffinfo.1 man/man1/tiffmedian.1 man/man1/tiffset.1 man/man1/tiffsplit.1 +man/man3/TIFFAccessTagMethods.3 +man/man3/TIFFClientInfo.3 man/man3/TIFFClose.3 +man/man3/TIFFCreateDirectory.3 +man/man3/TIFFCustomDirectory.3 +man/man3/TIFFCustomTagList.3 man/man3/TIFFDataWidth.3 +man/man3/TIFFDeferStrileArrayWriting.3 man/man3/TIFFError.3 man/man3/TIFFFieldDataType.3 man/man3/TIFFFieldName.3 man/man3/TIFFFieldPassCount.3 +man/man3/TIFFFieldQuery.3 man/man3/TIFFFieldReadCount.3 man/man3/TIFFFieldTag.3 man/man3/TIFFFieldWriteCount.3 man/man3/TIFFFlush.3 man/man3/TIFFGetField.3 +man/man3/TIFFMergeFieldInfo.3 man/man3/TIFFOpen.3 man/man3/TIFFPrintDirectory.3 +man/man3/TIFFProcFunctions.3 man/man3/TIFFRGBAImage.3 man/man3/TIFFReadDirectory.3 man/man3/TIFFReadEncodedStrip.3 man/man3/TIFFReadEncodedTile.3 +man/man3/TIFFReadFromUserBuffer.3 man/man3/TIFFReadRGBAImage.3 man/man3/TIFFReadRGBAStrip.3 man/man3/TIFFReadRGBATile.3 @@ -70,6 +82,8 @@ man/man3/TIFFReadScanline.3 man/man3/TIFFReadTile.3 man/man3/TIFFSetDirectory.3 man/man3/TIFFSetField.3 +man/man3/TIFFSetTagExtender.3 +man/man3/TIFFStrileQuery.3 man/man3/TIFFWarning.3 man/man3/TIFFWriteDirectory.3 man/man3/TIFFWriteEncodedStrip.3 @@ -87,154 +101,365 @@ man/man3/TIFFsize.3 man/man3/TIFFstrip.3 man/man3/TIFFswab.3 man/man3/TIFFtile.3 +man/man3/_TIFFRewriteField.3 +man/man3/_TIFFauxiliary.3 man/man3/libtiff.3 -share/doc/tiff/COPYRIGHT share/doc/tiff/ChangeLog +share/doc/tiff/LICENSE.md share/doc/tiff/README.md share/doc/tiff/RELEASE-DATE share/doc/tiff/TODO share/doc/tiff/VERSION -share/doc/tiff/html/TIFFTechNote2.html -share/doc/tiff/html/addingtags.html -share/doc/tiff/html/bugs.html -share/doc/tiff/html/build.html -share/doc/tiff/html/contrib.html -share/doc/tiff/html/document.html -share/doc/tiff/html/images.html -share/doc/tiff/html/images/back.gif -share/doc/tiff/html/images/bali.jpg -share/doc/tiff/html/images/cat.gif -share/doc/tiff/html/images/cover.jpg -share/doc/tiff/html/images/cramps.gif -share/doc/tiff/html/images/dave.gif -share/doc/tiff/html/images/info.gif -share/doc/tiff/html/images/jello.jpg -share/doc/tiff/html/images/jim.gif -share/doc/tiff/html/images/note.gif -share/doc/tiff/html/images/oxford.gif -share/doc/tiff/html/images/quad.jpg -share/doc/tiff/html/images/ring.gif -share/doc/tiff/html/images/smallliz.jpg -share/doc/tiff/html/images/strike.gif -share/doc/tiff/html/images/warning.gif -share/doc/tiff/html/index.html -share/doc/tiff/html/internals.html -share/doc/tiff/html/intro.html -share/doc/tiff/html/libtiff.html -share/doc/tiff/html/man/TIFFClose.3tiff.html -share/doc/tiff/html/man/TIFFDataWidth.3tiff.html -share/doc/tiff/html/man/TIFFError.3tiff.html -share/doc/tiff/html/man/TIFFFieldDataType.3tiff.html -share/doc/tiff/html/man/TIFFFieldName.3tiff.html -share/doc/tiff/html/man/TIFFFieldPassCount.3tiff.html -share/doc/tiff/html/man/TIFFFieldReadCount.3tiff.html -share/doc/tiff/html/man/TIFFFieldTag.3tiff.html -share/doc/tiff/html/man/TIFFFieldWriteCount.3tiff.html -share/doc/tiff/html/man/TIFFFlush.3tiff.html -share/doc/tiff/html/man/TIFFGetField.3tiff.html -share/doc/tiff/html/man/TIFFOpen.3tiff.html -share/doc/tiff/html/man/TIFFPrintDirectory.3tiff.html -share/doc/tiff/html/man/TIFFRGBAImage.3tiff.html -share/doc/tiff/html/man/TIFFReadDirectory.3tiff.html -share/doc/tiff/html/man/TIFFReadEncodedStrip.3tiff.html -share/doc/tiff/html/man/TIFFReadEncodedTile.3tiff.html -share/doc/tiff/html/man/TIFFReadRGBAImage.3tiff.html -share/doc/tiff/html/man/TIFFReadRGBAStrip.3tiff.html -share/doc/tiff/html/man/TIFFReadRGBATile.3tiff.html -share/doc/tiff/html/man/TIFFReadRawStrip.3tiff.html -share/doc/tiff/html/man/TIFFReadRawTile.3tiff.html -share/doc/tiff/html/man/TIFFReadScanline.3tiff.html -share/doc/tiff/html/man/TIFFReadTile.3tiff.html -share/doc/tiff/html/man/TIFFSetDirectory.3tiff.html -share/doc/tiff/html/man/TIFFSetField.3tiff.html -share/doc/tiff/html/man/TIFFWarning.3tiff.html -share/doc/tiff/html/man/TIFFWriteDirectory.3tiff.html -share/doc/tiff/html/man/TIFFWriteEncodedStrip.3tiff.html -share/doc/tiff/html/man/TIFFWriteEncodedTile.3tiff.html -share/doc/tiff/html/man/TIFFWriteRawStrip.3tiff.html -share/doc/tiff/html/man/TIFFWriteRawTile.3tiff.html -share/doc/tiff/html/man/TIFFWriteScanline.3tiff.html -share/doc/tiff/html/man/TIFFWriteTile.3tiff.html -share/doc/tiff/html/man/TIFFbuffer.3tiff.html -share/doc/tiff/html/man/TIFFcodec.3tiff.html -share/doc/tiff/html/man/TIFFcolor.3tiff.html -share/doc/tiff/html/man/TIFFmemory.3tiff.html -share/doc/tiff/html/man/TIFFquery.3tiff.html -share/doc/tiff/html/man/TIFFsize.3tiff.html -share/doc/tiff/html/man/TIFFstrip.3tiff.html -share/doc/tiff/html/man/TIFFswab.3tiff.html -share/doc/tiff/html/man/TIFFtile.3tiff.html -share/doc/tiff/html/man/fax2ps.1.html -share/doc/tiff/html/man/fax2tiff.1.html -share/doc/tiff/html/man/index.html -share/doc/tiff/html/man/libtiff.3tiff.html -share/doc/tiff/html/man/pal2rgb.1.html -share/doc/tiff/html/man/ppm2tiff.1.html -share/doc/tiff/html/man/raw2tiff.1.html -share/doc/tiff/html/man/tiff2bw.1.html -share/doc/tiff/html/man/tiff2pdf.1.html -share/doc/tiff/html/man/tiff2ps.1.html -share/doc/tiff/html/man/tiff2rgba.1.html -share/doc/tiff/html/man/tiffcmp.1.html -share/doc/tiff/html/man/tiffcp.1.html -share/doc/tiff/html/man/tiffcrop.1.html -share/doc/tiff/html/man/tiffdither.1.html -share/doc/tiff/html/man/tiffdump.1.html -share/doc/tiff/html/man/tiffgt.1.html -share/doc/tiff/html/man/tiffinfo.1.html -share/doc/tiff/html/man/tiffmedian.1.html -share/doc/tiff/html/man/tiffset.1.html -share/doc/tiff/html/man/tiffsplit.1.html -share/doc/tiff/html/misc.html -share/doc/tiff/html/support.html -share/doc/tiff/html/tools.html -share/doc/tiff/html/v3.4beta007.html -share/doc/tiff/html/v3.4beta016.html -share/doc/tiff/html/v3.4beta018.html -share/doc/tiff/html/v3.4beta024.html -share/doc/tiff/html/v3.4beta028.html -share/doc/tiff/html/v3.4beta029.html -share/doc/tiff/html/v3.4beta031.html -share/doc/tiff/html/v3.4beta032.html -share/doc/tiff/html/v3.4beta033.html -share/doc/tiff/html/v3.4beta034.html -share/doc/tiff/html/v3.4beta035.html -share/doc/tiff/html/v3.4beta036.html -share/doc/tiff/html/v3.5.1.html -share/doc/tiff/html/v3.5.2.html -share/doc/tiff/html/v3.5.3.html -share/doc/tiff/html/v3.5.4.html -share/doc/tiff/html/v3.5.5.html -share/doc/tiff/html/v3.5.6-beta.html -share/doc/tiff/html/v3.5.7.html -share/doc/tiff/html/v3.6.0.html -share/doc/tiff/html/v3.6.1.html -share/doc/tiff/html/v3.7.0.html -share/doc/tiff/html/v3.7.0alpha.html -share/doc/tiff/html/v3.7.0beta.html -share/doc/tiff/html/v3.7.0beta2.html -share/doc/tiff/html/v3.7.1.html -share/doc/tiff/html/v3.7.2.html -share/doc/tiff/html/v3.7.3.html -share/doc/tiff/html/v3.7.4.html -share/doc/tiff/html/v3.8.0.html -share/doc/tiff/html/v3.8.1.html -share/doc/tiff/html/v3.8.2.html -share/doc/tiff/html/v3.9.0beta.html -share/doc/tiff/html/v3.9.1.html -share/doc/tiff/html/v3.9.2.html -share/doc/tiff/html/v4.0.0.html -share/doc/tiff/html/v4.0.1.html -share/doc/tiff/html/v4.0.10.html -share/doc/tiff/html/v4.0.2.html -share/doc/tiff/html/v4.0.3.html -share/doc/tiff/html/v4.0.4.html -share/doc/tiff/html/v4.0.4beta.html -share/doc/tiff/html/v4.0.5.html -share/doc/tiff/html/v4.0.6.html -share/doc/tiff/html/v4.0.7.html -share/doc/tiff/html/v4.0.8.html -share/doc/tiff/html/v4.0.9.html -share/doc/tiff/html/v4.1.0.html -share/doc/tiff/html/v4.2.0.html -share/doc/tiff/html/v4.3.0.html +share/doc/tiff/manual/.buildinfo +share/doc/tiff/manual/_images/bali.jpg +share/doc/tiff/manual/_images/cat.gif +share/doc/tiff/manual/_images/cover.jpg +share/doc/tiff/manual/_images/cramps.gif +share/doc/tiff/manual/_images/dave.gif +share/doc/tiff/manual/_images/esri.png +share/doc/tiff/manual/_images/jim.gif +share/doc/tiff/manual/_images/leica.png +share/doc/tiff/manual/_images/quad.jpg +share/doc/tiff/manual/_images/ring.gif +share/doc/tiff/manual/_images/safe.png +share/doc/tiff/manual/_images/smallliz.jpg +share/doc/tiff/manual/_images/strike.gif +share/doc/tiff/manual/_images/weogeo.png +share/doc/tiff/manual/_sources/addingtags.rst.txt +share/doc/tiff/manual/_sources/build.rst.txt +share/doc/tiff/manual/_sources/contrib.rst.txt +share/doc/tiff/manual/_sources/functions.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFAccessTagMethods.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFClientInfo.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFClose.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFCreateDirectory.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFCustomDirectory.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFCustomTagList.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFDataWidth.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFDeferStrileArrayWriting.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFError.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFFieldDataType.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFFieldName.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFFieldPassCount.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFFieldQuery.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFFieldReadCount.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFFieldTag.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFFieldWriteCount.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFFlush.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFGetField.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFMergeFieldInfo.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFOpen.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFOpenOptions.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFPrintDirectory.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFProcFunctions.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFRGBAImage.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFReadDirectory.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFReadEncodedStrip.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFReadEncodedTile.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFReadFromUserBuffer.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFReadRGBAImage.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFReadRGBAStrip.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFReadRGBATile.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFReadRawStrip.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFReadRawTile.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFReadScanline.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFReadTile.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFSetDirectory.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFSetField.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFSetTagExtender.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFStrileQuery.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFWarning.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFWriteDirectory.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFWriteEncodedStrip.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFWriteEncodedTile.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFWriteRawStrip.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFWriteRawTile.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFWriteScanline.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFWriteTile.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFbuffer.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFcodec.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFcolor.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFmemory.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFquery.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFsize.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFstrip.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFswab.rst.txt +share/doc/tiff/manual/_sources/functions/TIFFtile.rst.txt +share/doc/tiff/manual/_sources/functions/_TIFFRewriteField.rst.txt +share/doc/tiff/manual/_sources/functions/_TIFFauxiliary.rst.txt +share/doc/tiff/manual/_sources/functions/libtiff.rst.txt +share/doc/tiff/manual/_sources/images.rst.txt +share/doc/tiff/manual/_sources/index.rst.txt +share/doc/tiff/manual/_sources/internals.rst.txt +share/doc/tiff/manual/_sources/libtiff.rst.txt +share/doc/tiff/manual/_sources/project/acknowledgements.rst.txt +share/doc/tiff/manual/_sources/project/bugs.rst.txt +share/doc/tiff/manual/_sources/project/index.rst.txt +share/doc/tiff/manual/_sources/project/license.rst.txt +share/doc/tiff/manual/_sources/project/mailinglist.rst.txt +share/doc/tiff/manual/_sources/releases/historical.rst.txt +share/doc/tiff/manual/_sources/releases/index.rst.txt +share/doc/tiff/manual/_sources/releases/v3.4beta007.rst.txt +share/doc/tiff/manual/_sources/releases/v3.4beta016.rst.txt +share/doc/tiff/manual/_sources/releases/v3.4beta018.rst.txt +share/doc/tiff/manual/_sources/releases/v3.4beta024.rst.txt +share/doc/tiff/manual/_sources/releases/v3.4beta028.rst.txt +share/doc/tiff/manual/_sources/releases/v3.4beta029.rst.txt +share/doc/tiff/manual/_sources/releases/v3.4beta031.rst.txt +share/doc/tiff/manual/_sources/releases/v3.4beta032.rst.txt +share/doc/tiff/manual/_sources/releases/v3.4beta033.rst.txt +share/doc/tiff/manual/_sources/releases/v3.4beta034.rst.txt +share/doc/tiff/manual/_sources/releases/v3.4beta035.rst.txt +share/doc/tiff/manual/_sources/releases/v3.4beta036.rst.txt +share/doc/tiff/manual/_sources/releases/v3.5.1.rst.txt +share/doc/tiff/manual/_sources/releases/v3.5.2.rst.txt +share/doc/tiff/manual/_sources/releases/v3.5.3.rst.txt +share/doc/tiff/manual/_sources/releases/v3.5.4.rst.txt +share/doc/tiff/manual/_sources/releases/v3.5.5.rst.txt +share/doc/tiff/manual/_sources/releases/v3.5.6beta.rst.txt +share/doc/tiff/manual/_sources/releases/v3.5.7.rst.txt +share/doc/tiff/manual/_sources/releases/v3.6.0.rst.txt +share/doc/tiff/manual/_sources/releases/v3.6.1.rst.txt +share/doc/tiff/manual/_sources/releases/v3.7.0.rst.txt +share/doc/tiff/manual/_sources/releases/v3.7.0alpha.rst.txt +share/doc/tiff/manual/_sources/releases/v3.7.0beta.rst.txt +share/doc/tiff/manual/_sources/releases/v3.7.0beta2.rst.txt +share/doc/tiff/manual/_sources/releases/v3.7.1.rst.txt +share/doc/tiff/manual/_sources/releases/v3.7.2.rst.txt +share/doc/tiff/manual/_sources/releases/v3.7.3.rst.txt +share/doc/tiff/manual/_sources/releases/v3.7.4.rst.txt +share/doc/tiff/manual/_sources/releases/v3.8.0.rst.txt +share/doc/tiff/manual/_sources/releases/v3.8.1.rst.txt +share/doc/tiff/manual/_sources/releases/v3.8.2.rst.txt +share/doc/tiff/manual/_sources/releases/v3.9.0.rst.txt +share/doc/tiff/manual/_sources/releases/v3.9.0beta.rst.txt +share/doc/tiff/manual/_sources/releases/v3.9.1.rst.txt +share/doc/tiff/manual/_sources/releases/v3.9.2.rst.txt +share/doc/tiff/manual/_sources/releases/v3.9.3.rst.txt +share/doc/tiff/manual/_sources/releases/v3.9.4.rst.txt +share/doc/tiff/manual/_sources/releases/v3.9.5.rst.txt +share/doc/tiff/manual/_sources/releases/v4.0.0.rst.txt +share/doc/tiff/manual/_sources/releases/v4.0.1.rst.txt +share/doc/tiff/manual/_sources/releases/v4.0.10.rst.txt +share/doc/tiff/manual/_sources/releases/v4.0.2.rst.txt +share/doc/tiff/manual/_sources/releases/v4.0.3.rst.txt +share/doc/tiff/manual/_sources/releases/v4.0.4.rst.txt +share/doc/tiff/manual/_sources/releases/v4.0.4beta.rst.txt +share/doc/tiff/manual/_sources/releases/v4.0.5.rst.txt +share/doc/tiff/manual/_sources/releases/v4.0.6.rst.txt +share/doc/tiff/manual/_sources/releases/v4.0.7.rst.txt +share/doc/tiff/manual/_sources/releases/v4.0.8.rst.txt +share/doc/tiff/manual/_sources/releases/v4.0.9.rst.txt +share/doc/tiff/manual/_sources/releases/v4.1.0.rst.txt +share/doc/tiff/manual/_sources/releases/v4.2.0.rst.txt +share/doc/tiff/manual/_sources/releases/v4.3.0.rst.txt +share/doc/tiff/manual/_sources/releases/v4.4.0.rst.txt +share/doc/tiff/manual/_sources/releases/v${PKGVERSION}.rst.txt +share/doc/tiff/manual/_sources/specification/bigtiff.rst.txt +share/doc/tiff/manual/_sources/specification/coverage-bigtiff.rst.txt +share/doc/tiff/manual/_sources/specification/coverage.rst.txt +share/doc/tiff/manual/_sources/specification/index.rst.txt +share/doc/tiff/manual/_sources/specification/technote2.rst.txt +share/doc/tiff/manual/_sources/terms.rst.txt +share/doc/tiff/manual/_sources/tools.rst.txt +share/doc/tiff/manual/_sources/tools/fax2ps.rst.txt +share/doc/tiff/manual/_sources/tools/fax2tiff.rst.txt +share/doc/tiff/manual/_sources/tools/pal2rgb.rst.txt +share/doc/tiff/manual/_sources/tools/ppm2tiff.rst.txt +share/doc/tiff/manual/_sources/tools/raw2tiff.rst.txt +share/doc/tiff/manual/_sources/tools/rgb2ycbcr.rst.txt +share/doc/tiff/manual/_sources/tools/thumbnail.rst.txt +share/doc/tiff/manual/_sources/tools/tiff2bw.rst.txt +share/doc/tiff/manual/_sources/tools/tiff2pdf.rst.txt +share/doc/tiff/manual/_sources/tools/tiff2ps.rst.txt +share/doc/tiff/manual/_sources/tools/tiff2rgba.rst.txt +share/doc/tiff/manual/_sources/tools/tiffcmp.rst.txt +share/doc/tiff/manual/_sources/tools/tiffcp.rst.txt +share/doc/tiff/manual/_sources/tools/tiffcrop.rst.txt +share/doc/tiff/manual/_sources/tools/tiffdither.rst.txt +share/doc/tiff/manual/_sources/tools/tiffdump.rst.txt +share/doc/tiff/manual/_sources/tools/tiffgt.rst.txt +share/doc/tiff/manual/_sources/tools/tiffinfo.rst.txt +share/doc/tiff/manual/_sources/tools/tiffmedian.rst.txt +share/doc/tiff/manual/_sources/tools/tiffset.rst.txt +share/doc/tiff/manual/_sources/tools/tiffsplit.rst.txt +share/doc/tiff/manual/_static/_sphinx_javascript_frameworks_compat.js +share/doc/tiff/manual/_static/basic.css +share/doc/tiff/manual/_static/contents.png +share/doc/tiff/manual/_static/doctools.js +share/doc/tiff/manual/_static/documentation_options.js +share/doc/tiff/manual/_static/file.png +share/doc/tiff/manual/_static/jquery-3.6.0.js +share/doc/tiff/manual/_static/jquery.js +share/doc/tiff/manual/_static/language_data.js +share/doc/tiff/manual/_static/minus.png +share/doc/tiff/manual/_static/navigation.png +share/doc/tiff/manual/_static/plus.png +share/doc/tiff/manual/_static/pygments.css +share/doc/tiff/manual/_static/searchtools.js +share/doc/tiff/manual/_static/sphinx_highlight.js +share/doc/tiff/manual/_static/sphinxdoc.css +share/doc/tiff/manual/_static/underscore-1.13.1.js +share/doc/tiff/manual/_static/underscore.js +share/doc/tiff/manual/addingtags.html +share/doc/tiff/manual/build.html +share/doc/tiff/manual/contrib.html +share/doc/tiff/manual/functions.html +share/doc/tiff/manual/functions/TIFFAccessTagMethods.html +share/doc/tiff/manual/functions/TIFFClientInfo.html +share/doc/tiff/manual/functions/TIFFClose.html +share/doc/tiff/manual/functions/TIFFCreateDirectory.html +share/doc/tiff/manual/functions/TIFFCustomDirectory.html +share/doc/tiff/manual/functions/TIFFCustomTagList.html +share/doc/tiff/manual/functions/TIFFDataWidth.html +share/doc/tiff/manual/functions/TIFFDeferStrileArrayWriting.html +share/doc/tiff/manual/functions/TIFFError.html +share/doc/tiff/manual/functions/TIFFFieldDataType.html +share/doc/tiff/manual/functions/TIFFFieldName.html +share/doc/tiff/manual/functions/TIFFFieldPassCount.html +share/doc/tiff/manual/functions/TIFFFieldQuery.html +share/doc/tiff/manual/functions/TIFFFieldReadCount.html +share/doc/tiff/manual/functions/TIFFFieldTag.html +share/doc/tiff/manual/functions/TIFFFieldWriteCount.html +share/doc/tiff/manual/functions/TIFFFlush.html +share/doc/tiff/manual/functions/TIFFGetField.html +share/doc/tiff/manual/functions/TIFFMergeFieldInfo.html +share/doc/tiff/manual/functions/TIFFOpen.html +share/doc/tiff/manual/functions/TIFFOpenOptions.html +share/doc/tiff/manual/functions/TIFFPrintDirectory.html +share/doc/tiff/manual/functions/TIFFProcFunctions.html +share/doc/tiff/manual/functions/TIFFRGBAImage.html +share/doc/tiff/manual/functions/TIFFReadDirectory.html +share/doc/tiff/manual/functions/TIFFReadEncodedStrip.html +share/doc/tiff/manual/functions/TIFFReadEncodedTile.html +share/doc/tiff/manual/functions/TIFFReadFromUserBuffer.html +share/doc/tiff/manual/functions/TIFFReadRGBAImage.html +share/doc/tiff/manual/functions/TIFFReadRGBAStrip.html +share/doc/tiff/manual/functions/TIFFReadRGBATile.html +share/doc/tiff/manual/functions/TIFFReadRawStrip.html +share/doc/tiff/manual/functions/TIFFReadRawTile.html +share/doc/tiff/manual/functions/TIFFReadScanline.html +share/doc/tiff/manual/functions/TIFFReadTile.html +share/doc/tiff/manual/functions/TIFFSetDirectory.html +share/doc/tiff/manual/functions/TIFFSetField.html +share/doc/tiff/manual/functions/TIFFSetTagExtender.html +share/doc/tiff/manual/functions/TIFFStrileQuery.html +share/doc/tiff/manual/functions/TIFFWarning.html +share/doc/tiff/manual/functions/TIFFWriteDirectory.html +share/doc/tiff/manual/functions/TIFFWriteEncodedStrip.html +share/doc/tiff/manual/functions/TIFFWriteEncodedTile.html +share/doc/tiff/manual/functions/TIFFWriteRawStrip.html +share/doc/tiff/manual/functions/TIFFWriteRawTile.html +share/doc/tiff/manual/functions/TIFFWriteScanline.html +share/doc/tiff/manual/functions/TIFFWriteTile.html +share/doc/tiff/manual/functions/TIFFbuffer.html +share/doc/tiff/manual/functions/TIFFcodec.html +share/doc/tiff/manual/functions/TIFFcolor.html +share/doc/tiff/manual/functions/TIFFmemory.html +share/doc/tiff/manual/functions/TIFFquery.html +share/doc/tiff/manual/functions/TIFFsize.html +share/doc/tiff/manual/functions/TIFFstrip.html +share/doc/tiff/manual/functions/TIFFswab.html +share/doc/tiff/manual/functions/TIFFtile.html +share/doc/tiff/manual/functions/_TIFFRewriteField.html +share/doc/tiff/manual/functions/_TIFFauxiliary.html +share/doc/tiff/manual/functions/libtiff.html +share/doc/tiff/manual/genindex.html +share/doc/tiff/manual/images.html +share/doc/tiff/manual/index.html +share/doc/tiff/manual/internals.html +share/doc/tiff/manual/libtiff.html +share/doc/tiff/manual/objects.inv +share/doc/tiff/manual/project/acknowledgements.html +share/doc/tiff/manual/project/bugs.html +share/doc/tiff/manual/project/index.html +share/doc/tiff/manual/project/license.html +share/doc/tiff/manual/project/mailinglist.html +share/doc/tiff/manual/releases/historical.html +share/doc/tiff/manual/releases/index.html +share/doc/tiff/manual/releases/v3.4beta007.html +share/doc/tiff/manual/releases/v3.4beta016.html +share/doc/tiff/manual/releases/v3.4beta018.html +share/doc/tiff/manual/releases/v3.4beta024.html +share/doc/tiff/manual/releases/v3.4beta028.html +share/doc/tiff/manual/releases/v3.4beta029.html +share/doc/tiff/manual/releases/v3.4beta031.html +share/doc/tiff/manual/releases/v3.4beta032.html +share/doc/tiff/manual/releases/v3.4beta033.html +share/doc/tiff/manual/releases/v3.4beta034.html +share/doc/tiff/manual/releases/v3.4beta035.html +share/doc/tiff/manual/releases/v3.4beta036.html +share/doc/tiff/manual/releases/v3.5.1.html +share/doc/tiff/manual/releases/v3.5.2.html +share/doc/tiff/manual/releases/v3.5.3.html +share/doc/tiff/manual/releases/v3.5.4.html +share/doc/tiff/manual/releases/v3.5.5.html +share/doc/tiff/manual/releases/v3.5.6beta.html +share/doc/tiff/manual/releases/v3.5.7.html +share/doc/tiff/manual/releases/v3.6.0.html +share/doc/tiff/manual/releases/v3.6.1.html +share/doc/tiff/manual/releases/v3.7.0.html +share/doc/tiff/manual/releases/v3.7.0alpha.html +share/doc/tiff/manual/releases/v3.7.0beta.html +share/doc/tiff/manual/releases/v3.7.0beta2.html +share/doc/tiff/manual/releases/v3.7.1.html +share/doc/tiff/manual/releases/v3.7.2.html +share/doc/tiff/manual/releases/v3.7.3.html +share/doc/tiff/manual/releases/v3.7.4.html +share/doc/tiff/manual/releases/v3.8.0.html +share/doc/tiff/manual/releases/v3.8.1.html +share/doc/tiff/manual/releases/v3.8.2.html +share/doc/tiff/manual/releases/v3.9.0.html +share/doc/tiff/manual/releases/v3.9.0beta.html +share/doc/tiff/manual/releases/v3.9.1.html +share/doc/tiff/manual/releases/v3.9.2.html +share/doc/tiff/manual/releases/v3.9.3.html +share/doc/tiff/manual/releases/v3.9.4.html +share/doc/tiff/manual/releases/v3.9.5.html +share/doc/tiff/manual/releases/v4.0.0.html +share/doc/tiff/manual/releases/v4.0.1.html +share/doc/tiff/manual/releases/v4.0.10.html +share/doc/tiff/manual/releases/v4.0.2.html +share/doc/tiff/manual/releases/v4.0.3.html +share/doc/tiff/manual/releases/v4.0.4.html +share/doc/tiff/manual/releases/v4.0.4beta.html +share/doc/tiff/manual/releases/v4.0.5.html +share/doc/tiff/manual/releases/v4.0.6.html +share/doc/tiff/manual/releases/v4.0.7.html +share/doc/tiff/manual/releases/v4.0.8.html +share/doc/tiff/manual/releases/v4.0.9.html +share/doc/tiff/manual/releases/v4.1.0.html +share/doc/tiff/manual/releases/v4.2.0.html +share/doc/tiff/manual/releases/v4.3.0.html +share/doc/tiff/manual/releases/v4.4.0.html +share/doc/tiff/manual/releases/v${PKGVERSION}.html +share/doc/tiff/manual/search.html +share/doc/tiff/manual/searchindex.js +share/doc/tiff/manual/specification/bigtiff.html +share/doc/tiff/manual/specification/coverage-bigtiff.html +share/doc/tiff/manual/specification/coverage.html +share/doc/tiff/manual/specification/index.html +share/doc/tiff/manual/specification/technote2.html +share/doc/tiff/manual/terms.html +share/doc/tiff/manual/tools.html +share/doc/tiff/manual/tools/fax2ps.html +share/doc/tiff/manual/tools/fax2tiff.html +share/doc/tiff/manual/tools/pal2rgb.html +share/doc/tiff/manual/tools/ppm2tiff.html +share/doc/tiff/manual/tools/raw2tiff.html +share/doc/tiff/manual/tools/rgb2ycbcr.html +share/doc/tiff/manual/tools/thumbnail.html +share/doc/tiff/manual/tools/tiff2bw.html +share/doc/tiff/manual/tools/tiff2pdf.html +share/doc/tiff/manual/tools/tiff2ps.html +share/doc/tiff/manual/tools/tiff2rgba.html +share/doc/tiff/manual/tools/tiffcmp.html +share/doc/tiff/manual/tools/tiffcp.html +share/doc/tiff/manual/tools/tiffcrop.html +share/doc/tiff/manual/tools/tiffdither.html +share/doc/tiff/manual/tools/tiffdump.html +share/doc/tiff/manual/tools/tiffgt.html +share/doc/tiff/manual/tools/tiffinfo.html +share/doc/tiff/manual/tools/tiffmedian.html +share/doc/tiff/manual/tools/tiffset.html +share/doc/tiff/manual/tools/tiffsplit.html Index: pkgsrc/graphics/tiff/distinfo diff -u pkgsrc/graphics/tiff/distinfo:1.103 pkgsrc/graphics/tiff/distinfo:1.104 --- pkgsrc/graphics/tiff/distinfo:1.103 Sun May 29 12:24:16 2022 +++ pkgsrc/graphics/tiff/distinfo Tue Jan 3 16:38:50 2023 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.103 2022/05/29 12:24:16 gdt Exp $ +$NetBSD: distinfo,v 1.104 2023/01/03 16:38:50 wiz Exp $ -BLAKE2s (tiff-4.4.0.tar.gz) = 4d7e2a0dcf15c0c69bcf5f7e9e89f9f381207905ea619f4457ffed17c4b659d0 -SHA512 (tiff-4.4.0.tar.gz) = 78ffab7667d0feb8d38571bc482390fc6dd20b93a798ab3a8b5cc7d5ab00b44a37f67eb8f19421e4ab33ad89ab40e382128f8a4bbdf097e0efb6d9fca5ac6f9e -Size (tiff-4.4.0.tar.gz) = 2841082 bytes -SHA1 (patch-Makefile.in) = 96101d4c8208346b4e8778e816a0a7f4e0b03450 +BLAKE2s (tiff-4.5.0.tar.gz) = c3251c0f5c8053bdd1eda5ca8cea75d95f8deaa06141397121b12c33dc8afd56 +SHA512 (tiff-4.5.0.tar.gz) = 02b94e355ac96ac2ecce717aff2b1e04b1bfe95bcd0cfa72e09cbd580c45de0afe341170daad0cf560064b5a8910b3e56ef260484c69919bb0545df90abe7fa9 +Size (tiff-4.5.0.tar.gz) = 3880855 bytes +SHA1 (patch-Makefile.in) = 7c3a6214da2d631df064893bba8809c357d856cf Index: pkgsrc/graphics/tiff/patches/patch-Makefile.in diff -u pkgsrc/graphics/tiff/patches/patch-Makefile.in:1.2 pkgsrc/graphics/tiff/patches/patch-Makefile.in:1.3 --- pkgsrc/graphics/tiff/patches/patch-Makefile.in:1.2 Sun May 29 12:24:16 2022 +++ pkgsrc/graphics/tiff/patches/patch-Makefile.in Tue Jan 3 16:38:50 2023 @@ -1,4 +1,4 @@ -$NetBSD: patch-Makefile.in,v 1.2 2022/05/29 12:24:16 gdt Exp $ +$NetBSD: patch-Makefile.in,v 1.3 2023/01/03 16:38:50 wiz Exp $ From MacPorts: Rename VERSION to VERSION.txt so that it does not collide with the C++ @@ -8,9 +8,9 @@ https://gitlab.com/libtiff/libtiff/-/iss \todo Upstream has resolved the problem a different way and we should likely drop this patch. ---- Makefile.in.orig 2022-05-20 16:11:32.000000000 +0000 +--- Makefile.in.orig 2022-12-13 14:18:29.000000000 +0000 +++ Makefile.in -@@ -425,7 +425,7 @@ docfiles = \ +@@ -434,7 +434,7 @@ docfiles = \ README.md \ RELEASE-DATE \ TODO \ @@ -19,12 +19,12 @@ likely drop this patch. EXTRA_DIST = \ placeholder.h \ -@@ -992,7 +992,7 @@ distcheck-hook: +@@ -1001,7 +1001,7 @@ distcheck-hook: release: (rm -f $(top_srcdir)/RELEASE-DATE && echo $(LIBTIFF_RELEASE_DATE) > $(top_srcdir)/RELEASE-DATE) - (rm -f $(top_srcdir)/VERSION && echo $(LIBTIFF_VERSION) > $(top_srcdir)/VERSION) + (rm -f $(top_srcdir)/VERSION.txt && echo $(LIBTIFF_VERSION) > $(top_srcdir)/VERSION.txt) - (rm -f $(top_srcdir)/libtiff/tiffvers.h && sed 's,LIBTIFF_VERSION,$(LIBTIFF_VERSION),;s,LIBTIFF_RELEASE_DATE,$(LIBTIFF_RELEASE_DATE),' $(top_srcdir)/libtiff/tiffvers.h.in > $(top_srcdir)/libtiff/tiffvers.h) + (rm -f $(top_srcdir)/libtiff/tiffvers.h && sed 's,LIBTIFF_VERSION,$(LIBTIFF_VERSION),;s,LIBTIFF_RELEASE_DATE,$(LIBTIFF_RELEASE_DATE),;s,LIBTIFF_MAJOR_VERSION,$(LIBTIFF_MAJOR_VERSION),;s,LIBTIFF_MINOR_VERSION,$(LIBTIFF_MINOR_VERSION),;s,LIBTIFF_MICRO_VERSION,$(LIBTIFF_MICRO_VERSION),' $(top_srcdir)/libtiff/tiffvers.h.in > $(top_srcdir)/libtiff/tiffvers.h) coverity: $(MAKE) clean --_----------=_1672763931289690--