summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-devtools/perl/exiftool_13.52.bb
diff options
context:
space:
mode:
authorGyorgy Sarvari <skandigraun@gmail.com>2026-03-08 18:58:22 +0100
committerKhem Raj <raj.khem@gmail.com>2026-03-17 13:25:15 -0700
commit0934de7a60ffbf0dc9abb463b041203822d5e07e (patch)
tree4bdc37b371d1fcc587da6a9b16c42fff77dd80cb /meta-oe/recipes-devtools/perl/exiftool_13.52.bb
parent50e7b3e5eaaaca7c5ef4486fb36c767e9b28a2c7 (diff)
downloadmeta-openembedded-0934de7a60ffbf0dc9abb463b041203822d5e07e.tar.gz
exiftool: upgrade 13.48 -> 13.52
Also fixes CVE-2026-3102 Changelog: 13.52: - Added a number of new XMP tags written by Adobe software - Added UTF-16 support for a few different metadata types in which only UCS-2 was previously implemented - Added a few more Canon FlashModel values and decode FlashModel for the 5DmkII - Added a new Canon LensType - Added some missing file attribute bits to two of the new LNK tags - Decode internal serial number for the 5DmkII - Decode another OwnerName for the 5DmkII - Decode some timed GPS for a couple of new DJI drones - Enable WindowsLongPath by default only if Win32::API is available - Renamed the Pentax K3III AFInfo tag to AFInfoK3III 13.51: - Added a new Nikon LensID - Decode more tags from Windows LNK files - Decode another LIGOGPSINFO variant - Decode some new Canon tags - Decode some new Nikon tags - Split decoding on Nikon BurstGroupID into separate tags - Fixed round-off error in GPSDateTime seconds for camm6 metadata in MP4 videos introduced in 13.45 - Fixed bug generating the default-language version of QuickTime:LocationInformation 13.50: - Added a few new Sony lenses - Added a couple of new Canon lenses - Decode another Samsung trailer tag - Decode BlackLevels from some Canon CRW files - Updated Sony maker note decoding for the ILCE-7M5 - Patched potential MacOS security issue - Fixed -list options so reading image files beforehand doesn't add tags to the output when running multiple commands using the -execute feature 13.49: - Decode a couple of new Samsung trailer tags - Disabled decoding of MenuSettings for the Nikon Z6III firmware 2.0 until the changes can be worked through in detail - Fixed problem where Google Photos had problems displaying ExifTool-edited HEIC MotionPhoto images. Files written by older versions of ExifTool may be repaired by re-writing with 13.49 or later Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-devtools/perl/exiftool_13.52.bb')
-rw-r--r--meta-oe/recipes-devtools/perl/exiftool_13.52.bb28
1 files changed, 28 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/perl/exiftool_13.52.bb b/meta-oe/recipes-devtools/perl/exiftool_13.52.bb
new file mode 100644
index 0000000000..f40116144e
--- /dev/null
+++ b/meta-oe/recipes-devtools/perl/exiftool_13.52.bb
@@ -0,0 +1,28 @@
1SUMMARY = "Exiftool"
2DESCRIPTION = "ExifTool is a platform-independent Perl library plus a command-line application for reading, writing and editing meta information in a wide variety of files."
3HOMEPAGE = "https://exiftool.org/"
4SECTION = "libs"
5LICENSE = "GPL-3.0-only"
6LIC_FILES_CHKSUM = "file://perl-Image-ExifTool.spec;beginline=5;endline=5;md5=ffefffc98dab025cb49489bd4d88ee10"
7
8inherit cpan
9
10SRCREV = "02c78a2e051894b57ad8a11024f8cfa05957e725"
11SRC_URI = "git://github.com/exiftool/exiftool;protocol=https;branch=master;tag=${PV}"
12
13RDEPENDS:${PN} = " \
14 perl \
15 perl-module-list-util \
16 perl-module-overload \
17 perl-module-file-glob \
18 perl-module-scalar-util \
19 perl-module-compress-zlib \
20"
21
22do_install:append() {
23 # Remove reference to TMPDIR [buildpaths]
24 sed -i -e 's,${TMPDIR},,g' ${D}${bindir}/exiftool
25
26 # Fix shebang and QA Issue [file-rdeps] to use target /usr/bin/env
27 sed -i -e '1s|^#!.*env perl|#!/usr/bin/env perl|' ${D}${bindir}/exiftool
28}