exiftool-vendored.exe 12.82.0 → 12.84.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (270) hide show
  1. package/README.md +6 -0
  2. package/bin/exiftool.exe +0 -0
  3. package/bin/exiftool_files/Changes +37 -0
  4. package/bin/exiftool_files/Licenses_Strawberry_Perl.zip +0 -0
  5. package/bin/exiftool_files/README +3 -2
  6. package/bin/exiftool_files/build_geolocation +872 -0
  7. package/bin/exiftool_files/config_files/example.config +2 -2
  8. package/bin/exiftool_files/exiftool.pl +28 -6
  9. package/bin/exiftool_files/fmt_files/gpx.fmt +2 -1
  10. package/bin/exiftool_files/fmt_files/gpx_wpt.fmt +2 -1
  11. package/bin/exiftool_files/lib/Archive/Zip/Archive.pm +399 -65
  12. package/bin/exiftool_files/lib/Archive/Zip/DirectoryMember.pm +1 -1
  13. package/bin/exiftool_files/lib/Archive/Zip/FileMember.pm +1 -1
  14. package/bin/exiftool_files/lib/Archive/Zip/Member.pm +499 -195
  15. package/bin/exiftool_files/lib/Archive/Zip/NewFileMember.pm +1 -1
  16. package/bin/exiftool_files/lib/Archive/Zip/StringMember.pm +2 -2
  17. package/bin/exiftool_files/lib/Archive/Zip/ZipFileMember.pm +79 -20
  18. package/bin/exiftool_files/lib/Archive/Zip.pm +179 -29
  19. package/bin/exiftool_files/lib/AutoLoader.pm +453 -0
  20. package/bin/exiftool_files/lib/B/Deparse.pm +209 -137
  21. package/bin/exiftool_files/lib/B.pm +1 -1
  22. package/bin/exiftool_files/lib/Benchmark.pm +1123 -0
  23. package/bin/exiftool_files/lib/Class/Struct.pm +2 -2
  24. package/bin/exiftool_files/lib/Compress/Raw/Bzip2.pm +14 -9
  25. package/bin/exiftool_files/lib/Compress/Raw/Lzma.pm +982 -0
  26. package/bin/exiftool_files/lib/Compress/Raw/Zlib.pm +91 -86
  27. package/bin/exiftool_files/lib/Compress/Zlib.pm +105 -100
  28. package/bin/exiftool_files/lib/Config.pm +9 -9
  29. package/bin/exiftool_files/lib/Config_heavy.pl +36 -33
  30. package/bin/exiftool_files/lib/CryptX.pm +2 -82
  31. package/bin/exiftool_files/lib/Data/Dumper.pm +2 -2
  32. package/bin/exiftool_files/lib/Digest/MD5.pm +12 -9
  33. package/bin/exiftool_files/lib/Digest/Perl/MD5.pm +1 -191
  34. package/bin/exiftool_files/lib/Digest/base.pm +26 -20
  35. package/bin/exiftool_files/lib/DynaLoader.pm +7 -4
  36. package/bin/exiftool_files/lib/Encode.pm +3 -3
  37. package/bin/exiftool_files/lib/Errno.pm +13 -13
  38. package/bin/exiftool_files/lib/Exporter/Heavy.pm +2 -2
  39. package/bin/exiftool_files/lib/Exporter.pm +1 -1
  40. package/bin/exiftool_files/lib/ExtUtils/Command/MM.pm +323 -0
  41. package/bin/exiftool_files/lib/ExtUtils/Command.pm +382 -0
  42. package/bin/exiftool_files/lib/File/Find.pm +1 -1
  43. package/bin/exiftool_files/lib/File/Glob.pm +1 -8
  44. package/bin/exiftool_files/lib/File/GlobMapper.pm +2 -2
  45. package/bin/exiftool_files/lib/File/HomeDir/Darwin/Carbon.pm +2 -40
  46. package/bin/exiftool_files/lib/File/HomeDir/Darwin/Cocoa.pm +2 -34
  47. package/bin/exiftool_files/lib/File/HomeDir/Darwin.pm +2 -28
  48. package/bin/exiftool_files/lib/File/HomeDir/Driver.pm +2 -35
  49. package/bin/exiftool_files/lib/File/HomeDir/FreeDesktop.pm +2 -62
  50. package/bin/exiftool_files/lib/File/HomeDir/MacOS9.pm +2 -53
  51. package/bin/exiftool_files/lib/File/HomeDir/Test.pm +2 -43
  52. package/bin/exiftool_files/lib/File/HomeDir/Unix.pm +2 -53
  53. package/bin/exiftool_files/lib/File/HomeDir/Windows.pm +2 -69
  54. package/bin/exiftool_files/lib/File/HomeDir.pm +5 -416
  55. package/bin/exiftool_files/lib/File/Path.pm +3 -3
  56. package/bin/exiftool_files/lib/File/Spec/Win32.pm +2 -2
  57. package/bin/exiftool_files/lib/File/Temp.pm +70 -35
  58. package/bin/exiftool_files/lib/File/Which.pm +1 -240
  59. package/bin/exiftool_files/lib/File/stat.pm +3 -2
  60. package/bin/exiftool_files/lib/IO/Compress/Adapter/Bzip2.pm +16 -17
  61. package/bin/exiftool_files/lib/IO/Compress/Adapter/Deflate.pm +19 -20
  62. package/bin/exiftool_files/lib/IO/Compress/Base/Common.pm +5 -5
  63. package/bin/exiftool_files/lib/IO/Compress/Base.pm +35 -26
  64. package/bin/exiftool_files/lib/IO/Compress/Brotli.pm +159 -0
  65. package/bin/exiftool_files/lib/IO/Compress/Bzip2.pm +50 -25
  66. package/bin/exiftool_files/lib/IO/Compress/Gzip/Constants.pm +6 -6
  67. package/bin/exiftool_files/lib/IO/Compress/Gzip.pm +58 -32
  68. package/bin/exiftool_files/lib/IO/Compress/RawDeflate.pm +63 -38
  69. package/bin/exiftool_files/lib/IO/Compress/Zlib/Extra.pm +20 -20
  70. package/bin/exiftool_files/lib/IO/Dir.pm +1 -1
  71. package/bin/exiftool_files/lib/IO/File.pm +1 -1
  72. package/bin/exiftool_files/lib/IO/Handle.pm +1 -21
  73. package/bin/exiftool_files/lib/IO/Pipe.pm +1 -1
  74. package/bin/exiftool_files/lib/IO/Seekable.pm +1 -1
  75. package/bin/exiftool_files/lib/IO/Select.pm +16 -2
  76. package/bin/exiftool_files/lib/IO/Socket/INET.pm +14 -9
  77. package/bin/exiftool_files/lib/IO/Socket/UNIX.pm +17 -1
  78. package/bin/exiftool_files/lib/IO/Socket.pm +474 -126
  79. package/bin/exiftool_files/lib/IO/String.pm +425 -0
  80. package/bin/exiftool_files/lib/IO/Uncompress/Adapter/Inflate.pm +13 -14
  81. package/bin/exiftool_files/lib/IO/Uncompress/Base.pm +142 -132
  82. package/bin/exiftool_files/lib/IO/Uncompress/Brotli.pm +119 -0
  83. package/bin/exiftool_files/lib/IO/Uncompress/Gunzip.pm +43 -37
  84. package/bin/exiftool_files/lib/IO/Uncompress/RawInflate.pm +49 -43
  85. package/bin/exiftool_files/lib/IO.pm +2 -2
  86. package/bin/exiftool_files/lib/Image/ExifTool/Apple.pm +51 -7
  87. package/bin/exiftool_files/lib/Image/ExifTool/BuildTagLookup.pm +5 -2
  88. package/bin/exiftool_files/lib/Image/ExifTool/CanonVRD.pm +18 -5
  89. package/bin/exiftool_files/lib/Image/ExifTool/DJI.pm +29 -0
  90. package/bin/exiftool_files/lib/Image/ExifTool/Exif.pm +19 -2
  91. package/bin/exiftool_files/lib/Image/ExifTool/GM.pm +17 -8
  92. package/bin/exiftool_files/lib/Image/ExifTool/Geolocation.dat +0 -0
  93. package/bin/exiftool_files/lib/Image/ExifTool/Geolocation.pm +163 -101
  94. package/bin/exiftool_files/lib/Image/ExifTool/Geotag.pm +18 -10
  95. package/bin/exiftool_files/lib/Image/ExifTool/Nikon.pm +7 -6
  96. package/bin/exiftool_files/lib/Image/ExifTool/QuickTime.pm +6 -1
  97. package/bin/exiftool_files/lib/Image/ExifTool/QuickTimeStream.pl +5 -0
  98. package/bin/exiftool_files/lib/Image/ExifTool/Sony.pm +15 -6
  99. package/bin/exiftool_files/lib/Image/ExifTool/TagLookup.pm +18 -9
  100. package/bin/exiftool_files/lib/Image/ExifTool/TagNames.pod +24 -5
  101. package/bin/exiftool_files/lib/Image/ExifTool/WriteQuickTime.pl +2 -1
  102. package/bin/exiftool_files/lib/Image/ExifTool/Writer.pl +165 -132
  103. package/bin/exiftool_files/lib/Image/ExifTool/XMP2.pl +3 -0
  104. package/bin/exiftool_files/lib/Image/ExifTool.pm +45 -23
  105. package/bin/exiftool_files/lib/Image/ExifTool.pod +23 -14
  106. package/bin/exiftool_files/lib/List/Util.pm +97 -8
  107. package/bin/exiftool_files/lib/MIME/Base64.pm +5 -5
  108. package/bin/exiftool_files/lib/MIME/Charset/_Compat.pm +106 -0
  109. package/bin/exiftool_files/lib/MIME/Charset.pm +1303 -0
  110. package/bin/exiftool_files/lib/Math/BigFloat.pm +444 -27
  111. package/bin/exiftool_files/lib/Math/BigInt/Calc.pm +296 -313
  112. package/bin/exiftool_files/lib/Math/BigInt/FastCalc.pm +1 -1
  113. package/bin/exiftool_files/lib/Math/BigInt/GMP.pm +2 -115
  114. package/bin/exiftool_files/lib/Math/BigInt/LTM.pm +2 -24
  115. package/bin/exiftool_files/lib/Math/BigInt/Lib.pm +61 -32
  116. package/bin/exiftool_files/lib/Math/BigInt.pm +292 -107
  117. package/bin/exiftool_files/lib/POSIX.pm +1 -1
  118. package/bin/exiftool_files/lib/PerlIO/scalar.pm +41 -0
  119. package/bin/exiftool_files/lib/PerlIO.pm +397 -0
  120. package/bin/exiftool_files/lib/Portable/CPAN.pm +94 -94
  121. package/bin/exiftool_files/lib/Portable/Config.pm +94 -94
  122. package/bin/exiftool_files/lib/Portable/FileSpec.pm +180 -180
  123. package/bin/exiftool_files/lib/Portable/HomeDir.pm +110 -110
  124. package/bin/exiftool_files/lib/Portable/LoadYaml.pm +430 -430
  125. package/bin/exiftool_files/lib/Portable/minicpan.pm +55 -55
  126. package/bin/exiftool_files/lib/Portable.pm +246 -320
  127. package/bin/exiftool_files/lib/Scalar/Util.pm +9 -4
  128. package/bin/exiftool_files/lib/Socket.pm +16 -12
  129. package/bin/exiftool_files/lib/Storable.pm +1444 -1441
  130. package/bin/exiftool_files/lib/TAP/Base.pm +133 -0
  131. package/bin/exiftool_files/lib/TAP/Formatter/Base.pm +467 -0
  132. package/bin/exiftool_files/lib/TAP/Formatter/Color.pm +116 -0
  133. package/bin/exiftool_files/lib/TAP/Formatter/Console/ParallelSession.pm +201 -0
  134. package/bin/exiftool_files/lib/TAP/Formatter/Console/Session.pm +205 -0
  135. package/bin/exiftool_files/lib/TAP/Formatter/Console.pm +100 -0
  136. package/bin/exiftool_files/lib/TAP/Formatter/File/Session.pm +95 -0
  137. package/bin/exiftool_files/lib/TAP/Formatter/File.pm +56 -0
  138. package/bin/exiftool_files/lib/TAP/Formatter/Session.pm +220 -0
  139. package/bin/exiftool_files/lib/TAP/Harness/Beyond.pod +426 -0
  140. package/bin/exiftool_files/lib/TAP/Harness/Env.pm +215 -0
  141. package/bin/exiftool_files/lib/TAP/Harness.pm +1054 -0
  142. package/bin/exiftool_files/lib/TAP/Object.pm +155 -0
  143. package/bin/exiftool_files/lib/TAP/Parser/Aggregator.pm +414 -0
  144. package/bin/exiftool_files/lib/TAP/Parser/Grammar.pm +584 -0
  145. package/bin/exiftool_files/lib/TAP/Parser/Iterator/Array.pm +100 -0
  146. package/bin/exiftool_files/lib/TAP/Parser/Iterator/Process.pm +378 -0
  147. package/bin/exiftool_files/lib/TAP/Parser/Iterator/Stream.pm +116 -0
  148. package/bin/exiftool_files/lib/TAP/Parser/Iterator.pm +162 -0
  149. package/bin/exiftool_files/lib/TAP/Parser/IteratorFactory.pm +339 -0
  150. package/bin/exiftool_files/lib/TAP/Parser/Multiplexer.pm +194 -0
  151. package/bin/exiftool_files/lib/TAP/Parser/Result/Bailout.pm +62 -0
  152. package/bin/exiftool_files/lib/TAP/Parser/Result/Comment.pm +60 -0
  153. package/bin/exiftool_files/lib/TAP/Parser/Result/Plan.pm +119 -0
  154. package/bin/exiftool_files/lib/TAP/Parser/Result/Pragma.pm +62 -0
  155. package/bin/exiftool_files/lib/TAP/Parser/Result/Test.pm +271 -0
  156. package/bin/exiftool_files/lib/TAP/Parser/Result/Unknown.pm +48 -0
  157. package/bin/exiftool_files/lib/TAP/Parser/Result/Version.pm +62 -0
  158. package/bin/exiftool_files/lib/TAP/Parser/Result/YAML.pm +61 -0
  159. package/bin/exiftool_files/lib/TAP/Parser/Result.pm +297 -0
  160. package/bin/exiftool_files/lib/TAP/Parser/ResultFactory.pm +183 -0
  161. package/bin/exiftool_files/lib/TAP/Parser/Scheduler/Job.pm +127 -0
  162. package/bin/exiftool_files/lib/TAP/Parser/Scheduler/Spinner.pm +61 -0
  163. package/bin/exiftool_files/lib/TAP/Parser/Scheduler.pm +448 -0
  164. package/bin/exiftool_files/lib/TAP/Parser/Source.pm +381 -0
  165. package/bin/exiftool_files/lib/TAP/Parser/SourceHandler/Executable.pm +184 -0
  166. package/bin/exiftool_files/lib/TAP/Parser/SourceHandler/File.pm +136 -0
  167. package/bin/exiftool_files/lib/TAP/Parser/SourceHandler/Handle.pm +124 -0
  168. package/bin/exiftool_files/lib/TAP/Parser/SourceHandler/Perl.pm +370 -0
  169. package/bin/exiftool_files/lib/TAP/Parser/SourceHandler/RawTAP.pm +130 -0
  170. package/bin/exiftool_files/lib/TAP/Parser/SourceHandler.pm +191 -0
  171. package/bin/exiftool_files/lib/TAP/Parser/YAMLish/Reader.pm +332 -0
  172. package/bin/exiftool_files/lib/TAP/Parser/YAMLish/Writer.pm +254 -0
  173. package/bin/exiftool_files/lib/TAP/Parser.pm +1931 -0
  174. package/bin/exiftool_files/lib/Test/Builder/Formatter.pm +107 -0
  175. package/bin/exiftool_files/lib/Test/Builder/IO/Scalar.pm +659 -0
  176. package/bin/exiftool_files/lib/Test/Builder/Module.pm +182 -0
  177. package/bin/exiftool_files/lib/Test/Builder/Tester/Color.pm +51 -0
  178. package/bin/exiftool_files/lib/Test/Builder/Tester.pm +675 -0
  179. package/bin/exiftool_files/lib/Test/Builder/TodoDiag.pm +68 -0
  180. package/bin/exiftool_files/lib/Test/Builder.pm +2653 -0
  181. package/bin/exiftool_files/lib/Test/Harness.pm +618 -0
  182. package/bin/exiftool_files/lib/Test/More.pm +1997 -0
  183. package/bin/exiftool_files/lib/Test/Simple.pm +220 -0
  184. package/bin/exiftool_files/lib/Test/Tester/Capture.pm +241 -0
  185. package/bin/exiftool_files/lib/Test/Tester/CaptureRunner.pm +79 -0
  186. package/bin/exiftool_files/lib/Test/Tester/Delegate.pm +45 -0
  187. package/bin/exiftool_files/lib/Test/Tester.pm +695 -0
  188. package/bin/exiftool_files/lib/Test/Tutorial.pod +618 -0
  189. package/bin/exiftool_files/lib/Test/use/ok.pm +64 -0
  190. package/bin/exiftool_files/lib/Text/ParseWords.pm +303 -0
  191. package/bin/exiftool_files/lib/Tie/StdHandle.pm +2 -2
  192. package/bin/exiftool_files/lib/Time/HiRes.pm +73 -68
  193. package/bin/exiftool_files/lib/Time/Local.pm +82 -35
  194. package/bin/exiftool_files/lib/Time/Piece.pm +19 -4
  195. package/bin/exiftool_files/lib/Time/Seconds.pm +1 -1
  196. package/bin/exiftool_files/lib/UNIVERSAL.pm +203 -0
  197. package/bin/exiftool_files/lib/Unicode/GCString.pm +60 -0
  198. package/bin/exiftool_files/lib/Unicode/LineBreak/Constants.pm +68 -0
  199. package/bin/exiftool_files/lib/Unicode/LineBreak.pm +248 -0
  200. package/bin/exiftool_files/lib/Win32/API/Struct.pm +1 -177
  201. package/bin/exiftool_files/lib/Win32/API/Type.pm +1 -100
  202. package/bin/exiftool_files/lib/Win32/API.pm +1 -830
  203. package/bin/exiftool_files/lib/Win32/FindFile.pm +2 -123
  204. package/bin/exiftool_files/lib/Win32.pm +213 -89
  205. package/bin/exiftool_files/lib/Win32API/File.pm +1 -1
  206. package/bin/exiftool_files/lib/auto/B/B.xs.dll +0 -0
  207. package/bin/exiftool_files/lib/auto/Compress/Raw/Bzip2/Bzip2.xs.dll +0 -0
  208. package/bin/exiftool_files/lib/auto/Compress/Raw/Lzma/Lzma.xs.dll +0 -0
  209. package/bin/exiftool_files/lib/auto/Compress/Raw/Lzma/autosplit.ix +3 -0
  210. package/bin/exiftool_files/lib/auto/Compress/Raw/Zlib/Zlib.xs.dll +0 -0
  211. package/bin/exiftool_files/lib/auto/CryptX/CryptX.xs.dll +0 -0
  212. package/bin/exiftool_files/lib/auto/Cwd/Cwd.xs.dll +0 -0
  213. package/bin/exiftool_files/lib/auto/Data/Dumper/Dumper.xs.dll +0 -0
  214. package/bin/exiftool_files/lib/auto/Digest/MD5/MD5.xs.dll +0 -0
  215. package/bin/exiftool_files/lib/auto/Digest/SHA/SHA.xs.dll +0 -0
  216. package/bin/exiftool_files/lib/auto/Encode/Encode.xs.dll +0 -0
  217. package/bin/exiftool_files/lib/auto/Fcntl/Fcntl.xs.dll +0 -0
  218. package/bin/exiftool_files/lib/auto/File/Glob/Glob.xs.dll +0 -0
  219. package/bin/exiftool_files/lib/auto/IO/Compress/Brotli/Brotli.xs.dll +0 -0
  220. package/bin/exiftool_files/lib/auto/IO/IO.xs.dll +0 -0
  221. package/bin/exiftool_files/lib/auto/List/Util/Util.xs.dll +0 -0
  222. package/bin/exiftool_files/lib/auto/MIME/Base64/Base64.xs.dll +0 -0
  223. package/bin/exiftool_files/lib/auto/Math/BigInt/FastCalc/FastCalc.xs.dll +0 -0
  224. package/bin/exiftool_files/lib/auto/Math/BigInt/GMP/GMP.xs.dll +0 -0
  225. package/bin/exiftool_files/lib/auto/POSIX/POSIX.xs.dll +0 -0
  226. package/bin/exiftool_files/lib/auto/PerlIO/scalar/scalar.xs.dll +0 -0
  227. package/bin/exiftool_files/lib/auto/Socket/Socket.xs.dll +0 -0
  228. package/bin/exiftool_files/lib/auto/Storable/Storable.xs.dll +0 -0
  229. package/bin/exiftool_files/lib/auto/Time/HiRes/HiRes.xs.dll +0 -0
  230. package/bin/exiftool_files/lib/auto/Time/Piece/Piece.xs.dll +0 -0
  231. package/bin/exiftool_files/lib/auto/Unicode/LineBreak/LineBreak.xs.dll +0 -0
  232. package/bin/exiftool_files/lib/auto/Win32/API/API.xs.dll +0 -0
  233. package/bin/exiftool_files/lib/auto/Win32/FindFile/FindFile.xs.dll +0 -0
  234. package/bin/exiftool_files/lib/auto/Win32/Win32.xs.dll +0 -0
  235. package/bin/exiftool_files/lib/auto/Win32API/File/File.xs.dll +0 -0
  236. package/bin/exiftool_files/lib/auto/mro/mro.xs.dll +0 -0
  237. package/bin/exiftool_files/lib/auto/re/re.xs.dll +0 -0
  238. package/bin/exiftool_files/lib/feature.pm +49 -17
  239. package/bin/exiftool_files/lib/mro.pm +4 -20
  240. package/bin/exiftool_files/lib/overload.pm +15 -15
  241. package/bin/exiftool_files/lib/parent.pm +10 -2
  242. package/bin/exiftool_files/lib/re.pm +91 -33
  243. package/bin/exiftool_files/lib/warnings.pm +17 -6
  244. package/bin/exiftool_files/libgcc_s_seh-1.dll +0 -0
  245. package/bin/exiftool_files/liblzma-5__.dll +0 -0
  246. package/bin/exiftool_files/libstdc++-6.dll +0 -0
  247. package/bin/exiftool_files/libwinpthread-1.dll +0 -0
  248. package/bin/exiftool_files/perl.exe +0 -0
  249. package/bin/exiftool_files/perl532.dll +0 -0
  250. package/package.json +6 -4
  251. package/bin/exiftool_files/lib/Image/ExifTool/GeoLang/cs.pm +0 -978
  252. package/bin/exiftool_files/lib/Image/ExifTool/GeoLang/de.pm +0 -1975
  253. package/bin/exiftool_files/lib/Image/ExifTool/GeoLang/en_ca.pm +0 -44
  254. package/bin/exiftool_files/lib/Image/ExifTool/GeoLang/en_gb.pm +0 -124
  255. package/bin/exiftool_files/lib/Image/ExifTool/GeoLang/es.pm +0 -2921
  256. package/bin/exiftool_files/lib/Image/ExifTool/GeoLang/fi.pm +0 -1116
  257. package/bin/exiftool_files/lib/Image/ExifTool/GeoLang/fr.pm +0 -3171
  258. package/bin/exiftool_files/lib/Image/ExifTool/GeoLang/it.pm +0 -2750
  259. package/bin/exiftool_files/lib/Image/ExifTool/GeoLang/ja.pm +0 -10256
  260. package/bin/exiftool_files/lib/Image/ExifTool/GeoLang/ko.pm +0 -4499
  261. package/bin/exiftool_files/lib/Image/ExifTool/GeoLang/nl.pm +0 -1270
  262. package/bin/exiftool_files/lib/Image/ExifTool/GeoLang/pl.pm +0 -3019
  263. package/bin/exiftool_files/lib/Image/ExifTool/GeoLang/ru.pm +0 -18220
  264. package/bin/exiftool_files/lib/Image/ExifTool/GeoLang/sk.pm +0 -441
  265. package/bin/exiftool_files/lib/Image/ExifTool/GeoLang/sv.pm +0 -714
  266. package/bin/exiftool_files/lib/Image/ExifTool/GeoLang/tr.pm +0 -452
  267. package/bin/exiftool_files/lib/Image/ExifTool/GeoLang/zh_cn.pm +0 -2225
  268. package/bin/exiftool_files/lib/Image/ExifTool/GeoLang/zh_tw.pm +0 -72
  269. package/bin/exiftool_files/libgcc_s_dw2-1.dll +0 -0
  270. package/bin/exiftool_files/perl530.dll +0 -0
@@ -7,18 +7,18 @@ use Carp ;
7
7
  use IO::Handle ;
8
8
  use Scalar::Util qw(dualvar);
9
9
 
10
- use IO::Compress::Base::Common 2.086 ;
11
- use Compress::Raw::Zlib 2.086 ;
12
- use IO::Compress::Gzip 2.086 ;
13
- use IO::Uncompress::Gunzip 2.086 ;
10
+ use IO::Compress::Base::Common 2.100 ;
11
+ use Compress::Raw::Zlib 2.100 ;
12
+ use IO::Compress::Gzip 2.100 ;
13
+ use IO::Uncompress::Gunzip 2.100 ;
14
14
 
15
15
  use strict ;
16
16
  use warnings ;
17
17
  use bytes ;
18
18
  our ($VERSION, $XS_VERSION, @ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS);
19
19
 
20
- $VERSION = '2.086';
21
- $XS_VERSION = $VERSION;
20
+ $VERSION = '2.100';
21
+ $XS_VERSION = $VERSION;
22
22
  $VERSION = eval $VERSION;
23
23
 
24
24
  @ISA = qw(Exporter);
@@ -126,7 +126,7 @@ sub gzopen($$)
126
126
  my @params = () ;
127
127
 
128
128
  croak "gzopen: file parameter is not a filehandle or filename"
129
- unless isaFilehandle $file || isaFilename $file ||
129
+ unless isaFilehandle $file || isaFilename $file ||
130
130
  (ref $file && ref $file eq 'SCALAR');
131
131
 
132
132
  return undef unless $mode =~ /[rwa]/i ;
@@ -134,17 +134,17 @@ sub gzopen($$)
134
134
  _set_gzerr(0) ;
135
135
 
136
136
  if ($writing) {
137
- $gz = new IO::Compress::Gzip($file, Minimal => 1, AutoClose => 1,
138
- %defOpts)
137
+ $gz = IO::Compress::Gzip->new($file, Minimal => 1, AutoClose => 1,
138
+ %defOpts)
139
139
  or $Compress::Zlib::gzerrno = $IO::Compress::Gzip::GzipError;
140
140
  }
141
141
  else {
142
- $gz = new IO::Uncompress::Gunzip($file,
142
+ $gz = IO::Uncompress::Gunzip->new($file,
143
143
  Transparent => 1,
144
- Append => 0,
145
- AutoClose => 1,
144
+ Append => 0,
145
+ AutoClose => 1,
146
146
  MultiStream => 1,
147
- Strict => 0)
147
+ Strict => 0)
148
148
  or $Compress::Zlib::gzerrno = $IO::Uncompress::Gunzip::GunzipError;
149
149
  }
150
150
 
@@ -161,7 +161,7 @@ sub Compress::Zlib::gzFile::gzread
161
161
  return _set_gzerr(Z_STREAM_ERROR())
162
162
  if $self->[1] ne 'inflate';
163
163
 
164
- my $len = defined $_[1] ? $_[1] : 4096 ;
164
+ my $len = defined $_[1] ? $_[1] : 4096 ;
165
165
 
166
166
  my $gz = $self->[0] ;
167
167
  if ($self->gzeof() || $len == 0) {
@@ -171,7 +171,7 @@ sub Compress::Zlib::gzFile::gzread
171
171
  return 0 ;
172
172
  }
173
173
 
174
- my $status = $gz->read($_[0], $len) ;
174
+ my $status = $gz->read($_[0], $len) ;
175
175
  _save_gzerr($gz, 1);
176
176
  return $status ;
177
177
  }
@@ -185,7 +185,7 @@ sub Compress::Zlib::gzFile::gzreadline
185
185
  # Maintain backward compatibility with 1.x behaviour
186
186
  # It didn't support $/, so this can't either.
187
187
  local $/ = "\n" ;
188
- $_[0] = $gz->getline() ;
188
+ $_[0] = $gz->getline() ;
189
189
  }
190
190
  _save_gzerr($gz, 1);
191
191
  return defined $_[0] ? length $_[0] : 0 ;
@@ -199,7 +199,7 @@ sub Compress::Zlib::gzFile::gzwrite
199
199
  return _set_gzerr(Z_STREAM_ERROR())
200
200
  if $self->[1] ne 'deflate';
201
201
 
202
- $] >= 5.008 and (utf8::downgrade($_[0], 1)
202
+ $] >= 5.008 and (utf8::downgrade($_[0], 1)
203
203
  or croak "Wide character in gzwrite");
204
204
 
205
205
  my $status = $gz->write($_[0]) ;
@@ -282,8 +282,8 @@ sub Compress::Zlib::gzFile::gzsetparams
282
282
 
283
283
  return _set_gzerr(Z_STREAM_ERROR())
284
284
  if $self->[1] ne 'deflate';
285
-
286
- my $status = *$gz->{Compress}->deflateParams(-Level => $level,
285
+
286
+ my $status = *$gz->{Compress}->deflateParams(-Level => $level,
287
287
  -Strategy => $strategy);
288
288
  _save_gzerr($gz);
289
289
  return $status ;
@@ -293,7 +293,7 @@ sub Compress::Zlib::gzFile::gzerror
293
293
  {
294
294
  my $self = shift ;
295
295
  my $gz = $self->[0] ;
296
-
296
+
297
297
  return $Compress::Zlib::gzerrno ;
298
298
  }
299
299
 
@@ -310,7 +310,7 @@ sub compress($;$)
310
310
  $in = \$_[0] ;
311
311
  }
312
312
 
313
- $] >= 5.008 and (utf8::downgrade($$in, 1)
313
+ $] >= 5.008 and (utf8::downgrade($$in, 1)
314
314
  or croak "Wide character in compress");
315
315
 
316
316
  my $level = (@_ == 2 ? $_[1] : Z_DEFAULT_COMPRESSION() );
@@ -322,7 +322,7 @@ sub compress($;$)
322
322
  MAX_MEM_LEVEL,
323
323
  Z_DEFAULT_STRATEGY,
324
324
  4096,
325
- '')
325
+ '')
326
326
  or return undef ;
327
327
 
328
328
  $err = $x->deflate($in, $output) ;
@@ -330,7 +330,7 @@ sub compress($;$)
330
330
 
331
331
  $err = $x->flush($output) ;
332
332
  return undef unless $err == Z_OK() ;
333
-
333
+
334
334
  return $output ;
335
335
  }
336
336
 
@@ -346,21 +346,21 @@ sub uncompress($)
346
346
  $in = \$_[0] ;
347
347
  }
348
348
 
349
- $] >= 5.008 and (utf8::downgrade($$in, 1)
350
- or croak "Wide character in uncompress");
351
-
349
+ $] >= 5.008 and (utf8::downgrade($$in, 1)
350
+ or croak "Wide character in uncompress");
351
+
352
352
  my ($obj, $status) = Compress::Raw::Zlib::_inflateInit(0,
353
- MAX_WBITS, 4096, "") ;
354
-
355
- $status == Z_OK
353
+ MAX_WBITS, 4096, "") ;
354
+
355
+ $status == Z_OK
356
356
  or return undef;
357
-
358
- $obj->inflate($in, $output) == Z_STREAM_END
357
+
358
+ $obj->inflate($in, $output) == Z_STREAM_END
359
359
  or return undef;
360
-
360
+
361
361
  return $output;
362
362
  }
363
-
363
+
364
364
  sub deflateInit(@)
365
365
  {
366
366
  my ($got) = ParseParameters(0,
@@ -374,27 +374,27 @@ sub deflateInit(@)
374
374
  'dictionary' => [IO::Compress::Base::Common::Parse_any, ""],
375
375
  }, @_ ) ;
376
376
 
377
- croak "Compress::Zlib::deflateInit: Bufsize must be >= 1, you specified " .
377
+ croak "Compress::Zlib::deflateInit: Bufsize must be >= 1, you specified " .
378
378
  $got->getValue('bufsize')
379
379
  unless $got->getValue('bufsize') >= 1;
380
380
 
381
381
  my $obj ;
382
-
382
+
383
383
  my $status = 0 ;
384
- ($obj, $status) =
384
+ ($obj, $status) =
385
385
  Compress::Raw::Zlib::_deflateInit(0,
386
- $got->getValue('level'),
387
- $got->getValue('method'),
388
- $got->getValue('windowbits'),
389
- $got->getValue('memlevel'),
390
- $got->getValue('strategy'),
386
+ $got->getValue('level'),
387
+ $got->getValue('method'),
388
+ $got->getValue('windowbits'),
389
+ $got->getValue('memlevel'),
390
+ $got->getValue('strategy'),
391
391
  $got->getValue('bufsize'),
392
392
  $got->getValue('dictionary')) ;
393
393
 
394
394
  my $x = ($status == Z_OK() ? bless $obj, "Zlib::OldDeflate" : undef) ;
395
395
  return wantarray ? ($x, $status) : $x ;
396
396
  }
397
-
397
+
398
398
  sub inflateInit(@)
399
399
  {
400
400
  my ($got) = ParseParameters(0,
@@ -405,15 +405,15 @@ sub inflateInit(@)
405
405
  }, @_) ;
406
406
 
407
407
 
408
- croak "Compress::Zlib::inflateInit: Bufsize must be >= 1, you specified " .
408
+ croak "Compress::Zlib::inflateInit: Bufsize must be >= 1, you specified " .
409
409
  $got->getValue('bufsize')
410
410
  unless $got->getValue('bufsize') >= 1;
411
411
 
412
412
  my $status = 0 ;
413
413
  my $obj ;
414
414
  ($obj, $status) = Compress::Raw::Zlib::_inflateInit(FLAG_CONSUME_INPUT,
415
- $got->getValue('windowbits'),
416
- $got->getValue('bufsize'),
415
+ $got->getValue('windowbits'),
416
+ $got->getValue('bufsize'),
417
417
  $got->getValue('dictionary')) ;
418
418
 
419
419
  my $x = ($status == Z_OK() ? bless $obj, "Zlib::OldInflate" : undef) ;
@@ -442,7 +442,7 @@ sub flush
442
442
  my $output ;
443
443
  my $flag = shift || Compress::Zlib::Z_FINISH();
444
444
  my $status = $self->SUPER::flush($output, $flag) ;
445
-
445
+
446
446
  wantarray ? ($output, $status) : $output ;
447
447
  }
448
448
 
@@ -461,7 +461,7 @@ sub inflate
461
461
 
462
462
  package Compress::Zlib ;
463
463
 
464
- use IO::Compress::Gzip::Constants 2.086 ;
464
+ use IO::Compress::Gzip::Constants 2.100 ;
465
465
 
466
466
  sub memGzip($)
467
467
  {
@@ -473,13 +473,13 @@ sub memGzip($)
473
473
  MAX_MEM_LEVEL,
474
474
  Z_DEFAULT_STRATEGY,
475
475
  4096,
476
- '')
476
+ '')
477
477
  or return undef ;
478
-
478
+
479
479
  # if the deflation buffer isn't a reference, make it one
480
480
  my $string = (ref $_[0] ? $_[0] : \$_[0]) ;
481
481
 
482
- $] >= 5.008 and (utf8::downgrade($$string, 1)
482
+ $] >= 5.008 and (utf8::downgrade($$string, 1)
483
483
  or croak "Wide character in memGzip");
484
484
 
485
485
  my $out;
@@ -487,12 +487,12 @@ sub memGzip($)
487
487
 
488
488
  $x->deflate($string, $out) == Z_OK
489
489
  or return undef ;
490
-
490
+
491
491
  $x->flush($out) == Z_OK
492
492
  or return undef ;
493
-
494
- return IO::Compress::Gzip::Constants::GZIP_MINIMUM_HEADER .
495
- $out .
493
+
494
+ return IO::Compress::Gzip::Constants::GZIP_MINIMUM_HEADER .
495
+ $out .
496
496
  pack("V V", $x->crc32(), $x->total_in());
497
497
  }
498
498
 
@@ -501,10 +501,10 @@ sub _removeGzipHeader($)
501
501
  {
502
502
  my $string = shift ;
503
503
 
504
- return Z_DATA_ERROR()
504
+ return Z_DATA_ERROR()
505
505
  if length($$string) < GZIP_MIN_HEADER_SIZE ;
506
506
 
507
- my ($magic1, $magic2, $method, $flags, $time, $xflags, $oscode) =
507
+ my ($magic1, $magic2, $method, $flags, $time, $xflags, $oscode) =
508
508
  unpack ('CCCCVCC', $$string);
509
509
 
510
510
  return Z_DATA_ERROR()
@@ -551,7 +551,7 @@ sub _removeGzipHeader($)
551
551
  if length ($$string) < GZIP_FHCRC_SIZE ;
552
552
  substr($$string, 0, GZIP_FHCRC_SIZE) = '';
553
553
  }
554
-
554
+
555
555
  return Z_OK();
556
556
  }
557
557
 
@@ -566,24 +566,24 @@ sub memGunzip($)
566
566
  {
567
567
  # if the buffer isn't a reference, make it one
568
568
  my $string = (ref $_[0] ? $_[0] : \$_[0]);
569
-
570
- $] >= 5.008 and (utf8::downgrade($$string, 1)
569
+
570
+ $] >= 5.008 and (utf8::downgrade($$string, 1)
571
571
  or croak "Wide character in memGunzip");
572
572
 
573
573
  _set_gzerr(0);
574
574
 
575
575
  my $status = _removeGzipHeader($string) ;
576
- $status == Z_OK()
576
+ $status == Z_OK()
577
577
  or return _set_gzerr_undef($status);
578
-
578
+
579
579
  my $bufsize = length $$string > 4096 ? length $$string : 4096 ;
580
580
  my $x = Compress::Raw::Zlib::_inflateInit(FLAG_CRC | FLAG_CONSUME_INPUT,
581
- -MAX_WBITS(), $bufsize, '')
581
+ -MAX_WBITS(), $bufsize, '')
582
582
  or return _ret_gun_error();
583
583
 
584
584
  my $output = '' ;
585
585
  $status = $x->inflate($string, $output);
586
-
586
+
587
587
  if ( $status == Z_OK() )
588
588
  {
589
589
  _set_gzerr(Z_DATA_ERROR());
@@ -606,7 +606,7 @@ sub memGunzip($)
606
606
  $$string = '';
607
607
  }
608
608
 
609
- return $output;
609
+ return $output;
610
610
  }
611
611
 
612
612
  # Autoload methods go after __END__, and are processed by the autosplit program.
@@ -938,23 +938,23 @@ I<gzcat> function.
938
938
 
939
939
  use strict ;
940
940
  use warnings ;
941
-
941
+
942
942
  use Compress::Zlib ;
943
-
943
+
944
944
  # use stdin if no files supplied
945
945
  @ARGV = '-' unless @ARGV ;
946
-
946
+
947
947
  foreach my $file (@ARGV) {
948
948
  my $buffer ;
949
-
949
+
950
950
  my $gz = gzopen($file, "rb")
951
951
  or die "Cannot open $file: $gzerrno\n" ;
952
-
952
+
953
953
  print $buffer while $gz->gzread($buffer) > 0 ;
954
-
954
+
955
955
  die "Error reading from $file: $gzerrno" . ($gzerrno+0) . "\n"
956
956
  if $gzerrno != Z_STREAM_END ;
957
-
957
+
958
958
  $gz->gzclose() ;
959
959
  }
960
960
 
@@ -963,28 +963,28 @@ very simple I<grep> like script.
963
963
 
964
964
  use strict ;
965
965
  use warnings ;
966
-
966
+
967
967
  use Compress::Zlib ;
968
-
968
+
969
969
  die "Usage: gzgrep pattern [file...]\n"
970
970
  unless @ARGV >= 1;
971
-
971
+
972
972
  my $pattern = shift ;
973
-
973
+
974
974
  # use stdin if no files supplied
975
975
  @ARGV = '-' unless @ARGV ;
976
-
976
+
977
977
  foreach my $file (@ARGV) {
978
978
  my $gz = gzopen($file, "rb")
979
979
  or die "Cannot open $file: $gzerrno\n" ;
980
-
980
+
981
981
  while ($gz->gzreadline($_) > 0) {
982
982
  print if /$pattern/ ;
983
983
  }
984
-
984
+
985
985
  die "Error reading from $file: $gzerrno\n"
986
986
  if $gzerrno != Z_STREAM_END ;
987
-
987
+
988
988
  $gz->gzclose() ;
989
989
  }
990
990
 
@@ -994,14 +994,14 @@ standard output.
994
994
 
995
995
  use strict ;
996
996
  use warnings ;
997
-
997
+
998
998
  use Compress::Zlib ;
999
-
999
+
1000
1000
  binmode STDOUT; # gzopen only sets it on the fd
1001
-
1001
+
1002
1002
  my $gz = gzopen(\*STDOUT, "wb")
1003
1003
  or die "Cannot open stdout: $gzerrno\n" ;
1004
-
1004
+
1005
1005
  while (<>) {
1006
1006
  $gz->gzwrite($_)
1007
1007
  or die "error writing: $gzerrno\n" ;
@@ -1275,18 +1275,18 @@ input, deflates it and writes it to standard output.
1275
1275
  while (<>)
1276
1276
  {
1277
1277
  ($output, $status) = $x->deflate($_) ;
1278
-
1278
+
1279
1279
  $status == Z_OK
1280
1280
  or die "deflation failed\n" ;
1281
-
1281
+
1282
1282
  print $output ;
1283
1283
  }
1284
-
1284
+
1285
1285
  ($output, $status) = $x->flush() ;
1286
-
1286
+
1287
1287
  $status == Z_OK
1288
1288
  or die "deflation failed\n" ;
1289
-
1289
+
1290
1290
  print $output ;
1291
1291
 
1292
1292
  =head1 Inflate Interface
@@ -1313,13 +1313,13 @@ I<zlib> error code.
1313
1313
  The function optionally takes a number of named options specified as
1314
1314
  C<< -Name=>value >> pairs. This allows individual options to be
1315
1315
  tailored without having to specify them all in the parameter list.
1316
-
1316
+
1317
1317
  For backward compatibility, it is also possible to pass the parameters
1318
1318
  as a reference to a hash containing the name=>value pairs.
1319
-
1319
+
1320
1320
  The function takes one optional parameter, a reference to a hash. The
1321
1321
  contents of the hash allow the deflation interface to be tailored.
1322
-
1322
+
1323
1323
  Here is a list of the valid options:
1324
1324
 
1325
1325
  =over 5
@@ -1409,27 +1409,27 @@ Here is an example of using C<inflate>.
1409
1409
 
1410
1410
  use strict ;
1411
1411
  use warnings ;
1412
-
1412
+
1413
1413
  use Compress::Zlib ;
1414
-
1414
+
1415
1415
  my $x = inflateInit()
1416
1416
  or die "Cannot create a inflation stream\n" ;
1417
-
1417
+
1418
1418
  my $input = '' ;
1419
1419
  binmode STDIN;
1420
1420
  binmode STDOUT;
1421
-
1421
+
1422
1422
  my ($output, $status) ;
1423
1423
  while (read(STDIN, $input, 4096))
1424
1424
  {
1425
1425
  ($output, $status) = $x->inflate(\$input) ;
1426
-
1426
+
1427
1427
  print $output
1428
1428
  if $status == Z_OK or $status == Z_STREAM_END ;
1429
-
1429
+
1430
1430
  last if $status != Z_OK ;
1431
1431
  }
1432
-
1432
+
1433
1433
  die "inflation failed\n"
1434
1434
  unless $status == Z_STREAM_END ;
1435
1435
 
@@ -1467,6 +1467,12 @@ Returns the version of the zlib library.
1467
1467
  All the I<zlib> constants are automatically imported when you make use
1468
1468
  of I<Compress::Zlib>.
1469
1469
 
1470
+ =head1 SUPPORT
1471
+
1472
+ General feedback/questions/bug reports should be sent to
1473
+ L<https://github.com/pmqs/IO-Compress/issues> (preferred) or
1474
+ L<https://rt.cpan.org/Public/Dist/Display.html?Name=IO-Compress>.
1475
+
1470
1476
  =head1 SEE ALSO
1471
1477
 
1472
1478
  L<IO::Compress::Gzip>, L<IO::Uncompress::Gunzip>, L<IO::Compress::Deflate>, L<IO::Uncompress::Inflate>, L<IO::Compress::RawDeflate>, L<IO::Uncompress::RawInflate>, L<IO::Compress::Bzip2>, L<IO::Uncompress::Bunzip2>, L<IO::Compress::Lzma>, L<IO::Uncompress::UnLzma>, L<IO::Compress::Xz>, L<IO::Uncompress::UnXz>, L<IO::Compress::Lzip>, L<IO::Uncompress::UnLzip>, L<IO::Compress::Lzop>, L<IO::Uncompress::UnLzop>, L<IO::Compress::Lzf>, L<IO::Uncompress::UnLzf>, L<IO::Compress::Zstd>, L<IO::Uncompress::UnZstd>, L<IO::Uncompress::AnyInflate>, L<IO::Uncompress::AnyUncompress>
@@ -1500,8 +1506,7 @@ See the Changes file.
1500
1506
 
1501
1507
  =head1 COPYRIGHT AND LICENSE
1502
1508
 
1503
- Copyright (c) 1995-2019 Paul Marquess. All rights reserved.
1509
+ Copyright (c) 1995-2021 Paul Marquess. All rights reserved.
1504
1510
 
1505
1511
  This program is free software; you can redistribute it and/or
1506
1512
  modify it under the same terms as Perl itself.
1507
-
@@ -3,14 +3,14 @@
3
3
 
4
4
  # for a description of the variables, please have a look at the
5
5
  # Glossary file, as written in the Porting folder, or use the url:
6
- # http://perl5.git.perl.org/perl.git/blob/HEAD:/Porting/Glossary
6
+ # https://github.com/Perl/perl5/blob/blead/Porting/Glossary
7
7
 
8
8
  package Config;
9
9
  use strict;
10
10
  use warnings;
11
11
  our ( %Config, $VERSION );
12
12
 
13
- $VERSION = "5.030000";
13
+ $VERSION = "5.032001";
14
14
 
15
15
  # Skip @Config::EXPORT because it only contains %Config, which we special
16
16
  # case below as it's not a function. @Config::EXPORT won't change in the
@@ -56,11 +56,11 @@ sub import {
56
56
  return;
57
57
  }
58
58
 
59
- die "$0: Perl lib version (5.30.0) doesn't match executable '$^X' version ($])"
59
+ die "$0: Perl lib version (5.32.1) doesn't match executable '$^X' version ($])"
60
60
  unless $^V;
61
61
 
62
- $^V eq 5.30.0
63
- or die sprintf "%s: Perl lib version (5.30.0) doesn't match executable '$^X' version (%vd)", $0, $^V;
62
+ $^V eq 5.32.1
63
+ or die sprintf "%s: Perl lib version (5.32.1) doesn't match executable '$^X' version (%vd)", $0, $^V;
64
64
 
65
65
 
66
66
  sub FETCH {
@@ -85,7 +85,7 @@ sub AUTOLOAD {
85
85
  # tie returns the object, so the value returned to require will be true.
86
86
  tie %Config, 'Config', {
87
87
  archlibexp => 'C:\\strawberry\\perl\\lib',
88
- archname => 'MSWin32-x86-multi-thread-64int',
88
+ archname => 'MSWin32-x64-multi-thread',
89
89
  cc => 'gcc',
90
90
  d_readlink => undef,
91
91
  d_symlink => undef,
@@ -96,9 +96,9 @@ tie %Config, 'Config', {
96
96
  inc_version_list => '',
97
97
  intsize => '4',
98
98
  ldlibpthname => '',
99
- libpth => 'C:\\strawberry\\c\\lib C:\\strawberry\\c\\i686-w64-mingw32\\lib C:\\strawberry\\c\\lib\\gcc\\i686-w64-mingw32\\8.3.0',
99
+ libpth => 'C:\\strawberry\\c\\lib C:\\strawberry\\c\\x86_64-w64-mingw32\\lib C:\\strawberry\\c\\lib\\gcc\\x86_64-w64-mingw32\\8.3.0',
100
100
  osname => 'MSWin32',
101
- osvers => '10.0.17763.529',
101
+ osvers => '10.0.19042.746',
102
102
  path_sep => ';',
103
103
  privlibexp => 'C:\\strawberry\\perl\\lib',
104
104
  scriptdir => 'C:\\strawberry\\perl\\bin',
@@ -107,7 +107,7 @@ tie %Config, 'Config', {
107
107
  so => 'dll',
108
108
  useithreads => 'define',
109
109
  usevendorprefix => 'define',
110
- version => '5.30.0',
110
+ version => '5.32.1',
111
111
  };
112
112
  eval {
113
113
  require Portable;