summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-devtools/perl/exiftool_13.43.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2025-12-09 17:55:17 +0800
committerKhem Raj <raj.khem@gmail.com>2025-12-09 09:08:15 -0800
commit1aaf6cc19b1cae34ebe43ff44c30aa27b82de311 (patch)
tree08b2d99f92ed121eac43cb5689ad9e0f7784fc83 /meta-oe/recipes-devtools/perl/exiftool_13.43.bb
parent8fd12b82d3d6ec9b13b3278dc3ff5b8a8ee6b138 (diff)
downloadmeta-openembedded-1aaf6cc19b1cae34ebe43ff44c30aa27b82de311.tar.gz
exiftool: upgrade 13.42 -> 13.43
Changelog: ============ - Added support for a couple of new Android QuickTime Keys tags - Added date/time formatting for RIFF DateCreated - Added ability to read/write (but not create/delete) the HEIF Mirroring tag - Added a new SonyModelID - Added a new Canon LensType - Decode ShutterCount for the Canon EOS R6 Mark III - Decode another Samsung trailer tag - Convert invalid Panasonic AFPointPosition to 'n/a' - Fixed issue extracting timed GPS from some Wolfbox G900 MP4 videos Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-devtools/perl/exiftool_13.43.bb')
-rw-r--r--meta-oe/recipes-devtools/perl/exiftool_13.43.bb28
1 files changed, 28 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/perl/exiftool_13.43.bb b/meta-oe/recipes-devtools/perl/exiftool_13.43.bb
new file mode 100644
index 0000000000..5f973098b3
--- /dev/null
+++ b/meta-oe/recipes-devtools/perl/exiftool_13.43.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 = "dbd6def5620f4d7e4ab02d9ee5de498263ea73c1"
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}