mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-15 16:07:26 +00:00
f4dca597c9
Details: https://nvd.nist.gov/vuln/detail/CVE-2026-3102 The vulnerability impacts only MacOS - ignore it. Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Anuj Mittal <anuj.mittal@oss.qualcomm.com>
31 lines
1.0 KiB
BlitzBasic
31 lines
1.0 KiB
BlitzBasic
SUMMARY = "Exiftool"
|
|
DESCRIPTION = "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."
|
|
HOMEPAGE = "https://exiftool.org/"
|
|
SECTION = "libs"
|
|
LICENSE = "GPL-3.0-only"
|
|
LIC_FILES_CHKSUM = "file://perl-Image-ExifTool.spec;beginline=5;endline=5;md5=ffefffc98dab025cb49489bd4d88ee10"
|
|
|
|
inherit cpan
|
|
|
|
SRCREV = "a162a723be10dac03b3037f7cc64c1f9c480448e"
|
|
SRC_URI = "git://github.com/exiftool/exiftool;protocol=https;branch=master"
|
|
|
|
RDEPENDS:${PN} = " \
|
|
perl \
|
|
perl-module-list-util \
|
|
perl-module-overload \
|
|
perl-module-file-glob \
|
|
perl-module-scalar-util \
|
|
perl-module-compress-zlib \
|
|
"
|
|
|
|
do_install:append() {
|
|
# Remove reference to TMPDIR [buildpaths]
|
|
sed -i -e 's,${TMPDIR},,g' ${D}${bindir}/exiftool
|
|
|
|
# Fix shebang and QA Issue [file-rdeps] to use target /usr/bin/env
|
|
sed -i -e '1s|^#!.*env perl|#!/usr/bin/env perl|' ${D}${bindir}/exiftool
|
|
}
|
|
|
|
CVE_STATUS[CVE-2026-3102] = "not-applicable-platform: affects only MacOS"
|