From d3913e4cfacec88fbd334e802cf6b771057cf70d Mon Sep 17 00:00:00 2001 From: MoonFruit Date: Mon, 17 Jul 2023 18:04:45 +0800 Subject: [PATCH 01/44] libgit2 1.7.1 Signed-off-by: Rui Chen --- Aliases/{libgit2@1.6 => libgit2@1.7} | 0 Formula/lib/libgit2.rb | 5 ++--- 2 files changed, 2 insertions(+), 3 deletions(-) rename Aliases/{libgit2@1.6 => libgit2@1.7} (100%) diff --git a/Aliases/libgit2@1.6 b/Aliases/libgit2@1.7 similarity index 100% rename from Aliases/libgit2@1.6 rename to Aliases/libgit2@1.7 diff --git a/Formula/lib/libgit2.rb b/Formula/lib/libgit2.rb index 4f82fcdd7c0ba..e748716320206 100644 --- a/Formula/lib/libgit2.rb +++ b/Formula/lib/libgit2.rb @@ -1,10 +1,9 @@ class Libgit2 < Formula desc "C library of Git core methods that is re-entrant and linkable" homepage "https://libgit2.github.com/" - url "https://github.com/libgit2/libgit2/archive/v1.6.4.tar.gz" - sha256 "d25866a4ee275a64f65be2d9a663680a5cf1ed87b7ee4c534997562c828e500d" + url "https://github.com/libgit2/libgit2/archive/refs/tags/v1.7.1.tar.gz" + sha256 "17d2b292f21be3892b704dddff29327b3564f96099a1c53b00edc23160c71327" license "GPL-2.0-only" => { with: "GCC-exception-2.0" } - revision 1 head "https://github.com/libgit2/libgit2.git", branch: "main" livecheck do From 625d61fa0df9d872617730d4f65c161e5a464877 Mon Sep 17 00:00:00 2001 From: Ruoyu Zhong Date: Fri, 1 Sep 2023 21:34:14 +0800 Subject: [PATCH 02/44] libgit2@1.6 1.6.4 (new formula) --- Formula/lib/libgit2@1.6.rb | 54 +++++++++++++++++++ .../versioned_head_spec_allowlist.json | 1 + 2 files changed, 55 insertions(+) create mode 100644 Formula/lib/libgit2@1.6.rb diff --git a/Formula/lib/libgit2@1.6.rb b/Formula/lib/libgit2@1.6.rb new file mode 100644 index 0000000000000..7ba9b1beee933 --- /dev/null +++ b/Formula/lib/libgit2@1.6.rb @@ -0,0 +1,54 @@ +class Libgit2AT16 < Formula + desc "C library of Git core methods that is re-entrant and linkable" + homepage "https://libgit2.github.com/" + url "https://github.com/libgit2/libgit2/archive/refs/tags/v1.6.4.tar.gz" + sha256 "d25866a4ee275a64f65be2d9a663680a5cf1ed87b7ee4c534997562c828e500d" + license "GPL-2.0-only" => { with: "GCC-exception-2.0" } + head "https://github.com/libgit2/libgit2.git", branch: "maint/v1.6" + + livecheck do + url :stable + regex(/v?(1\.6(?:\.\d+)+)/i) + end + + keg_only :versioned_formula + + depends_on "cmake" => :build + depends_on "pkg-config" => :build + depends_on "libssh2" + depends_on "openssl@3" + + def install + args = %w[-DBUILD_EXAMPLES=OFF -DBUILD_TESTS=OFF -DUSE_SSH=ON] + + system "cmake", "-S", ".", "-B", "build", "-DBUILD_SHARED_LIBS=ON", *args, *std_cmake_args + system "cmake", "--build", "build" + system "cmake", "--install", "build" + + system "cmake", "-S", ".", "-B", "build-static", "-DBUILD_SHARED_LIBS=OFF", *args, *std_cmake_args + system "cmake", "--build", "build-static" + lib.install "build-static/libgit2.a" + end + + test do + (testpath/"test.c").write <<~EOS + #include + #include + + int main(int argc, char *argv[]) { + int options = git_libgit2_features(); + assert(options & GIT_FEATURE_SSH); + return 0; + } + EOS + libssh2 = Formula["libssh2"] + flags = %W[ + -I#{include} + -I#{libssh2.opt_include} + -L#{lib} + -lgit2 + ] + system ENV.cc, "test.c", "-o", "test", *flags + system "./test" + end +end diff --git a/audit_exceptions/versioned_head_spec_allowlist.json b/audit_exceptions/versioned_head_spec_allowlist.json index 2088591ec0193..3b499dfbe749b 100644 --- a/audit_exceptions/versioned_head_spec_allowlist.json +++ b/audit_exceptions/versioned_head_spec_allowlist.json @@ -3,5 +3,6 @@ "botan@2", "imagemagick@6", "libgit2@1.5", + "libgit2@1.6", "mbedtls@2" ] From f53a4ed2c66595f75de356d383300fe8d1ef792c Mon Sep 17 00:00:00 2001 From: Ruoyu Zhong Date: Fri, 1 Sep 2023 21:35:04 +0800 Subject: [PATCH 03/44] cargo-c: switch to `libgit2@1.6` --- Formula/c/cargo-c.rb | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/Formula/c/cargo-c.rb b/Formula/c/cargo-c.rb index 4d716f51069b2..8df740ddbecec 100644 --- a/Formula/c/cargo-c.rb +++ b/Formula/c/cargo-c.rb @@ -1,9 +1,12 @@ class CargoC < Formula desc "Helper program to build and install c-like libraries" homepage "https://github.com/lu-zero/cargo-c" + # TODO: check if we can use unversioned `libgit2` at version bump. + # See comments below for details. url "https://github.com/lu-zero/cargo-c/archive/refs/tags/v0.9.24.tar.gz" sha256 "32f2f5c802c01c51cf93471fcf876d0cc68edbc31d22005b9f07e4549d5b98b1" license "MIT" + revision 1 livecheck do url :stable @@ -21,7 +24,14 @@ class CargoC < Formula end depends_on "rust" => :build - depends_on "libgit2" + # To check for `libgit2` version: + # 1. Check for `cargo` version at https://github.com/lu-zero/cargo-c/blob/v#{version}/Cargo.toml + # 2. Search for `libgit2-sys` version at https://github.com/rust-lang/cargo/blob/#{cargo_version}/Cargo.lock + # 3. If the version suffix of `libgit2-sys` is newer than +1.6.*, then: + # - Use the corresponding `libgit2` formula. + # - Change the `LIBGIT2_SYS_USE_PKG_CONFIG` env var below to `LIBGIT2_NO_VENDOR`. + # See: https://github.com/rust-lang/git2-rs/commit/59a81cac9ada22b5ea6ca2841f5bd1229f1dd659. + depends_on "libgit2@1.6" depends_on "libssh2" depends_on "openssl@3" @@ -55,7 +65,7 @@ def check_binary_linkage(binary, library) assert_match cargo_error, shell_output("#{bin}/cargo-cbuild cbuild 2>&1", 1) [ - Formula["libgit2"].opt_lib/shared_library("libgit2"), + Formula["libgit2@1.6"].opt_lib/shared_library("libgit2"), Formula["libssh2"].opt_lib/shared_library("libssh2"), Formula["openssl@3"].opt_lib/shared_library("libssl"), Formula["openssl@3"].opt_lib/shared_library("libcrypto"), From ca1061f79f4327be44c85f0c3343ddaa15556056 Mon Sep 17 00:00:00 2001 From: Ruoyu Zhong Date: Fri, 1 Sep 2023 21:35:50 +0800 Subject: [PATCH 04/44] cargo-edit: switch to `libgit2@1.6` --- Formula/c/cargo-edit.rb | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/Formula/c/cargo-edit.rb b/Formula/c/cargo-edit.rb index 0702df04618cb..e45913e1f7865 100644 --- a/Formula/c/cargo-edit.rb +++ b/Formula/c/cargo-edit.rb @@ -1,9 +1,12 @@ class CargoEdit < Formula desc "Utility for managing cargo dependencies from the command-line" homepage "https://killercup.github.io/cargo-edit/" - url "https://github.com/killercup/cargo-edit/archive/v0.12.1.tar.gz" + # TODO: check if we can use unversioned `libgit2` at version bump. + # See comments below for details. + url "https://github.com/killercup/cargo-edit/archive/refs/tags/v0.12.1.tar.gz" sha256 "2223107d04c17643ad3261fb2c106200df61a988daa8257ed8bffd8c0a8383ab" license "MIT" + revision 1 bottle do sha256 cellar: :any_skip_relocation, arm64_ventura: "f4f5ac5c34c0555d7c7fa89b210a3423850705960053a272388bcfbe57ede2f1" @@ -18,7 +21,13 @@ class CargoEdit < Formula depends_on "pkg-config" => :build depends_on "rust" => :build depends_on "rustup-init" => :test - depends_on "libgit2" + # To check for `libgit2` version: + # 1. Search for `libgit2-sys` version at https://github.com/killercup/cargo-edit/blob/v#{version}/Cargo.lock + # 2. If the version suffix of `libgit2-sys` is newer than +1.6.*, then: + # - Migrate to the corresponding `libgit2` formula. + # - Change the `LIBGIT2_SYS_USE_PKG_CONFIG` env var below to `LIBGIT2_NO_VENDOR`. + # See: https://github.com/rust-lang/git2-rs/commit/59a81cac9ada22b5ea6ca2841f5bd1229f1dd659. + depends_on "libgit2@1.6" depends_on "openssl@3" def install @@ -32,6 +41,7 @@ def install cargo_option_regex = /default\s*=\s*(\[.+?\])/m cargo_options = JSON.parse(cargo_toml[cargo_option_regex, 1].sub(",\n]", "]")) cargo_options.delete("vendored-libgit2") + ENV["LIBGIT2_SYS_USE_PKG_CONFIG"] = "1" # We use the `features` flags to disable vendored `libgit2` but enable all other defaults. # We do this since there is no way to disable a specific default feature with `cargo`. @@ -76,7 +86,7 @@ def check_binary_linkage(binary, library) end [ - Formula["libgit2"].opt_lib/shared_library("libgit2"), + Formula["libgit2@1.6"].opt_lib/shared_library("libgit2"), Formula["openssl@3"].opt_lib/shared_library("libssl"), Formula["openssl@3"].opt_lib/shared_library("libcrypto"), ].each do |library| From 63c706829488c50a2e65f7681c0cfc619ec7195b Mon Sep 17 00:00:00 2001 From: Ruoyu Zhong Date: Fri, 1 Sep 2023 21:36:17 +0800 Subject: [PATCH 05/44] cargo-generate: switch to `libgit2@1.6` --- Formula/c/cargo-generate.rb | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/Formula/c/cargo-generate.rb b/Formula/c/cargo-generate.rb index 9b31ff376ca4a..866ec0e8eebb6 100644 --- a/Formula/c/cargo-generate.rb +++ b/Formula/c/cargo-generate.rb @@ -1,9 +1,12 @@ class CargoGenerate < Formula desc "Use pre-existing git repositories as templates" homepage "https://github.com/cargo-generate/cargo-generate" + # TODO: check if we can use unversioned `libgit2` at version bump. + # See comments below for details. url "https://github.com/cargo-generate/cargo-generate/archive/refs/tags/v0.18.4.tar.gz" sha256 "830c9a6bc6350f47e854260291d7303b8058659f8e03b85894f5636ec2d69b17" license any_of: ["Apache-2.0", "MIT"] + revision 1 head "https://github.com/cargo-generate/cargo-generate.git", branch: "main" bottle do @@ -18,7 +21,13 @@ class CargoGenerate < Formula depends_on "pkg-config" => :build depends_on "rust" => :build - depends_on "libgit2" + # To check for `libgit2` version: + # 1. Search for `libgit2-sys` version at https://github.com/cargo-generate/cargo-generate/blob/v#{version}/Cargo.lock + # 2. If the version suffix of `libgit2-sys` is newer than +1.6.*, then: + # - Migrate to the corresponding `libgit2` formula. + # - Change the `LIBGIT2_SYS_USE_PKG_CONFIG` env var below to `LIBGIT2_NO_VENDOR`. + # See: https://github.com/rust-lang/git2-rs/commit/59a81cac9ada22b5ea6ca2841f5bd1229f1dd659. + depends_on "libgit2@1.6" depends_on "libssh2" depends_on "openssl@3" @@ -49,7 +58,7 @@ def check_binary_linkage(binary, library) assert_match "brewtest", (testpath/"brewtest/Cargo.toml").read linked_libraries = [ - Formula["libgit2"].opt_lib/shared_library("libgit2"), + Formula["libgit2@1.6"].opt_lib/shared_library("libgit2"), Formula["libssh2"].opt_lib/shared_library("libssh2"), Formula["openssl@3"].opt_lib/shared_library("libssl"), ] From e82d92cc8664b422ee514f5323979d886f280b5f Mon Sep 17 00:00:00 2001 From: Ruoyu Zhong Date: Fri, 1 Sep 2023 21:36:42 +0800 Subject: [PATCH 06/44] cargo-outdated: switch to `libgit2@1.6` --- Formula/c/cargo-outdated.rb | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/Formula/c/cargo-outdated.rb b/Formula/c/cargo-outdated.rb index d62c949aa274a..3e501fd4ab564 100644 --- a/Formula/c/cargo-outdated.rb +++ b/Formula/c/cargo-outdated.rb @@ -1,10 +1,12 @@ class CargoOutdated < Formula desc "Cargo subcommand for displaying when Rust dependencies are out of date" homepage "https://github.com/kbknapp/cargo-outdated" - url "https://github.com/kbknapp/cargo-outdated/archive/v0.13.1.tar.gz" + # TODO: check if we can use unversioned `libgit2` at version bump. + # See comments below for details. + url "https://github.com/kbknapp/cargo-outdated/archive/refs/tags/v0.13.1.tar.gz" sha256 "571910b0c44f0bcf0b6e5c24184247e4603f474c7bde5f0eaa1203ce802b4a4a" license "MIT" - revision 1 + revision 2 head "https://github.com/kbknapp/cargo-outdated.git", branch: "master" bottle do @@ -20,10 +22,17 @@ class CargoOutdated < Formula depends_on "pkg-config" => :build depends_on "rust" => :build depends_on "rustup-init" => :test - depends_on "libgit2" + # To check for `libgit2` version: + # 1. Search for `libgit2-sys` version at https://github.com/kbknapp/cargo-outdated/blob/v#{version}/Cargo.lock + # 2. If the version suffix of `libgit2-sys` is newer than +1.6.*, then: + # - Migrate to the corresponding `libgit2` formula. + # - Change the `LIBGIT2_SYS_USE_PKG_CONFIG` env var below to `LIBGIT2_NO_VENDOR`. + # See: https://github.com/rust-lang/git2-rs/commit/59a81cac9ada22b5ea6ca2841f5bd1229f1dd659. + depends_on "libgit2@1.6" depends_on "openssl@3" def install + ENV["LIBGIT2_SYS_USE_PKG_CONFIG"] = "1" ENV["OPENSSL_NO_VENDOR"] = "1" ENV["OPENSSL_DIR"] = Formula["openssl@3"].opt_prefix system "cargo", "install", *std_cargo_args @@ -67,7 +76,7 @@ def check_binary_linkage(binary, library) end [ - Formula["libgit2"].opt_lib/shared_library("libgit2"), + Formula["libgit2@1.6"].opt_lib/shared_library("libgit2"), Formula["openssl@3"].opt_lib/shared_library("libssl"), Formula["openssl@3"].opt_lib/shared_library("libcrypto"), ].each do |library| From 9d2fe0b282a0e7f952affa620f4636001534c4e4 Mon Sep 17 00:00:00 2001 From: Ruoyu Zhong Date: Fri, 1 Sep 2023 21:37:00 +0800 Subject: [PATCH 07/44] cargo-release: switch to `libgit2@1.6` --- Formula/c/cargo-release.rb | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/Formula/c/cargo-release.rb b/Formula/c/cargo-release.rb index 4be43d879095d..61460817610b5 100644 --- a/Formula/c/cargo-release.rb +++ b/Formula/c/cargo-release.rb @@ -1,9 +1,12 @@ class CargoRelease < Formula desc "Cargo subcommand `release`: everything about releasing a rust crate" homepage "https://github.com/crate-ci/cargo-release" + # TODO: check if we can use unversioned `libgit2` at version bump. + # See comments below for details. url "https://github.com/crate-ci/cargo-release/archive/refs/tags/v0.24.11.tar.gz" sha256 "cbbc04f7faadd2202b36401f3ffafc8836fb176062d428d2af195c02a2f9bd58" license any_of: ["Apache-2.0", "MIT"] + revision 1 head "https://github.com/crate-ci/cargo-release.git", branch: "master" bottle do @@ -19,7 +22,13 @@ class CargoRelease < Formula depends_on "pkg-config" => :build depends_on "rust" => :build depends_on "rustup-init" => :test - depends_on "libgit2" + # To check for `libgit2` version: + # 1. Search for `libgit2-sys` version at https://github.com/crate-ci/cargo-release/blob/v#{version}/Cargo.lock + # 2. If the version suffix of `libgit2-sys` is newer than +1.6.*, then: + # - Migrate to the corresponding `libgit2` formula. + # - Change the `LIBGIT2_SYS_USE_PKG_CONFIG` env var below to `LIBGIT2_NO_VENDOR`. + # See: https://github.com/rust-lang/git2-rs/commit/59a81cac9ada22b5ea6ca2841f5bd1229f1dd659. + depends_on "libgit2@1.6" depends_on "openssl@3" def install @@ -52,7 +61,7 @@ def check_binary_linkage(binary, library) end [ - Formula["libgit2"].opt_lib/shared_library("libgit2"), + Formula["libgit2@1.6"].opt_lib/shared_library("libgit2"), Formula["openssl@3"].opt_lib/shared_library("libssl"), ].each do |library| assert check_binary_linkage(bin/"cargo-release", library), From 8da192d978ed8a04deb75af342e76cc33797aacb Mon Sep 17 00:00:00 2001 From: Ruoyu Zhong Date: Fri, 1 Sep 2023 21:37:26 +0800 Subject: [PATCH 08/44] cargo-udeps: switch to `libgit2@1.6` --- Formula/c/cargo-udeps.rb | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/Formula/c/cargo-udeps.rb b/Formula/c/cargo-udeps.rb index b38043794330b..348d343c277bb 100644 --- a/Formula/c/cargo-udeps.rb +++ b/Formula/c/cargo-udeps.rb @@ -1,9 +1,12 @@ class CargoUdeps < Formula desc "Find unused dependencies in Cargo.toml" homepage "https://github.com/est31/cargo-udeps" + # TODO: check if we can use unversioned `libgit2` at version bump. + # See comments below for details. url "https://github.com/est31/cargo-udeps/archive/refs/tags/v0.1.42.tar.gz" sha256 "b89c4ba44112a5b9d544bc8555a69f2fa24f44a0a389035cd38f19827a262e78" license any_of: ["Apache-2.0", "MIT"] + revision 1 bottle do sha256 cellar: :any_skip_relocation, arm64_ventura: "c23b5b6693551bc577db0e793b2f77d976130cb96e7af5ac0f3a73c272de673f" @@ -17,7 +20,13 @@ class CargoUdeps < Formula depends_on "rust" => :build depends_on "rustup-init" => :test - depends_on "libgit2" + # To check for `libgit2` version: + # 1. Search for `libgit2-sys` version at https://github.com/est31/cargo-udeps/blob/v#{version}/Cargo.lock + # 2. If the version suffix of `libgit2-sys` is newer than +1.6.*, then: + # - Migrate to the corresponding `libgit2` formula. + # - Change the `LIBGIT2_SYS_USE_PKG_CONFIG` env var below to `LIBGIT2_NO_VENDOR`. + # See: https://github.com/rust-lang/git2-rs/commit/59a81cac9ada22b5ea6ca2841f5bd1229f1dd659. + depends_on "libgit2@1.6" depends_on "libssh2" depends_on "openssl@3" @@ -69,7 +78,7 @@ def check_binary_linkage(binary, library) end [ - Formula["libgit2"].opt_lib/shared_library("libgit2"), + Formula["libgit2@1.6"].opt_lib/shared_library("libgit2"), Formula["libssh2"].opt_lib/shared_library("libssh2"), Formula["openssl@3"].opt_lib/shared_library("libssl"), Formula["openssl@3"].opt_lib/shared_library("libcrypto"), From 4ca00528e7411c54bf64b91ef7c31ce6494b7cfd Mon Sep 17 00:00:00 2001 From: Ruoyu Zhong Date: Sat, 2 Sep 2023 10:35:15 +0800 Subject: [PATCH 09/44] convco: switch to `libgit2@1.6` --- Formula/c/convco.rb | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/Formula/c/convco.rb b/Formula/c/convco.rb index 03c226acfd366..0046b27e54665 100644 --- a/Formula/c/convco.rb +++ b/Formula/c/convco.rb @@ -1,9 +1,12 @@ class Convco < Formula desc "Conventional commits, changelog, versioning, validation" homepage "https://convco.github.io" + # TODO: check if we can use unversioned `libgit2` at version bump. + # See comments below for details. url "https://github.com/convco/convco/archive/refs/tags/v0.4.2.tar.gz" sha256 "1e63e07e3d98aa0bcce10824d9aa2de89f0bda90bad3a322311dba4efe7a1d13" license "MIT" + revision 1 head "https://github.com/convco/convco.git", branch: "master" bottle do @@ -18,9 +21,16 @@ class Convco < Formula depends_on "pkg-config" => :build depends_on "rust" => :build - depends_on "libgit2" + # To check for `libgit2` version: + # 1. Search for `libgit2-sys` version at https://github.com/convco/convco/blob/v#{version}/Cargo.lock + # 2. If the version suffix of `libgit2-sys` is newer than +1.6.*, then: + # - Use the corresponding `libgit2` formula. + # - Change the `LIBGIT2_SYS_USE_PKG_CONFIG` env var below to `LIBGIT2_NO_VENDOR`. + # See: https://github.com/rust-lang/git2-rs/commit/59a81cac9ada22b5ea6ca2841f5bd1229f1dd659. + depends_on "libgit2@1.6" def install + ENV["LIBGIT2_SYS_USE_PKG_CONFIG"] = "1" system "cargo", "install", "--no-default-features", *std_cargo_args bash_completion.install "target/completions/convco.bash" => "convco" @@ -38,7 +48,7 @@ def install linkage_with_libgit2 = (bin/"convco").dynamically_linked_libraries.any? do |dll| next false unless dll.start_with?(HOMEBREW_PREFIX.to_s) - File.realpath(dll) == (Formula["libgit2"].opt_lib/shared_library("libgit2")).realpath.to_s + File.realpath(dll) == (Formula["libgit2@1.6"].opt_lib/shared_library("libgit2")).realpath.to_s end assert linkage_with_libgit2, "No linkage with libgit2! Cargo is likely using a vendored version." end From f4d7d54190678179dfc58b6121f21da2f766538b Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Fri, 1 Sep 2023 01:03:27 -0400 Subject: [PATCH 10/44] criterion: revision bump (libgit2 1.7.1) Signed-off-by: Rui Chen --- Formula/c/criterion.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/c/criterion.rb b/Formula/c/criterion.rb index 384ea8d56476d..7accca4dfe732 100644 --- a/Formula/c/criterion.rb +++ b/Formula/c/criterion.rb @@ -4,7 +4,7 @@ class Criterion < Formula url "https://github.com/Snaipe/Criterion/releases/download/v2.4.1/criterion-2.4.1.tar.xz" sha256 "d0f86a8fc868e2c7b83894ad058313023176d406501a4ee8863e5357e31a80e7" license "MIT" - revision 2 + revision 3 head "https://github.com/Snaipe/Criterion.git", branch: "bleeding" bottle do From 1e8986741d94f549bd0037bde8e5cb0d66e14d57 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Fri, 1 Sep 2023 01:03:27 -0400 Subject: [PATCH 11/44] exa: revision bump (libgit2 1.7.1) Signed-off-by: Rui Chen --- Formula/e/exa.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/e/exa.rb b/Formula/e/exa.rb index 0d4350b70e8ef..4052c6329f582 100644 --- a/Formula/e/exa.rb +++ b/Formula/e/exa.rb @@ -4,7 +4,7 @@ class Exa < Formula url "https://github.com/ogham/exa/archive/v0.10.1.tar.gz" sha256 "ff0fa0bfc4edef8bdbbb3cabe6fdbd5481a71abbbcc2159f402dea515353ae7c" license "MIT" - revision 1 + revision 2 head "https://github.com/ogham/exa.git", branch: "master" livecheck do From 57af73c12b8950243859684876ca791fdb1e7338 Mon Sep 17 00:00:00 2001 From: Ruoyu Zhong Date: Fri, 1 Sep 2023 21:37:48 +0800 Subject: [PATCH 12/44] gfold: switch to `libgit2@1.6` --- Formula/g/gfold.rb | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/Formula/g/gfold.rb b/Formula/g/gfold.rb index 4de619e1a601b..b86ef1ac5a56c 100644 --- a/Formula/g/gfold.rb +++ b/Formula/g/gfold.rb @@ -1,9 +1,12 @@ class Gfold < Formula desc "Help keep track of your Git repositories, written in Rust" homepage "https://github.com/nickgerace/gfold" + # TODO: check if we can use unversioned `libgit2` at version bump. + # See comments below for details. url "https://github.com/nickgerace/gfold/archive/refs/tags/4.4.0.tar.gz" sha256 "d1f8c5a578bc20751a8584c73d4df3092364b0616226656d71dbf954edd481c3" license "Apache-2.0" + revision 1 head "https://github.com/nickgerace/gfold.git", branch: "main" bottle do @@ -18,7 +21,13 @@ class Gfold < Formula depends_on "pkg-config" => :build depends_on "rust" => :build - depends_on "libgit2" + # To check for `libgit2` version: + # 1. Search for `libgit2-sys` version at https://github.com/nickgerace/gfold/blob/#{version}/Cargo.lock + # 2. If the version suffix of `libgit2-sys` is newer than +1.6.*, then: + # - Migrate to the corresponding `libgit2` formula. + # - Change the `LIBGIT2_SYS_USE_PKG_CONFIG` env var below to `LIBGIT2_NO_VENDOR`. + # See: https://github.com/rust-lang/git2-rs/commit/59a81cac9ada22b5ea6ca2841f5bd1229f1dd659. + depends_on "libgit2@1.6" uses_from_macos "zlib" @@ -46,7 +55,7 @@ def install linkage_with_libgit2 = (bin/"gfold").dynamically_linked_libraries.any? do |dll| next false unless dll.start_with?(HOMEBREW_PREFIX.to_s) - File.realpath(dll) == (Formula["libgit2"].opt_lib/shared_library("libgit2")).realpath.to_s + File.realpath(dll) == (Formula["libgit2@1.6"].opt_lib/shared_library("libgit2")).realpath.to_s end assert linkage_with_libgit2, "No linkage with libgit2! Cargo is likely using a vendored version." From 0539abb9035c69f1e823d0bf1f070d2296d5ad8b Mon Sep 17 00:00:00 2001 From: Ruoyu Zhong Date: Fri, 1 Sep 2023 21:38:07 +0800 Subject: [PATCH 13/44] git-cliff 1.3.0 --- Formula/g/git-cliff.rb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Formula/g/git-cliff.rb b/Formula/g/git-cliff.rb index 88971d1094ea9..2bc67d20e13dc 100644 --- a/Formula/g/git-cliff.rb +++ b/Formula/g/git-cliff.rb @@ -1,8 +1,8 @@ class GitCliff < Formula desc "Highly customizable changelog generator" homepage "https://github.com/orhun/git-cliff" - url "https://github.com/orhun/git-cliff/archive/refs/tags/v1.2.0.tar.gz" - sha256 "10db6fd8fe777f384de2e00336b1cb664095a2f068526f8ace4e7944a7ada270" + url "https://github.com/orhun/git-cliff/archive/refs/tags/v1.3.0.tar.gz" + sha256 "3c130ebbd3121d3994ecd1ff1062220de610c7491ada02f9d421c8869674c386" license "GPL-3.0-only" bottle do @@ -20,6 +20,8 @@ class GitCliff < Formula depends_on "libgit2" def install + ENV["LIBGIT2_NO_VENDOR"] = "1" + system "cargo", "install", *std_cargo_args(path: "git-cliff") ENV["OUT_DIR"] = buildpath From 0996ae3a82e76de913e22d9893c3897e460729b9 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Fri, 1 Sep 2023 01:03:28 -0400 Subject: [PATCH 14/44] git-interactive-rebase-tool: revision bump (libgit2 1.7.1) Signed-off-by: Rui Chen --- Formula/g/git-interactive-rebase-tool.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/g/git-interactive-rebase-tool.rb b/Formula/g/git-interactive-rebase-tool.rb index 90609fb517edd..3856c7f4d1736 100644 --- a/Formula/g/git-interactive-rebase-tool.rb +++ b/Formula/g/git-interactive-rebase-tool.rb @@ -4,6 +4,7 @@ class GitInteractiveRebaseTool < Formula url "https://github.com/MitMaro/git-interactive-rebase-tool/archive/2.3.0.tar.gz" sha256 "4af63703b3504370ef298693abc5061fe5bf215536e6d45952afda33a92f8101" license "GPL-3.0-or-later" + revision 1 livecheck do url :stable From 42869fed49cc0b7bc63f4525bb74bd02084a38a5 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Fri, 1 Sep 2023 01:03:28 -0400 Subject: [PATCH 15/44] git-series: revision bump (libgit2 1.7.1) Signed-off-by: Rui Chen --- Formula/g/git-series.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/g/git-series.rb b/Formula/g/git-series.rb index eb85e1c656e67..816adc70c0faa 100644 --- a/Formula/g/git-series.rb +++ b/Formula/g/git-series.rb @@ -4,7 +4,7 @@ class GitSeries < Formula url "https://github.com/git-series/git-series/archive/0.9.1.tar.gz" sha256 "c0362e19d3fa168a7cb0e260fcdecfe070853b163c9f2dfd2ad8213289bc7e5f" license "MIT" - revision 9 + revision 10 bottle do sha256 cellar: :any, arm64_ventura: "1568eef8c171318e5252a2b70cf6c73593cdde9771aad628a4e488f959c549e4" From 5bd674f6d06cc66440d11d9f806231fcb342bf3d Mon Sep 17 00:00:00 2001 From: Ruoyu Zhong Date: Fri, 1 Sep 2023 21:42:33 +0800 Subject: [PATCH 16/44] gping: switch to `libgit2@1.6` --- Formula/g/gping.rb | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/Formula/g/gping.rb b/Formula/g/gping.rb index 8cd05751342ae..1ae15a7b1f781 100644 --- a/Formula/g/gping.rb +++ b/Formula/g/gping.rb @@ -1,9 +1,12 @@ class Gping < Formula desc "Ping, but with a graph" homepage "https://github.com/orf/gping" - url "https://github.com/orf/gping/archive/gping-v1.14.0.tar.gz" + # TODO: check if we can use unversioned `libgit2` at version bump. + # See comments below for details. + url "https://github.com/orf/gping/archive/refs/tags/gping-v1.14.0.tar.gz" sha256 "8a9c11668e2de8472d551225da1390e89bfbe4a327d120e62f8f65a2270c44f0" license "MIT" + revision 1 head "https://github.com/orf/gping.git", branch: "master" # The GitHub repository has a "latest" release but it can sometimes point to @@ -29,7 +32,13 @@ class Gping < Formula depends_on "rust" => :build on_macos do - depends_on "libgit2" + # To check for `libgit2` version: + # 1. Search for `libgit2-sys` version at https://github.com/orf/gping/blob/gping-#{version}/Cargo.lock + # 2. If the version suffix of `libgit2-sys` is newer than +1.6.*, then: + # - Migrate to the corresponding `libgit2` formula. + # - Change the `LIBGIT2_SYS_USE_PKG_CONFIG` env var below to `LIBGIT2_NO_VENDOR`. + # See: https://github.com/rust-lang/git2-rs/commit/59a81cac9ada22b5ea6ca2841f5bd1229f1dd659. + depends_on "libgit2@1.6" end on_linux do @@ -37,6 +46,7 @@ class Gping < Formula end def install + ENV["LIBGIT2_SYS_USE_PKG_CONFIG"] = "1" system "cargo", "install", *std_cargo_args(path: "gping") end @@ -68,7 +78,7 @@ def install linkage_with_libgit2 = (bin/"gping").dynamically_linked_libraries.any? do |dll| next false unless dll.start_with?(HOMEBREW_PREFIX.to_s) - File.realpath(dll) == (Formula["libgit2"].opt_lib/shared_library("libgit2")).realpath.to_s + File.realpath(dll) == (Formula["libgit2@1.6"].opt_lib/shared_library("libgit2")).realpath.to_s end assert linkage_with_libgit2, "No linkage with libgit2! Cargo is likely using a vendored version." end From ed464d02b89d4801e926368214b9df4c9516f352 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Fri, 1 Sep 2023 01:03:29 -0400 Subject: [PATCH 17/44] libgit2-glib: revision bump (libgit2 1.7.1) Signed-off-by: Rui Chen --- Formula/lib/libgit2-glib.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/lib/libgit2-glib.rb b/Formula/lib/libgit2-glib.rb index 79ca0f7e8305c..6d827498fe696 100644 --- a/Formula/lib/libgit2-glib.rb +++ b/Formula/lib/libgit2-glib.rb @@ -2,7 +2,7 @@ class Libgit2Glib < Formula desc "Glib wrapper library around libgit2 git access library" homepage "https://gitlab.gnome.org/GNOME/libgit2-glib" license "LGPL-2.1-only" - revision 1 + revision 2 head "https://gitlab.gnome.org/GNOME/libgit2-glib.git", branch: "master" stable do From 6ce276b86e54a00b3549e968c3979f3df0b978ed Mon Sep 17 00:00:00 2001 From: Ruoyu Zhong Date: Fri, 1 Sep 2023 21:38:21 +0800 Subject: [PATCH 18/44] onefetch: switch to `libgit2@1.6` --- Formula/o/onefetch.rb | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/Formula/o/onefetch.rb b/Formula/o/onefetch.rb index bf5357f29c0c2..f63f280b32ae4 100644 --- a/Formula/o/onefetch.rb +++ b/Formula/o/onefetch.rb @@ -1,9 +1,12 @@ class Onefetch < Formula desc "Command-line Git information tool" homepage "https://onefetch.dev/" - url "https://github.com/o2sh/onefetch/archive/2.18.1.tar.gz" + # TODO: check if we can use unversioned `libgit2` at version bump. + # See comments below for details. + url "https://github.com/o2sh/onefetch/archive/refs/tags/2.18.1.tar.gz" sha256 "7b0f03e9d2383ac32283cfb9ec09d10c8789a298969c8b7d45fa0168bd909140" license "MIT" + revision 1 head "https://github.com/o2sh/onefetch.git", branch: "main" bottle do @@ -21,9 +24,16 @@ class Onefetch < Formula depends_on "cmake" => :build depends_on "pkg-config" => :build depends_on "rust" => :build - depends_on "libgit2" + # To check for `libgit2` version: + # 1. Search for `libgit2-sys` version at https://github.com/o2sh/onefetch/blob/#{version}/Cargo.lock + # 2. If the version suffix of `libgit2-sys` is newer than +1.6.*, then: + # - Migrate to the corresponding `libgit2` formula. + # - Change the `LIBGIT2_SYS_USE_PKG_CONFIG` env var below to `LIBGIT2_NO_VENDOR`. + # See: https://github.com/rust-lang/git2-rs/commit/59a81cac9ada22b5ea6ca2841f5bd1229f1dd659. + depends_on "libgit2@1.6" def install + ENV["LIBGIT2_SYS_USE_PKG_CONFIG"] = "1" system "cargo", "install", *std_cargo_args man1.install "docs/onefetch.1" @@ -46,7 +56,7 @@ def install linkage_with_libgit2 = (bin/"onefetch").dynamically_linked_libraries.any? do |dll| next false unless dll.start_with?(HOMEBREW_PREFIX.to_s) - File.realpath(dll) == (Formula["libgit2"].opt_lib/shared_library("libgit2")).realpath.to_s + File.realpath(dll) == (Formula["libgit2@1.6"].opt_lib/shared_library("libgit2")).realpath.to_s end assert linkage_with_libgit2, "No linkage with libgit2! Cargo is likely using a vendored version." From b75e521cc7be306bbb72b59646e8c7374633bb32 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Fri, 1 Sep 2023 01:03:29 -0400 Subject: [PATCH 19/44] poac: revision bump (libgit2 1.7.1) --- Formula/p/poac.rb | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Formula/p/poac.rb b/Formula/p/poac.rb index 3fc89fa126c04..f11f2e10d8ea7 100644 --- a/Formula/p/poac.rb +++ b/Formula/p/poac.rb @@ -4,7 +4,7 @@ class Poac < Formula url "https://github.com/poac-dev/poac/archive/refs/tags/0.6.0.tar.gz" sha256 "40f55553f7cca3bdad39599ce8c9049aeecf8f6140cfebac28c51d7d9abbbb78" license "Apache-2.0" - revision 3 + revision 4 head "https://github.com/poac-dev/poac.git", branch: "main" bottle do @@ -40,7 +40,11 @@ class Poac < Formula def install ENV.llvm_clang if OS.mac? && (DevelopmentTools.clang_build_version <= 1200) - system "cmake", "-B", "build", "-DPOAC_BUILD_TESTING=OFF", *std_cmake_args + # Help to find OpenSSL. + inreplace "cmake/AddOpenSSL.cmake", "${POAC_HOMEBREW_ROOT_PATH}/openssl", + Formula["openssl@3"].opt_prefix + + system "cmake", "-S", ".", "-B", "build", "-DPOAC_BUILD_TESTING=OFF", *std_cmake_args system "cmake", "--build", "build" system "cmake", "--install", "build" From 1ef9ed38ebda65cce6345881d1a84c2f8c45f429 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Fri, 1 Sep 2023 01:03:30 -0400 Subject: [PATCH 20/44] pygit2: revision bump (libgit2 1.7.1) Signed-off-by: Rui Chen --- Formula/p/pygit2.rb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Formula/p/pygit2.rb b/Formula/p/pygit2.rb index bd46857c09afb..cf3b10d79be38 100644 --- a/Formula/p/pygit2.rb +++ b/Formula/p/pygit2.rb @@ -1,9 +1,11 @@ class Pygit2 < Formula desc "Bindings to the libgit2 shared library" homepage "https://github.com/libgit2/pygit2" + # TODO: check if we can use unversioned `libgit2` at version bump. url "https://files.pythonhosted.org/packages/db/26/cd0d68706e9511ca07b10d53f42e70d4c57b3504f4a0fd675e4617ad7a60/pygit2-1.12.2.tar.gz" sha256 "56e85d0e66de957d599d1efb2409d39afeefd8f01009bfda0796b42a4b678358" license "GPL-2.0-only" => { with: "GCC-exception-2.0" } + revision 1 head "https://github.com/libgit2/pygit2.git", branch: "master" bottle do @@ -18,7 +20,9 @@ class Pygit2 < Formula end depends_on "cffi" - depends_on "libgit2" + # If commit https://github.com/libgit2/pygit2/commit/1473e8eb6eb59dc7521dcd5f8a4c9390e9b53223 + # is included in the release, then `libgit2` 1.7.x can be used. + depends_on "libgit2@1.6" depends_on "python@3.11" def python3 From 91d0f94ee89b1ece263ada4c212d5a75e924804f Mon Sep 17 00:00:00 2001 From: Ruoyu Zhong Date: Fri, 1 Sep 2023 21:57:01 +0800 Subject: [PATCH 21/44] rust: switch to `libgit2@1.6` Also, add linkage tests to make sure Cargo is not vendoring the dependencies that we provide. --- Formula/r/rust.rb | 42 +++++++++++++++++++++++++++++++++++++++++- 1 file changed, 41 insertions(+), 1 deletion(-) diff --git a/Formula/r/rust.rb b/Formula/r/rust.rb index 6c99b8e94245b..8e380d7a2b31e 100644 --- a/Formula/r/rust.rb +++ b/Formula/r/rust.rb @@ -2,8 +2,11 @@ class Rust < Formula desc "Safe, concurrent, practical language" homepage "https://www.rust-lang.org/" license any_of: ["Apache-2.0", "MIT"] + revision 1 stable do + # TODO: check if we can use unversioned `libgit2` at version bump. + # See comments below for details. url "https://static.rust-lang.org/dist/rustc-1.72.0-src.tar.gz" sha256 "ea9d61bbb51d76b6ea681156f69f0e0596b59722f04414b01c6e100b4b5be3a1" @@ -46,7 +49,13 @@ class Rust < Formula depends_on "cmake" => :build depends_on "ninja" => :build depends_on "python@3.11" => :build - depends_on "libgit2" + # To check for `libgit2` version: + # 1. Search for `libgit2-sys` version at https://github.com/rust-lang/cargo/blob/#{version}/Cargo.lock + # 2. If the version suffix of `libgit2-sys` is newer than +1.6.*, then: + # - Use the corresponding `libgit2` formula. + # - Change the `LIBGIT2_SYS_USE_PKG_CONFIG` env var below to `LIBGIT2_NO_VENDOR`. + # See: https://github.com/rust-lang/git2-rs/commit/59a81cac9ada22b5ea6ca2841f5bd1229f1dd659. + depends_on "libgit2@1.6" depends_on "libssh2" depends_on "llvm" depends_on "openssl@3" @@ -161,6 +170,14 @@ def post_install end end + def check_binary_linkage(binary, library) + binary.dynamically_linked_libraries.any? do |dll| + next false unless dll.start_with?(HOMEBREW_PREFIX.to_s) + + File.realpath(dll) == File.realpath(library) + end + end + test do system bin/"rustdoc", "-h" (testpath/"hello.rs").write <<~EOS @@ -172,5 +189,28 @@ def post_install assert_equal "Hello World!\n", shell_output("./hello") system bin/"cargo", "new", "hello_world", "--bin" assert_equal "Hello, world!", cd("hello_world") { shell_output("#{bin}/cargo run").split("\n").last } + + # We only check the tools' linkage here. No need to check rustc. + expected_linkage = { + bin/"cargo" => [ + Formula["libgit2@1.6"].opt_lib/shared_library("libgit2"), + Formula["libssh2"].opt_lib/shared_library("libssh2"), + Formula["openssl@3"].opt_lib/shared_library("libcrypto"), + Formula["openssl@3"].opt_lib/shared_library("libssl"), + ], + } + unless OS.mac? + expected_linkage[bin/"cargo"] += [ + Formula["curl"].opt_lib/shared_library("libcurl"), + Formula["zlib"].opt_lib/shared_library("libz"), + ] + end + missing_linkage = [] + expected_linkage.each do |binary, dylibs| + dylibs.each do |dylib| + missing_linkage << "#{binary} => #{dylib}" unless check_binary_linkage(binary, dylib) + end + end + assert missing_linkage.empty?, "Missing linkage: #{missing_linkage.join(", ")}" end end From 3e0b015b2bc063be2c2f476b5342fb63efbb8647 Mon Sep 17 00:00:00 2001 From: Ruoyu Zhong Date: Fri, 1 Sep 2023 21:38:37 +0800 Subject: [PATCH 22/44] sheldon: switch to `libgit2@1.6` --- Formula/s/sheldon.rb | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/Formula/s/sheldon.rb b/Formula/s/sheldon.rb index 1b2021802e158..b6cf6f15b5021 100644 --- a/Formula/s/sheldon.rb +++ b/Formula/s/sheldon.rb @@ -1,10 +1,12 @@ class Sheldon < Formula desc "Fast, configurable, shell plugin manager" homepage "https://sheldon.cli.rs" - url "https://github.com/rossmacarthur/sheldon/archive/0.7.3.tar.gz" + # TODO: check if we can use unversioned `libgit2` at version bump. + # See comments below for steps. + url "https://github.com/rossmacarthur/sheldon/archive/refs/tags/0.7.3.tar.gz" sha256 "cf8844dce853156d076a6956733420ad7a9365e16a928e419b11de8bc634fc67" license any_of: ["Apache-2.0", "MIT"] - revision 1 + revision 2 head "https://github.com/rossmacarthur/sheldon.git", branch: "trunk" bottle do @@ -20,7 +22,13 @@ class Sheldon < Formula depends_on "pkg-config" => :build depends_on "rust" => :build depends_on "curl" - depends_on "libgit2" + # To check for `libgit2` version: + # 1. Search for `libgit2-sys` version at https://github.com/rossmacarthur/sheldon/blob/#{version}/Cargo.lock + # 2. If the version suffix of `libgit2-sys` is newer than +1.6.*, then: + # - Migrate to the corresponding `libgit2` formula. + # - Change the `LIBGIT2_SYS_USE_PKG_CONFIG` env var below to `LIBGIT2_NO_VENDOR`. + # See: https://github.com/rust-lang/git2-rs/commit/59a81cac9ada22b5ea6ca2841f5bd1229f1dd659. + depends_on "libgit2@1.6" depends_on "openssl@3" def install @@ -31,6 +39,7 @@ def install # Replace vendored `libgit2` with our formula inreplace "Cargo.toml", /features = \["vendored-libgit2"\]/, "features = []" + ENV["LIBGIT2_SYS_USE_PKG_CONFIG"] = "1" system "cargo", "install", *std_cargo_args @@ -52,7 +61,7 @@ def check_binary_linkage(binary, library) assert_predicate testpath/"plugins.lock", :exist? [ - Formula["libgit2"].opt_lib/shared_library("libgit2"), + Formula["libgit2@1.6"].opt_lib/shared_library("libgit2"), Formula["curl"].opt_lib/shared_library("libcurl"), Formula["openssl@3"].opt_lib/shared_library("libssl"), Formula["openssl@3"].opt_lib/shared_library("libcrypto"), From d88b1b0e8a2db1259487c87edf6771bef7134dff Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 3 Sep 2023 03:37:20 +0000 Subject: [PATCH 23/44] sheldon: update 0.7.3_2 bottle. --- Formula/s/sheldon.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/s/sheldon.rb b/Formula/s/sheldon.rb index b6cf6f15b5021..a91382c3ab724 100644 --- a/Formula/s/sheldon.rb +++ b/Formula/s/sheldon.rb @@ -10,13 +10,13 @@ class Sheldon < Formula head "https://github.com/rossmacarthur/sheldon.git", branch: "trunk" bottle do - sha256 cellar: :any, arm64_ventura: "1b24b3fee34c0c3238a23b78d8232629a92bc4264f954f1e6eaa2fdd16330df1" - sha256 cellar: :any, arm64_monterey: "7b6a23932b20209f6b42659e2b4444f9dca2b2f63b51791a7cf7752a5a739e4a" - sha256 cellar: :any, arm64_big_sur: "c6d86976e495da8790c18254cc10dafadfacbf17b4b9098c2547697451b8a3f8" - sha256 cellar: :any, ventura: "0b2588ca3661de9c4e3a158bb00ddaa110c32d4aafc441e7e303308558697cc8" - sha256 cellar: :any, monterey: "b5c654a04fba02a7930c78ba5587a89a401ced8840af80d217c48117b5e0ad57" - sha256 cellar: :any, big_sur: "0c360e431327824b762897b0396d267d7e2c04039451aceeb24a75e8dbe5c9a3" - sha256 cellar: :any_skip_relocation, x86_64_linux: "3c2e08181dcf2ea7b34ce3e6c1174fb90ac60f89f9d1006b4206cd3f71a028af" + sha256 cellar: :any, arm64_ventura: "118dc8ee031a0b2b159c66e6dbbbbd42fe407270220e5ff07de1a764dd5acdf4" + sha256 cellar: :any, arm64_monterey: "db0e38c468d5745f301fb3d90ef2f4aba554cd2e6aba7b7468349789aa25c892" + sha256 cellar: :any, arm64_big_sur: "189fdb36ea4f1f1d95b69a6e246364bc860a6d596064f22b753fa1edd1fb12d0" + sha256 cellar: :any, ventura: "d30c78b96cc49ee5074dcdb9bbd75e2b81305a2f940f83ea863ee8be12ef3b22" + sha256 cellar: :any, monterey: "cb515d97b3b15a9b0b41620a7790b117f0618159bed8dbaad5199e3c2d1039d2" + sha256 cellar: :any, big_sur: "70aced1caac7e5f67181cbf2ea32afdb73ada5be882049a9e1a94993bf8f9112" + sha256 cellar: :any_skip_relocation, x86_64_linux: "b5b623285df6357937868aeb66dfb6b7d610deb01686e52d84fc351d62ecb9a6" end depends_on "pkg-config" => :build From 0e70370154413e2d9da47278fbe4ec76c1d8b850 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 3 Sep 2023 03:37:22 +0000 Subject: [PATCH 24/44] pygit2: update 1.12.2_1 bottle. --- Formula/p/pygit2.rb | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Formula/p/pygit2.rb b/Formula/p/pygit2.rb index cf3b10d79be38..8a5bf93fa1880 100644 --- a/Formula/p/pygit2.rb +++ b/Formula/p/pygit2.rb @@ -9,14 +9,13 @@ class Pygit2 < Formula head "https://github.com/libgit2/pygit2.git", branch: "master" bottle do - rebuild 1 - sha256 cellar: :any, arm64_ventura: "50d0698bb194f8e19ee8b26eca8c3a1362cf468dc0286f8f1e7b5fd08338109b" - sha256 cellar: :any, arm64_monterey: "ec798b4c494eeaab104671f73e907eeaa14301dd106db94696b3d8851cde6d5e" - sha256 cellar: :any, arm64_big_sur: "7e4da4c4d21d93344b34d6db2a37cfeb2e1fefe8b2944580d9454797602e775e" - sha256 cellar: :any, ventura: "733df708e7b6c8016704ac3f8ec8392bfaaf36bf0c5005c49045f029d39fae25" - sha256 cellar: :any, monterey: "c47fc76186c79f21f38e89d6da8bd31e86138ad687b17bf01306780ce109dcd0" - sha256 cellar: :any, big_sur: "743091d3ac0384f3f0aef487da81ea95404a5aaf5f866442e4a101c5c0ef3b02" - sha256 cellar: :any_skip_relocation, x86_64_linux: "dd4e7397d8d8cbe316a2548302deb636c12071bb777c32dd13fadc8a3aa24e99" + sha256 cellar: :any, arm64_ventura: "22f0fa908d1b0c7fdd641870f91d43d92644d4faabba5290bc39ae31ae952fb7" + sha256 cellar: :any, arm64_monterey: "de6a514750633ac304c0d49fc36301214dca7d0fd1fc092a8aaaec575f958409" + sha256 cellar: :any, arm64_big_sur: "4682bfadb61a9b2607ca9db9c6d361142b7c765d91f5245e6c322b12abe89bd3" + sha256 cellar: :any, ventura: "a79aa69152665012c3ac58143adfb9c03362c38106750a7e78c76d02ef41674b" + sha256 cellar: :any, monterey: "05ff09ea91d8e9bf286e276cb2e0ca9c57fc69289db4b98dd16c3fbae4d067af" + sha256 cellar: :any, big_sur: "951cff1fbdc544daeb39fe4ca20a76b6ecff665248bad7e170552e0a6461451c" + sha256 cellar: :any_skip_relocation, x86_64_linux: "a124bcb5a55ede4a35ab79e4e22fd3f2e48f3640cbf446beba101f214c650fbd" end depends_on "cffi" From 64a4c6177ced89ad95ce8c9437d19a90fd67c33f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 3 Sep 2023 03:37:23 +0000 Subject: [PATCH 25/44] onefetch: update 2.18.1_1 bottle. --- Formula/o/onefetch.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/o/onefetch.rb b/Formula/o/onefetch.rb index f63f280b32ae4..285bdcbe5967c 100644 --- a/Formula/o/onefetch.rb +++ b/Formula/o/onefetch.rb @@ -10,13 +10,13 @@ class Onefetch < Formula head "https://github.com/o2sh/onefetch.git", branch: "main" bottle do - sha256 cellar: :any, arm64_ventura: "c7b09d80fb4e0e4624aa30a1fbce5ec60af434f8db85f421a89d9ddfbc033dab" - sha256 cellar: :any, arm64_monterey: "85a14e0c3a888845f85c5de4107245a6bc331045ee96ef6a5c6bd27ee7f14b9b" - sha256 cellar: :any, arm64_big_sur: "5ebce0d46976838b8a4cbd06777ed352a4120940bc9f874cf1d110f4531e314c" - sha256 cellar: :any, ventura: "ba1165769b47df32a7ea6f18c9640117d55862aa7c21504ac25f0a9667362820" - sha256 cellar: :any, monterey: "630a686f791d1aba88e3490e499cf543a5662908e8b482769bfccdaf5ec09aa6" - sha256 cellar: :any, big_sur: "cfc7e13df7690999e2f4b173485d541a2a696c9af51fdf3f756342f3874306ff" - sha256 cellar: :any_skip_relocation, x86_64_linux: "36aa89fcd86c7867ba44d078a1b8eef44ee4e5f67cdb04598a5316bf93fe041f" + sha256 cellar: :any, arm64_ventura: "13491ecb6b14e676dd75eada2c98a52bd72afecd0335bd9c39f7795aa24ff20d" + sha256 cellar: :any, arm64_monterey: "6715b79a60fc0d1572f5abbba2c841d7be4420aa75114f4cc3467e6013ae15d0" + sha256 cellar: :any, arm64_big_sur: "b1c8a32b3f992d09d4e0f87fb7a536bf56fe04dd6c288289efa743358b03901a" + sha256 cellar: :any, ventura: "6cf0339a4c6fab1fa624b77e3ddeaa1dfba966adacc7a1e0aa820fe3dd02abb0" + sha256 cellar: :any, monterey: "2747b0fece549cd8c75a38d69753b684777f7a52cd7be130b341451ffc8273f9" + sha256 cellar: :any, big_sur: "5ad3dce345afb2f2b87287bb07ba69a3ecdb9f51c526b628f2e92a7766ed623b" + sha256 cellar: :any_skip_relocation, x86_64_linux: "2e8c88c3adf425e057cf7a0797d2c94d92a974f4bde6389848d9bf22b33615e3" end # `cmake` is used to build `zstd` and `zlib`. From 5056eeaa91e2bd952c6a068552ebe3e5e454a33d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 3 Sep 2023 03:37:23 +0000 Subject: [PATCH 26/44] criterion: update 2.4.1_3 bottle. --- Formula/c/criterion.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/criterion.rb b/Formula/c/criterion.rb index 7accca4dfe732..f4ddfdc345380 100644 --- a/Formula/c/criterion.rb +++ b/Formula/c/criterion.rb @@ -8,13 +8,13 @@ class Criterion < Formula head "https://github.com/Snaipe/Criterion.git", branch: "bleeding" bottle do - sha256 cellar: :any, arm64_ventura: "024f829292c95e44dcbf5d418dbab3f522de8b8817af94b9e6755922395cf10b" - sha256 cellar: :any, arm64_monterey: "baaef6ed0a89f1dc2c23ab986b57bbe4c2b874bbf75e9ff4ecbbfe6a6fe4d3e6" - sha256 cellar: :any, arm64_big_sur: "ca48903b667e7a43848fa625c6a88faad8af1253b8439a1aa74859335fcc91f2" - sha256 cellar: :any, ventura: "46380b7b004712fa4989d35e0f6b9564474e509a612d5e386165ad2c7457f161" - sha256 cellar: :any, monterey: "0758af431a378629d15665b337af210dfb953f81d35daf38c81b532a0c6bdcc5" - sha256 cellar: :any, big_sur: "250273dc8dbe3d0b1517134e86c5d65fe6b223c93236a2e538b286d702f9ede9" - sha256 x86_64_linux: "4bd64030261a71a8aab068ca01edf2cdcdb9f5cbfe5dd5f63097123bed9706c5" + sha256 cellar: :any, arm64_ventura: "e2fa6b6131c59f39a3153bc8f5a90bcaf5c5ee4b7cf5375572c0e79edb559d81" + sha256 cellar: :any, arm64_monterey: "6342d313467fc469437fedeff6dafcf6db55eb4e9afa56a4b3d39ed30ee3462c" + sha256 cellar: :any, arm64_big_sur: "a72de1d6b5e7dee339ff55d9e5322e31338997e0f750d1e90ba3879f1bd13ff9" + sha256 cellar: :any, ventura: "698a580f22b167eddca65ee4a296436ab78f414281cb6816bef1ba1112cb5ff2" + sha256 cellar: :any, monterey: "d047a288db8efb7335928601b3f33604a6784c6f0f134400bba0584e1d222e4d" + sha256 cellar: :any, big_sur: "b5552777b6e4a64ea00444da777d40d5c62078a77a1828e8610161143f36d5f4" + sha256 x86_64_linux: "b58276340d35a0ab8ed97152a6ed76d33547df5cac1bf69b8eaca673dc5fc6d6" end depends_on "cmake" => :build From 38f154a90033708ac6ed8b7d57bed1d602e676d1 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 3 Sep 2023 03:37:24 +0000 Subject: [PATCH 27/44] rust: update 1.72.0_1 bottle. --- Formula/r/rust.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/r/rust.rb b/Formula/r/rust.rb index 8e380d7a2b31e..a63895006560c 100644 --- a/Formula/r/rust.rb +++ b/Formula/r/rust.rb @@ -29,13 +29,13 @@ class Rust < Formula end bottle do - sha256 arm64_ventura: "28e026c3d24f6dce2c1fb5087cf35cc5ffd88aa9055de215b81ae33d17e1f33b" - sha256 arm64_monterey: "9a1ee1b72f0e6c6a0c1aa4d44de57ad18616710233c18e1e24960b9219d448aa" - sha256 arm64_big_sur: "7a65f06827c04b4d5ec27ff88efd143bc970081225eede6db71d2ce888ddf6ef" - sha256 ventura: "dbc20ef5f433182b31d7b2bf0f2bb29c96abcf2ecf2cccfc00c9774b46c27038" - sha256 monterey: "2a0ec660efed84e2ccfaaed4c30d2fc0577cbb9a41df32b374d8706202793837" - sha256 big_sur: "daaa3f24643f928e4098dae014c9e2055057a05f4c12710b837991808c59b193" - sha256 cellar: :any_skip_relocation, x86_64_linux: "1701167773a55ba430ef5c318cb951f38041387949aed7f37a43b909e78a607c" + sha256 cellar: :any, arm64_ventura: "da3cc5cdc2d6200c8b692ddd38f06b35f73ed4521e33b4fb019f1d887b8c1f45" + sha256 cellar: :any, arm64_monterey: "389b05ad8cb33c862279ccab174118580dc44f0b736729cb2d3779ebfe712fea" + sha256 cellar: :any, arm64_big_sur: "f138aa23c66f8818e5545be2b1294fd940d40370fadbe431160877424f786261" + sha256 cellar: :any, ventura: "dfe9048cdb4e153ef0b16c915adfb47fca3d07c39241601f2c96c7ed5e46d595" + sha256 cellar: :any, monterey: "9857814f1e00f63f0e35c77f63697def916f96e88ff5f766893cc1b6f0fa918e" + sha256 cellar: :any, big_sur: "32c58867be17708f066d735024c755d0165683ebb56f3c5e78fa5a0fbfa34702" + sha256 cellar: :any_skip_relocation, x86_64_linux: "aa7272644a7bd61217aa864015a39dda2056562015a18f7fcc1199efd39991e7" end head do From 6b886a912983e63563830830c6b0829d11bb3257 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 3 Sep 2023 03:37:24 +0000 Subject: [PATCH 28/44] cargo-outdated: update 0.13.1_2 bottle. --- Formula/c/cargo-outdated.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/cargo-outdated.rb b/Formula/c/cargo-outdated.rb index 3e501fd4ab564..6b8d83b3abc80 100644 --- a/Formula/c/cargo-outdated.rb +++ b/Formula/c/cargo-outdated.rb @@ -10,13 +10,13 @@ class CargoOutdated < Formula head "https://github.com/kbknapp/cargo-outdated.git", branch: "master" bottle do - sha256 cellar: :any, arm64_ventura: "a091b1d33b8993cccaadd3226b18e47123387abf7926d0077c457942e70b7dfe" - sha256 cellar: :any, arm64_monterey: "20e674b341efba24dd8c4d8e5b35e138d348f5f62d0a0883ef348f44f540ef54" - sha256 cellar: :any, arm64_big_sur: "2b811bb18b558bbe8290c62f9b3c8de03305a8ef80f4361f7f98aa8ba6f27546" - sha256 cellar: :any, ventura: "488b9c21900f86bce7ec670eb513bd1a567e3d5fec37cfa2532a8bf6912f2c5e" - sha256 cellar: :any, monterey: "6682da0e97842b793ec175289492b8e53c9943d0fc5cc34a8de99f29d2db3e47" - sha256 cellar: :any, big_sur: "3c990f4910559e35b00487de1ed368f14f047c6ce9d18597fe2bedcd224da740" - sha256 cellar: :any_skip_relocation, x86_64_linux: "f869e828ca53e03d6b976af8bd71cba0c5b558713b80b8bf5703f2b0049048d2" + sha256 cellar: :any, arm64_ventura: "aa2214131cf25fd2d538428aa6619335604545a082b0437c2860f8e9b87e59cf" + sha256 cellar: :any, arm64_monterey: "d5dd9bf61bcd2564a2902d52325780c01de19ee03e458d403aca3f223e9ad857" + sha256 cellar: :any, arm64_big_sur: "3b00d458873a9e22f1992ba05e5e670fd4517b4463eafe42ff6c412ac67c2b14" + sha256 cellar: :any, ventura: "0f3c8226b69b412c10d7176527c9dd40ff4d0781fef709283c3171db3a1563b9" + sha256 cellar: :any, monterey: "9a72734928b3551faeae251b6955b4dc060dac4e3bed37af7554db570aab5b36" + sha256 cellar: :any, big_sur: "b53fbcad34125c6f15de105c15c76eef98c1751a6ddf3d66ac983ff921ec81f1" + sha256 cellar: :any_skip_relocation, x86_64_linux: "d2a7c074738a25b95854fd998ac0231b76862c38d889b975eef94b42347e0c66" end depends_on "pkg-config" => :build From 62e79cc33e11a4ff8f070a3afda035fb0e0a22f9 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 3 Sep 2023 03:37:24 +0000 Subject: [PATCH 29/44] git-series: update 0.9.1_10 bottle. --- Formula/g/git-series.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/g/git-series.rb b/Formula/g/git-series.rb index 816adc70c0faa..18f4f119b5f6e 100644 --- a/Formula/g/git-series.rb +++ b/Formula/g/git-series.rb @@ -7,13 +7,13 @@ class GitSeries < Formula revision 10 bottle do - sha256 cellar: :any, arm64_ventura: "1568eef8c171318e5252a2b70cf6c73593cdde9771aad628a4e488f959c549e4" - sha256 cellar: :any, arm64_monterey: "bc86ff7a61825bfdce2a6526b1c4f093b925015b237431c55a01c81b5689fff8" - sha256 cellar: :any, arm64_big_sur: "10dc8abee745d6a0c5050d664c4f215e843eead39c63cd7f8b0b0ea50891a42f" - sha256 cellar: :any, ventura: "d9aa7c268d33b8b1dd161bed8b5d3d2634bfc29198f84832642cf6c520342d51" - sha256 cellar: :any, monterey: "ea19bae915f274db6c6cda126037cd5360a562f14e479787c7b29bf0e878fe20" - sha256 cellar: :any, big_sur: "67f0a92d24fdf4611d3dcaa2a63d47f678f9ff8b4b99a13c47544c713c9654b1" - sha256 cellar: :any_skip_relocation, x86_64_linux: "4b14ff0d2da9a97e00e16d8bc216eea5e81675fa3ce956c4461167ac761d6193" + sha256 cellar: :any, arm64_ventura: "09bac8a166e42326111fd8473ae3c7a9ff6291989d8a275856773ca85482ec7a" + sha256 cellar: :any, arm64_monterey: "b864619ca53b4b446f46d18f871fc10559aa566e54818ffd982c4b4aa26f9cc8" + sha256 cellar: :any, arm64_big_sur: "ac2992338ed769e8228cb1a78aa76b0d00e9ba48d81f0d3ae8c20ce86b4a0ea9" + sha256 cellar: :any, ventura: "e2eb3577da8e480f59a8288f3ffb1135360772651b538413bdbb20f7ce7831ae" + sha256 cellar: :any, monterey: "8fc34ddc950682131191a0b1c7e5dabfb6a66b4d50e115cf1d73313999e52e90" + sha256 cellar: :any, big_sur: "3874b2b34b9e86b75a71862e4d029117ecb46ce56fa359bfd7d033cbcd6c10d4" + sha256 cellar: :any_skip_relocation, x86_64_linux: "f574fa247ed592c41e75a5ebb4b0946442de12a6c23be915ac0915f89e889797" end depends_on "pkg-config" => :build From d2a2b9cc458d592993dbe1b6c9c69c152f64634c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 3 Sep 2023 03:37:25 +0000 Subject: [PATCH 30/44] convco: update 0.4.2_1 bottle. --- Formula/c/convco.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/convco.rb b/Formula/c/convco.rb index 0046b27e54665..111ae04211353 100644 --- a/Formula/c/convco.rb +++ b/Formula/c/convco.rb @@ -10,13 +10,13 @@ class Convco < Formula head "https://github.com/convco/convco.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_ventura: "ea517cbafb83b9a4ce1420773d0d89b71eea5ac42ad4f05690dc9ee475554d1a" - sha256 cellar: :any_skip_relocation, arm64_monterey: "5322db8557f1ca86ea4a94593ac5fe30efdada6600a6eae4808b697cdf7f1af2" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "426a1db5b23301a0b322ea49dc9e7f9f8ddeab1c6bcd860953ea3bc85b94ebd6" - sha256 cellar: :any_skip_relocation, ventura: "407fb94a65ca83c8be823b86b4b49e0d0ffee37003defea44b654750516ab3e5" - sha256 cellar: :any_skip_relocation, monterey: "2740d00336264d7adb9c143ce7c058add67e3e36680645d809a85d117d899296" - sha256 cellar: :any_skip_relocation, big_sur: "61abb3e9faea2d5b130f19d412d51404ad9d9c84705d94b0ca57589b79f1de24" - sha256 cellar: :any_skip_relocation, x86_64_linux: "b045246fa28644eafc66816dca6b7c738a142f357c4aa0fe7a711c52566e7959" + sha256 cellar: :any, arm64_ventura: "5ec15b1b11435483d4d7a81a2e98ce1950c9553d86923c02a4964b8de294ce27" + sha256 cellar: :any, arm64_monterey: "537fcd66c7b4037c20a7a3ef2733f491b45fb7fa06811c4bca0c7abf4d7ce7ab" + sha256 cellar: :any, arm64_big_sur: "6cdd65b054adf85300d597a22e6012a60cbcdf3c8665e20b866d052515b4894e" + sha256 cellar: :any, ventura: "5ae7a3541673b37d05c5787d199ada0a77b40328f1d454d3e472429b23159595" + sha256 cellar: :any, monterey: "f8336b6db3727aebbdf842e065afa37de43432440823be5c7c3b57e3748e2585" + sha256 cellar: :any, big_sur: "048861dbb45f7afb2742d11b6cbc5fc0675e1ff44c11fcf7000c07a6e595d2a0" + sha256 cellar: :any_skip_relocation, x86_64_linux: "b7e2b5ccfa0ec16df1acd12a522d4ad935a13ab19cdd530f35a769e77d22a019" end depends_on "pkg-config" => :build From 62f1561e7648240f973d97dc25be731bd62d0366 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 3 Sep 2023 03:37:25 +0000 Subject: [PATCH 31/44] cargo-generate: update 0.18.4_1 bottle. --- Formula/c/cargo-generate.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/cargo-generate.rb b/Formula/c/cargo-generate.rb index 866ec0e8eebb6..c6a07f3bdb69b 100644 --- a/Formula/c/cargo-generate.rb +++ b/Formula/c/cargo-generate.rb @@ -10,13 +10,13 @@ class CargoGenerate < Formula head "https://github.com/cargo-generate/cargo-generate.git", branch: "main" bottle do - sha256 cellar: :any, arm64_ventura: "791a92ebdb3cf161da2b1413b6208ddb9fb59bef74be16ec83764ebcf0c386e5" - sha256 cellar: :any, arm64_monterey: "f74825395f0857f6b3fea510d7b9c7842689250f44863cad71948209728763fd" - sha256 cellar: :any, arm64_big_sur: "7757aef9ac22d7281caa3292df1f51d4cee35907ec8005eb6b9f4edd8d1cd84f" - sha256 cellar: :any, ventura: "4a08f08e3bf1e508da6dbfe71eae3d159277b2e80c68a76c228df076ab394620" - sha256 cellar: :any, monterey: "f4a0b758f62e76b606944bb82821a22edd120ea140b78e54afad31e8f2ced419" - sha256 cellar: :any, big_sur: "fae60e4ec6cbd26eb15b0acc99e9af9080b3836a0d0388126b211be5072b7813" - sha256 cellar: :any_skip_relocation, x86_64_linux: "8b89a4aba4a58ca7e913561633f56b805ce55e43efe220d5e9eff61926f2a151" + sha256 cellar: :any, arm64_ventura: "f8604cdaa3abbad85cebf35c31ea9094cd485846db6a1e7c1501c347a0c887a7" + sha256 cellar: :any, arm64_monterey: "5531f9d28f0987b8df1618c14756c3058249fdeaf875e9f062a5d5c2ed93e8c1" + sha256 cellar: :any, arm64_big_sur: "bea38c9c69707163bdcfd676dc4fc6e0c0270b332ccaa108636e84053a8f3666" + sha256 cellar: :any, ventura: "74e5a5029a89b5b8473eac07d20af0419b7480b00d818137f3cc81cee26ebf1a" + sha256 cellar: :any, monterey: "e0281cd735b23577defc2f3a4c152aac138de326682e6f7c72cfea90395af7f4" + sha256 cellar: :any, big_sur: "a4a4c91e2797eccb3d4ea68090e15d10e97849275a62cd158293712780711bce" + sha256 cellar: :any_skip_relocation, x86_64_linux: "d19aecb6fd248226f867516b30c395efce81544550d7a343ba3dbd94213f51f2" end depends_on "pkg-config" => :build From 468009689bf7744b8d15db0390e4531aa4939742 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 3 Sep 2023 03:37:26 +0000 Subject: [PATCH 32/44] gfold: update 4.4.0_1 bottle. --- Formula/g/gfold.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/g/gfold.rb b/Formula/g/gfold.rb index b86ef1ac5a56c..32283ceff41f7 100644 --- a/Formula/g/gfold.rb +++ b/Formula/g/gfold.rb @@ -10,13 +10,13 @@ class Gfold < Formula head "https://github.com/nickgerace/gfold.git", branch: "main" bottle do - sha256 cellar: :any, arm64_ventura: "387c3b56addb62d66d5b4a90fd4f9c5a810b0410ff4968db25ce6dc918d16dac" - sha256 cellar: :any, arm64_monterey: "b10b2cc728ebaba127538a8c6c32cf6735cd1c464305c8bfb68bc12554188683" - sha256 cellar: :any, arm64_big_sur: "f458032d5fbfc31ade19cc9a5c633268ba5bdbb1376d11ccd816d8b99685da96" - sha256 cellar: :any, ventura: "808d959ef6219ac17f0005f8264fb1c0ec49401d63a74cefe200772937549fde" - sha256 cellar: :any, monterey: "f0dfc994e3c2148775dcf20e02b93a0d23cb9e636e726fb56241d536f388e8e6" - sha256 cellar: :any, big_sur: "68d48c0c4cd08ecd3c0fc79614664e682234d5dea6a7920e1fe8f116b0d9c823" - sha256 cellar: :any_skip_relocation, x86_64_linux: "f12c02b19246e2a783c112ec1f95da175df5c226f31c874a3a3bdf4321fac984" + sha256 cellar: :any, arm64_ventura: "2c3202011e9ed676192d573292428cc2f96b6b93d8584b32f5c9902afc91835c" + sha256 cellar: :any, arm64_monterey: "6bf31918b5130dd9b20c50e1aa0d1ce30eb4e7360d24246568edf1d1ce327d0f" + sha256 cellar: :any, arm64_big_sur: "b8575070e071d18fb85d33996f652dd41332efe4de74c39bff9eb31d613cd3a6" + sha256 cellar: :any, ventura: "e331f58eb2250adeefc2a2c725963e27c7fb4cd18089141c02f5863bcb27d767" + sha256 cellar: :any, monterey: "7c85c66db643ee79188c3ba810f0995750f366bd6fb2252a2df2297dab666bc4" + sha256 cellar: :any, big_sur: "a187356fa10c4af5116a9ceebae7f1bc09bef032b7b5c1c2eaebfab3bccfe8be" + sha256 cellar: :any_skip_relocation, x86_64_linux: "f9607d24633b3b73369142d66ca0dba4c10c41f41e2f30cf5153e5e329c1e3ba" end depends_on "pkg-config" => :build From 06f5e5feeefae519d61397aed7453d68d232b59b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 3 Sep 2023 03:37:26 +0000 Subject: [PATCH 33/44] libgit2: update 1.7.1 bottle. --- Formula/lib/libgit2.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/lib/libgit2.rb b/Formula/lib/libgit2.rb index e748716320206..4db453115868b 100644 --- a/Formula/lib/libgit2.rb +++ b/Formula/lib/libgit2.rb @@ -12,13 +12,13 @@ class Libgit2 < Formula end bottle do - sha256 cellar: :any, arm64_ventura: "2397abb72e01e08acec420aa55b787459fbf678ffdd13d4d9f4728eda818f800" - sha256 cellar: :any, arm64_monterey: "ac8d4365e5934eefa014be623fa5a93f52b5106221f1a71f8ed31ce36ad18cd6" - sha256 cellar: :any, arm64_big_sur: "0e835df6e63b9368ecf71f757df0bc71f87e6488b833757136f4bbe98a74ca5f" - sha256 cellar: :any, ventura: "d0942b923c027438c776298fe388e595d8bbf87daf3db1aa82e2927ffef2785d" - sha256 cellar: :any, monterey: "d9a5acf3df857605f5dd7814760062a0bca3f5877eb67786c5f6d3e8a8081c26" - sha256 cellar: :any, big_sur: "5e897e058041e1c9b947883c750911f90727f851545d8dd92c2e20eac3d34cf2" - sha256 cellar: :any_skip_relocation, x86_64_linux: "7f6702df8184a73fed8ea3568ece9d96bc3bc1a8faef13c457bbf1be5f014210" + sha256 cellar: :any, arm64_ventura: "d1de8934d2ee512544fa5d941329c516d64b3c3aad437fef7825a18401c70be9" + sha256 cellar: :any, arm64_monterey: "e45bbf04a950adbd0dbb1bde55572ec384cd0c0635653326d88009c04ec46107" + sha256 cellar: :any, arm64_big_sur: "bfb4012117dc4d21de49cd707ca108b77f873fdcd17452abb344dfe82de1ffc9" + sha256 cellar: :any, ventura: "fdf652b3f275218544cd2da03d0afe894eb8484f276a80432cd2bcb1c294dc23" + sha256 cellar: :any, monterey: "a78523160ada0495659001ed56782abaac2659933e48fe8302e1d3ddfceec6ce" + sha256 cellar: :any, big_sur: "6026fc1aeb900f24d33bf1fbda44a8a3ce2d84dc14511a8e8af8a3ee312a67a7" + sha256 cellar: :any_skip_relocation, x86_64_linux: "19126e03d88fc4d91b97c11bc090a9a87180e3dbf6d2ad0d721c5cc4410330d7" end depends_on "cmake" => :build From 9c4776ad92b637ee34f9b2a437a537085697b894 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 3 Sep 2023 03:37:27 +0000 Subject: [PATCH 34/44] cargo-release: update 0.24.11_1 bottle. --- Formula/c/cargo-release.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/cargo-release.rb b/Formula/c/cargo-release.rb index 61460817610b5..2c7498b62f671 100644 --- a/Formula/c/cargo-release.rb +++ b/Formula/c/cargo-release.rb @@ -10,13 +10,13 @@ class CargoRelease < Formula head "https://github.com/crate-ci/cargo-release.git", branch: "master" bottle do - sha256 cellar: :any, arm64_ventura: "54a485d4a1ae0cfbe02ca03b575bb68ddd73a6a7f7e5b639f2eab137c13ece6c" - sha256 cellar: :any, arm64_monterey: "2284b1c54a8e06dc13949d878249d4523f05f10979b96cb2bb6a839cb4ce4e09" - sha256 cellar: :any, arm64_big_sur: "7b0308f1484bfd4099fa5e56b43945c7d3fef87acee2674f093207c2c1e12baa" - sha256 cellar: :any, ventura: "e61342566c8db809bd7d04e77fc7ee5ad5e3c4470bd2ac8c6a47aec022f91da2" - sha256 cellar: :any, monterey: "96ea8160fb90776cbedd4904599a1778abe84677ed4ceebfd24920ece9375d9b" - sha256 cellar: :any, big_sur: "d6a31e6614be4c4daf2803cc381b139ae90c71ed260a6dd4e6a943281f45d975" - sha256 cellar: :any_skip_relocation, x86_64_linux: "0c49772b37f68c2dda8c291b26ae9da61eebc81d582f4dab783e4ac60071341f" + sha256 cellar: :any, arm64_ventura: "f8b1bfec6f16ce16838cf6b8210ca1d8c182dc4cb9c633fd7de6f59105b3f394" + sha256 cellar: :any, arm64_monterey: "16c0a2949f3dff1e205c8b1ee1bbe1070249b696cd3c5384b6530c25738c1c9b" + sha256 cellar: :any, arm64_big_sur: "b9829ecd476c861567a8e346833fd722ffc67f119c638f83932b09b18772cd5b" + sha256 cellar: :any, ventura: "5870c3bdd06cf9bbe48e8e150741d264d83eb960cd32e7bd9c6f6ffb3631e583" + sha256 cellar: :any, monterey: "10e28093ccf6f0fb5ec7f666b2f1fb5de6b1d313f7ceb92fcd936e35ba9d860b" + sha256 cellar: :any, big_sur: "a5c69286603566b5cabd08dae10cd218f836724621e4fc107f4442fcbc3ae19f" + sha256 cellar: :any_skip_relocation, x86_64_linux: "4faf11eaaa11c84ee73c8727e0224ec680fd2e1e219c5ac2b0c02f8d934b4994" end depends_on "pkg-config" => :build From 0aaa3f9e672782517a07acf223b4f16789c76979 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 3 Sep 2023 03:37:27 +0000 Subject: [PATCH 35/44] git-interactive-rebase-tool: update 2.3.0_1 bottle. --- Formula/g/git-interactive-rebase-tool.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/g/git-interactive-rebase-tool.rb b/Formula/g/git-interactive-rebase-tool.rb index 3856c7f4d1736..ad626174d0925 100644 --- a/Formula/g/git-interactive-rebase-tool.rb +++ b/Formula/g/git-interactive-rebase-tool.rb @@ -12,13 +12,13 @@ class GitInteractiveRebaseTool < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_ventura: "1fd3d07fa97db3fa78fa3692d55639319d37c215f87dd2602df938059eb57919" - sha256 cellar: :any_skip_relocation, arm64_monterey: "95392c47907085f0970c680ee9413c427bff5fb5ab2355c50d1f5cb71f50e963" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "cd8e36d75be1cb00efa1837df471e4ac970a60e5667bf3cdcd714c0cdb961b41" - sha256 cellar: :any_skip_relocation, ventura: "f972a3c5408ec3ba45bf072209e5a2c974c0c219be595dd074a5c4363ce2f735" - sha256 cellar: :any_skip_relocation, monterey: "9f9e1b520e626632725b75e254ee43c7778f9eab9c462e400a2e872378134e7d" - sha256 cellar: :any_skip_relocation, big_sur: "060a6d4d3ad11c25721d86e4ae00729b8a8019ea8d8e9b6edadbcf3e993e6cc5" - sha256 cellar: :any_skip_relocation, x86_64_linux: "aa8408b90bbd094f1e96cac2af2c01ddafccc49ad89cbf4b714457a26b70a9bf" + sha256 cellar: :any_skip_relocation, arm64_ventura: "3c2a767bc773ffcbc636fbd55af0aeaf23bd69b07111413161f2a574c5224cbb" + sha256 cellar: :any_skip_relocation, arm64_monterey: "828c794f3ee0e7e402a83ce15a897327d9760cd78156a5cce665f1e545dd2020" + sha256 cellar: :any_skip_relocation, arm64_big_sur: "529cdbf5aa5ddda0b1aeb19d09fc506e5d605167b12930ba24374b9543db8eab" + sha256 cellar: :any_skip_relocation, ventura: "9e609bed5b3c38e26f9b1c15f5ebd6d033f26cba28cf60462efd828ce6e27944" + sha256 cellar: :any_skip_relocation, monterey: "4bae4961c755dd4995ac74a33099d9fd47b0ac24a25d0702959d6f4f953049d1" + sha256 cellar: :any_skip_relocation, big_sur: "3c3252f9714a5b51fb5f7237087dd3e9a0029ab63fd03c0a1d3f6e41829356da" + sha256 cellar: :any_skip_relocation, x86_64_linux: "36d0dd310b6ed752543b98dc359f904606306099b719667099cfd6fe85eb84c4" end depends_on "pkg-config" => :build From a34898b6e32b3f35423863ad5ce89d8d403f137d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 3 Sep 2023 03:37:27 +0000 Subject: [PATCH 36/44] exa: update 0.10.1_2 bottle. --- Formula/e/exa.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/e/exa.rb b/Formula/e/exa.rb index 4052c6329f582..cced80f1a73d0 100644 --- a/Formula/e/exa.rb +++ b/Formula/e/exa.rb @@ -13,13 +13,13 @@ class Exa < Formula end bottle do - sha256 cellar: :any, arm64_ventura: "eae98c987e68e0940cb5f261b8d2fb98fe8f4f7b2d3fcf463c9b38494edeb351" - sha256 cellar: :any, arm64_monterey: "4b57d8ffd16277cd825f13b629a8e6c75e9bebce9bec3432a36c375715b37b3a" - sha256 cellar: :any, arm64_big_sur: "7fd0284ff0a703050e5099619285060b6a0c6d687e291fd36e339a3e9182ae9a" - sha256 cellar: :any, ventura: "f38dc756d78e6cf42fdac94f2763642f112128d1ac5d8717dd72ba0c56b495da" - sha256 cellar: :any, monterey: "5021c8d446048e11b4bedc2836d91ed3d11f5a29e6d88085eb43921be26c1934" - sha256 cellar: :any, big_sur: "ebb304f59ba398ab7376e5dd59e7d48dd9937c01ef8d9cbb44e9a70424fce2b5" - sha256 cellar: :any_skip_relocation, x86_64_linux: "fb7c0012074288ebd3331dd75c57c5e8957b7a8719fdc027597365f0ef379e53" + sha256 cellar: :any, arm64_ventura: "f6ffddb1955d59bd6bec1eef0ca215beaa97f21ed1c79f787ad9bc9d62a917fd" + sha256 cellar: :any, arm64_monterey: "c45e4ab5bca902c1a1c404586048915a88b75485760c4b01569818e344a871ac" + sha256 cellar: :any, arm64_big_sur: "8f42c8fb57379c0f79ad43d226aa4982ee4a64196052db03b9b758530b5bdc27" + sha256 cellar: :any, ventura: "c9df09eff6bd471405a0fcdf387e9f3a24bfae28e9cf1493578ae7232322ab33" + sha256 cellar: :any, monterey: "dd7d5ae25d2db208f28b52d1166a1ebaafc5f2dbcc255fda4b4154c58eae1c88" + sha256 cellar: :any, big_sur: "ef0c0717451182f796a0725b849cc22f2d647c547d2fdbeb68974d9e3336e0f0" + sha256 cellar: :any_skip_relocation, x86_64_linux: "3f246ae588fc60262256922e351c4d6df6bac9bc5bd475accf33103912288518" end depends_on "pandoc" => :build From 6dbcf30f6a493dcca43a249d90877684fcc2a54f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 3 Sep 2023 03:37:28 +0000 Subject: [PATCH 37/44] libgit2@1.6: add 1.6.4 bottle. --- Formula/lib/libgit2@1.6.rb | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Formula/lib/libgit2@1.6.rb b/Formula/lib/libgit2@1.6.rb index 7ba9b1beee933..14dfaf5f45564 100644 --- a/Formula/lib/libgit2@1.6.rb +++ b/Formula/lib/libgit2@1.6.rb @@ -11,6 +11,16 @@ class Libgit2AT16 < Formula regex(/v?(1\.6(?:\.\d+)+)/i) end + bottle do + sha256 cellar: :any, arm64_ventura: "d2b76777e0b8bf572537ff560539d6ad082c737851a148d71635ab899dbe6ead" + sha256 cellar: :any, arm64_monterey: "54dccd4b043d3915d6e484a6c7d1c91f7bee5cb817a88e2904518227f21c9224" + sha256 cellar: :any, arm64_big_sur: "06c83654a4ba91a1c2e1f55e1f57265ca54e8e0cd2c5e69dd1177bde611ea33f" + sha256 cellar: :any, ventura: "c8b88ce5ff326fcde8456badbeca7cb79ad691616fe2cd3bb72bebf858b3bede" + sha256 cellar: :any, monterey: "30ed081df2702afb0195df083872d31047281018ffd9673aefc1c1e69aaa520c" + sha256 cellar: :any, big_sur: "e227aa3abda0ff012daf47518843b49567daa0f23338872ada0253bae5368d30" + sha256 cellar: :any_skip_relocation, x86_64_linux: "faba71e6669662f6e2ce0e49c1c42776735496b844f2aaac61d14626a388152f" + end + keg_only :versioned_formula depends_on "cmake" => :build From 4fc88148ab05acd1db415a0c2ee32d7e32518174 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 3 Sep 2023 03:37:28 +0000 Subject: [PATCH 38/44] cargo-edit: update 0.12.1_1 bottle. --- Formula/c/cargo-edit.rb | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/Formula/c/cargo-edit.rb b/Formula/c/cargo-edit.rb index e45913e1f7865..6aabb8bfdeb6c 100644 --- a/Formula/c/cargo-edit.rb +++ b/Formula/c/cargo-edit.rb @@ -9,13 +9,11 @@ class CargoEdit < Formula revision 1 bottle do - sha256 cellar: :any_skip_relocation, arm64_ventura: "f4f5ac5c34c0555d7c7fa89b210a3423850705960053a272388bcfbe57ede2f1" - sha256 cellar: :any_skip_relocation, arm64_monterey: "9854f0ed61d660953ceaf6cb20a6896468662cee7253ccf0bab78b7bd17d7859" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "f9a74467ac2a0be3c788a287da9a4da7e2718def4dbdde910fe78faf0e7f26a9" - sha256 cellar: :any_skip_relocation, ventura: "d5300d085be7d34dfad2b99438785ccb589c94bf4a3c522b7d05cb39808c4146" - sha256 cellar: :any_skip_relocation, monterey: "8df12fdb7ec5063d5dbeb2ef86ebbd89c934b438cb7cbadd48c12377645e11a6" - sha256 cellar: :any_skip_relocation, big_sur: "b8c9856ef6a06a266d8913adf6d9e30f5b3afad6d1aae69dbb223e0d40a52e23" - sha256 cellar: :any_skip_relocation, x86_64_linux: "21764bba2319eac641f01c4b9244350a90829eee27aa11f65fccf90be722d7b5" + sha256 cellar: :any, arm64_ventura: "8146e650e28d12c8ebea086f92a6d2d2b42234630c778cbc48a28f6b9293f09e" + sha256 cellar: :any, arm64_big_sur: "542b6d72ddfc43065ba2a96834125e5a62041d21cace645fa9fd189033093e2b" + sha256 cellar: :any, monterey: "adeab0eee7bf0a4f5f08a3b31f6b7fdcfdefe0a1e8f3bd9208075ad151deca72" + sha256 cellar: :any, big_sur: "a157d76707cb5d4c6509e2f1214d66b04dcade6ecba8fd85e90ae3f11eb60128" + sha256 cellar: :any_skip_relocation, x86_64_linux: "4880d64208760fa9d9582e24a310f7cfba45fd847d361bc39b6315e879d10150" end depends_on "pkg-config" => :build From 7c2d84478161c4ed00cd8ecf49bed48bd8d0e903 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 3 Sep 2023 03:37:29 +0000 Subject: [PATCH 39/44] poac: update 0.6.0_4 bottle. --- Formula/p/poac.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/p/poac.rb b/Formula/p/poac.rb index f11f2e10d8ea7..d212eb7e8ea12 100644 --- a/Formula/p/poac.rb +++ b/Formula/p/poac.rb @@ -8,13 +8,13 @@ class Poac < Formula head "https://github.com/poac-dev/poac.git", branch: "main" bottle do - sha256 cellar: :any, arm64_ventura: "a2d1bbd692d862ed69a18aea000a2f3c3f9cb242a477c63536c21db759cb1a04" - sha256 cellar: :any, arm64_monterey: "75266575278a200e0cdbb398b71ae0af259e6d707ed82f7d267285e206462b45" - sha256 cellar: :any, arm64_big_sur: "70968a60b071fb721aa96c9ca6574c65084ffd8d1114da4d1bde0be6972b0ba0" - sha256 cellar: :any, ventura: "f006371b2f7fbd03ab4d33035a7dad2f201242e4cd694103866669e5ce6626b3" - sha256 cellar: :any, monterey: "b86f19b504b00fad55955e52a67d69c5a035a3d7773f445480e7a3423c943380" - sha256 cellar: :any, big_sur: "f4ce26e6cd14546d3d7df1ff451d80cd84aa14644ef50c35f76dccccd9c48f28" - sha256 cellar: :any_skip_relocation, x86_64_linux: "6c78e46360c37b849eddaf9ca395c6384c178e70d9a26b568a7d0b7521066771" + sha256 cellar: :any, arm64_ventura: "f7264c6ec7cde08cab75221bda05747b0158e8bd84194dd99bc8002ae0e22a7f" + sha256 cellar: :any, arm64_monterey: "7a4308dae0c519cca092333b242a284c3e0f12f50957f999ccb2f0064996aae9" + sha256 cellar: :any, arm64_big_sur: "f18740594d83e20f9738846fcaf2f9681f6ac33ff559e95aa8c4cb3f7e70047a" + sha256 cellar: :any, ventura: "b1cda02d8561d37821cb1a78c9e69d17e9efa283e046f4f713a8be1baf01bf77" + sha256 cellar: :any, monterey: "036be47724682d90f5d7baf82fdb2e5e6c637128c2995d7584d2c0b5bc7f683c" + sha256 cellar: :any, big_sur: "aad661ddcf4a5754a5c93ca6d2daf2e794a715a09a2f7cfa107d3ddefd79f4d7" + sha256 cellar: :any_skip_relocation, x86_64_linux: "5861b764ec78792acd2aa3853b275b1eec71279d09cd659fa9432e9271d69d2a" end depends_on "cmake" => :build From 54a161b39c9c10e0111e4d85bd107656a959c4b2 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 3 Sep 2023 03:37:29 +0000 Subject: [PATCH 40/44] cargo-c: update 0.9.24_1 bottle. --- Formula/c/cargo-c.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/cargo-c.rb b/Formula/c/cargo-c.rb index 8df740ddbecec..a597ce023e893 100644 --- a/Formula/c/cargo-c.rb +++ b/Formula/c/cargo-c.rb @@ -14,13 +14,13 @@ class CargoC < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_ventura: "2b1b5e38f22b653bda2c09f832ab77cd121176dacb921edc920edabcfd88fdc3" - sha256 cellar: :any_skip_relocation, arm64_monterey: "760ec61ae2e70b6611e2e0b123c777f43eaa073ddb67780db1358993db4fe251" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "6dca5bd81528ebd986254916ccf066d8ba00ae0d9431f2d65a483594509d838d" - sha256 cellar: :any_skip_relocation, ventura: "5a3e1149969faeece9003d3bbc231be9ad76b18b46d62a6d52634e48b5748ba2" - sha256 cellar: :any_skip_relocation, monterey: "243a8cf2ed7f17b96c5e1c5152ab6ce19aae4fc13b3b019a16e0694918e5628a" - sha256 cellar: :any_skip_relocation, big_sur: "8a31180a118ad896265b0d73b29c4f997fc3342e78b21361212adf9dd2bc7c85" - sha256 cellar: :any_skip_relocation, x86_64_linux: "ff80138b83fd476139cc6a14228a81734cb7de0c3e855b8eba3e4c96a9f295e3" + sha256 cellar: :any, arm64_ventura: "9d658efff144d6c77c791909b476b9578974b83ca469bb749f243e390ef74af1" + sha256 cellar: :any, arm64_monterey: "1711e72cac37cac5c7b77863d96304d34aadefa1ff1441f053e5322fb8eff55c" + sha256 cellar: :any, arm64_big_sur: "440b46dc200e275903f4d2a7e6db22d1eab68408cf302d1884c48ede191557d3" + sha256 cellar: :any, ventura: "eebbbf637a7ead9c515eb2eba92b222b9f031f8c287a1fa182044edb74dcbc7e" + sha256 cellar: :any, monterey: "dca789527716e9372f4c08bea55241755945e1d9366cef6a9e222a6c40b4cfe4" + sha256 cellar: :any, big_sur: "3a9e086ea4a0295a81f10a33fd7bd2b0e9be515f353045c01b538469cdfcc5f6" + sha256 cellar: :any_skip_relocation, x86_64_linux: "ce54e7d9c93515875873697fb1759885c62e7846b959522a7fbbf649cce7ca57" end depends_on "rust" => :build From 706cb2966e5d63babc6d1f013cd96729b9981262 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 3 Sep 2023 03:37:30 +0000 Subject: [PATCH 41/44] cargo-udeps: update 0.1.42_1 bottle. --- Formula/c/cargo-udeps.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/cargo-udeps.rb b/Formula/c/cargo-udeps.rb index 348d343c277bb..9839e745156eb 100644 --- a/Formula/c/cargo-udeps.rb +++ b/Formula/c/cargo-udeps.rb @@ -9,13 +9,13 @@ class CargoUdeps < Formula revision 1 bottle do - sha256 cellar: :any_skip_relocation, arm64_ventura: "c23b5b6693551bc577db0e793b2f77d976130cb96e7af5ac0f3a73c272de673f" - sha256 cellar: :any_skip_relocation, arm64_monterey: "d402c17c33987146bf3d6f7e055c3adcf41b3a7ac3cd51ce6aca9d1ee151630c" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "f440155c074c690de69874dfd3d913d94722f4b65899a515ac02b0c5462769a9" - sha256 cellar: :any_skip_relocation, ventura: "84e1cd9b4328277a0843fbc75358f19dc4935d95d053e332d8b2b196443c3277" - sha256 cellar: :any_skip_relocation, monterey: "eb77cf1381aa35838dfb1eb705c05d0443c561d74ae2ba380d28898d855ddc0b" - sha256 cellar: :any_skip_relocation, big_sur: "74fe83b2b2c97fe37ca4896ae695fd1860bf20bde3674cc862e4721abb1234d1" - sha256 cellar: :any_skip_relocation, x86_64_linux: "e95a1347169c1a79324cfb0660e82e0efb4a3d9fbb4c1109d0c31fa1f2a32968" + sha256 cellar: :any, arm64_ventura: "335521a382d7248d69e7bac2847385ef3a0dba0fc1e4da6eb1e45b28786c22c1" + sha256 cellar: :any, arm64_monterey: "be671c1ebb5ad02fb333b5c813a343969a8993f507c2cd3050481277d5258843" + sha256 cellar: :any, arm64_big_sur: "04e54885fdb7a726858ee267bb7ebfbd9a141b6b5f275fd2c8c36c7df3ac3ffb" + sha256 cellar: :any, ventura: "93a73f0049ad92f308ee8a0473580a0756f60cffb4365032d7c0743a8cb11e43" + sha256 cellar: :any, monterey: "ca9c4e79c2f41acb75219cc3e936cc38f32b7f94d3b360e9df7ba235318e63dd" + sha256 cellar: :any, big_sur: "2f471ecb6d65e02479ec193e1398bd4d18f350d0f1d383d045c6419097856621" + sha256 cellar: :any_skip_relocation, x86_64_linux: "2453904dc8a8b9593261d08d5f9e02fca70daefc8af80faf3a9cf2bfb5d7e43e" end depends_on "rust" => :build From d3d6064b1f71827d78b8dd604af40ab961f023da Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 3 Sep 2023 03:37:30 +0000 Subject: [PATCH 42/44] gping: update 1.14.0_1 bottle. --- Formula/g/gping.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/g/gping.rb b/Formula/g/gping.rb index 1ae15a7b1f781..ec89991284d17 100644 --- a/Formula/g/gping.rb +++ b/Formula/g/gping.rb @@ -19,13 +19,13 @@ class Gping < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_ventura: "a2105f80b7281c4bbd6d0d37ffa90bc78923ef39ba0bddf586eb482bdc7408b3" - sha256 cellar: :any_skip_relocation, arm64_monterey: "bd8e1c7198f93d8fd50abadc97ce6dd4e9bd818e471143a60ece22c2d1be9297" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "50be5b606ceeddfc10c869ada112de57882add6c5e0df359766825957ae9c2c0" - sha256 cellar: :any_skip_relocation, ventura: "fa66777a98614a23c4872e3f80020a05ff9442ac477ef5761a813d0d0a851ca9" - sha256 cellar: :any_skip_relocation, monterey: "faf840067b92c85ab6ad65af177fc5224b479a07faf1d52b72252af02a2f385b" - sha256 cellar: :any_skip_relocation, big_sur: "2370e1c29a30f40659a2c4bfdf834de48f27b2f68941490eb8c7e24e6e8a0751" - sha256 cellar: :any_skip_relocation, x86_64_linux: "fd17d33fef88546ca07d7da1c56142549a545199e541f2de8f24ff705a13376e" + sha256 cellar: :any, arm64_ventura: "12a9bd754d2f1597e89d5cc6690af8af14d2d3836b974f90452abe849c5c6c6f" + sha256 cellar: :any, arm64_monterey: "9ffad7b6407af60c32cffcd3099d50e57f74a25e601864c3dc2712eb2dec00ae" + sha256 cellar: :any, arm64_big_sur: "8df9a4ea92dbc359024d08fa8c6a3dcf9d55ce828b4975a8f5d82bb6ce0a65d2" + sha256 cellar: :any, ventura: "853207d921bf41d05992e8fd5c874992865040e9fba970ca7566b26fa0509e61" + sha256 cellar: :any, monterey: "6f6b83f8510cb0f67f3bdf123c22a9b5f73e5fc64be5aebff7a0ce2591e21aa7" + sha256 cellar: :any, big_sur: "df95fab0f12d5d4ceeab96132e1220f3fc70bdcc435403c15e3db047219ea5c8" + sha256 cellar: :any_skip_relocation, x86_64_linux: "4b7fc0ff3c261dc5b8d94ecac8ee501f15e9e8d6323bbd82da43c20ff785c050" end depends_on "pkg-config" => :build From fd6d1bdf803c85b7cc8e616ad5652d6ee830d7e3 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 3 Sep 2023 03:37:31 +0000 Subject: [PATCH 43/44] libgit2-glib: update 1.1.0_2 bottle. --- Formula/lib/libgit2-glib.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/lib/libgit2-glib.rb b/Formula/lib/libgit2-glib.rb index 6d827498fe696..7c260d0736b70 100644 --- a/Formula/lib/libgit2-glib.rb +++ b/Formula/lib/libgit2-glib.rb @@ -18,13 +18,13 @@ class Libgit2Glib < Formula end bottle do - sha256 cellar: :any, arm64_ventura: "dc78ea81c37b8e8977ef2d6469166e37937c06238cee7b5e46c3856b459aed8a" - sha256 cellar: :any, arm64_monterey: "e3ff1e622801cc996caff77b2ca138e69764fceab2f4dfccb7a35f4dd622643f" - sha256 cellar: :any, arm64_big_sur: "3a250cd16c5583e345b2eba049765b4b27c67207a2a0373c741710e7a139105a" - sha256 cellar: :any, ventura: "d416576872b58f6b67fe70d94f2af9a0174da2f44c4cb95ddddc8f628de78fc1" - sha256 cellar: :any, monterey: "731ae37b595af558aa4fe4a0d18cc43916405d73b6eecaa0045c42b414e6e735" - sha256 cellar: :any, big_sur: "227b09aa6272fc3e4aba191c7d3144c09d0888a229291a717ba293251ca193c0" - sha256 x86_64_linux: "ef2aaf12a607c505944c2d752f31b8c1120993a9c499bfc93b0f71353975e55a" + sha256 cellar: :any, arm64_ventura: "3e00a33f2d6fcaa935590ae471c1b6b0887b96a5bf04a142207dc4b861db5bcd" + sha256 cellar: :any, arm64_monterey: "df185c6c3ef129cfd1862cdeccd0cbb712d96cd8c4533ca5216174ffc6213981" + sha256 cellar: :any, arm64_big_sur: "d1fad3cf7352dc4e9da32662c94ddf1c44b5c5fd69531929113aaac5a5555045" + sha256 cellar: :any, ventura: "91b431c40146fa729d6847aea26ee93ab0c2d90230daafc5014fbfdd1fda5435" + sha256 cellar: :any, monterey: "70757d1a95a3eafad006d22bc47814212e53d074523f1717567c1c18f45d8b98" + sha256 cellar: :any, big_sur: "c37882210af3f421dabdb2244c50b8a113ed10cde71313a8c4098fe24029258d" + sha256 x86_64_linux: "47ca5a8b0430ec37b60fb19d54d87bc9c65b778e0e234151b2d4873b7789e0cb" end depends_on "gobject-introspection" => :build From 00f5126c6f42f23c974880ea56bb1bd1dd940b41 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 3 Sep 2023 03:37:31 +0000 Subject: [PATCH 44/44] git-cliff: update 1.3.0 bottle. --- Formula/g/git-cliff.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/g/git-cliff.rb b/Formula/g/git-cliff.rb index 2bc67d20e13dc..20bdc01adaa90 100644 --- a/Formula/g/git-cliff.rb +++ b/Formula/g/git-cliff.rb @@ -6,13 +6,13 @@ class GitCliff < Formula license "GPL-3.0-only" bottle do - sha256 cellar: :any, arm64_ventura: "67e97f4a1b6da20215be6400dcf1b93c107a044c848fc1545d8ee8033f4d7c0a" - sha256 cellar: :any, arm64_monterey: "d91841d5a53dca96decb13f9e1471a1b09760f193cfcd6171841b7a8118c0d3b" - sha256 cellar: :any, arm64_big_sur: "2873a85f1fc86aee18de54885e25254be210a9d53c4de3846c427da2cce1fce8" - sha256 cellar: :any, ventura: "3fae07e67f5360602f67b04e5577a7cf429bf53c84de67599d910417f2f62874" - sha256 cellar: :any, monterey: "ef43f2262656247517e3c3e0ec372205c4f02b5c3664200c2a77c202852a9e74" - sha256 cellar: :any, big_sur: "14e2fcd17a28ffb622329ccb31bb7af84ac0b85da93c37a6dee9c32aad9bcb14" - sha256 cellar: :any_skip_relocation, x86_64_linux: "82d81f3e300727fc927c63bbfd7552569e0ea0e84ff971c575fe0d93c262ecd9" + sha256 cellar: :any, arm64_ventura: "c05efaf75ee7ab7f098593bcb1850e7db67856b37a4bee8095be97582a3eaeee" + sha256 cellar: :any, arm64_monterey: "58d2b4864149a94e45821249ce6942a42398b90f9b06e2ae930110869a56734f" + sha256 cellar: :any, arm64_big_sur: "82dc1e4505d418b87e73dcb5c549e371bc7b93788be56f78b3d81b235a2e5e6d" + sha256 cellar: :any, ventura: "54a241406d437bc2bca7fab7d39ebd00e5c818d10f9a1732db901a972f419966" + sha256 cellar: :any, monterey: "beb081b8d5063d21d94715fb0177e3a55833742b360856a8d868d06bd2f21902" + sha256 cellar: :any, big_sur: "60a41e3cd6a44e2aa273fc46d8b51d77875eb4dc783c5973b00d3b258862aa73" + sha256 cellar: :any_skip_relocation, x86_64_linux: "ce2d66d88c44e6e6479ac337a3151be89936bbc4258c194c53a3304a3ddf3bb7" end depends_on "pkg-config" => :build