Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/exiftool/
Date: Fri, 03 Jun 2022 03:08:57
Message-Id: 1654225724.bb1fa45feb8a0daad9173f06a2e564ff4be23c8e.sam@gentoo
1 commit: bb1fa45feb8a0daad9173f06a2e564ff4be23c8e
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jun 3 02:46:43 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri Jun 3 03:08:44 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb1fa45f
7
8 media-libs/exiftool: add 12.42
9
10 Closes: https://bugs.gentoo.org/832033
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 media-libs/exiftool/Manifest | 1 +
14 media-libs/exiftool/exiftool-12.42.ebuild | 26 ++++++++++++++++++++++++++
15 2 files changed, 27 insertions(+)
16
17 diff --git a/media-libs/exiftool/Manifest b/media-libs/exiftool/Manifest
18 index e8357415c74a..6d617b8ca7fe 100644
19 --- a/media-libs/exiftool/Manifest
20 +++ b/media-libs/exiftool/Manifest
21 @@ -1,2 +1,3 @@
22 DIST Image-ExifTool-12.30.tar.gz 4948601 BLAKE2B 359c06dc5d4f71e186d7a265488cb16e47e40438d8a0e2d4e74f75b6aac7efd1c5b3271a158cb8b822eace5f6b437d5d39458c31ae8e6e886e93f2e643f8c9a9 SHA512 2966854d8fd163fd5aaaca5608eeab2a3f0681fe9e22e006840acacd2ff2aaecd6076bcec23989facb7baf64aa96425ad7eeceb4045da44004421b8f10050935
23 DIST Image-ExifTool-12.33.tar.gz 4958375 BLAKE2B 699529e71e87cf2a5b4d1a69049f48b7b00ce8e720918cb25c2f2b35453fd44c580444bca2ff14d6cef76de99568b2e22b98ea87f45e550d69b40dda464831fe SHA512 7d6bb1942597535cc982e77397b4dc2edee3f361338f82cf2b5f24fd7fa94c148312b125d1d4f37c8dd303eed45173a805eb79ba61a6e74205e21c52f7561d90
24 +DIST Image-ExifTool-12.42.tar.gz 5042086 BLAKE2B c518906dfc6c354a6bf834044322727ff0c6787f74c387fb24b2320072bb525fd8b0b55d74cc324ac6e2ad6e75de0f3c552db2f6a1e665ab4b1bed9117916c2b SHA512 f7d3dd98623f44473f67ccf740370fd7704b60274efe1272b5219599dba9fe312afe4107937c6d64c5ee11380914b6e97a5248a2abcf88820822f9947cae0f8f
25
26 diff --git a/media-libs/exiftool/exiftool-12.42.ebuild b/media-libs/exiftool/exiftool-12.42.ebuild
27 new file mode 100644
28 index 000000000000..94747649065c
29 --- /dev/null
30 +++ b/media-libs/exiftool/exiftool-12.42.ebuild
31 @@ -0,0 +1,26 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +# Check https://exiftool.org/history.html for whether a release is 'production'
38 +# Ideally don't bump to non-production at all, but certainly don't stable.
39 +
40 +DIST_NAME=Image-ExifTool
41 +inherit perl-module
42 +
43 +DESCRIPTION="Read and write meta information in image, audio and video files"
44 +HOMEPAGE="https://exiftool.org/ http://exiftool.sourceforge.net"
45 +SRC_URI="https://exiftool.org/${DIST_P}.tar.gz"
46 +
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86 ~x64-macos"
49 +IUSE="doc"
50 +
51 +src_install() {
52 + perl-module_src_install
53 + use doc && dodoc -r html/
54 +
55 + insinto /usr/share/${PN}
56 + doins -r fmt_files config_files arg_files
57 +}