Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

exiftool 12.70 #154835

Merged
merged 2 commits into from
Nov 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 11 additions & 13 deletions Formula/e/exiftool.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ class Exiftool < Formula
homepage "https://exiftool.org"
# Ensure release is tagged production before submitting.
# https://exiftool.org/history.html
url "https://cpan.metacpan.org/authors/id/E/EX/EXIFTOOL/Image-ExifTool-12.60.tar.gz"
mirror "https://exiftool.org/Image-ExifTool-12.60.tar.gz"
sha256 "73dbe06d004c31082a56e78d7f246f2bb0002fbb1835447bc32a2b076f3d32ad"
url "https://cpan.metacpan.org/authors/id/E/EX/EXIFTOOL/Image-ExifTool-12.70.tar.gz"
mirror "https://exiftool.org/Image-ExifTool-12.70.tar.gz"
sha256 "4cb2522445cc3e3f3bd13904c6aeaeada5fc5a5e2498d7abad2957dcb42caffe"
license any_of: ["Artistic-1.0-Perl", "GPL-1.0-or-later"]

livecheck do
Expand All @@ -14,23 +14,21 @@ class Exiftool < Formula
end

bottle do
sha256 cellar: :any_skip_relocation, arm64_sonoma: "4cc5135fce9776fdf80db222c046fbc3ac47927a4379263ab28ccd60ccc84718"
sha256 cellar: :any_skip_relocation, arm64_ventura: "a969e56b973c0d579c9e5bf0e0a8b18e67dd4f4430ea55874a53f8a073b1c2aa"
sha256 cellar: :any_skip_relocation, arm64_monterey: "a969e56b973c0d579c9e5bf0e0a8b18e67dd4f4430ea55874a53f8a073b1c2aa"
sha256 cellar: :any_skip_relocation, arm64_big_sur: "e6971f757e7d376474c821f30747fc9ec8d5b80437c0838e31967167e2f94a6c"
sha256 cellar: :any_skip_relocation, sonoma: "1c62c1265ac44c8fa034f726d1a328416ea958302c8013fa253c0bb7b7815afa"
sha256 cellar: :any_skip_relocation, ventura: "7530b6e640f91294c223c2e97722145d91feea0917a6716daeee2cc5b888c1ae"
sha256 cellar: :any_skip_relocation, monterey: "7530b6e640f91294c223c2e97722145d91feea0917a6716daeee2cc5b888c1ae"
sha256 cellar: :any_skip_relocation, big_sur: "2ac32b1e64ec5de6a8d5f9b87d62424056c8024571f7219e59f8699abf72255d"
sha256 cellar: :any_skip_relocation, x86_64_linux: "f7960fb7ee4a8d1e6729425aee6fd27d742913e18985925c90d32667761ea602"
sha256 cellar: :any_skip_relocation, arm64_sonoma: "06999b5ba8f63ddf6c89d8e411bb43d0efc4c354d0e6402feede7b4aaa800f0f"
sha256 cellar: :any_skip_relocation, arm64_ventura: "862bd853237dcc82585f79649e66c06194fcea90793eec0b9243b20b7236eae4"
sha256 cellar: :any_skip_relocation, arm64_monterey: "862bd853237dcc82585f79649e66c06194fcea90793eec0b9243b20b7236eae4"
sha256 cellar: :any_skip_relocation, sonoma: "60a7df2ec24a8fd7e10291f369cdf7a569e14587fbcea759dc9e40b46214c279"
sha256 cellar: :any_skip_relocation, ventura: "4ae13f4922fea01cf68d7c88b81811db0e22f0d8a43c7ec55424096d77b2ce94"
sha256 cellar: :any_skip_relocation, monterey: "4ae13f4922fea01cf68d7c88b81811db0e22f0d8a43c7ec55424096d77b2ce94"
sha256 cellar: :any_skip_relocation, x86_64_linux: "17f75702df68f918106de1d3ca08726e306a627f98c015dd3f9f34aa0e5b87fd"
end

uses_from_macos "perl"

def install
# Enable large file support
# https://exiftool.org/forum/index.php?topic=3916.msg18182#msg18182
inreplace "lib/Image/ExifTool.pm", "LargeFileSupport => undef", "LargeFileSupport => 1"
inreplace "lib/Image/ExifTool.pm", "'LargeFileSupport', undef", "'LargeFileSupport', 1"

# replace the hard-coded path to the lib directory
inreplace "exiftool", "unshift @INC, $incDir;", "unshift @INC, \"#{libexec}/lib\";"
Expand Down
Loading