8000 varnish 7.7.1 by BrewTestBot · Pull Request #223233 · Homebrew/homebrew-core · GitHub
[go: up one dir, main page]

Skip to content

varnish 7.7.1 #223233

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

Merged
merged 2 commits into from
May 26, 2025
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
30 changes: 20 additions & 10 deletions Formula/v/varnish.rb
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
class Varnish < Formula
desc "High-performance HTTP accelerator"
homepage "https://www.varnish-cache.org/"
url "https://varnish-cache.org/_downloads/varnish-7.6.1.tgz"
mirror "https://fossies.org/linux/www/varnish-7.6.1.tgz"
sha256 "5a9bb5a149ff27867b54a66ce16d2a4b93edffa5473cb87c9c71f7699cf845ba"
url "https://varnish-cache.org/_downloads/varnish-7.7.1.tgz"
mirror "https://fossies.org/linux/www/varnish-7.7.1.tgz"
sha256 "4c06c5c99680a429b72934f9fd513963f7e1ba8553b33ca7ec12c85a5c2b751a"
license "BSD-2-Clause"

livecheck do
Expand All @@ -12,13 +12,13 @@ class Varnish < Formula
end

bottle do
sha256 arm64_sequoia: "c27410d2620eb90cdd55fe2d2f2cb9263e50b7e38f1657ed829933b2ba42d7dd"
sha256 arm64_sonoma: "dca58a2dd40ff2cd995d8ca52be858a63656a37c2098dd676ede5d2fb8ef5fc1"
sha256 arm64_ventura: "63ce70bd5ed1b4c5c6fb069732f9619cdacc43d664fe20e6ff036e8a2ada733a"
sha256 sonoma: "bc34ed9be333dbdc5459f969058a42808385e76e3b2ae62bb2cee111b970ebe4"
sha256 ventura: "f67e4e5eb341516ad0229efe39a4012a55e840fe4f38befc9e153baabfae757e"
sha256 arm64_linux: "223fe086adcc8058bb06ea141b750201fb1460c235adca0969cf84f8f68e51c0"
sha256 x86_64_linux: "edb61c2b757d063387fcb8de36074a1dbfcec2cbe7e0637d0e9cf0966c988109"
sha256 arm64_sequoia: "fb5cbe8656ede605c0237b5547fd8597cc28f6610f7c6a0055eb4c1abce170f8"
sha256 arm64_sonoma: "ffb66142d7b11573ae3678aeabb73a3562f4d88d1ed685275ec6bd2a455c1a96"
sha256 arm64_ventura: "83d569419f98c2f552bf12e7976933c06951923659c0c5f7e78cabd15145f802"
sha256 sonoma: "be72b7f7e58cb4978f546ee7fef88b54e524217a4626712872933103a52c70f4"
sha256 ventura: "d098652ecc801d17d010faf7e18ce1767773bd41c2b8fd8562657279f9ba506f"
sha256 arm64_linux: "87f26a2116f5a9345eb1bdd23bf3573d27daafdfb93f5a160d1a32fc8cbed8bc"
sha256 x86_64_linux: "58c14e678d32e15e03fb6f88bf4cc886244dd7e8d47521e57a97bce1c3c68d9f"
end

depends_on "docutils" => :build
Expand All @@ -31,6 +31,16 @@ class Varnish < Formula
uses_from_macos "libedit"
uses_from_macos "ncurses"

# macos compatibility patches, upstream pr ref, https://github.com/varnishcache/varnish-cache/pull/4339
patch do
url "https://github.com/varnishcache/varnish-cache/commit/3e679cd0aa093f7b1c426857d24a88d3db747f24.patch?full_index=1"
sha256 "677881ed5cd0eda2e1aa799ca54601b44a96675763233966c4d101b83ccdfd73"
end
patch do
url "https://github.com/varnishcache/varnish-cache/commit/acbb1056896f6cf4115cc2a6947c9dbd8003176e.patch?full_index=1"
sha256 "915c5b560aa473ed139016b40c9e6c8a0a4cce138dd1126a63e75b58d8345e73"
end

def install
system "./configure", "--localstatedir=#{var}", *std_configure_args

Expand Down
Loading
0