diff options
author | Sam James <sam@gentoo.org> | 2024-02-23 17:15:33 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-02-23 17:16:32 +0000 |
commit | c2ff4b84914b89d70b0445abb5f6ce09aaa4eed3 (patch) | |
tree | 3562f3f9576e052e95d58ef46a92a04fbb0e6619 /media-libs | |
parent | app-misc/siegfried: New package, v1.11.0 (diff) | |
download | gentoo-c2ff4b84914b89d70b0445abb5f6ce09aaa4eed3.tar.gz gentoo-c2ff4b84914b89d70b0445abb5f6ce09aaa4eed3.tar.bz2 gentoo-c2ff4b84914b89d70b0445abb5f6ce09aaa4eed3.zip |
media-libs/exiftool: add 12.76
Switch to CPAN for fetching for two reasons:
1) It only has production releases which reduces the risk of human-error
(us bumping to a non-production release);
2) It has older releases around for longer (as we may not be quick enough
to bump to newer versions before upstream cleanup old ones).
Note that users should really have a valid GENTOO_MIRRORS setting anyway.
Closes: https://bugs.gentoo.org/924106
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/exiftool/Manifest | 1 | ||||
-rw-r--r-- | media-libs/exiftool/exiftool-12.76.ebuild | 29 |
2 files changed, 30 insertions, 0 deletions
diff --git a/media-libs/exiftool/Manifest b/media-libs/exiftool/Manifest index 18cf6bc7ff1f..21685525865f 100644 --- a/media-libs/exiftool/Manifest +++ b/media-libs/exiftool/Manifest @@ -1,3 +1,4 @@ DIST Image-ExifTool-12.64.tar.gz 5244559 BLAKE2B fffa18a00b87bee679469c5a83851760f600f34131528ad5638a18fbffd9116b1350553681bb0e05eff86fb129cd7eeae30af82c53d00d72c01e2be6ffad485d SHA512 d643787b4c279271b01cee800fd554707cacb57e42955d58c68d4eb4de93b75d8628d724307e812d61a5b780af3f555680d6f3617080c649d532d2492fe67dcf DIST Image-ExifTool-12.72.tar.gz 5310864 BLAKE2B 3ad4b03ba234e45d1eaf8b8b4724d213286e6ef106854a75eb6a2f044fa9641f82b253ca01f3d88adf9999045015b9328ef4140ea3efe47845f73089fd297e0b SHA512 332f34550fca9bf155f4500d10409eecffb40bbbcbca6a88b2872662a03edcaf86c0fd177b81e1cc820587dbe5bac96c8cb8736d9f42f6dc53309a9ab1a801fd DIST Image-ExifTool-12.74.tar.gz 5318136 BLAKE2B b628095cf8d74d2c8ef70116b5a2019b45766f70ce5bbfaf379997c719bdd2273977bb5f9d64c7cde4f9eb24d347dce72290a795baa3b5331b42108f8622af0a SHA512 d0a756ea01a1c410257f66563e7f6f93e288545a207ca9d70afeea1a38542eb0a82222e23e2ebf378fbbbb8b63bbab1b43f4c93e7ff96e2213859f21d100d095 +DIST Image-ExifTool-12.76.tar.gz 5320564 BLAKE2B caaacf4e04246c42ea12f0f491c60a95ed0c55a6e68b5007c2b265ba3b04da661bea53f374f3f66903bd9c086bab7526be63145544d3763c41c3437b4a504654 SHA512 3e00718663cf1eb8f9b93ad2bdcaf7beb31d20d40ad7b131cb70155c660795afc8ba430610ece5e2949773667ea27d57eb417b8bf64a108409b336daffa99db7 diff --git a/media-libs/exiftool/exiftool-12.76.ebuild b/media-libs/exiftool/exiftool-12.76.ebuild new file mode 100644 index 000000000000..52c077e9bd6b --- /dev/null +++ b/media-libs/exiftool/exiftool-12.76.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +# Check https://exiftool.org/history.html for whether a release is 'production' +# Ideally don't bump to non-production at all, but certainly don't stable. +# +# We fetch from CPAN because it only has production releases and the tarballs +# are kept around for longer (see bug #924106). + +DIST_AUTHOR=EXIFTOOL +DIST_NAME=Image-ExifTool +inherit perl-module + +DESCRIPTION="Read and write meta information in image, audio and video files" +HOMEPAGE="https://exiftool.org/ https://exiftool.sourceforge.net" + +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86 ~x64-macos" +IUSE="doc" + +src_install() { + perl-module_src_install + use doc && dodoc -r html/ + + insinto /usr/share/${PN} + doins -r fmt_files config_files arg_files +} |