Tue Jan 3 16:38:50 2023 UTC ()
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.


(wiz)
diff -r1.154 -r1.155 pkgsrc/graphics/tiff/Makefile
diff -r1.30 -r1.31 pkgsrc/graphics/tiff/PLIST
diff -r1.103 -r1.104 pkgsrc/graphics/tiff/distinfo
diff -r1.2 -r1.3 pkgsrc/graphics/tiff/patches/patch-Makefile.in

cvs diff -r1.154 -r1.155 pkgsrc/graphics/tiff/Makefile (expand / switch to unified diff)

--- pkgsrc/graphics/tiff/Makefile 2022/06/05 14:02:44 1.154
+++ pkgsrc/graphics/tiff/Makefile 2023/01/03 16:38:50 1.155
@@ -1,16 +1,16 @@ @@ -1,16 +1,16 @@
1# $NetBSD: Makefile,v 1.154 2022/06/05 14:02:44 gdt Exp $ 1# $NetBSD: Makefile,v 1.155 2023/01/03 16:38:50 wiz Exp $
2 2
3VERSION_BASE= 4.4.0 3VERSION_BASE= 4.5.0
4# Accomodate testing unreleased versions. 4# Accomodate testing unreleased versions.
5#VERSION_RC= rc1 5#VERSION_RC= rc1
6DISTNAME= tiff-${VERSION_BASE}${VERSION_RC} 6DISTNAME= tiff-${VERSION_BASE}${VERSION_RC}
7CATEGORIES= graphics 7CATEGORIES= graphics
8MASTER_SITES= https://download.osgeo.org/libtiff/ 8MASTER_SITES= https://download.osgeo.org/libtiff/
9 9
10MAINTAINER= gdt@NetBSD.org 10MAINTAINER= gdt@NetBSD.org
11HOMEPAGE= http://simplesystems.org/libtiff/ 11HOMEPAGE= http://simplesystems.org/libtiff/
12COMMENT= Library and tools for reading and writing TIFF data files 12COMMENT= Library and tools for reading and writing TIFF data files
13LICENSE= mit 13LICENSE= mit
14 14
15WRKSRC= ${WRKDIR}/tiff-${VERSION_BASE} 15WRKSRC= ${WRKDIR}/tiff-${VERSION_BASE}
16 16

cvs diff -r1.30 -r1.31 pkgsrc/graphics/tiff/PLIST (expand / switch to unified diff)

--- pkgsrc/graphics/tiff/PLIST 2022/05/29 12:24:16 1.30
+++ pkgsrc/graphics/tiff/PLIST 2023/01/03 16:38:50 1.31
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.30 2022/05/29 12:24:16 gdt Exp $ 1@comment $NetBSD: PLIST,v 1.31 2023/01/03 16:38:50 wiz Exp $
2bin/fax2ps 2bin/fax2ps
3bin/fax2tiff 3bin/fax2tiff
4bin/pal2rgb 4bin/pal2rgb
5bin/ppm2tiff 5bin/ppm2tiff
6bin/raw2tiff 6bin/raw2tiff
7bin/tiff2bw 7bin/tiff2bw
8bin/tiff2pdf 8bin/tiff2pdf
9bin/tiff2ps 9bin/tiff2ps
10bin/tiff2rgba 10bin/tiff2rgba
11bin/tiffcmp 11bin/tiffcmp
12bin/tiffcp 12bin/tiffcp
13bin/tiffcrop 13bin/tiffcrop
14bin/tiffdither 14bin/tiffdither
@@ -20,221 +20,446 @@ bin/tiffsplit @@ -20,221 +20,446 @@ bin/tiffsplit
20include/tiff.h 20include/tiff.h
21include/tiffconf.h 21include/tiffconf.h
22include/tiffio.h 22include/tiffio.h
23include/tiffio.hxx 23include/tiffio.hxx
24include/tiffvers.h 24include/tiffvers.h
25lib/libtiff.la 25lib/libtiff.la
26lib/libtiffxx.la 26lib/libtiffxx.la
27lib/pkgconfig/libtiff-4.pc 27lib/pkgconfig/libtiff-4.pc
28man/man1/fax2ps.1 28man/man1/fax2ps.1
29man/man1/fax2tiff.1 29man/man1/fax2tiff.1
30man/man1/pal2rgb.1 30man/man1/pal2rgb.1
31man/man1/ppm2tiff.1 31man/man1/ppm2tiff.1
32man/man1/raw2tiff.1 32man/man1/raw2tiff.1
 33man/man1/rgb2ycbcr.1
 34man/man1/thumbnail.1
33man/man1/tiff2bw.1 35man/man1/tiff2bw.1
34man/man1/tiff2pdf.1 36man/man1/tiff2pdf.1
35man/man1/tiff2ps.1 37man/man1/tiff2ps.1
36man/man1/tiff2rgba.1 38man/man1/tiff2rgba.1
37man/man1/tiffcmp.1 39man/man1/tiffcmp.1
38man/man1/tiffcp.1 40man/man1/tiffcp.1
39man/man1/tiffcrop.1 41man/man1/tiffcrop.1
40man/man1/tiffdither.1 42man/man1/tiffdither.1
41man/man1/tiffdump.1 43man/man1/tiffdump.1
42man/man1/tiffgt.1 44man/man1/tiffgt.1
43man/man1/tiffinfo.1 45man/man1/tiffinfo.1
44man/man1/tiffmedian.1 46man/man1/tiffmedian.1
45man/man1/tiffset.1 47man/man1/tiffset.1
46man/man1/tiffsplit.1 48man/man1/tiffsplit.1
 49man/man3/TIFFAccessTagMethods.3
 50man/man3/TIFFClientInfo.3
47man/man3/TIFFClose.3 51man/man3/TIFFClose.3
 52man/man3/TIFFCreateDirectory.3
 53man/man3/TIFFCustomDirectory.3
 54man/man3/TIFFCustomTagList.3
48man/man3/TIFFDataWidth.3 55man/man3/TIFFDataWidth.3
 56man/man3/TIFFDeferStrileArrayWriting.3
49man/man3/TIFFError.3 57man/man3/TIFFError.3
50man/man3/TIFFFieldDataType.3 58man/man3/TIFFFieldDataType.3
51man/man3/TIFFFieldName.3 59man/man3/TIFFFieldName.3
52man/man3/TIFFFieldPassCount.3 60man/man3/TIFFFieldPassCount.3
 61man/man3/TIFFFieldQuery.3
53man/man3/TIFFFieldReadCount.3 62man/man3/TIFFFieldReadCount.3
54man/man3/TIFFFieldTag.3 63man/man3/TIFFFieldTag.3
55man/man3/TIFFFieldWriteCount.3 64man/man3/TIFFFieldWriteCount.3
56man/man3/TIFFFlush.3 65man/man3/TIFFFlush.3
57man/man3/TIFFGetField.3 66man/man3/TIFFGetField.3
 67man/man3/TIFFMergeFieldInfo.3
58man/man3/TIFFOpen.3 68man/man3/TIFFOpen.3
59man/man3/TIFFPrintDirectory.3 69man/man3/TIFFPrintDirectory.3
 70man/man3/TIFFProcFunctions.3
60man/man3/TIFFRGBAImage.3 71man/man3/TIFFRGBAImage.3
61man/man3/TIFFReadDirectory.3 72man/man3/TIFFReadDirectory.3
62man/man3/TIFFReadEncodedStrip.3 73man/man3/TIFFReadEncodedStrip.3
63man/man3/TIFFReadEncodedTile.3 74man/man3/TIFFReadEncodedTile.3
 75man/man3/TIFFReadFromUserBuffer.3
64man/man3/TIFFReadRGBAImage.3 76man/man3/TIFFReadRGBAImage.3
65man/man3/TIFFReadRGBAStrip.3 77man/man3/TIFFReadRGBAStrip.3
66man/man3/TIFFReadRGBATile.3 78man/man3/TIFFReadRGBATile.3
67man/man3/TIFFReadRawStrip.3 79man/man3/TIFFReadRawStrip.3
68man/man3/TIFFReadRawTile.3 80man/man3/TIFFReadRawTile.3
69man/man3/TIFFReadScanline.3 81man/man3/TIFFReadScanline.3
70man/man3/TIFFReadTile.3 82man/man3/TIFFReadTile.3
71man/man3/TIFFSetDirectory.3 83man/man3/TIFFSetDirectory.3
72man/man3/TIFFSetField.3 84man/man3/TIFFSetField.3
 85man/man3/TIFFSetTagExtender.3
 86man/man3/TIFFStrileQuery.3
73man/man3/TIFFWarning.3 87man/man3/TIFFWarning.3
74man/man3/TIFFWriteDirectory.3 88man/man3/TIFFWriteDirectory.3
75man/man3/TIFFWriteEncodedStrip.3 89man/man3/TIFFWriteEncodedStrip.3
76man/man3/TIFFWriteEncodedTile.3 90man/man3/TIFFWriteEncodedTile.3
77man/man3/TIFFWriteRawStrip.3 91man/man3/TIFFWriteRawStrip.3
78man/man3/TIFFWriteRawTile.3 92man/man3/TIFFWriteRawTile.3
79man/man3/TIFFWriteScanline.3 93man/man3/TIFFWriteScanline.3
80man/man3/TIFFWriteTile.3 94man/man3/TIFFWriteTile.3
81man/man3/TIFFbuffer.3 95man/man3/TIFFbuffer.3
82man/man3/TIFFcodec.3 96man/man3/TIFFcodec.3
83man/man3/TIFFcolor.3 97man/man3/TIFFcolor.3
84man/man3/TIFFmemory.3 98man/man3/TIFFmemory.3
85man/man3/TIFFquery.3 99man/man3/TIFFquery.3
86man/man3/TIFFsize.3 100man/man3/TIFFsize.3
87man/man3/TIFFstrip.3 101man/man3/TIFFstrip.3
88man/man3/TIFFswab.3 102man/man3/TIFFswab.3
89man/man3/TIFFtile.3 103man/man3/TIFFtile.3
 104man/man3/_TIFFRewriteField.3
 105man/man3/_TIFFauxiliary.3
90man/man3/libtiff.3 106man/man3/libtiff.3
91share/doc/tiff/COPYRIGHT 
92share/doc/tiff/ChangeLog 107share/doc/tiff/ChangeLog
 108share/doc/tiff/LICENSE.md
93share/doc/tiff/README.md 109share/doc/tiff/README.md
94share/doc/tiff/RELEASE-DATE 110share/doc/tiff/RELEASE-DATE
95share/doc/tiff/TODO 111share/doc/tiff/TODO
96share/doc/tiff/VERSION 112share/doc/tiff/VERSION
97share/doc/tiff/html/TIFFTechNote2.html 113share/doc/tiff/manual/.buildinfo
98share/doc/tiff/html/addingtags.html 114share/doc/tiff/manual/_images/bali.jpg
99share/doc/tiff/html/bugs.html 115share/doc/tiff/manual/_images/cat.gif
100share/doc/tiff/html/build.html 116share/doc/tiff/manual/_images/cover.jpg
101share/doc/tiff/html/contrib.html 117share/doc/tiff/manual/_images/cramps.gif
102share/doc/tiff/html/document.html 118share/doc/tiff/manual/_images/dave.gif
103share/doc/tiff/html/images.html 119share/doc/tiff/manual/_images/esri.png
104share/doc/tiff/html/images/back.gif 120share/doc/tiff/manual/_images/jim.gif
105share/doc/tiff/html/images/bali.jpg 121share/doc/tiff/manual/_images/leica.png
106share/doc/tiff/html/images/cat.gif 122share/doc/tiff/manual/_images/quad.jpg
107share/doc/tiff/html/images/cover.jpg 123share/doc/tiff/manual/_images/ring.gif
108share/doc/tiff/html/images/cramps.gif 124share/doc/tiff/manual/_images/safe.png
109share/doc/tiff/html/images/dave.gif 125share/doc/tiff/manual/_images/smallliz.jpg
110share/doc/tiff/html/images/info.gif 126share/doc/tiff/manual/_images/strike.gif
111share/doc/tiff/html/images/jello.jpg 127share/doc/tiff/manual/_images/weogeo.png
112share/doc/tiff/html/images/jim.gif 128share/doc/tiff/manual/_sources/addingtags.rst.txt
113share/doc/tiff/html/images/note.gif 129share/doc/tiff/manual/_sources/build.rst.txt
114share/doc/tiff/html/images/oxford.gif 130share/doc/tiff/manual/_sources/contrib.rst.txt
115share/doc/tiff/html/images/quad.jpg 131share/doc/tiff/manual/_sources/functions.rst.txt
116share/doc/tiff/html/images/ring.gif 132share/doc/tiff/manual/_sources/functions/TIFFAccessTagMethods.rst.txt
117share/doc/tiff/html/images/smallliz.jpg 133share/doc/tiff/manual/_sources/functions/TIFFClientInfo.rst.txt
118share/doc/tiff/html/images/strike.gif 134share/doc/tiff/manual/_sources/functions/TIFFClose.rst.txt
119share/doc/tiff/html/images/warning.gif 135share/doc/tiff/manual/_sources/functions/TIFFCreateDirectory.rst.txt
120share/doc/tiff/html/index.html 136share/doc/tiff/manual/_sources/functions/TIFFCustomDirectory.rst.txt
121share/doc/tiff/html/internals.html 137share/doc/tiff/manual/_sources/functions/TIFFCustomTagList.rst.txt
122share/doc/tiff/html/intro.html 138share/doc/tiff/manual/_sources/functions/TIFFDataWidth.rst.txt
123share/doc/tiff/html/libtiff.html 139share/doc/tiff/manual/_sources/functions/TIFFDeferStrileArrayWriting.rst.txt
124share/doc/tiff/html/man/TIFFClose.3tiff.html 140share/doc/tiff/manual/_sources/functions/TIFFError.rst.txt
125share/doc/tiff/html/man/TIFFDataWidth.3tiff.html 141share/doc/tiff/manual/_sources/functions/TIFFFieldDataType.rst.txt
126share/doc/tiff/html/man/TIFFError.3tiff.html 142share/doc/tiff/manual/_sources/functions/TIFFFieldName.rst.txt
127share/doc/tiff/html/man/TIFFFieldDataType.3tiff.html 143share/doc/tiff/manual/_sources/functions/TIFFFieldPassCount.rst.txt
128share/doc/tiff/html/man/TIFFFieldName.3tiff.html 144share/doc/tiff/manual/_sources/functions/TIFFFieldQuery.rst.txt
129share/doc/tiff/html/man/TIFFFieldPassCount.3tiff.html 145share/doc/tiff/manual/_sources/functions/TIFFFieldReadCount.rst.txt
130share/doc/tiff/html/man/TIFFFieldReadCount.3tiff.html 146share/doc/tiff/manual/_sources/functions/TIFFFieldTag.rst.txt
131share/doc/tiff/html/man/TIFFFieldTag.3tiff.html 147share/doc/tiff/manual/_sources/functions/TIFFFieldWriteCount.rst.txt
132share/doc/tiff/html/man/TIFFFieldWriteCount.3tiff.html 148share/doc/tiff/manual/_sources/functions/TIFFFlush.rst.txt
133share/doc/tiff/html/man/TIFFFlush.3tiff.html 149share/doc/tiff/manual/_sources/functions/TIFFGetField.rst.txt
134share/doc/tiff/html/man/TIFFGetField.3tiff.html 150share/doc/tiff/manual/_sources/functions/TIFFMergeFieldInfo.rst.txt
135share/doc/tiff/html/man/TIFFOpen.3tiff.html 151share/doc/tiff/manual/_sources/functions/TIFFOpen.rst.txt
136share/doc/tiff/html/man/TIFFPrintDirectory.3tiff.html 152share/doc/tiff/manual/_sources/functions/TIFFOpenOptions.rst.txt
137share/doc/tiff/html/man/TIFFRGBAImage.3tiff.html 153share/doc/tiff/manual/_sources/functions/TIFFPrintDirectory.rst.txt
138share/doc/tiff/html/man/TIFFReadDirectory.3tiff.html 154share/doc/tiff/manual/_sources/functions/TIFFProcFunctions.rst.txt
139share/doc/tiff/html/man/TIFFReadEncodedStrip.3tiff.html 155share/doc/tiff/manual/_sources/functions/TIFFRGBAImage.rst.txt
140share/doc/tiff/html/man/TIFFReadEncodedTile.3tiff.html 156share/doc/tiff/manual/_sources/functions/TIFFReadDirectory.rst.txt
141share/doc/tiff/html/man/TIFFReadRGBAImage.3tiff.html 157share/doc/tiff/manual/_sources/functions/TIFFReadEncodedStrip.rst.txt
142share/doc/tiff/html/man/TIFFReadRGBAStrip.3tiff.html 158share/doc/tiff/manual/_sources/functions/TIFFReadEncodedTile.rst.txt
143share/doc/tiff/html/man/TIFFReadRGBATile.3tiff.html 159share/doc/tiff/manual/_sources/functions/TIFFReadFromUserBuffer.rst.txt
144share/doc/tiff/html/man/TIFFReadRawStrip.3tiff.html 160share/doc/tiff/manual/_sources/functions/TIFFReadRGBAImage.rst.txt
145share/doc/tiff/html/man/TIFFReadRawTile.3tiff.html 161share/doc/tiff/manual/_sources/functions/TIFFReadRGBAStrip.rst.txt
146share/doc/tiff/html/man/TIFFReadScanline.3tiff.html 162share/doc/tiff/manual/_sources/functions/TIFFReadRGBATile.rst.txt
147share/doc/tiff/html/man/TIFFReadTile.3tiff.html 163share/doc/tiff/manual/_sources/functions/TIFFReadRawStrip.rst.txt
148share/doc/tiff/html/man/TIFFSetDirectory.3tiff.html 164share/doc/tiff/manual/_sources/functions/TIFFReadRawTile.rst.txt
149share/doc/tiff/html/man/TIFFSetField.3tiff.html 165share/doc/tiff/manual/_sources/functions/TIFFReadScanline.rst.txt
150share/doc/tiff/html/man/TIFFWarning.3tiff.html 166share/doc/tiff/manual/_sources/functions/TIFFReadTile.rst.txt
151share/doc/tiff/html/man/TIFFWriteDirectory.3tiff.html 167share/doc/tiff/manual/_sources/functions/TIFFSetDirectory.rst.txt
152share/doc/tiff/html/man/TIFFWriteEncodedStrip.3tiff.html 168share/doc/tiff/manual/_sources/functions/TIFFSetField.rst.txt
153share/doc/tiff/html/man/TIFFWriteEncodedTile.3tiff.html 169share/doc/tiff/manual/_sources/functions/TIFFSetTagExtender.rst.txt
154share/doc/tiff/html/man/TIFFWriteRawStrip.3tiff.html 170share/doc/tiff/manual/_sources/functions/TIFFStrileQuery.rst.txt
155share/doc/tiff/html/man/TIFFWriteRawTile.3tiff.html 171share/doc/tiff/manual/_sources/functions/TIFFWarning.rst.txt
156share/doc/tiff/html/man/TIFFWriteScanline.3tiff.html 172share/doc/tiff/manual/_sources/functions/TIFFWriteDirectory.rst.txt
157share/doc/tiff/html/man/TIFFWriteTile.3tiff.html 173share/doc/tiff/manual/_sources/functions/TIFFWriteEncodedStrip.rst.txt
158share/doc/tiff/html/man/TIFFbuffer.3tiff.html 174share/doc/tiff/manual/_sources/functions/TIFFWriteEncodedTile.rst.txt
159share/doc/tiff/html/man/TIFFcodec.3tiff.html 175share/doc/tiff/manual/_sources/functions/TIFFWriteRawStrip.rst.txt
160share/doc/tiff/html/man/TIFFcolor.3tiff.html 176share/doc/tiff/manual/_sources/functions/TIFFWriteRawTile.rst.txt
161share/doc/tiff/html/man/TIFFmemory.3tiff.html 177share/doc/tiff/manual/_sources/functions/TIFFWriteScanline.rst.txt
162share/doc/tiff/html/man/TIFFquery.3tiff.html 178share/doc/tiff/manual/_sources/functions/TIFFWriteTile.rst.txt
163share/doc/tiff/html/man/TIFFsize.3tiff.html 179share/doc/tiff/manual/_sources/functions/TIFFbuffer.rst.txt
164share/doc/tiff/html/man/TIFFstrip.3tiff.html 180share/doc/tiff/manual/_sources/functions/TIFFcodec.rst.txt
165share/doc/tiff/html/man/TIFFswab.3tiff.html 181share/doc/tiff/manual/_sources/functions/TIFFcolor.rst.txt
166share/doc/tiff/html/man/TIFFtile.3tiff.html 182share/doc/tiff/manual/_sources/functions/TIFFmemory.rst.txt
167share/doc/tiff/html/man/fax2ps.1.html 183share/doc/tiff/manual/_sources/functions/TIFFquery.rst.txt
168share/doc/tiff/html/man/fax2tiff.1.html 184share/doc/tiff/manual/_sources/functions/TIFFsize.rst.txt
169share/doc/tiff/html/man/index.html 185share/doc/tiff/manual/_sources/functions/TIFFstrip.rst.txt
170share/doc/tiff/html/man/libtiff.3tiff.html 186share/doc/tiff/manual/_sources/functions/TIFFswab.rst.txt
171share/doc/tiff/html/man/pal2rgb.1.html 187share/doc/tiff/manual/_sources/functions/TIFFtile.rst.txt
172share/doc/tiff/html/man/ppm2tiff.1.html 188share/doc/tiff/manual/_sources/functions/_TIFFRewriteField.rst.txt
173share/doc/tiff/html/man/raw2tiff.1.html 189share/doc/tiff/manual/_sources/functions/_TIFFauxiliary.rst.txt
174share/doc/tiff/html/man/tiff2bw.1.html 190share/doc/tiff/manual/_sources/functions/libtiff.rst.txt
175share/doc/tiff/html/man/tiff2pdf.1.html 191share/doc/tiff/manual/_sources/images.rst.txt
176share/doc/tiff/html/man/tiff2ps.1.html 192share/doc/tiff/manual/_sources/index.rst.txt
177share/doc/tiff/html/man/tiff2rgba.1.html 193share/doc/tiff/manual/_sources/internals.rst.txt
178share/doc/tiff/html/man/tiffcmp.1.html 194share/doc/tiff/manual/_sources/libtiff.rst.txt
179share/doc/tiff/html/man/tiffcp.1.html 195share/doc/tiff/manual/_sources/project/acknowledgements.rst.txt
180share/doc/tiff/html/man/tiffcrop.1.html 196share/doc/tiff/manual/_sources/project/bugs.rst.txt
181share/doc/tiff/html/man/tiffdither.1.html 197share/doc/tiff/manual/_sources/project/index.rst.txt
182share/doc/tiff/html/man/tiffdump.1.html 198share/doc/tiff/manual/_sources/project/license.rst.txt
183share/doc/tiff/html/man/tiffgt.1.html 199share/doc/tiff/manual/_sources/project/mailinglist.rst.txt
184share/doc/tiff/html/man/tiffinfo.1.html 200share/doc/tiff/manual/_sources/releases/historical.rst.txt
185share/doc/tiff/html/man/tiffmedian.1.html 201share/doc/tiff/manual/_sources/releases/index.rst.txt
186share/doc/tiff/html/man/tiffset.1.html 202share/doc/tiff/manual/_sources/releases/v3.4beta007.rst.txt
187share/doc/tiff/html/man/tiffsplit.1.html 203share/doc/tiff/manual/_sources/releases/v3.4beta016.rst.txt
188share/doc/tiff/html/misc.html 204share/doc/tiff/manual/_sources/releases/v3.4beta018.rst.txt
189share/doc/tiff/html/support.html 205share/doc/tiff/manual/_sources/releases/v3.4beta024.rst.txt
190share/doc/tiff/html/tools.html 206share/doc/tiff/manual/_sources/releases/v3.4beta028.rst.txt
191share/doc/tiff/html/v3.4beta007.html 207share/doc/tiff/manual/_sources/releases/v3.4beta029.rst.txt
192share/doc/tiff/html/v3.4beta016.html 208share/doc/tiff/manual/_sources/releases/v3.4beta031.rst.txt
193share/doc/tiff/html/v3.4beta018.html 209share/doc/tiff/manual/_sources/releases/v3.4beta032.rst.txt
194share/doc/tiff/html/v3.4beta024.html 210share/doc/tiff/manual/_sources/releases/v3.4beta033.rst.txt
195share/doc/tiff/html/v3.4beta028.html 211share/doc/tiff/manual/_sources/releases/v3.4beta034.rst.txt
196share/doc/tiff/html/v3.4beta029.html 212share/doc/tiff/manual/_sources/releases/v3.4beta035.rst.txt
197share/doc/tiff/html/v3.4beta031.html 213share/doc/tiff/manual/_sources/releases/v3.4beta036.rst.txt
198share/doc/tiff/html/v3.4beta032.html 214share/doc/tiff/manual/_sources/releases/v3.5.1.rst.txt
199share/doc/tiff/html/v3.4beta033.html 215share/doc/tiff/manual/_sources/releases/v3.5.2.rst.txt
200share/doc/tiff/html/v3.4beta034.html 216share/doc/tiff/manual/_sources/releases/v3.5.3.rst.txt
201share/doc/tiff/html/v3.4beta035.html 217share/doc/tiff/manual/_sources/releases/v3.5.4.rst.txt
202share/doc/tiff/html/v3.4beta036.html 218share/doc/tiff/manual/_sources/releases/v3.5.5.rst.txt
203share/doc/tiff/html/v3.5.1.html 219share/doc/tiff/manual/_sources/releases/v3.5.6beta.rst.txt
204share/doc/tiff/html/v3.5.2.html 220share/doc/tiff/manual/_sources/releases/v3.5.7.rst.txt
205share/doc/tiff/html/v3.5.3.html 221share/doc/tiff/manual/_sources/releases/v3.6.0.rst.txt
206share/doc/tiff/html/v3.5.4.html 222share/doc/tiff/manual/_sources/releases/v3.6.1.rst.txt
207share/doc/tiff/html/v3.5.5.html 223share/doc/tiff/manual/_sources/releases/v3.7.0.rst.txt
208share/doc/tiff/html/v3.5.6-beta.html 224share/doc/tiff/manual/_sources/releases/v3.7.0alpha.rst.txt
209share/doc/tiff/html/v3.5.7.html 225share/doc/tiff/manual/_sources/releases/v3.7.0beta.rst.txt
210share/doc/tiff/html/v3.6.0.html 226share/doc/tiff/manual/_sources/releases/v3.7.0beta2.rst.txt
211share/doc/tiff/html/v3.6.1.html 227share/doc/tiff/manual/_sources/releases/v3.7.1.rst.txt
212share/doc/tiff/html/v3.7.0.html 228share/doc/tiff/manual/_sources/releases/v3.7.2.rst.txt
213share/doc/tiff/html/v3.7.0alpha.html 229share/doc/tiff/manual/_sources/releases/v3.7.3.rst.txt
214share/doc/tiff/html/v3.7.0beta.html 230share/doc/tiff/manual/_sources/releases/v3.7.4.rst.txt
215share/doc/tiff/html/v3.7.0beta2.html 231share/doc/tiff/manual/_sources/releases/v3.8.0.rst.txt
216share/doc/tiff/html/v3.7.1.html 232share/doc/tiff/manual/_sources/releases/v3.8.1.rst.txt
217share/doc/tiff/html/v3.7.2.html 233share/doc/tiff/manual/_sources/releases/v3.8.2.rst.txt
218share/doc/tiff/html/v3.7.3.html 234share/doc/tiff/manual/_sources/releases/v3.9.0.rst.txt
219share/doc/tiff/html/v3.7.4.html 235share/doc/tiff/manual/_sources/releases/v3.9.0beta.rst.txt
220share/doc/tiff/html/v3.8.0.html 236share/doc/tiff/manual/_sources/releases/v3.9.1.rst.txt
221share/doc/tiff/html/v3.8.1.html 237share/doc/tiff/manual/_sources/releases/v3.9.2.rst.txt
222share/doc/tiff/html/v3.8.2.html 238share/doc/tiff/manual/_sources/releases/v3.9.3.rst.txt
223share/doc/tiff/html/v3.9.0beta.html 239share/doc/tiff/manual/_sources/releases/v3.9.4.rst.txt
224share/doc/tiff/html/v3.9.1.html 240share/doc/tiff/manual/_sources/releases/v3.9.5.rst.txt
225share/doc/tiff/html/v3.9.2.html 241share/doc/tiff/manual/_sources/releases/v4.0.0.rst.txt
226share/doc/tiff/html/v4.0.0.html 242share/doc/tiff/manual/_sources/releases/v4.0.1.rst.txt
227share/doc/tiff/html/v4.0.1.html 243share/doc/tiff/manual/_sources/releases/v4.0.10.rst.txt
228share/doc/tiff/html/v4.0.10.html 244share/doc/tiff/manual/_sources/releases/v4.0.2.rst.txt
229share/doc/tiff/html/v4.0.2.html 245share/doc/tiff/manual/_sources/releases/v4.0.3.rst.txt
230share/doc/tiff/html/v4.0.3.html 246share/doc/tiff/manual/_sources/releases/v4.0.4.rst.txt
231share/doc/tiff/html/v4.0.4.html 247share/doc/tiff/manual/_sources/releases/v4.0.4beta.rst.txt
232share/doc/tiff/html/v4.0.4beta.html 248share/doc/tiff/manual/_sources/releases/v4.0.5.rst.txt
233share/doc/tiff/html/v4.0.5.html 249share/doc/tiff/manual/_sources/releases/v4.0.6.rst.txt
234share/doc/tiff/html/v4.0.6.html 250share/doc/tiff/manual/_sources/releases/v4.0.7.rst.txt
235share/doc/tiff/html/v4.0.7.html 251share/doc/tiff/manual/_sources/releases/v4.0.8.rst.txt
236share/doc/tiff/html/v4.0.8.html 252share/doc/tiff/manual/_sources/releases/v4.0.9.rst.txt
237share/doc/tiff/html/v4.0.9.html 253share/doc/tiff/manual/_sources/releases/v4.1.0.rst.txt
238share/doc/tiff/html/v4.1.0.html 254share/doc/tiff/manual/_sources/releases/v4.2.0.rst.txt
239share/doc/tiff/html/v4.2.0.html 255share/doc/tiff/manual/_sources/releases/v4.3.0.rst.txt
240share/doc/tiff/html/v4.3.0.html 256share/doc/tiff/manual/_sources/releases/v4.4.0.rst.txt
 257share/doc/tiff/manual/_sources/releases/v${PKGVERSION}.rst.txt
 258share/doc/tiff/manual/_sources/specification/bigtiff.rst.txt
 259share/doc/tiff/manual/_sources/specification/coverage-bigtiff.rst.txt
 260share/doc/tiff/manual/_sources/specification/coverage.rst.txt
 261share/doc/tiff/manual/_sources/specification/index.rst.txt
 262share/doc/tiff/manual/_sources/specification/technote2.rst.txt
 263share/doc/tiff/manual/_sources/terms.rst.txt
 264share/doc/tiff/manual/_sources/tools.rst.txt
 265share/doc/tiff/manual/_sources/tools/fax2ps.rst.txt
 266share/doc/tiff/manual/_sources/tools/fax2tiff.rst.txt
 267share/doc/tiff/manual/_sources/tools/pal2rgb.rst.txt
 268share/doc/tiff/manual/_sources/tools/ppm2tiff.rst.txt
 269share/doc/tiff/manual/_sources/tools/raw2tiff.rst.txt
 270share/doc/tiff/manual/_sources/tools/rgb2ycbcr.rst.txt
 271share/doc/tiff/manual/_sources/tools/thumbnail.rst.txt
 272share/doc/tiff/manual/_sources/tools/tiff2bw.rst.txt
 273share/doc/tiff/manual/_sources/tools/tiff2pdf.rst.txt
 274share/doc/tiff/manual/_sources/tools/tiff2ps.rst.txt
 275share/doc/tiff/manual/_sources/tools/tiff2rgba.rst.txt
 276share/doc/tiff/manual/_sources/tools/tiffcmp.rst.txt
 277share/doc/tiff/manual/_sources/tools/tiffcp.rst.txt
 278share/doc/tiff/manual/_sources/tools/tiffcrop.rst.txt
 279share/doc/tiff/manual/_sources/tools/tiffdither.rst.txt
 280share/doc/tiff/manual/_sources/tools/tiffdump.rst.txt
 281share/doc/tiff/manual/_sources/tools/tiffgt.rst.txt
 282share/doc/tiff/manual/_sources/tools/tiffinfo.rst.txt
 283share/doc/tiff/manual/_sources/tools/tiffmedian.rst.txt
 284share/doc/tiff/manual/_sources/tools/tiffset.rst.txt
 285share/doc/tiff/manual/_sources/tools/tiffsplit.rst.txt
 286share/doc/tiff/manual/_static/_sphinx_javascript_frameworks_compat.js
 287share/doc/tiff/manual/_static/basic.css
 288share/doc/tiff/manual/_static/contents.png
 289share/doc/tiff/manual/_static/doctools.js
 290share/doc/tiff/manual/_static/documentation_options.js
 291share/doc/tiff/manual/_static/file.png
 292share/doc/tiff/manual/_static/jquery-3.6.0.js
 293share/doc/tiff/manual/_static/jquery.js
 294share/doc/tiff/manual/_static/language_data.js
 295share/doc/tiff/manual/_static/minus.png
 296share/doc/tiff/manual/_static/navigation.png
 297share/doc/tiff/manual/_static/plus.png
 298share/doc/tiff/manual/_static/pygments.css
 299share/doc/tiff/manual/_static/searchtools.js
 300share/doc/tiff/manual/_static/sphinx_highlight.js
 301share/doc/tiff/manual/_static/sphinxdoc.css
 302share/doc/tiff/manual/_static/underscore-1.13.1.js
 303share/doc/tiff/manual/_static/underscore.js
 304share/doc/tiff/manual/addingtags.html
 305share/doc/tiff/manual/build.html
 306share/doc/tiff/manual/contrib.html
 307share/doc/tiff/manual/functions.html
 308share/doc/tiff/manual/functions/TIFFAccessTagMethods.html
 309share/doc/tiff/manual/functions/TIFFClientInfo.html
 310share/doc/tiff/manual/functions/TIFFClose.html
 311share/doc/tiff/manual/functions/TIFFCreateDirectory.html
 312share/doc/tiff/manual/functions/TIFFCustomDirectory.html
 313share/doc/tiff/manual/functions/TIFFCustomTagList.html
 314share/doc/tiff/manual/functions/TIFFDataWidth.html
 315share/doc/tiff/manual/functions/TIFFDeferStrileArrayWriting.html
 316share/doc/tiff/manual/functions/TIFFError.html
 317share/doc/tiff/manual/functions/TIFFFieldDataType.html
 318share/doc/tiff/manual/functions/TIFFFieldName.html
 319share/doc/tiff/manual/functions/TIFFFieldPassCount.html
 320share/doc/tiff/manual/functions/TIFFFieldQuery.html
 321share/doc/tiff/manual/functions/TIFFFieldReadCount.html
 322share/doc/tiff/manual/functions/TIFFFieldTag.html
 323share/doc/tiff/manual/functions/TIFFFieldWriteCount.html
 324share/doc/tiff/manual/functions/TIFFFlush.html
 325share/doc/tiff/manual/functions/TIFFGetField.html
 326share/doc/tiff/manual/functions/TIFFMergeFieldInfo.html
 327share/doc/tiff/manual/functions/TIFFOpen.html
 328share/doc/tiff/manual/functions/TIFFOpenOptions.html
 329share/doc/tiff/manual/functions/TIFFPrintDirectory.html
 330share/doc/tiff/manual/functions/TIFFProcFunctions.html
 331share/doc/tiff/manual/functions/TIFFRGBAImage.html
 332share/doc/tiff/manual/functions/TIFFReadDirectory.html
 333share/doc/tiff/manual/functions/TIFFReadEncodedStrip.html
 334share/doc/tiff/manual/functions/TIFFReadEncodedTile.html
 335share/doc/tiff/manual/functions/TIFFReadFromUserBuffer.html
 336share/doc/tiff/manual/functions/TIFFReadRGBAImage.html
 337share/doc/tiff/manual/functions/TIFFReadRGBAStrip.html
 338share/doc/tiff/manual/functions/TIFFReadRGBATile.html
 339share/doc/tiff/manual/functions/TIFFReadRawStrip.html
 340share/doc/tiff/manual/functions/TIFFReadRawTile.html
 341share/doc/tiff/manual/functions/TIFFReadScanline.html
 342share/doc/tiff/manual/functions/TIFFReadTile.html
 343share/doc/tiff/manual/functions/TIFFSetDirectory.html
 344share/doc/tiff/manual/functions/TIFFSetField.html
 345share/doc/tiff/manual/functions/TIFFSetTagExtender.html
 346share/doc/tiff/manual/functions/TIFFStrileQuery.html
 347share/doc/tiff/manual/functions/TIFFWarning.html
 348share/doc/tiff/manual/functions/TIFFWriteDirectory.html
 349share/doc/tiff/manual/functions/TIFFWriteEncodedStrip.html
 350share/doc/tiff/manual/functions/TIFFWriteEncodedTile.html
 351share/doc/tiff/manual/functions/TIFFWriteRawStrip.html
 352share/doc/tiff/manual/functions/TIFFWriteRawTile.html
 353share/doc/tiff/manual/functions/TIFFWriteScanline.html
 354share/doc/tiff/manual/functions/TIFFWriteTile.html
 355share/doc/tiff/manual/functions/TIFFbuffer.html
 356share/doc/tiff/manual/functions/TIFFcodec.html
 357share/doc/tiff/manual/functions/TIFFcolor.html
 358share/doc/tiff/manual/functions/TIFFmemory.html
 359share/doc/tiff/manual/functions/TIFFquery.html
 360share/doc/tiff/manual/functions/TIFFsize.html
 361share/doc/tiff/manual/functions/TIFFstrip.html
 362share/doc/tiff/manual/functions/TIFFswab.html
 363share/doc/tiff/manual/functions/TIFFtile.html
 364share/doc/tiff/manual/functions/_TIFFRewriteField.html
 365share/doc/tiff/manual/functions/_TIFFauxiliary.html
 366share/doc/tiff/manual/functions/libtiff.html
 367share/doc/tiff/manual/genindex.html
 368share/doc/tiff/manual/images.html
 369share/doc/tiff/manual/index.html
 370share/doc/tiff/manual/internals.html
 371share/doc/tiff/manual/libtiff.html
 372share/doc/tiff/manual/objects.inv
 373share/doc/tiff/manual/project/acknowledgements.html
 374share/doc/tiff/manual/project/bugs.html
 375share/doc/tiff/manual/project/index.html
 376share/doc/tiff/manual/project/license.html
 377share/doc/tiff/manual/project/mailinglist.html
 378share/doc/tiff/manual/releases/historical.html
 379share/doc/tiff/manual/releases/index.html
 380share/doc/tiff/manual/releases/v3.4beta007.html
 381share/doc/tiff/manual/releases/v3.4beta016.html
 382share/doc/tiff/manual/releases/v3.4beta018.html
 383share/doc/tiff/manual/releases/v3.4beta024.html
 384share/doc/tiff/manual/releases/v3.4beta028.html
 385share/doc/tiff/manual/releases/v3.4beta029.html
 386share/doc/tiff/manual/releases/v3.4beta031.html
 387share/doc/tiff/manual/releases/v3.4beta032.html
 388share/doc/tiff/manual/releases/v3.4beta033.html
 389share/doc/tiff/manual/releases/v3.4beta034.html
 390share/doc/tiff/manual/releases/v3.4beta035.html
 391share/doc/tiff/manual/releases/v3.4beta036.html
 392share/doc/tiff/manual/releases/v3.5.1.html
 393share/doc/tiff/manual/releases/v3.5.2.html
 394share/doc/tiff/manual/releases/v3.5.3.html
 395share/doc/tiff/manual/releases/v3.5.4.html
 396share/doc/tiff/manual/releases/v3.5.5.html
 397share/doc/tiff/manual/releases/v3.5.6beta.html
 398share/doc/tiff/manual/releases/v3.5.7.html
 399share/doc/tiff/manual/releases/v3.6.0.html
 400share/doc/tiff/manual/releases/v3.6.1.html
 401share/doc/tiff/manual/releases/v3.7.0.html
 402share/doc/tiff/manual/releases/v3.7.0alpha.html
 403share/doc/tiff/manual/releases/v3.7.0beta.html
 404share/doc/tiff/manual/releases/v3.7.0beta2.html
 405share/doc/tiff/manual/releases/v3.7.1.html
 406share/doc/tiff/manual/releases/v3.7.2.html
 407share/doc/tiff/manual/releases/v3.7.3.html
 408share/doc/tiff/manual/releases/v3.7.4.html
 409share/doc/tiff/manual/releases/v3.8.0.html
 410share/doc/tiff/manual/releases/v3.8.1.html
 411share/doc/tiff/manual/releases/v3.8.2.html
 412share/doc/tiff/manual/releases/v3.9.0.html
 413share/doc/tiff/manual/releases/v3.9.0beta.html
 414share/doc/tiff/manual/releases/v3.9.1.html
 415share/doc/tiff/manual/releases/v3.9.2.html
 416share/doc/tiff/manual/releases/v3.9.3.html
 417share/doc/tiff/manual/releases/v3.9.4.html
 418share/doc/tiff/manual/releases/v3.9.5.html
 419share/doc/tiff/manual/releases/v4.0.0.html
 420share/doc/tiff/manual/releases/v4.0.1.html
 421share/doc/tiff/manual/releases/v4.0.10.html
 422share/doc/tiff/manual/releases/v4.0.2.html
 423share/doc/tiff/manual/releases/v4.0.3.html
 424share/doc/tiff/manual/releases/v4.0.4.html
 425share/doc/tiff/manual/releases/v4.0.4beta.html
 426share/doc/tiff/manual/releases/v4.0.5.html
 427share/doc/tiff/manual/releases/v4.0.6.html
 428share/doc/tiff/manual/releases/v4.0.7.html
 429share/doc/tiff/manual/releases/v4.0.8.html
 430share/doc/tiff/manual/releases/v4.0.9.html
 431share/doc/tiff/manual/releases/v4.1.0.html
 432share/doc/tiff/manual/releases/v4.2.0.html
 433share/doc/tiff/manual/releases/v4.3.0.html
 434share/doc/tiff/manual/releases/v4.4.0.html
 435share/doc/tiff/manual/releases/v${PKGVERSION}.html
 436share/doc/tiff/manual/search.html
 437share/doc/tiff/manual/searchindex.js
 438share/doc/tiff/manual/specification/bigtiff.html
 439share/doc/tiff/manual/specification/coverage-bigtiff.html
 440share/doc/tiff/manual/specification/coverage.html
 441share/doc/tiff/manual/specification/index.html
 442share/doc/tiff/manual/specification/technote2.html
 443share/doc/tiff/manual/terms.html
 444share/doc/tiff/manual/tools.html
 445share/doc/tiff/manual/tools/fax2ps.html
 446share/doc/tiff/manual/tools/fax2tiff.html
 447share/doc/tiff/manual/tools/pal2rgb.html
 448share/doc/tiff/manual/tools/ppm2tiff.html
 449share/doc/tiff/manual/tools/raw2tiff.html
 450share/doc/tiff/manual/tools/rgb2ycbcr.html
 451share/doc/tiff/manual/tools/thumbnail.html
 452share/doc/tiff/manual/tools/tiff2bw.html
 453share/doc/tiff/manual/tools/tiff2pdf.html
 454share/doc/tiff/manual/tools/tiff2ps.html
 455share/doc/tiff/manual/tools/tiff2rgba.html
 456share/doc/tiff/manual/tools/tiffcmp.html
 457share/doc/tiff/manual/tools/tiffcp.html
 458share/doc/tiff/manual/tools/tiffcrop.html
 459share/doc/tiff/manual/tools/tiffdither.html
 460share/doc/tiff/manual/tools/tiffdump.html
 461share/doc/tiff/manual/tools/tiffgt.html
 462share/doc/tiff/manual/tools/tiffinfo.html
 463share/doc/tiff/manual/tools/tiffmedian.html
 464share/doc/tiff/manual/tools/tiffset.html
 465share/doc/tiff/manual/tools/tiffsplit.html

cvs diff -r1.103 -r1.104 pkgsrc/graphics/tiff/distinfo (expand / switch to unified diff)

--- pkgsrc/graphics/tiff/distinfo 2022/05/29 12:24:16 1.103
+++ pkgsrc/graphics/tiff/distinfo 2023/01/03 16:38:50 1.104
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1$NetBSD: distinfo,v 1.103 2022/05/29 12:24:16 gdt Exp $ 1$NetBSD: distinfo,v 1.104 2023/01/03 16:38:50 wiz Exp $
2 2
3BLAKE2s (tiff-4.4.0.tar.gz) = 4d7e2a0dcf15c0c69bcf5f7e9e89f9f381207905ea619f4457ffed17c4b659d0 3BLAKE2s (tiff-4.5.0.tar.gz) = c3251c0f5c8053bdd1eda5ca8cea75d95f8deaa06141397121b12c33dc8afd56
4SHA512 (tiff-4.4.0.tar.gz) = 78ffab7667d0feb8d38571bc482390fc6dd20b93a798ab3a8b5cc7d5ab00b44a37f67eb8f19421e4ab33ad89ab40e382128f8a4bbdf097e0efb6d9fca5ac6f9e 4SHA512 (tiff-4.5.0.tar.gz) = 02b94e355ac96ac2ecce717aff2b1e04b1bfe95bcd0cfa72e09cbd580c45de0afe341170daad0cf560064b5a8910b3e56ef260484c69919bb0545df90abe7fa9
5Size (tiff-4.4.0.tar.gz) = 2841082 bytes 5Size (tiff-4.5.0.tar.gz) = 3880855 bytes
6SHA1 (patch-Makefile.in) = 96101d4c8208346b4e8778e816a0a7f4e0b03450 6SHA1 (patch-Makefile.in) = 7c3a6214da2d631df064893bba8809c357d856cf

cvs diff -r1.2 -r1.3 pkgsrc/graphics/tiff/patches/patch-Makefile.in (expand / switch to unified diff)

--- pkgsrc/graphics/tiff/patches/patch-Makefile.in 2022/05/29 12:24:16 1.2
+++ pkgsrc/graphics/tiff/patches/patch-Makefile.in 2023/01/03 16:38:50 1.3
@@ -1,30 +1,30 @@ @@ -1,30 +1,30 @@
1$NetBSD: patch-Makefile.in,v 1.2 2022/05/29 12:24:16 gdt Exp $ 1$NetBSD: patch-Makefile.in,v 1.3 2023/01/03 16:38:50 wiz Exp $
2 2
3From MacPorts: 3From MacPorts:
4Rename VERSION to VERSION.txt so that it does not collide with the C++ 4Rename VERSION to VERSION.txt so that it does not collide with the C++
5version header on case-insensitive filesystems. 5version header on case-insensitive filesystems.
6 6
7https://gitlab.com/libtiff/libtiff/-/issues/252 7https://gitlab.com/libtiff/libtiff/-/issues/252
8\todo Upstream has resolved the problem a different way and we should 8\todo Upstream has resolved the problem a different way and we should
9likely drop this patch. 9likely drop this patch.
10 10
11--- Makefile.in.orig 2022-05-20 16:11:32.000000000 +0000 11--- Makefile.in.orig 2022-12-13 14:18:29.000000000 +0000
12+++ Makefile.in 12+++ Makefile.in
13@@ -425,7 +425,7 @@ docfiles = \ 13@@ -434,7 +434,7 @@ docfiles = \
14 README.md \ 14 README.md \
15 RELEASE-DATE \ 15 RELEASE-DATE \
16 TODO \ 16 TODO \
17- VERSION 17- VERSION
18+ VERSION.txt 18+ VERSION.txt
19  19
20 EXTRA_DIST = \ 20 EXTRA_DIST = \
21 placeholder.h \ 21 placeholder.h \
22@@ -992,7 +992,7 @@ distcheck-hook: 22@@ -1001,7 +1001,7 @@ distcheck-hook:
23  23
24 release: 24 release:
25 (rm -f $(top_srcdir)/RELEASE-DATE && echo $(LIBTIFF_RELEASE_DATE) > $(top_srcdir)/RELEASE-DATE) 25 (rm -f $(top_srcdir)/RELEASE-DATE && echo $(LIBTIFF_RELEASE_DATE) > $(top_srcdir)/RELEASE-DATE)
26- (rm -f $(top_srcdir)/VERSION && echo $(LIBTIFF_VERSION) > $(top_srcdir)/VERSION) 26- (rm -f $(top_srcdir)/VERSION && echo $(LIBTIFF_VERSION) > $(top_srcdir)/VERSION)
27+ (rm -f $(top_srcdir)/VERSION.txt && echo $(LIBTIFF_VERSION) > $(top_srcdir)/VERSION.txt) 27+ (rm -f $(top_srcdir)/VERSION.txt && echo $(LIBTIFF_VERSION) > $(top_srcdir)/VERSION.txt)
28 (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) 28 (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)
29 coverity: 29 coverity:
30 $(MAKE) clean 30 $(MAKE) clean