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

md5deep: add build patch for sequoia and linux #190623

Merged
merged 1 commit into from
Sep 16, 2024
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
13 changes: 9 additions & 4 deletions Formula/m/md5deep.rb
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,15 @@ class Md5deep < Formula

# Fix compilation error due to pointer comparison
patch do
on_sierra :or_newer do
url "https://github.com/jessek/hashdeep/commit/8776134.patch?full_index=1"
sha256 "3d4e3114aee5505d1336158b76652587fd6f76e1d3af784912277a1f93518c64"
end
url "https://github.com/jessek/hashdeep/commit/8776134.patch?full_index=1"
sha256 "3d4e3114aee5505d1336158b76652587fd6f76e1d3af784912277a1f93518c64"
end

# Fix literal and identifier spacing as dictated by C++11
# upstream pr ref, https://github.com/jessek/hashdeep/pull/385
patch do
url "https://github.com/jessek/hashdeep/commit/18a6b5d57f7a648d2b7dcc6e50ff00a1e4b05fcc.patch?full_index=1"
sha256 "a48a214b06372042e4e9fc06caae9d0e31da378892d28c4a30b4800cedf85e86"
end

def install
Expand Down
Loading