summaryrefslogtreecommitdiffstats
path: root/meta-oe
diff options
context:
space:
mode:
authorLeon Anavi <leon.anavi@konsulko.com>2023-11-08 14:33:56 +0200
committerKhem Raj <raj.khem@gmail.com>2023-11-08 06:50:26 -0800
commit6f26ff340bc9d07e7bdf6f4f75b2c81935230069 (patch)
treec96d813a130b0fd9b0f5fbdff45e32be3ce21290 /meta-oe
parent90bc2a94f2b58b3d1b3f572df75bcf7ecbb5ef14 (diff)
downloadmeta-openembedded-6f26ff340bc9d07e7bdf6f4f75b2c81935230069.tar.gz
exiftool: add recipe
Add ExifTool, a platform-independent Perl library plus a command-line application for reading, writing and editing meta information in a wide variety of files. Version 12.69 brings: - Added support for DNG version 1.7.0.0 - Added a new XMP-GCamera tag - Added a number of new Nikon Z lenses (thanks Warren Hatch and Stefan) - Added a number of new XMP-crs tags - Extract XML metadata from some Hasselblad images - Tweaked -fast2 option to read metadata from inside mdat atom of HEIC images - Patched FFF reader to be more tolerant of the mess made by incompetent Hasselblad programmers (wrong IFD count for some values) - Patched WebP reader to be more tolerant of the mess made by incompetent Google programmers (EXIF with wrong header and XMP with wrong ID) - Fixed problem which could cause "use of uninitialized variable" warnings when reading images from some Nikon cameras - Fixed List type for new XMP-photomech:CreatorIdentity tag This work was sponsored by GOVCERT.LU. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe')
-rw-r--r--meta-oe/recipes-devtools/perl/exiftool_12.69.bb22
1 files changed, 22 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/perl/exiftool_12.69.bb b/meta-oe/recipes-devtools/perl/exiftool_12.69.bb
new file mode 100644
index 0000000000..09b45ada7b
--- /dev/null
+++ b/meta-oe/recipes-devtools/perl/exiftool_12.69.bb
@@ -0,0 +1,22 @@
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 = "d521eba31a3d1753f53ee251cd6879900a0275b5"
11SRC_URI = "git://github.com/exiftool/exiftool;protocol=https;branch=master"
12
13S = "${WORKDIR}/git"
14
15RDEPENDS:${PN} = " \
16 perl \
17 perl-module-list-util \
18 perl-module-overload \
19 perl-module-file-glob \
20 perl-module-scalar-util \
21 perl-module-compress-zlib \
22"