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: Wed, 29 Sep 2021 22:40:56
Message-Id: 1632955231.a62fe1a6b20a6dfdf9c639d3cc45406a5eff5e7f.sam@gentoo
1 commit: a62fe1a6b20a6dfdf9c639d3cc45406a5eff5e7f
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 29 22:40:31 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 29 22:40:31 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a62fe1a6
7
8 media-libs/exiftool: add 12.30
9
10 Bug: https://bugs.gentoo.org/803317
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 media-libs/exiftool/Manifest | 1 +
14 media-libs/exiftool/exiftool-12.30.ebuild | 25 +++++++++++++++++++++++++
15 2 files changed, 26 insertions(+)
16
17 diff --git a/media-libs/exiftool/Manifest b/media-libs/exiftool/Manifest
18 index c4c4e2179f3..46dc8b31def 100644
19 --- a/media-libs/exiftool/Manifest
20 +++ b/media-libs/exiftool/Manifest
21 @@ -1 +1,2 @@
22 DIST Image-ExifTool-12.26.tar.gz 4933296 BLAKE2B e45683243b82f8276aee498d52a88d5b34eaf8b28aebdd631f70e30bb91ceb52224dc994ed189b914f024be4eb471b07bf9f1d860d96af2ab211e482b9ea194e SHA512 15bbff738e151d3ed5c77a17c99ded6cc3da2050fe7df94c42aea544aa31d7f539d70d07fd5336ae018af05b7f168712f1367046d8004861fce58442c03f82bd
23 +DIST Image-ExifTool-12.30.tar.gz 4948601 BLAKE2B 359c06dc5d4f71e186d7a265488cb16e47e40438d8a0e2d4e74f75b6aac7efd1c5b3271a158cb8b822eace5f6b437d5d39458c31ae8e6e886e93f2e643f8c9a9 SHA512 2966854d8fd163fd5aaaca5608eeab2a3f0681fe9e22e006840acacd2ff2aaecd6076bcec23989facb7baf64aa96425ad7eeceb4045da44004421b8f10050935
24
25 diff --git a/media-libs/exiftool/exiftool-12.30.ebuild b/media-libs/exiftool/exiftool-12.30.ebuild
26 new file mode 100644
27 index 00000000000..48300e4ce1a
28 --- /dev/null
29 +++ b/media-libs/exiftool/exiftool-12.30.ebuild
30 @@ -0,0 +1,25 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +DIST_NAME=Image-ExifTool
37 +inherit perl-module
38 +
39 +DESCRIPTION="Read and write meta information in image, audio and video files"
40 +HOMEPAGE="https://exiftool.org/"
41 +SRC_URI="https://exiftool.org/${DIST_P}.tar.gz"
42 +
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86 ~x64-macos"
45 +IUSE="doc"
46 +
47 +SRC_TEST="do"
48 +
49 +src_install() {
50 + perl-module_src_install
51 + use doc && dodoc -r html/
52 +
53 + insinto /usr/share/${PN}
54 + doins -r fmt_files config_files arg_files
55 +}