From dd2a95edbdbd18572acf010cb8eb3c327102b8af Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 6 May 2025 14:01:19 +0000 Subject: [PATCH 0001/1364] cmake 4.0.2 --- Formula/c/cmake.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Formula/c/cmake.rb b/Formula/c/cmake.rb index 5f4f2eea861e5..f110a054982d1 100644 --- a/Formula/c/cmake.rb +++ b/Formula/c/cmake.rb @@ -1,10 +1,10 @@ class Cmake < Formula desc "Cross-platform make" homepage "https://www.cmake.org/" - url "https://github.com/Kitware/CMake/releases/download/v4.0.1/cmake-4.0.1.tar.gz" - mirror "http://fresh-center.net/linux/misc/cmake-4.0.1.tar.gz" - mirror "http://fresh-center.net/linux/misc/legacy/cmake-4.0.1.tar.gz" - sha256 "d630a7e00e63e520b25259f83d425ef783b4661bdc8f47e21c7f23f3780a21e1" + url "https://github.com/Kitware/CMake/releases/download/v4.0.2/cmake-4.0.2.tar.gz" + mirror "http://fresh-center.net/linux/misc/cmake-4.0.2.tar.gz" + mirror "http://fresh-center.net/linux/misc/legacy/cmake-4.0.2.tar.gz" + sha256 "1c3a82c8ca7cf12e0b17178f9d0c32f7ac773bd5651a98fcfd80fbf4977f8d48" license "BSD-3-Clause" head "https://gitlab.kitware.com/cmake/cmake.git", branch: "master" From fb2a3a23954c37634527b7c79bb0aef54063ee7c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 6 May 2025 14:01:19 +0000 Subject: [PATCH 0002/1364] cmake-docs 4.0.2 --- Formula/c/cmake-docs.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Formula/c/cmake-docs.rb b/Formula/c/cmake-docs.rb index 0ba659195d79e..afbce02378319 100644 --- a/Formula/c/cmake-docs.rb +++ b/Formula/c/cmake-docs.rb @@ -1,10 +1,10 @@ class CmakeDocs < Formula desc "Documentation for CMake" homepage "https://www.cmake.org/" - url "https://github.com/Kitware/CMake/releases/download/v4.0.1/cmake-4.0.1.tar.gz" - mirror "http://fresh-center.net/linux/misc/cmake-4.0.1.tar.gz" - mirror "http://fresh-center.net/linux/misc/legacy/cmake-4.0.1.tar.gz" - sha256 "d630a7e00e63e520b25259f83d425ef783b4661bdc8f47e21c7f23f3780a21e1" + url "https://github.com/Kitware/CMake/releases/download/v4.0.2/cmake-4.0.2.tar.gz" + mirror "http://fresh-center.net/linux/misc/cmake-4.0.2.tar.gz" + mirror "http://fresh-center.net/linux/misc/legacy/cmake-4.0.2.tar.gz" + sha256 "1c3a82c8ca7cf12e0b17178f9d0c32f7ac773bd5651a98fcfd80fbf4977f8d48" license "BSD-3-Clause" head "https://gitlab.kitware.com/cmake/cmake.git", branch: "master" From 4d2891d7368763fea703c6e5454c187930ba2de5 Mon Sep 17 00:00:00 2001 From: Cal Stephens Date: Tue, 6 May 2025 08:18:05 -0700 Subject: [PATCH 0003/1364] swiftformat: Update HEAD to develop branch --- Formula/s/swiftformat.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/s/swiftformat.rb b/Formula/s/swiftformat.rb index 6d701caa583b6..ccbc5c2477194 100644 --- a/Formula/s/swiftformat.rb +++ b/Formula/s/swiftformat.rb @@ -4,7 +4,7 @@ class Swiftformat < Formula url "https://github.com/nicklockwood/SwiftFormat/archive/refs/tags/0.55.6.tar.gz" sha256 "3914c84ccd1e03a7dd3a518f90b1987c4b7c5dcb7f81b86aad23a3fed53a7b0f" license "MIT" - head "https://github.com/nicklockwood/SwiftFormat.git", branch: "master" + head "https://github.com/nicklockwood/SwiftFormat.git", branch: "develop" bottle do sha256 cellar: :any_skip_relocation, arm64_sequoia: "7617fbec05965e628176ee52fd4f329801eaa31d58ef28d719df0e88ec2a75b1" From 6e34f59e2bac75c0a7fce771099f81ed386f1bd3 Mon Sep 17 00:00:00 2001 From: Jacob Ford Date: Wed, 7 May 2025 00:17:15 -0400 Subject: [PATCH 0004/1364] pixd: new formula --- Formula/p/pixd.rb | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 Formula/p/pixd.rb diff --git a/Formula/p/pixd.rb b/Formula/p/pixd.rb new file mode 100644 index 0000000000000..1d38b78db2c74 --- /dev/null +++ b/Formula/p/pixd.rb @@ -0,0 +1,26 @@ +class Pixd < Formula + desc "Visual binary data using a colour palette" + homepage "https://github.com/FireyFly/pixd" + url "https://github.com/FireyFly/pixd/archive/refs/tags/v1.0.0.tar.gz" + sha256 "011440a8d191e40a572910b0ce7a094e9b4ee75cf972abc6d30674348edf4158" + license "MIT" + + def install + bin.mkdir + man1.mkpath + + # BSD install does not understand the GNU "-D" flag. + inreplace "Makefile", "install -D", "install" + + system "make" + system "make", "install", "PREFIX=#{prefix}" + end + + test do + (testpath/"test.txt").write "H" + + assert_match \ + "0000 \e[0m\e[38;2;147;221;0m▀\e[m", + shell_output("#{bin}/pixd test.txt") + end +end From e6caf08139fcd1c05b0bfadb42e1fa4d6eac1690 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 07:49:43 +0000 Subject: [PATCH 0005/1364] aliyun-cli 3.0.273 --- Formula/a/aliyun-cli.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/a/aliyun-cli.rb b/Formula/a/aliyun-cli.rb index 0c5c509c491ba..23f0065e32c23 100644 --- a/Formula/a/aliyun-cli.rb +++ b/Formula/a/aliyun-cli.rb @@ -2,8 +2,8 @@ class AliyunCli < Formula desc "Universal Command-Line Interface for Alibaba Cloud" homepage "https://github.com/aliyun/aliyun-cli" url "https://github.com/aliyun/aliyun-cli.git", - tag: "v3.0.272", - revision: "9b12013d828f86ff32e0a1939acc856f8fd47134" + tag: "v3.0.273", + revision: "85bad7f187c25b022389df407f09bcc1ad043368" license "Apache-2.0" head "https://github.com/aliyun/aliyun-cli.git", branch: "master" From 39a2ec5e0af311da7a2d1e665f2288aa116adb25 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 07:56:29 +0000 Subject: [PATCH 0006/1364] cdk8s 2.200.63 --- Formula/c/cdk8s.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/cdk8s.rb b/Formula/c/cdk8s.rb index 10009fdb0a9fd..31b78281dd46d 100644 --- a/Formula/c/cdk8s.rb +++ b/Formula/c/cdk8s.rb @@ -1,8 +1,8 @@ class Cdk8s < Formula desc "Define k8s native apps and abstractions using object-oriented programming" homepage "https://cdk8s.io/" - url "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.200.62.tgz" - sha256 "192c746a3b57687c6819d85e5f77e0b2541a62d4d68325ff4934c6f7dda3cb17" + url "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.200.63.tgz" + sha256 "c8d7ccb427e0bbb636552ab64a76a763ace8330f5f58a7389a33aacf05ce4d51" license "Apache-2.0" head "https://github.com/cdk8s-team/cdk8s-cli.git", branch: "2.x" From 1af0dd963d7453189df0ceeb060b48a0e6d5ca57 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 08:04:48 +0000 Subject: [PATCH 0007/1364] editorconfig-checker 3.3.0 --- Formula/e/editorconfig-checker.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/e/editorconfig-checker.rb b/Formula/e/editorconfig-checker.rb index 9d87b7afa0507..52463dd7688dc 100644 --- a/Formula/e/editorconfig-checker.rb +++ b/Formula/e/editorconfig-checker.rb @@ -1,8 +1,8 @@ class EditorconfigChecker < Formula desc "Tool to verify that your files are in harmony with your .editorconfig" homepage "https://github.com/editorconfig-checker/editorconfig-checker" - url "https://github.com/editorconfig-checker/editorconfig-checker/archive/refs/tags/v3.2.1.tar.gz" - sha256 "e9824828c30f22be07b85618ef72d2e68753315aaf8353a0aade1bdd0a6d7f71" + url "https://github.com/editorconfig-checker/editorconfig-checker/archive/refs/tags/v3.3.0.tar.gz" + sha256 "d35214fa6d799190945d2e0bf313dc31b52938d94ec04f40bb45015a9f409f16" license "MIT" head "https://github.com/editorconfig-checker/editorconfig-checker.git", branch: "main" From 692986a5ac5e5bc4d1a187b913f89bcf33e55e2b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 08:16:33 +0000 Subject: [PATCH 0008/1364] jackett 0.22.1874 --- Formula/j/jackett.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/j/jackett.rb b/Formula/j/jackett.rb index af3c53fe6216b..941bad0531273 100644 --- a/Formula/j/jackett.rb +++ b/Formula/j/jackett.rb @@ -1,8 +1,8 @@ class Jackett < Formula desc "API Support for your favorite torrent trackers" homepage "https://github.com/Jackett/Jackett" - url "https://github.com/Jackett/Jackett/archive/refs/tags/v0.22.1867.tar.gz" - sha256 "719d576d370fca98c1c774ce07e135f44da0cc5d61c958223657c7862e4ecd1b" + url "https://github.com/Jackett/Jackett/archive/refs/tags/v0.22.1874.tar.gz" + sha256 "8e0874b6dad878541bc175e9265532675da250ea521bce156d6d50a40f980f28" license "GPL-2.0-only" head "https://github.com/Jackett/Jackett.git", branch: "master" From ada3a7a143cae42a9e2f39c24826aaa92410feba Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 08:20:16 +0000 Subject: [PATCH 0009/1364] editorconfig-checker: update 3.3.0 bottle. --- Formula/e/editorconfig-checker.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/e/editorconfig-checker.rb b/Formula/e/editorconfig-checker.rb index 52463dd7688dc..e9ba8b93dcd45 100644 --- a/Formula/e/editorconfig-checker.rb +++ b/Formula/e/editorconfig-checker.rb @@ -7,13 +7,13 @@ class EditorconfigChecker < Formula head "https://github.com/editorconfig-checker/editorconfig-checker.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "ef4fb857d605eee3fa212a00fe4fcfd8d8c8a26cfeadddaacf95370c80fc22cd" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "ef4fb857d605eee3fa212a00fe4fcfd8d8c8a26cfeadddaacf95370c80fc22cd" - sha256 cellar: :any_skip_relocation, arm64_ventura: "ef4fb857d605eee3fa212a00fe4fcfd8d8c8a26cfeadddaacf95370c80fc22cd" - sha256 cellar: :any_skip_relocation, sonoma: "177d95538d868e6c0550c938f01ddf23870928a100440bc5d78ac0c07d358438" - sha256 cellar: :any_skip_relocation, ventura: "177d95538d868e6c0550c938f01ddf23870928a100440bc5d78ac0c07d358438" - sha256 cellar: :any_skip_relocation, arm64_linux: "bda34b9435f7c1901b48a462fb61e17213d2b27a09f3995109c1531074e5eb81" - sha256 cellar: :any_skip_relocation, x86_64_linux: "debf7a2aeeee9904208b3e5b025a062b1f78ff00a5938c166e2b26d95b78cdf5" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "981490c9fdfdc4d52da78ba943d4f44cae48e01e11d6751acbf5f5595de1d961" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "981490c9fdfdc4d52da78ba943d4f44cae48e01e11d6751acbf5f5595de1d961" + sha256 cellar: :any_skip_relocation, arm64_ventura: "981490c9fdfdc4d52da78ba943d4f44cae48e01e11d6751acbf5f5595de1d961" + sha256 cellar: :any_skip_relocation, sonoma: "b9c5c8cd52f2c3c2b35f4e7ee6057126f7f9fbeace983b3fd3171971916f997f" + sha256 cellar: :any_skip_relocation, ventura: "b9c5c8cd52f2c3c2b35f4e7ee6057126f7f9fbeace983b3fd3171971916f997f" + sha256 cellar: :any_skip_relocation, arm64_linux: "32aadeab3a73d9b9258ab15dbfb977838d8dafb52285dbad8d18d053ffc38a2e" + sha256 cellar: :any_skip_relocation, x86_64_linux: "14f67b8176b82a6dd35eb7895fd542fd705e9fe7ce4ba947603ae2ee59fa38d1" end depends_on "go" => :build From 32340aa9acd6b93bc1bd3cf212479fc8e9eaf182 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 08:21:40 +0000 Subject: [PATCH 0010/1364] aliyun-cli: update 3.0.273 bottle. --- Formula/a/aliyun-cli.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/a/aliyun-cli.rb b/Formula/a/aliyun-cli.rb index 23f0065e32c23..dee13fd5ad908 100644 --- a/Formula/a/aliyun-cli.rb +++ b/Formula/a/aliyun-cli.rb @@ -8,12 +8,12 @@ class AliyunCli < Formula head "https://github.com/aliyun/aliyun-cli.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "7c87397f63a497b05367d667986f53fdc1a904315b8f63b40696233e257e501a" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "7c87397f63a497b05367d667986f53fdc1a904315b8f63b40696233e257e501a" - sha256 cellar: :any_skip_relocation, arm64_ventura: "7c87397f63a497b05367d667986f53fdc1a904315b8f63b40696233e257e501a" - sha256 cellar: :any_skip_relocation, sonoma: "6c42e933e7104feb9f125b51cb942ffb1bfe4ebb11755007493acc26c8bf71aa" - sha256 cellar: :any_skip_relocation, ventura: "6c42e933e7104feb9f125b51cb942ffb1bfe4ebb11755007493acc26c8bf71aa" - sha256 cellar: :any_skip_relocation, x86_64_linux: "68f3138275cab8a4042385d44c41c01aa163cfbd390b892bdb4b3a238348e624" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "44d295a261b628d3f38a3d340fc45816b6515b9486f1be300e852a98beaa4094" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "44d295a261b628d3f38a3d340fc45816b6515b9486f1be300e852a98beaa4094" + sha256 cellar: :any_skip_relocation, arm64_ventura: "44d295a261b628d3f38a3d340fc45816b6515b9486f1be300e852a98beaa4094" + sha256 cellar: :any_skip_relocation, sonoma: "93ee79fe821b95c1f370067dd744d2e1e68f029f560873606447bc037999217c" + sha256 cellar: :any_skip_relocation, ventura: "93ee79fe821b95c1f370067dd744d2e1e68f029f560873606447bc037999217c" + sha256 cellar: :any_skip_relocation, x86_64_linux: "ddc239941857162ea6637364e3ade096376c1cb5911eb597330d7f38bcfa8fdb" end depends_on "go" => :build From c27697fec45952ad0dddb7b4728b971b67615389 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 08:21:44 +0000 Subject: [PATCH 0011/1364] cdk8s: update 2.200.63 bottle. --- Formula/c/cdk8s.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/cdk8s.rb b/Formula/c/cdk8s.rb index 31b78281dd46d..57a2922dbe2f9 100644 --- a/Formula/c/cdk8s.rb +++ b/Formula/c/cdk8s.rb @@ -7,13 +7,13 @@ class Cdk8s < Formula head "https://github.com/cdk8s-team/cdk8s-cli.git", branch: "2.x" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "23602fc5eb3650c7c2a3ccd1f83e28680c13873b5dc7d14a5db12a59ebfdd898" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "23602fc5eb3650c7c2a3ccd1f83e28680c13873b5dc7d14a5db12a59ebfdd898" - sha256 cellar: :any_skip_relocation, arm64_ventura: "23602fc5eb3650c7c2a3ccd1f83e28680c13873b5dc7d14a5db12a59ebfdd898" - sha256 cellar: :any_skip_relocation, sonoma: "07c5f677da05ca387cd8671617f3957c2ba2876a64267284912f515a19770123" - sha256 cellar: :any_skip_relocation, ventura: "07c5f677da05ca387cd8671617f3957c2ba2876a64267284912f515a19770123" - sha256 cellar: :any_skip_relocation, arm64_linux: "23602fc5eb3650c7c2a3ccd1f83e28680c13873b5dc7d14a5db12a59ebfdd898" - sha256 cellar: :any_skip_relocation, x86_64_linux: "23602fc5eb3650c7c2a3ccd1f83e28680c13873b5dc7d14a5db12a59ebfdd898" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "219d5ff58250ccec98b8722ed648f364b0fc1840aafe332cc0d0a2134fab18b2" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "219d5ff58250ccec98b8722ed648f364b0fc1840aafe332cc0d0a2134fab18b2" + sha256 cellar: :any_skip_relocation, arm64_ventura: "219d5ff58250ccec98b8722ed648f364b0fc1840aafe332cc0d0a2134fab18b2" + sha256 cellar: :any_skip_relocation, sonoma: "16aa8c4f83580656c1eee66c197bc5d278f69ab5a4b8d292032819d550313367" + sha256 cellar: :any_skip_relocation, ventura: "16aa8c4f83580656c1eee66c197bc5d278f69ab5a4b8d292032819d550313367" + sha256 cellar: :any_skip_relocation, arm64_linux: "219d5ff58250ccec98b8722ed648f364b0fc1840aafe332cc0d0a2134fab18b2" + sha256 cellar: :any_skip_relocation, x86_64_linux: "219d5ff58250ccec98b8722ed648f364b0fc1840aafe332cc0d0a2134fab18b2" end depends_on "node" From a7cbc783ea69819a357fce394e117adf29eadcc7 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 08:26:44 +0000 Subject: [PATCH 0012/1364] manticoresearch 9.5.0 --- Formula/m/manticoresearch.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/m/manticoresearch.rb b/Formula/m/manticoresearch.rb index 562f05acd25ad..fe7ffad8e1947 100644 --- a/Formula/m/manticoresearch.rb +++ b/Formula/m/manticoresearch.rb @@ -1,8 +1,8 @@ class Manticoresearch < Formula desc "Open source text search engine" homepage "https://manticoresearch.com" - url "https://github.com/manticoresoftware/manticoresearch/archive/refs/tags/9.3.8.tar.gz" - sha256 "7ba9e48a4e05a542f99e7b4ce5fe9e4cf1e0849c9e7c2b8a250a4250b93756a6" + url "https://github.com/manticoresoftware/manticoresearch/archive/refs/tags/9.5.0.tar.gz" + sha256 "b7bba0866aec76aba7c433e922dac2b797c8419bd37acac29c251408e810a6d4" license all_of: [ "GPL-3.0-or-later", "GPL-2.0-only", # wsrep From 56e87660a252d6ef4ae006409d6ddd2e06410e8b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 08:27:22 +0000 Subject: [PATCH 0013/1364] mavsdk 3.3.2 --- Formula/m/mavsdk.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/m/mavsdk.rb b/Formula/m/mavsdk.rb index 1c778a4d603df..02400efbe410c 100644 --- a/Formula/m/mavsdk.rb +++ b/Formula/m/mavsdk.rb @@ -2,8 +2,8 @@ class Mavsdk < Formula desc "API and library for MAVLink compatible systems written in C++17" homepage "https://mavsdk.mavlink.io" url "https://github.com/mavlink/MAVSDK.git", - tag: "v3.3.1", - revision: "b4d03cc38724f1707314c215a70cda4226c0eea8" + tag: "v3.3.2", + revision: "7f82f17fdb929ed111427d04527f47598f4380b9" license "BSD-3-Clause" livecheck do From 8d7d724e68e929efdedfaa4a54b724ea401ebe67 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 08:30:46 +0000 Subject: [PATCH 0014/1364] jackett: update 0.22.1874 bottle. --- Formula/j/jackett.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/j/jackett.rb b/Formula/j/jackett.rb index 941bad0531273..d5bac70331603 100644 --- a/Formula/j/jackett.rb +++ b/Formula/j/jackett.rb @@ -7,12 +7,12 @@ class Jackett < Formula head "https://github.com/Jackett/Jackett.git", branch: "master" bottle do - sha256 cellar: :any, arm64_sequoia: "c32771318ab4ea551316fb877752aa4c10898e4793088a8b2d40aa61c57a6879" - sha256 cellar: :any, arm64_sonoma: "c21e16ac2086f1b0448c1612fb5950023c42b0741f9d666567b16523d1e54fec" - sha256 cellar: :any, arm64_ventura: "0b90d5fe21e4d564d2c22fa77ba736e664dfcbd48d4ebd6ee309135470a357b7" - sha256 cellar: :any, ventura: "d05753d382b7318c88721222c2c6cab136512fcdb359a13f16342207f0925d65" - sha256 cellar: :any_skip_relocation, arm64_linux: "594384b3135ceb37934f5c4129c1fa5a108b8575f349f79bd7c1edc5c55b83f5" - sha256 cellar: :any_skip_relocation, x86_64_linux: "f12b4bea04beb60f404fa71c32bb7dfa139f7d4a49bec5be23d411c546fedad2" + sha256 cellar: :any, arm64_sequoia: "b8584ed18dbcb34d8d799511b16554ea757fe6d36dc250f060d43b216a82ade2" + sha256 cellar: :any, arm64_sonoma: "be0efb9cad0e205e34718f4b00bd142d3a2d3ad8692e83fc80a9e7518b85d1e4" + sha256 cellar: :any, arm64_ventura: "df1995e184ff7c1764a9d45cfcdc9ef6fc6346618f19a2595191132ff18b2506" + sha256 cellar: :any, ventura: "98f25407101853d6dae48321f1d01020b4e44eb0fe2fb1f84773c77710123bbc" + sha256 cellar: :any_skip_relocation, arm64_linux: "256a09d72684fac4676f8f30a2fe21915fe3716d0482603118555e7ff9ed88aa" + sha256 cellar: :any_skip_relocation, x86_64_linux: "d441c4dedb5044e61d764b2680ebf68d7d7d8a3e356f3ffd08512753134275b7" end depends_on "dotnet@8" From babbccf342db873819f611b1ca611186e16f8df8 Mon Sep 17 00:00:00 2001 From: l5io <47201130+l5io@users.noreply.github.com> Date: Wed, 7 May 2025 03:32:24 -0500 Subject: [PATCH 0015/1364] mesheryctl 0.8.73 Created by https://github.com/mislav/bump-homebrew-formula-action --- Formula/m/mesheryctl.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/m/mesheryctl.rb b/Formula/m/mesheryctl.rb index ea1fac8ea8bc6..148fb4badeca6 100644 --- a/Formula/m/mesheryctl.rb +++ b/Formula/m/mesheryctl.rb @@ -2,8 +2,8 @@ class Mesheryctl < Formula desc "Command-line utility for Meshery, the cloud native management plane" homepage "https://meshery.io" url "https://github.com/meshery/meshery.git", - tag: "v0.8.72", - revision: "1b9996e62a3b6eb0df41ca8f2d3b613cc87b1cec" + tag: "v0.8.73", + revision: "52d3f9827b7012b859b007e13064b152352a2791" license "Apache-2.0" head "https://github.com/meshery/meshery.git", branch: "master" From 7fae6a6d484a913104c075e885abd69289d87592 Mon Sep 17 00:00:00 2001 From: Bevan Kay Date: Wed, 7 May 2025 18:27:14 +1000 Subject: [PATCH 0016/1364] kubectl-ai 0.0.7 (new formula) kubectl-ai: update test --- Formula/k/kubectl-ai.rb | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 Formula/k/kubectl-ai.rb diff --git a/Formula/k/kubectl-ai.rb b/Formula/k/kubectl-ai.rb new file mode 100644 index 0000000000000..8994796f7471d --- /dev/null +++ b/Formula/k/kubectl-ai.rb @@ -0,0 +1,31 @@ +class KubectlAi < Formula + desc "AI powered Kubernetes Assistant" + homepage "https://github.com/GoogleCloudPlatform/kubectl-ai" + url "https://github.com/GoogleCloudPlatform/kubectl-ai/archive/refs/tags/v0.0.7.tar.gz" + sha256 "594bf9333e39b4c9e7292bbb4d27c7eee932efb5d11da59b684ec9953a5e29bf" + license "Apache-2.0" + + depends_on "go" => :build + + def install + system "go", "build", *std_go_args(ldflags: "-s -w") + end + + test do + assert_match "kubectl-ai [flags]", shell_output("#{bin}/kubectl-ai --help") + + ENV["GEMINI_API_KEY"] = "test" + + PTY.spawn(bin/"kubectl-ai") do |r, w, pid| + sleep 1 + w.puts "test" + sleep 1 + output = r.read_nonblock(1024) + assert_match "Error 400, Message: API key not valid", output + rescue Errno::EIO + # End of input, ignore + ensure + Process.kill("TERM", pid) + end + end +end From 1c52f6462718ffdca2638c455765d597da6cbdeb Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 08:41:35 +0000 Subject: [PATCH 0017/1364] redress 1.2.26 --- Formula/r/redress.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/r/redress.rb b/Formula/r/redress.rb index 538d2f8dab7b3..7445a3f204cb0 100644 --- a/Formula/r/redress.rb +++ b/Formula/r/redress.rb @@ -1,8 +1,8 @@ class Redress < Formula desc "Tool for analyzing stripped Go binaries compiled with the Go compiler" homepage "https://github.com/goretk/redress" - url "https://github.com/goretk/redress/archive/refs/tags/v1.2.25.tar.gz" - sha256 "e3424971a2dead012e3fcac9e1fdb3fe8839c0e2682d1aca16796829e9072b30" + url "https://github.com/goretk/redress/archive/refs/tags/v1.2.26.tar.gz" + sha256 "70800329d3b3f6efff6b1e514c79dc8a73a2616f7f89bc93b89095469e88d0aa" license "AGPL-3.0-only" head "https://github.com/goretk/redress.git", branch: "develop" From dcbd75d69dbf9925dbeb83b36682cc6b9085580b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 08:47:24 +0000 Subject: [PATCH 0018/1364] sqlmap 1.9.5 --- Formula/s/sqlmap.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/s/sqlmap.rb b/Formula/s/sqlmap.rb index 5628ebcd781cc..06b603a1f5551 100644 --- a/Formula/s/sqlmap.rb +++ b/Formula/s/sqlmap.rb @@ -3,8 +3,8 @@ class Sqlmap < Formula desc "Penetration testing for SQL injection and database servers" homepage "https://sqlmap.org" - url "https://github.com/sqlmapproject/sqlmap/archive/refs/tags/1.9.4.tar.gz" - sha256 "aa7d89591945efe25ea3a41292630606ba9c8196294f920abe752f430a67437a" + url "https://github.com/sqlmapproject/sqlmap/archive/refs/tags/1.9.5.tar.gz" + sha256 "4ce5f6e908fd16ce20aa36b7c3eda66e417ba0b1545e3dda9cb4b836c651a865" license "GPL-2.0-or-later" head "https://github.com/sqlmapproject/sqlmap.git", branch: "master" From f09d088e804c5e11d8397a698b4521565ce017a7 Mon Sep 17 00:00:00 2001 From: svc-devtoolsbot <79531021+svc-devtoolsbot@users.noreply.github.com> Date: Wed, 7 May 2025 04:47:44 -0400 Subject: [PATCH 0019/1364] mongosh 2.5.1 --- Formula/m/mongosh.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/m/mongosh.rb b/Formula/m/mongosh.rb index 1d4344e7990d2..7a17782be47bb 100644 --- a/Formula/m/mongosh.rb +++ b/Formula/m/mongosh.rb @@ -1,8 +1,8 @@ class Mongosh < Formula desc "MongoDB Shell to connect, configure, query, and work with your MongoDB database" homepage "https://github.com/mongodb-js/mongosh" - url "https://registry.npmjs.org/@mongosh/cli-repl/-/cli-repl-2.5.0.tgz" - sha256 "98657fd4509a49110f2e3be1e8f05a6af47d285e31f339dcfbd1fc84278df5cb" + url "https://registry.npmjs.org/@mongosh/cli-repl/-/cli-repl-2.5.1.tgz" + sha256 "1e351091e1bddae2481ea9139e426e3386e900c2ad8010a9e9840325c2888635" license "Apache-2.0" bottle do From a566c47996fb08d909e4831df590fdf5e3bc426f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 08:56:08 +0000 Subject: [PATCH 0020/1364] mavsdk: update 3.3.2 bottle. --- Formula/m/mavsdk.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/m/mavsdk.rb b/Formula/m/mavsdk.rb index 02400efbe410c..4aa8633e6b2a2 100644 --- a/Formula/m/mavsdk.rb +++ b/Formula/m/mavsdk.rb @@ -12,13 +12,13 @@ class Mavsdk < Formula end bottle do - sha256 arm64_sequoia: "74920dc18002f7ba61c0eee1ab2a5eed0919b266445c2a3d5439d9b872029305" - sha256 arm64_sonoma: "e1f4c9b80fe65d77417c467c5d40bb23b89ad2567ecc74a2bddeb9f5c7c4474e" - sha256 arm64_ventura: "3d57c09d077b9b93dfc6ce8dbbd4496365a5acd877d9849dc33400845ab87ae7" - sha256 cellar: :any, sonoma: "7ad08bebf9607e873ae1e9ff716fc14fec11ef3fb580624ce9b7f229ac50632b" - sha256 cellar: :any, ventura: "93154fe5b8999ce5ff3b485d38de421cd2c34a102d164ca49b0ee567901bbb17" - sha256 cellar: :any_skip_relocation, arm64_linux: "0081aad01e59c58aec4eaaf061dd75c1b445b77f22b63ae1f605362a36628401" - sha256 cellar: :any_skip_relocation, x86_64_linux: "b9f87312ae2623f655288035474c76c1ee7ccde89cb42be2a6ca735ef68cb4f6" + sha256 arm64_sequoia: "cfc708e3fe96ea7fd31ea6cca545d0022aa514e852601da6a4929b0863b010da" + sha256 arm64_sonoma: "b84c74a67587e44330e6e8a034a52e8f2a034b2032675bfdf66dc211aa8ece07" + sha256 arm64_ventura: "4c3636f36285b3f2225a06a8f1cec66792f4f94f2a1c9bce6c2bbc7284b4185e" + sha256 cellar: :any, sonoma: "3e276ce268941e0147befdea9bb7da368de42f6b51dcc890eef1e118b4f6058d" + sha256 cellar: :any, ventura: "9848cc588db8c6d6b3444f094927375cc9c785479e15e0659eb3c97ff15f9331" + sha256 cellar: :any_skip_relocation, arm64_linux: "c9a424c4ff945c9164b9a453876da1d0882abd500960170a2e10bdb62157d35d" + sha256 cellar: :any_skip_relocation, x86_64_linux: "ec19d57c49b101d232e52b374d0422f03a4db507ba3fd46708a62c750e480b03" end depends_on "cmake" => :build From 63d833a50f82cd280249772adf6bac3a94cb0634 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 08:56:36 +0000 Subject: [PATCH 0021/1364] redress: update 1.2.26 bottle. --- Formula/r/redress.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/r/redress.rb b/Formula/r/redress.rb index 7445a3f204cb0..2d2a1a5914ff3 100644 --- a/Formula/r/redress.rb +++ b/Formula/r/redress.rb @@ -12,12 +12,12 @@ class Redress < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "af625dcfbe3a20923d754682cd3373d6d736834e9b732705d08664ec02f85e11" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "af625dcfbe3a20923d754682cd3373d6d736834e9b732705d08664ec02f85e11" - sha256 cellar: :any_skip_relocation, arm64_ventura: "af625dcfbe3a20923d754682cd3373d6d736834e9b732705d08664ec02f85e11" - sha256 cellar: :any_skip_relocation, sonoma: "38709076331e8920c09abd5b4bfa7e3bb0fc736150bd12db35c4593b92fedfdf" - sha256 cellar: :any_skip_relocation, ventura: "38709076331e8920c09abd5b4bfa7e3bb0fc736150bd12db35c4593b92fedfdf" - sha256 cellar: :any_skip_relocation, x86_64_linux: "02e6cff1453b6cd93272d26552e771647b3eb821a2cb76d1628a0c3f5896a1a6" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "1e181df7d78f6d42ff8c7b996a72fe1f56bda11935cdd1815a469e5b597edcd4" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "1e181df7d78f6d42ff8c7b996a72fe1f56bda11935cdd1815a469e5b597edcd4" + sha256 cellar: :any_skip_relocation, arm64_ventura: "1e181df7d78f6d42ff8c7b996a72fe1f56bda11935cdd1815a469e5b597edcd4" + sha256 cellar: :any_skip_relocation, sonoma: "577a62ffc63bd2b590c151dee6015bf48993750b05fd76f992cda3691c46e0cd" + sha256 cellar: :any_skip_relocation, ventura: "577a62ffc63bd2b590c151dee6015bf48993750b05fd76f992cda3691c46e0cd" + sha256 cellar: :any_skip_relocation, x86_64_linux: "319e76382a930d1411825e152d532431d82530eb6d1c19fcbd7f7e25554b7f2c" end depends_on "go" => :build From ef9d17c18cc5a4479fda116daf07dca9a5d1b2f8 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 08:57:53 +0000 Subject: [PATCH 0022/1364] mesheryctl: update 0.8.73 bottle. --- Formula/m/mesheryctl.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/m/mesheryctl.rb b/Formula/m/mesheryctl.rb index 148fb4badeca6..4e1398510133f 100644 --- a/Formula/m/mesheryctl.rb +++ b/Formula/m/mesheryctl.rb @@ -10,13 +10,13 @@ class Mesheryctl < Formula no_autobump! because: :bumped_by_upstream bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "bd8146c1badf70040a7127bd029ee8cf302c11a38305c494e3a1b2deded3fbee" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "bd8146c1badf70040a7127bd029ee8cf302c11a38305c494e3a1b2deded3fbee" - sha256 cellar: :any_skip_relocation, arm64_ventura: "bd8146c1badf70040a7127bd029ee8cf302c11a38305c494e3a1b2deded3fbee" - sha256 cellar: :any_skip_relocation, sonoma: "ee5b84ac93296f459a3997dc594e2fe8943f9cb696a8d2f43634b4ae22a732c2" - sha256 cellar: :any_skip_relocation, ventura: "ee5b84ac93296f459a3997dc594e2fe8943f9cb696a8d2f43634b4ae22a732c2" - sha256 cellar: :any_skip_relocation, arm64_linux: "78e970f3ea0af59eaa44abed30e811b40ae7f08698699f29710bd921519df6e3" - sha256 cellar: :any_skip_relocation, x86_64_linux: "0411dd70f010826b7c56ec3e5f88f92489c7479767aa1c514a079df6dabd7c55" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "a308da8a34c23f3df305e6e07c48a6df7f193033cf43cf2c0418dfcc68fb8726" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "a308da8a34c23f3df305e6e07c48a6df7f193033cf43cf2c0418dfcc68fb8726" + sha256 cellar: :any_skip_relocation, arm64_ventura: "a308da8a34c23f3df305e6e07c48a6df7f193033cf43cf2c0418dfcc68fb8726" + sha256 cellar: :any_skip_relocation, sonoma: "687ac09bbd1d3107b330f7b6cb30a4607af40efc664ad5cb69117f0b28656827" + sha256 cellar: :any_skip_relocation, ventura: "687ac09bbd1d3107b330f7b6cb30a4607af40efc664ad5cb69117f0b28656827" + sha256 cellar: :any_skip_relocation, arm64_linux: "d8cf931411df3654a376f4aa1a9c37d3e2de0af4d9ddaef2fce39c270e6b18e9" + sha256 cellar: :any_skip_relocation, x86_64_linux: "271d6420004f9d51683e11d11ca2ac02c12aa2d6de57fa6f20f1a0b39e5180e3" end depends_on "go" => :build From f9a113c588c584e280c64cbdb2b3803a970c611a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 09:10:26 +0000 Subject: [PATCH 0023/1364] sqlmap: update 1.9.5 bottle. --- Formula/s/sqlmap.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/s/sqlmap.rb b/Formula/s/sqlmap.rb index 06b603a1f5551..aebb923dbda98 100644 --- a/Formula/s/sqlmap.rb +++ b/Formula/s/sqlmap.rb @@ -9,13 +9,13 @@ class Sqlmap < Formula head "https://github.com/sqlmapproject/sqlmap.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "7d4f97b48a8c0f01e8094a6395005a091f802efee8005bce04757b7edf418197" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "7d4f97b48a8c0f01e8094a6395005a091f802efee8005bce04757b7edf418197" - sha256 cellar: :any_skip_relocation, arm64_ventura: "7d4f97b48a8c0f01e8094a6395005a091f802efee8005bce04757b7edf418197" - sha256 cellar: :any_skip_relocation, sonoma: "53dd22bfcf8c0bf7cfb96e1caf46ebcd5aebf72e76d1c060b44ffe6a1d68e684" - sha256 cellar: :any_skip_relocation, ventura: "53dd22bfcf8c0bf7cfb96e1caf46ebcd5aebf72e76d1c060b44ffe6a1d68e684" - sha256 cellar: :any_skip_relocation, arm64_linux: "f40b6e2dde82a71786d1e903ff2c2a5c60b2bbf8dbc86a2ccc9e443665fdc0f2" - sha256 cellar: :any_skip_relocation, x86_64_linux: "f40b6e2dde82a71786d1e903ff2c2a5c60b2bbf8dbc86a2ccc9e443665fdc0f2" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "9c73164a4b124bc3af513eb3f6ccada62cf0b9d05e916bdf997701740a0f4fd6" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "9c73164a4b124bc3af513eb3f6ccada62cf0b9d05e916bdf997701740a0f4fd6" + sha256 cellar: :any_skip_relocation, arm64_ventura: "9c73164a4b124bc3af513eb3f6ccada62cf0b9d05e916bdf997701740a0f4fd6" + sha256 cellar: :any_skip_relocation, sonoma: "7fbeeda0b7ecb17eaf1af4bdaad6f2f66693ce8eeebe4fe7464962b07fc676d1" + sha256 cellar: :any_skip_relocation, ventura: "7fbeeda0b7ecb17eaf1af4bdaad6f2f66693ce8eeebe4fe7464962b07fc676d1" + sha256 cellar: :any_skip_relocation, arm64_linux: "97d27f7a70dbef5771f432b6968ea8f5a9bd0690fae334d46eaa3b53d05e86c9" + sha256 cellar: :any_skip_relocation, x86_64_linux: "97d27f7a70dbef5771f432b6968ea8f5a9bd0690fae334d46eaa3b53d05e86c9" end depends_on "python@3.13" From d1cc6f1e5bb5eba27116d54ae8ea57d256fa9d17 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 09:10:55 +0000 Subject: [PATCH 0024/1364] manticoresearch: update 9.5.0 bottle. --- Formula/m/manticoresearch.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/m/manticoresearch.rb b/Formula/m/manticoresearch.rb index fe7ffad8e1947..f05b4ce2abc04 100644 --- a/Formula/m/manticoresearch.rb +++ b/Formula/m/manticoresearch.rb @@ -19,13 +19,13 @@ class Manticoresearch < Formula end bottle do - sha256 arm64_sequoia: "68da25e6fcda39df344cc054a1d35a987ccfc2406d98003b9a3836eae3a89d85" - sha256 arm64_sonoma: "4bd8b356cb25f5a706ad0dea2e97444dc6f64fe9e5d81d4037a12895e055afbc" - sha256 arm64_ventura: "896fee61ca17518e3cb6043fc542734082ab0af37e1126f6108e1cac6c16a118" - sha256 sonoma: "4ffb69a612c2c76d90911e317de247db1d655142ae4e1dcea139fadef14a83c5" - sha256 ventura: "5c8155bcae93df72a3751be294dc8f834a57daac4ce61949df9d1ec26f886d02" - sha256 arm64_linux: "98bdc3869fc0f668f3355b0257bfbde384f1a0f55f4016cd41fcedc9d9b1d306" - sha256 x86_64_linux: "971546f1772a271e3b4d7ff30d35fc55d8a1dff1fb15b1e88d9d043a17668b7a" + sha256 arm64_sequoia: "2a8a21da2497272b6931790d6430b9e8d6c5ade26ed8ecd1bf00fe7fe0a6e8dc" + sha256 arm64_sonoma: "92c2faa3a9fcd64f1f1c5a4a3f3fe6ad662807b16916fbb3ec5a25b8c8ef02da" + sha256 arm64_ventura: "da7aca79b68b941e01f64cd39e545d05fee114a4c6b47ac2727cc52b1dcaa1a2" + sha256 sonoma: "b647288508b5d5492d1a073408d7fa18675b5f1dbf099ce9c861143f99b7eda4" + sha256 ventura: "894e073184e5a717d23f4355c5fce2f634bcc6757ad11098f7fdd1e07f7bcdce" + sha256 arm64_linux: "eb9c2ca85a8ad4bab9bc2feea4f4a86251ab4947533c01af922725e09ecd0d60" + sha256 x86_64_linux: "c20f1824bd7ee86485e3737fd399aaafe1165e656214ab529e247885a1b71130" end depends_on "cmake" => :build From e51306e38b9421976a8db289b50ee2cb8b1f8817 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 09:13:39 +0000 Subject: [PATCH 0025/1364] mongosh: update 2.5.1 bottle. --- Formula/m/mongosh.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/m/mongosh.rb b/Formula/m/mongosh.rb index 7a17782be47bb..35d5f44be2606 100644 --- a/Formula/m/mongosh.rb +++ b/Formula/m/mongosh.rb @@ -6,13 +6,13 @@ class Mongosh < Formula license "Apache-2.0" bottle do - sha256 arm64_sequoia: "2ec5e335106903f3df6fae44a84ac1ce9c8aa1f56c9b7451e9df5c8225d61216" - sha256 arm64_sonoma: "0b843da4ebc97f1547b1eca6ce4c3e37cbea7e7d63e1ebd5b52206fe690441c3" - sha256 arm64_ventura: "453f424718db86458d3b7f8e22a95d8b96d8738309a04f822d4a2ef66dbd521a" - sha256 sonoma: "9ebd752fce4c15cb9ce0857c0920596f24b4aa61f4c4b139e98cdcb352171a3a" - sha256 ventura: "1f457eda9511a1cab0ae90c9e168e6f35ee1a1f672df5c8594fb16133b6d575e" - sha256 cellar: :any_skip_relocation, arm64_linux: "7955e0e4e7b7e14ba7c3f899311c4f29e6e6edba452d1c376d25063da358a880" - sha256 cellar: :any_skip_relocation, x86_64_linux: "4f913901422020a94da2011bbc0537088c66216e43a539610003ae5689b8e6d7" + sha256 arm64_sequoia: "ddaadfdddc67ae54f3a2af87b0b213dc2948456ddb6dc450567aa2ffa1bce603" + sha256 arm64_sonoma: "fdb04c1cb5f7f7b00f60d338da7ae61945634256e72deb255add4284c7dccf06" + sha256 arm64_ventura: "47ef66869f1b6ca5fbb218c9b278391dab4d414a0860faa0a952c0390c581a5b" + sha256 sonoma: "d56ca68a87ecd26e55308352958691763d48d8e0c7bd5237995b1b1032202b22" + sha256 ventura: "55689391b9d636b79c83158f63bff0a2cb0e02f41bc5455cfa2d8061e06ee536" + sha256 cellar: :any_skip_relocation, arm64_linux: "3a0dca3cea6b10b9fad3b4211c599dd3f59c42683e5d7396b0a93af2db88029f" + sha256 cellar: :any_skip_relocation, x86_64_linux: "2ca00974438664edb23065058e2e89656cf5ab92b9ccb5093f5ef50e68550c81" end depends_on "node" From 8a4f338a94d70d60cdc92572e81e40d91008b6e6 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 02:45:40 +0000 Subject: [PATCH 0026/1364] google-java-format 1.27.0 * google-java-format 1.27.0 * Update google-java-format.rb Closes #222675. Co-authored-by: Sean Molenaar Signed-off-by: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> --- Formula/g/google-java-format.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Formula/g/google-java-format.rb b/Formula/g/google-java-format.rb index 162112c2d6d01..66d1eac24af46 100644 --- a/Formula/g/google-java-format.rb +++ b/Formula/g/google-java-format.rb @@ -3,8 +3,8 @@ class GoogleJavaFormat < Formula desc "Reformats Java source code to comply with Google Java Style" homepage "https://github.com/google/google-java-format" - url "https://github.com/google/google-java-format/releases/download/v1.26.0/google-java-format-1.26.0-all-deps.jar" - sha256 "02a361357297fa962918c1d08830d50b17d62984d2a8649159b95b9a6d9f82b2" + url "https://github.com/google/google-java-format/releases/download/v1.27.0/google-java-format-1.27.0-all-deps.jar" + sha256 "ed07239f3cb72e25bf2a0eae63e76831f9f11963bd19fc36a6f1d87016ac1763" license "Apache-2.0" bottle do @@ -16,7 +16,7 @@ class GoogleJavaFormat < Formula uses_from_macos "python", since: :catalina resource "google-java-format-diff" do - url "https://raw.githubusercontent.com/google/google-java-format/v1.26.0/scripts/google-java-format-diff.py" + url "https://raw.githubusercontent.com/google/google-java-format/v1.27.0/scripts/google-java-format-diff.py" sha256 "c1f2c6e8af0fc34a04adfcb01b35e522a359df5da1f5db5102ca9e0ca1f670fd" end From 3ee636d81c2816fd05e90fad67bd6a7c35e038df Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 10:17:44 +0000 Subject: [PATCH 0027/1364] google-java-format: update 1.27.0 bottle. --- Formula/g/google-java-format.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/g/google-java-format.rb b/Formula/g/google-java-format.rb index 66d1eac24af46..e1cd92b587e4f 100644 --- a/Formula/g/google-java-format.rb +++ b/Formula/g/google-java-format.rb @@ -8,7 +8,7 @@ class GoogleJavaFormat < Formula license "Apache-2.0" bottle do - sha256 cellar: :any_skip_relocation, all: "32c662208ac8ceb1801783b388d3c5b4ba33bd4d9562a47f970d27f18578ff35" + sha256 cellar: :any_skip_relocation, all: "70d76d7e24a7b311e1aec5c68757f13d14c801c15bc3e158e2978ae3ddd18cc3" end depends_on "openjdk" From cc09dec6bf7d4f6e833f0e32cdcb629d712e2af9 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 6 May 2025 23:34:40 +0000 Subject: [PATCH 0028/1364] opensearch 3.0.0 --- Formula/o/opensearch.rb | 99 +++-------------------------------------- 1 file changed, 6 insertions(+), 93 deletions(-) diff --git a/Formula/o/opensearch.rb b/Formula/o/opensearch.rb index e2e47c11c3e19..810c61ddc2a87 100644 --- a/Formula/o/opensearch.rb +++ b/Formula/o/opensearch.rb @@ -1,8 +1,8 @@ class Opensearch < Formula desc "Open source distributed and RESTful search engine" homepage "https://github.com/opensearch-project/OpenSearch" - url "https://github.com/opensearch-project/OpenSearch/archive/refs/tags/2.19.2.tar.gz" - sha256 "660eaf0958e79198c3f5483361b70a1f7618ae965955d25f2ca48ca2d113ed18" + url "https://github.com/opensearch-project/OpenSearch/archive/refs/tags/3.0.0.tar.gz" + sha256 "5701c0a0e801a27cb1fb6521c17138c43a0933e364fa2cfb5a62cfcdcb4e1270" license "Apache-2.0" bottle do @@ -19,13 +19,6 @@ class Opensearch < Formula # Can be updated after https://github.com/opensearch-project/OpenSearch/pull/18085 is released. depends_on "openjdk@21" - # Remove below patches after https://github.com/opensearch-project/OpenSearch/pull/17942 is released. - patch :DATA - patch do - url "https://github.com/opensearch-project/OpenSearch/commit/d3eb8fe5e85f1103d73410703269a0f967ad3ec2.patch?full_index=1" - sha256 "f9c91e12cdbcb8625bcc704d34d6d10bdfc94aa86395faa6293bdf41d030cfe8" - end - def install platform = OS.kernel_name.downcase platform += "-arm64" if Hardware::CPU.arm? @@ -37,7 +30,7 @@ def install Dir["../distribution/archives/no-jdk-#{platform}-tar/build/distributions/opensearch-*.tar.gz"].first # Install into package directory - libexec.install "bin", "lib", "modules" + libexec.install "bin", "lib", "modules", "agent" # Set up Opensearch for local development: inreplace "config/opensearch.yml" do |s| @@ -103,11 +96,9 @@ def caveats port = free_port (testpath/"data").mkdir (testpath/"logs").mkdir - fork do - exec bin/"opensearch", "-Ehttp.port=#{port}", - "-Epath.data=#{testpath}/data", - "-Epath.logs=#{testpath}/logs" - end + spawn bin/"opensearch", "-Ehttp.port=#{port}", + "-Epath.data=#{testpath}/data", + "-Epath.logs=#{testpath}/logs" sleep 60 output = shell_output("curl -s -XGET localhost:#{port}/") assert_equal "opensearch", JSON.parse(output)["version"]["distribution"] @@ -115,81 +106,3 @@ def caveats system bin/"opensearch-plugin", "list" end end - -__END__ -diff --git a/build.gradle b/build.gradle -index 679f7b9299248fb0f5173db8fccdfb77965e394b..187574da9e62aec063548871f5dc1a7fbf62a082 100644 ---- a/build.gradle -+++ b/build.gradle -@@ -721,7 +721,7 @@ subprojects { - reporting { - reports { - testAggregateTestReport(AggregateTestReport) { -- testType = TestSuiteType.UNIT_TEST -+ testSuiteName = "test" - } - } - } -diff --git a/distribution/packages/build.gradle b/distribution/packages/build.gradle -index 113ab8aced60b29406c60a80ae2097505eb9923b..b94431c63c96467fa75ba7cc607391997dd287fc 100644 ---- a/distribution/packages/build.gradle -+++ b/distribution/packages/build.gradle -@@ -63,7 +63,7 @@ import java.util.regex.Pattern - */ - - plugins { -- id "com.netflix.nebula.ospackage-base" version "11.10.1" -+ id "com.netflix.nebula.ospackage-base" version "11.11.2" - } - - void addProcessFilesTask(String type, boolean jdk) { -diff --git a/gradle/code-coverage.gradle b/gradle/code-coverage.gradle -index eb27dd1a76634251bceafd6fefbafd65eafd5c66..1e41f12e1cc48de3ec9bcd0078f348f3a30af8f3 100644 ---- a/gradle/code-coverage.gradle -+++ b/gradle/code-coverage.gradle -@@ -38,7 +38,7 @@ if (System.getProperty("tests.coverage")) { - reporting { - reports { - testCodeCoverageReport(JacocoCoverageReport) { -- testType = TestSuiteType.UNIT_TEST -+ testSuiteName = "test" - } - } - } -diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties -index c51246f2815f5294bd8a51b3ac25c19964577ac1..95e1a2f213a063c0f371f4eab8e67ba860be7baa 100644 ---- a/gradle/wrapper/gradle-wrapper.properties -+++ b/gradle/wrapper/gradle-wrapper.properties -@@ -11,7 +11,7 @@ - - distributionBase=GRADLE_USER_HOME - distributionPath=wrapper/dists --distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-all.zip -+distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-all.zip - zipStoreBase=GRADLE_USER_HOME - zipStorePath=wrapper/dists --distributionSha256Sum=296742a352f0b20ec14b143fb684965ad66086c7810b7b255dee216670716175 -+distributionSha256Sum=fba8464465835e74f7270bbf43d6d8a8d7709ab0a43ce1aa3323f73e9aa0c612 -diff --git a/gradlew b/gradlew -index f5feea6d6b116baaca5a2642d4d9fa1f47d574a7..faf93008b77e7b52e18c44e4eef257fc2f8fd76d 100755 ---- a/gradlew -+++ b/gradlew -@@ -86,8 +86,7 @@ done - # shellcheck disable=SC2034 - APP_BASE_NAME=${0##*/} - # Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) --APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s --' "$PWD" ) || exit -+APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit - - # Use the maximum available, or set MAX_FD != -1 to use that value. - MAX_FD=maximum -@@ -206,7 +205,7 @@ fi - DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' - - # Collect all arguments for the java command: --# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, -+# * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, - # and any embedded shellness will be escaped. - # * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be - # treated as '${Hostname}' itself on the command line. From 5405e42b2d49e90d8694590ab0ba7a23e79326b3 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 6 May 2025 14:55:29 +0000 Subject: [PATCH 0029/1364] tenv: update livecheck --- Formula/t/tenv.rb | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Formula/t/tenv.rb b/Formula/t/tenv.rb index 658ba36047677..b1e36f2bd2e93 100644 --- a/Formula/t/tenv.rb +++ b/Formula/t/tenv.rb @@ -6,6 +6,11 @@ class Tenv < Formula license "Apache-2.0" head "https://github.com/tofuutils/tenv.git", branch: "main" + livecheck do + url :stable + strategy :github_latest + end + bottle do sha256 cellar: :any_skip_relocation, arm64_sequoia: "095ede69e3d74d32267576839572e168f9b9c98489bdc4ae6f69c3902afeaea0" sha256 cellar: :any_skip_relocation, arm64_sonoma: "095ede69e3d74d32267576839572e168f9b9c98489bdc4ae6f69c3902afeaea0" From db0b0353bc12f2e8db3cb6039a367ff0d3e2cc05 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 10:58:15 +0000 Subject: [PATCH 0030/1364] cntb 1.5.5 --- Formula/c/cntb.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/cntb.rb b/Formula/c/cntb.rb index 4bf5d47e359e3..cbbadf2b7be96 100644 --- a/Formula/c/cntb.rb +++ b/Formula/c/cntb.rb @@ -1,8 +1,8 @@ class Cntb < Formula desc "Contabo Command-Line Interface (CLI)" homepage "https://github.com/contabo/cntb" - url "https://github.com/contabo/cntb/archive/refs/tags/v1.5.4.tar.gz" - sha256 "d5648e7c842b46414466f62fb412cceebe284afbecfddf7ba92822510831c235" + url "https://github.com/contabo/cntb/archive/refs/tags/v1.5.5.tar.gz" + sha256 "4597e2c616287a1e4de66feddd73ac5feb7b9e89e756482c646c4d1e8c959c86" license "GPL-3.0-only" head "https://github.com/contabo/cntb.git", branch: "main" From d0d6ead118d803e67cfe04dbbb8d1a352abe72c1 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 11:06:23 +0000 Subject: [PATCH 0031/1364] gateway-go 0.3.21 --- Formula/g/gateway-go.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/g/gateway-go.rb b/Formula/g/gateway-go.rb index 911bfcd821a02..eccea7c820c94 100644 --- a/Formula/g/gateway-go.rb +++ b/Formula/g/gateway-go.rb @@ -1,8 +1,8 @@ class GatewayGo < Formula desc "GateWay Client for OpenIoTHub" homepage "https://github.com/OpenIoTHub" - url "https://github.com/OpenIoTHub/gateway-go/archive/refs/tags/v0.3.20.tar.gz" - sha256 "c813c7054eb495451f55200a2f9e35817144d11953b1bcef0aeb2ada0185c469" + url "https://github.com/OpenIoTHub/gateway-go/archive/refs/tags/v0.3.21.tar.gz" + sha256 "2a42bd1cbc06ddad40ce7048541e046ec85ef6f16129bce077061fb4f77edb4e" license "MIT" head "https://github.com/OpenIoTHub/gateway-go.git", branch: "master" From 49eb9fc9b39ea72e62e486094f9cf6f66f54c7fc Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 11:06:47 +0000 Subject: [PATCH 0032/1364] gcsfuse 2.12.0 --- Formula/g/gcsfuse.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/g/gcsfuse.rb b/Formula/g/gcsfuse.rb index e989fa8f47ca8..6814d040a2fdf 100644 --- a/Formula/g/gcsfuse.rb +++ b/Formula/g/gcsfuse.rb @@ -1,8 +1,8 @@ class Gcsfuse < Formula desc "User-space file system for interacting with Google Cloud" homepage "https://github.com/googlecloudplatform/gcsfuse" - url "https://github.com/GoogleCloudPlatform/gcsfuse/archive/refs/tags/v2.11.1.tar.gz" - sha256 "caaabfa18eb74fc47417bf3ff90d1b5386a465bc6c8edf593318ed444055a27c" + url "https://github.com/GoogleCloudPlatform/gcsfuse/archive/refs/tags/v2.12.0.tar.gz" + sha256 "b530ef33fd1b0eee5822caab7f594d36237fc7caa546acdeee0d10b15e714726" license "Apache-2.0" head "https://github.com/GoogleCloudPlatform/gcsfuse.git", branch: "master" From fc687812494176165bd634bb65859332c5878c49 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 11:08:43 +0000 Subject: [PATCH 0033/1364] google-benchmark 1.9.3 --- Formula/g/google-benchmark.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/g/google-benchmark.rb b/Formula/g/google-benchmark.rb index c8fd6139f30dd..cb971eb654aa3 100644 --- a/Formula/g/google-benchmark.rb +++ b/Formula/g/google-benchmark.rb @@ -1,8 +1,8 @@ class GoogleBenchmark < Formula desc "C++ microbenchmark support library" homepage "https://github.com/google/benchmark" - url "https://github.com/google/benchmark/archive/refs/tags/v1.9.2.tar.gz" - sha256 "409075176168dc46bbb81b74c1b4b6900385b5d16bfc181d678afb060d928bd3" + url "https://github.com/google/benchmark/archive/refs/tags/v1.9.3.tar.gz" + sha256 "b94263b018042007eb53f79639f21ae47800808c73cf1b7df85622b6e2b1aa32" license "Apache-2.0" head "https://github.com/google/benchmark.git", branch: "main" From 5a58b7b2cfc3b2aa92a53891b1fc4879aa27af36 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 11:14:23 +0000 Subject: [PATCH 0034/1364] kubetail 0.5.1 --- Formula/k/kubetail.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/k/kubetail.rb b/Formula/k/kubetail.rb index 9d608c6e055b8..381f44cdf7ae5 100644 --- a/Formula/k/kubetail.rb +++ b/Formula/k/kubetail.rb @@ -1,8 +1,8 @@ class Kubetail < Formula desc "Logging tool for Kubernetes with a real-time web dashboard" homepage "https://www.kubetail.com/" - url "https://github.com/kubetail-org/kubetail/archive/refs/tags/cli/v0.5.0.tar.gz" - sha256 "a045541fa94e3877df581c673227d8dd6c376d341f3148185ef5b6f40f9206a1" + url "https://github.com/kubetail-org/kubetail/archive/refs/tags/cli/v0.5.1.tar.gz" + sha256 "01cb656a34d22fc60284da29b11fd5ae5496e3f0933d5d51b68d0a8ab5cf7b75" license "Apache-2.0" head "https://github.com/kubetail-org/kubetail.git", branch: "main" From d7d7e6ddde9959579e8fbdf174d03697c42a04f3 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 11:19:07 +0000 Subject: [PATCH 0035/1364] llama.cpp 5300 --- Formula/l/llama.cpp.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/l/llama.cpp.rb b/Formula/l/llama.cpp.rb index 331486575e2b6..4ef524d51bd86 100644 --- a/Formula/l/llama.cpp.rb +++ b/Formula/l/llama.cpp.rb @@ -3,8 +3,8 @@ class LlamaCpp < Formula homepage "https://github.com/ggerganov/llama.cpp" # CMake uses Git to generate version information. url "https://github.com/ggerganov/llama.cpp.git", - tag: "b5280", - revision: "27aa2595321c4d9cc4086a8e67bdea204b8309b0" + tag: "b5300", + revision: "4773d7a02ffdb05ba9e673ff21ce95351836e33a" license "MIT" head "https://github.com/ggerganov/llama.cpp.git", branch: "master" From d6a0a7224f4eb69e14410376cb56379e682a12b5 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 11:21:25 +0000 Subject: [PATCH 0036/1364] mercurial 7.0.2 --- Formula/m/mercurial.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/m/mercurial.rb b/Formula/m/mercurial.rb index 627dae7317697..6b5c8705aa5d6 100644 --- a/Formula/m/mercurial.rb +++ b/Formula/m/mercurial.rb @@ -3,8 +3,8 @@ class Mercurial < Formula desc "Scalable distributed version control system" homepage "https://mercurial-scm.org/" - url "https://www.mercurial-scm.org/release/mercurial-7.0.1.tar.gz" - sha256 "0f4cde42ec6c15f7ff93d421e7a842fdb30ee7951b1dbc4aacaac06eac764b48" + url "https://www.mercurial-scm.org/release/mercurial-7.0.2.tar.gz" + sha256 "f7731f1b42acaeaacb8cf7e41c0a472a7aa31a8f47e518baea735f1cb2987e0c" license "GPL-2.0-or-later" livecheck do From 9a7ec983ac2e49e31648d9efd4cc83f40ea819fa Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 11:25:42 +0000 Subject: [PATCH 0037/1364] okteto 3.7.0 --- Formula/o/okteto.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/o/okteto.rb b/Formula/o/okteto.rb index 6a0b88afc95e5..cb847bc01e045 100644 --- a/Formula/o/okteto.rb +++ b/Formula/o/okteto.rb @@ -1,8 +1,8 @@ class Okteto < Formula desc "Build better apps by developing and testing code directly in Kubernetes" homepage "https://okteto.com" - url "https://github.com/okteto/okteto/archive/refs/tags/3.6.0.tar.gz" - sha256 "f8b92f0ae879886df75dbfefb4f7e60741cb048322e66166a60aac662239eb26" + url "https://github.com/okteto/okteto/archive/refs/tags/3.7.0.tar.gz" + sha256 "d546611c64d7e39a65bae28a44e878c21f1ef759ab2ae0a26cf5573b1074d84f" license "Apache-2.0" head "https://github.com/okteto/okteto.git", branch: "master" From 3ad3d5347a75b2e4a4286ff8a80366678a1ab01e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 11:28:15 +0000 Subject: [PATCH 0038/1364] pdns 4.9.5 --- Formula/p/pdns.rb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Formula/p/pdns.rb b/Formula/p/pdns.rb index b158e06865b38..1e1eac35aad92 100644 --- a/Formula/p/pdns.rb +++ b/Formula/p/pdns.rb @@ -1,10 +1,9 @@ class Pdns < Formula desc "Authoritative nameserver" homepage "https://www.powerdns.com" - url "https://downloads.powerdns.com/releases/pdns-4.9.4.tar.bz2" - sha256 "cac466d7cb056434c60632e554be50543cb0cecd9d3b33bb5785c149b5979fc1" + url "https://downloads.powerdns.com/releases/pdns-4.9.5.tar.bz2" + sha256 "669bb7b99823b32c3901337d69b38c9f8073f2fc02e8764933b8c5c0974e2724" license "GPL-2.0-or-later" - revision 1 # The first-party download page (https://www.powerdns.com/downloads) isn't # always updated for newer versions, so for now we have to check the From a70910d5aecb6c0635eed5ac6e2d1fcda7891ebf Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 11:32:48 +0000 Subject: [PATCH 0039/1364] renovate 40.8.0 --- Formula/r/renovate.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/r/renovate.rb b/Formula/r/renovate.rb index b418f9091395c..95502177818bc 100644 --- a/Formula/r/renovate.rb +++ b/Formula/r/renovate.rb @@ -1,8 +1,8 @@ class Renovate < Formula desc "Automated dependency updates. Flexible so you don't need to be" homepage "https://github.com/renovatebot/renovate" - url "https://registry.npmjs.org/renovate/-/renovate-40.7.0.tgz" - sha256 "3c444ead6fa9d239b6a47da42eba9ebfba7d970dcfd76b48696fad4cabd2662a" + url "https://registry.npmjs.org/renovate/-/renovate-40.8.0.tgz" + sha256 "86b74d6799699adc138a83f94af53e8612510ac6f00a2af072aeb6ed2f64f67f" license "AGPL-3.0-only" # There are thousands of renovate releases on npm and the page the `Npm` From 11a4a5e030e960fc8976a52cff9cd601338826e5 Mon Sep 17 00:00:00 2001 From: Vishwa Mehta Date: Wed, 7 May 2025 17:03:58 +0530 Subject: [PATCH 0040/1364] solidity 0.8.30 --- Formula/s/solidity.rb | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) diff --git a/Formula/s/solidity.rb b/Formula/s/solidity.rb index 8ad5b3ea8cc45..bf51175672096 100644 --- a/Formula/s/solidity.rb +++ b/Formula/s/solidity.rb @@ -1,10 +1,9 @@ class Solidity < Formula desc "Contract-oriented programming language" homepage "https://soliditylang.org" - url "https://github.com/ethereum/solidity/releases/download/v0.8.29/solidity_0.8.29.tar.gz" - sha256 "fe76237f513b7d6727a93cd5b83f92747650c8dc5f8f89457a41e8f54119ed38" + url "https://github.com/ethereum/solidity/releases/download/v0.8.30/solidity_0.8.30.tar.gz" + sha256 "5e8d58dff551a18205e325c22f1a3b194058efbdc128853afd75d31b0568216d" license all_of: ["GPL-3.0-or-later", "MIT", "BSD-3-Clause", "Apache-2.0", "CC0-1.0"] - revision 1 livecheck do url :stable @@ -30,18 +29,6 @@ class Solidity < Formula conflicts_with "solc-select", because: "both install `solc` binaries" - # build patch to use system fmt, nlohmann-json, and range-v3, upstream PR ref, https://github.com/ethereum/solidity/pull/15414 - patch do - url "https://github.com/ethereum/solidity/commit/aa47181eef8fa63a6b4f52bff2c05517c66297a2.patch?full_index=1" - sha256 "b73e52a235087b184b8813a15a52c4b953046caa5200bf0aa60773ec4bb28300" - end - - # Support Boost 1.88.0, pr ref: https://github.com/ethereum/solidity/pull/15976 - patch do - url "https://github.com/ethereum/solidity/commit/23587f9427bbd3d2147f32de5ede968c9c9aa133.patch?full_index=1" - sha256 "d66489933a5c7ff71a72cb5eaa2426d3ff10dad494304c432c4a567ac4d42db7" - end - def install rm_r("deps") @@ -49,6 +36,7 @@ def install "-DBoost_USE_STATIC_LIBS=OFF", "-DSTRICT_Z3_VERSION=OFF", "-DTESTS=OFF", + "-DIGNORE_VENDORED_DEPENDENCIES=ON", *std_cmake_args system "cmake", "--build", "build" system "cmake", "--install", "build" From 693b665278ee9f1c96b6e418f07e5e0d27d7e6c5 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 11:39:06 +0000 Subject: [PATCH 0041/1364] talosctl 1.10.1 --- Formula/t/talosctl.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/t/talosctl.rb b/Formula/t/talosctl.rb index d38f5754253e3..ebd153db3d344 100644 --- a/Formula/t/talosctl.rb +++ b/Formula/t/talosctl.rb @@ -1,8 +1,8 @@ class Talosctl < Formula desc "CLI for out-of-band management of Kubernetes nodes created by Talos" homepage "https://www.talos.dev/" - url "https://github.com/siderolabs/talos/archive/refs/tags/v1.10.0.tar.gz" - sha256 "9c97367ea8635e9cf6610868207c7f103c2f9239a7445fe42001ad3bea5ca237" + url "https://github.com/siderolabs/talos/archive/refs/tags/v1.10.1.tar.gz" + sha256 "d7bcd4a43a01c8608468a48719cd1c2a3ea9b9e8456f637378aaa6fd79723dab" license "MPL-2.0" head "https://github.com/siderolabs/talos.git", branch: "main" From 601f0901942af0af819c9b65eb85c84b7dd1bb7e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 11:44:28 +0000 Subject: [PATCH 0042/1364] werf 2.35.10 --- Formula/w/werf.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/w/werf.rb b/Formula/w/werf.rb index 8cfa139e0a7fb..33b3acf2e05f4 100644 --- a/Formula/w/werf.rb +++ b/Formula/w/werf.rb @@ -1,8 +1,8 @@ class Werf < Formula desc "Consistent delivery tool for Kubernetes" homepage "https://werf.io/" - url "https://github.com/werf/werf/archive/refs/tags/v2.35.9.tar.gz" - sha256 "e5302c2a9cba62eeb4fc3fc4fa6cbd20a983899601ec02aa9d247b4554aa5637" + url "https://github.com/werf/werf/archive/refs/tags/v2.35.10.tar.gz" + sha256 "c062f38515f2610735bac0b6a19fdd98d93eae858042d7bf8f8511a0fcd78298" license "Apache-2.0" head "https://github.com/werf/werf.git", branch: "main" From 9eb24a3e84536a1d9843009f07cbdd8e4c55ea48 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 11:58:44 +0000 Subject: [PATCH 0043/1364] cntb: update 1.5.5 bottle. --- Formula/c/cntb.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/c/cntb.rb b/Formula/c/cntb.rb index cbbadf2b7be96..fae0c7d8c9025 100644 --- a/Formula/c/cntb.rb +++ b/Formula/c/cntb.rb @@ -7,12 +7,12 @@ class Cntb < Formula head "https://github.com/contabo/cntb.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "830067d19a3686b22c00ebca17b5a0d7eb0b5ab4adb176a4efd2aac726bd8a32" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "830067d19a3686b22c00ebca17b5a0d7eb0b5ab4adb176a4efd2aac726bd8a32" - sha256 cellar: :any_skip_relocation, arm64_ventura: "830067d19a3686b22c00ebca17b5a0d7eb0b5ab4adb176a4efd2aac726bd8a32" - sha256 cellar: :any_skip_relocation, sonoma: "b4d8804494b48a319a47798806c89b91e706aee64f1fa3012204c6c715a389ba" - sha256 cellar: :any_skip_relocation, ventura: "b4d8804494b48a319a47798806c89b91e706aee64f1fa3012204c6c715a389ba" - sha256 cellar: :any_skip_relocation, x86_64_linux: "3726f458d23d4ad503188858741bffbb3a7a5af4acc77435c579fc4c8a56095c" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "ef9426c451eb50163a08bb2f0275194db90e6a560582add3fd63f45b758c4429" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "ef9426c451eb50163a08bb2f0275194db90e6a560582add3fd63f45b758c4429" + sha256 cellar: :any_skip_relocation, arm64_ventura: "ef9426c451eb50163a08bb2f0275194db90e6a560582add3fd63f45b758c4429" + sha256 cellar: :any_skip_relocation, sonoma: "f47955a60a9a69949e5a441a87de1b0ecc29fbad2b5e32a3fba24a7751f08031" + sha256 cellar: :any_skip_relocation, ventura: "f47955a60a9a69949e5a441a87de1b0ecc29fbad2b5e32a3fba24a7751f08031" + sha256 cellar: :any_skip_relocation, x86_64_linux: "a72c88c25cfe526dbcac849cb91034c978c6f207588098e78440410795469e5e" end depends_on "go" => :build From df9f4d69ab7009939cd4a142a22b66a278abc70d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 11:59:04 +0000 Subject: [PATCH 0044/1364] gateway-go: update 0.3.21 bottle. --- Formula/g/gateway-go.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/g/gateway-go.rb b/Formula/g/gateway-go.rb index eccea7c820c94..a63393366c708 100644 --- a/Formula/g/gateway-go.rb +++ b/Formula/g/gateway-go.rb @@ -7,12 +7,12 @@ class GatewayGo < Formula head "https://github.com/OpenIoTHub/gateway-go.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "cd7bb0bbfe98f11c8c808a9df2694a4e228c13111107a6ad73b7bbf2c9c3bf20" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "2c2c34966d71beffff420235ad7a1d99a899b927cb5cb85e3d0a1e75ad5c9e8a" - sha256 cellar: :any_skip_relocation, arm64_ventura: "cd7bb0bbfe98f11c8c808a9df2694a4e228c13111107a6ad73b7bbf2c9c3bf20" - sha256 cellar: :any_skip_relocation, sonoma: "cafc14744e603d10418fd53124d33e3e8b3d80c66e1d66a2abf8b8f202580622" - sha256 cellar: :any_skip_relocation, ventura: "77977104153cd170f005bf4a5779a2458ab191008395241753f277cf19c6ec0b" - sha256 cellar: :any_skip_relocation, x86_64_linux: "51d8614b9639580e365b35d38ddaa35836ef3559efed0db3df10145af863d6e2" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "9bfefa307853bae03a8da16a8621bcdd466f008b6debd1fccfdb9fe8f1a5b3fe" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "70808a40170e41243e7bf3eca285f46807aeb101d2f155cd9aad2ec767f17310" + sha256 cellar: :any_skip_relocation, arm64_ventura: "e4b31f26ee084290b3077d552bbabf3836fbe357c8379b49bedb5083f3b324a7" + sha256 cellar: :any_skip_relocation, sonoma: "88dac9b78749ace8b7b4eb42702f3b82a4f7fdc8a510c52222ddd31180a11361" + sha256 cellar: :any_skip_relocation, ventura: "ad3fe02b16b1ce7b9ecb38779edde651bd978a8c3df3f856753fe5e46d88e27b" + sha256 cellar: :any_skip_relocation, x86_64_linux: "6a35ec30cf33b8cbb6c3dfdb5e4aa7ba6659b22e221a7cedef676b01425542f7" end depends_on "go" => :build From 58f274e35f8f644b0cc585e2d8dd09ac2b4ec1c3 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 11:59:06 +0000 Subject: [PATCH 0045/1364] werf: update 2.35.10 bottle. --- Formula/w/werf.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/w/werf.rb b/Formula/w/werf.rb index 33b3acf2e05f4..5ca2dd4b7fa67 100644 --- a/Formula/w/werf.rb +++ b/Formula/w/werf.rb @@ -15,13 +15,13 @@ class Werf < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "1269c9d679e1718a0ac15790b80a3a9080ca6f938b62300e1ea514639dde3ce7" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "887cf538517c613eaa76b7462e69bb7fff882ff230dbb13b08e25e373972da9a" - sha256 cellar: :any_skip_relocation, arm64_ventura: "f1022eeffb9a264100dc6b93e655b81b081b9a270b3c7f09a7e84677a0d5b470" - sha256 cellar: :any_skip_relocation, sonoma: "8600d8ff872ce0e25e628e2921175425fda63bb2ed8df3ecbe951ba8f6de1407" - sha256 cellar: :any_skip_relocation, ventura: "58875ac62758db3b8f09157dcc917e715774f4ea098e86f6692bcffd6aaa2a17" - sha256 cellar: :any_skip_relocation, arm64_linux: "88814c1101b464a564c304d9629fd94a91a002cd0902fff1649518fa43038354" - sha256 cellar: :any_skip_relocation, x86_64_linux: "5bebf810ede6b95440c2d1c4e529b81c3648a8849784b2b71c99553d1a21268a" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "17e5369be16a415a90e366d62647a4875cc516ca74ea93ddb4131376a230efb3" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "4f13ceaffd6153a50fe4c69b47f2fa086b309d4a533f86e483a781bf6b7786e8" + sha256 cellar: :any_skip_relocation, arm64_ventura: "9587f38cb1073aa9bf29cf1faf32845348133a2d23a5bc9afb0ae6a673f5cc35" + sha256 cellar: :any_skip_relocation, sonoma: "f909e043787643473be746cfdf873f313261e3243f7ec7714e0fc684966a869f" + sha256 cellar: :any_skip_relocation, ventura: "6e98baf03e039ae493002d390848c14de81824baeb87d42287002b5156f90358" + sha256 cellar: :any_skip_relocation, arm64_linux: "9dd36c4b3584fabbf31d3a173f05cbe018a531b0391a9de3c30cc0d04b39c3c1" + sha256 cellar: :any_skip_relocation, x86_64_linux: "857d29db677dff2a35146c58ce4afe314aa47e384a119238ac0953de193ed771" end depends_on "go" => :build From 88deb72a47c98b7e6b176a44a324b1d2e6e94785 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 11:59:52 +0000 Subject: [PATCH 0046/1364] gcsfuse: update 2.12.0 bottle. --- Formula/g/gcsfuse.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/g/gcsfuse.rb b/Formula/g/gcsfuse.rb index 6814d040a2fdf..9e79edecb279f 100644 --- a/Formula/g/gcsfuse.rb +++ b/Formula/g/gcsfuse.rb @@ -12,8 +12,8 @@ class Gcsfuse < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_linux: "b080500ca5ccfa77a24f2ec9a35e9308f64f47213afabaacba362c1a59e07707" - sha256 cellar: :any_skip_relocation, x86_64_linux: "98db22098b322c66d0fb2b80aa60033de8d8517175c0816019d2c1565df71f6f" + sha256 cellar: :any_skip_relocation, arm64_linux: "e7e1c78d7ec4ea99e30c3d159d4208caf8cded0d931a1a7c849d1ccd7180c939" + sha256 cellar: :any_skip_relocation, x86_64_linux: "9cda40a50839b5c3cf7af861afac8d5cafa08c982430e89e117d489f9933d2af" end depends_on "go" => :build From 6262990c2c895a856d7c861a9bac3b97021cd4ac Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 12:04:07 +0000 Subject: [PATCH 0047/1364] kubetail: update 0.5.1 bottle. --- Formula/k/kubetail.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/k/kubetail.rb b/Formula/k/kubetail.rb index 381f44cdf7ae5..ec047210da549 100644 --- a/Formula/k/kubetail.rb +++ b/Formula/k/kubetail.rb @@ -12,13 +12,13 @@ class Kubetail < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "27d4056e31aa83b6b21feddf6fc8222c153f779e8ee41b6002e81c6b2ba0bddc" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "721ec9d5dfb8e23a9bbb2556a0c42b7680db44799dadc40bbf22b0c1404204f8" - sha256 cellar: :any_skip_relocation, arm64_ventura: "f05cb6c0d432850f83e39a76366bf17a8c964671bec65b8b649007f7d4931488" - sha256 cellar: :any_skip_relocation, sonoma: "4c8a1e6f653028556b1e3eebcc5df4e5aa8a524b09c6ea900e8db25056b3f33c" - sha256 cellar: :any_skip_relocation, ventura: "aeb474959fb908f01ee4ddf85b5644ce9712f4c4119640f00368b8836061bdd7" - sha256 cellar: :any_skip_relocation, arm64_linux: "01adbb2091b5b7fc40148b12f27e16b8f3e26a3c9bc25e565fba7e992c495e94" - sha256 cellar: :any_skip_relocation, x86_64_linux: "e081c4687eb664fbb2592b2ff7169d7bb32270544085f154a75063648d68334e" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "08d770b4d12bd517933aca0f6b2bd726f0c691ede02c39d47e1c8417cdd8f684" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "d5c3095d69430a00d0877718b93b625cd99f9ae787d557492a70b9be22c2f3cb" + sha256 cellar: :any_skip_relocation, arm64_ventura: "54f5d4415eb6539f14e4ffddc9a7cd59279940967777a228942555d85b863b53" + sha256 cellar: :any_skip_relocation, sonoma: "f61968b3fd9acc2936f34a2cfa85fba3446cffd0cb8ef89a0ef47cd0294e6b7d" + sha256 cellar: :any_skip_relocation, ventura: "9dc6117fba929c990705e30769265392bf0dae429178a24143e208119599ed29" + sha256 cellar: :any_skip_relocation, arm64_linux: "1b05ca7aa7db0ac311354a9613bd0e525f3fd15af8f785a7219c722b1f1b2c4c" + sha256 cellar: :any_skip_relocation, x86_64_linux: "1a7dddd44511afaa60c30ade85e78a833237afecb20bc4eccb76dce97b44817e" end depends_on "go" => :build From fb13f605b48c51906e558e46fcafbfef43fb57ca Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 12:04:12 +0000 Subject: [PATCH 0048/1364] google-benchmark: update 1.9.3 bottle. --- Formula/g/google-benchmark.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/g/google-benchmark.rb b/Formula/g/google-benchmark.rb index cb971eb654aa3..c633a9fbd5d44 100644 --- a/Formula/g/google-benchmark.rb +++ b/Formula/g/google-benchmark.rb @@ -7,13 +7,13 @@ class GoogleBenchmark < Formula head "https://github.com/google/benchmark.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "f0676c30ba82c95b4c4aea312440390f63d0feaca33ae74779a37750c97df56a" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "3b6cdab0a525f0bedd85e42d88c24df6895d74129a0e91d404a281fde8c2e45c" - sha256 cellar: :any_skip_relocation, arm64_ventura: "551d7ade1d078ca9d41198c11b2a4935545d82000c21bba64bfa531de196e597" - sha256 cellar: :any_skip_relocation, sonoma: "8b90185572865b582432fbf48a404f26aeb3448dbeeb765e4439e4c262fa18ca" - sha256 cellar: :any_skip_relocation, ventura: "d3683500e476bb47bbb3c960552620b374af7fa606c96dc7f046b657b495aa74" - sha256 cellar: :any_skip_relocation, arm64_linux: "5e1013d1853765ad47f5d91def16096ad3f5b11f2b50d392845e66b4587bafb7" - sha256 cellar: :any_skip_relocation, x86_64_linux: "ec39d18dae247211ee8a4d9786d5f1c76b7e92273632cbcf2d0ab0d970ca208f" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "ff542a84b0848317c9b65b1d20130020121308bda6cd41202e86356291b820bd" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "7ffba486b66a5737a29abc608c486ae2b15561a4acba433fcaf717c989a77f59" + sha256 cellar: :any_skip_relocation, arm64_ventura: "59930fd740d86d7ba15a534a1035d527a41b7d0e9bd9b249b40877fb3b68566a" + sha256 cellar: :any_skip_relocation, sonoma: "93ee322a5f13476c138f6ab6e70c4df064849905cd41a2c486613841a24df102" + sha256 cellar: :any_skip_relocation, ventura: "31a0c35b6da97d71ff673f1823be2fc7525c6e8da7ee776b08bfa1fa033cd7bd" + sha256 cellar: :any_skip_relocation, arm64_linux: "9413e089d5f100191be01e0044e765c0ea1be673b1fe1600e34ec7f8495fca97" + sha256 cellar: :any_skip_relocation, x86_64_linux: "e50ec9976014065b2e0472d34448349fa63580c84574edb85fd8fdceed312aa7" end depends_on "cmake" => :build From 74a576e423130c6d30445b3a474819d4497d85fe Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 12:04:39 +0000 Subject: [PATCH 0049/1364] llama.cpp: update 5300 bottle. --- Formula/l/llama.cpp.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/l/llama.cpp.rb b/Formula/l/llama.cpp.rb index 4ef524d51bd86..6618561eeaea3 100644 --- a/Formula/l/llama.cpp.rb +++ b/Formula/l/llama.cpp.rb @@ -19,13 +19,13 @@ class LlamaCpp < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "6892a8b2c657f9881e760e4166600b721d7d4076951583f1c37dc956396530fa" - sha256 cellar: :any, arm64_sonoma: "48c5dc67dbf57f940634d593f0c9a34b3928849d4f1e7a929953a0c2332539b8" - sha256 cellar: :any, arm64_ventura: "38890d00922a7e681a9673377ae2783ab466910da6ba42d71bfa0aa037278936" - sha256 cellar: :any, sonoma: "471f2f686fdc4dcdb33c20b00083593369fafa36b466d832c61188c3848d6d00" - sha256 cellar: :any, ventura: "2848469a85359c42bb09f1d38e4f6442dd29a42a302d0470f279e9309859f96e" - sha256 cellar: :any_skip_relocation, arm64_linux: "90300ec41959db9ebd6560b608539b2dc5714a385f33fbe312629c4bfd100ebc" - sha256 cellar: :any_skip_relocation, x86_64_linux: "97ecba84fba831dd071a9aa971822ee3a0c38ec633087d358ea96ef9235632c6" + sha256 cellar: :any, arm64_sequoia: "7368c4e8b52d3270f47e8fc17888867f00b048dc827f8e09bfaa53283fed0328" + sha256 cellar: :any, arm64_sonoma: "20417d6945cf4c888666534e705a6faa1f31c703c45ed23423142b43425808b1" + sha256 cellar: :any, arm64_ventura: "b65b9e0bae0b7e07648cb87a609340fa391f4e62605858f953570ed6a73829ca" + sha256 cellar: :any, sonoma: "4db897edb1dc97f82eabc2beddcb230a5cc829f78a3077846a19c9ef242f7d90" + sha256 cellar: :any, ventura: "0f4560406a2e15bb81352257ef9702051a8c45ac0812cea619fc9d59a21e44c5" + sha256 cellar: :any_skip_relocation, arm64_linux: "dfee5f43a6e51fcf5543462560b7e29d8606260e09247a1ebef369ebec4ad7f0" + sha256 cellar: :any_skip_relocation, x86_64_linux: "16ae4d5c6499e0b1e0a2cf6098aa01c92a2a7bfa27cc0b7684c0419b18468ad5" end depends_on "cmake" => :build From 568d535fb35018a6351b82bb6a5da27493e9683d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 12:05:24 +0000 Subject: [PATCH 0050/1364] pdns: update 4.9.5 bottle. --- Formula/p/pdns.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/p/pdns.rb b/Formula/p/pdns.rb index 1e1eac35aad92..8ef63e2da9d12 100644 --- a/Formula/p/pdns.rb +++ b/Formula/p/pdns.rb @@ -16,13 +16,13 @@ class Pdns < Formula end bottle do - sha256 arm64_sequoia: "8ac0677fcf305e7d82882bf52287abacc7060e57820303d26d9c2a5c7fa52cb5" - sha256 arm64_sonoma: "d3bb37b574b2b59b00957e0fa77753f04d1e25d73e4a8e91ba3b29aadf517db4" - sha256 arm64_ventura: "265d162d41cefcf0ed6db36d1a34cc819fe2238226ba117f6ab634321c76f59c" - sha256 sonoma: "752004f2e6c29770dc8fb5a802f099025e8ec6ab7db044249fb616ac94c13091" - sha256 ventura: "b1b68d140946281177c242f5cc6ba7eef52d6218bf70ac7dcd58d7601718f725" - sha256 arm64_linux: "5f0996791957179f409054cf8c3b5fd3be0b16600c553992a19099f28c00fe3a" - sha256 x86_64_linux: "93a5f5858a20122977141b31485e73eeb5f810d67a24fc86c5911df5c83c1d54" + sha256 arm64_sequoia: "fb8632a4bed8ad090c89ec5f1f45f80258173583e2d94f874a51ffe3872c57e4" + sha256 arm64_sonoma: "020265542e8be2ca67232914147fa9777fee495c0959902d7119170d7e3b20c3" + sha256 arm64_ventura: "70fde4ca2ab25d973dcf35597ec31c3048e7a69703f148b096c323d699a92335" + sha256 sonoma: "e95ffc9d3a7c07239dad247fdcaaed963377601bde673fd31848f336d1d05569" + sha256 ventura: "cae7d9a935325d132ca86e49d311df8adc4215ed8ecbd0137170b8b0d8643dbb" + sha256 arm64_linux: "04b8ead3952463b591b9045f73a0adb843d8f7d234cb8b98f28cc83ca668025a" + sha256 x86_64_linux: "1de0c061b0be4150cda9313024254850c4b20359fc2fd0c4ec866ffe0b872bdb" end head do From 9c8d054a1e6e3119ec81a62ca7675820d67d7021 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 12:05:26 +0000 Subject: [PATCH 0051/1364] talosctl: update 1.10.1 bottle. --- Formula/t/talosctl.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/t/talosctl.rb b/Formula/t/talosctl.rb index ebd153db3d344..3526206cf9083 100644 --- a/Formula/t/talosctl.rb +++ b/Formula/t/talosctl.rb @@ -7,13 +7,13 @@ class Talosctl < Formula head "https://github.com/siderolabs/talos.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "fa9bf918cbc69277e3bb04a613ddeb78192e145611f9ff6eca08a7fb2ea54049" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "5ed6616ed7f0e16dbf476552eda434d18957006b0b41d6a47429b5b849796385" - sha256 cellar: :any_skip_relocation, arm64_ventura: "d078f8db74b7833b06b60d72b3b595259c90f4f6a34790ca6a34abe10f0cd774" - sha256 cellar: :any_skip_relocation, sonoma: "ace7fe79146cef2742ba52c99ecf3c5b9b4d7b8ea07b947be911fe1575696c51" - sha256 cellar: :any_skip_relocation, ventura: "5dc2169e88aef305c871614c64a1b08e3f5764d141d617daf6ae37d3e51929ed" - sha256 cellar: :any_skip_relocation, arm64_linux: "5b91e8de125d75d7c5c7c601cafafffc2e4822735c71891cc5a3cdd8af65f778" - sha256 cellar: :any_skip_relocation, x86_64_linux: "427d226af06ca564f1ea56039bfa60bbc5291bcc1cd9168c00e39610fa528205" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "0fafaa85b25329bdd416b26a2b1663908eda26b2fb76b49564315223e1049421" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "586e1e8e8c4e2205c9a05705611c13712711d6c542be5ba55b871043932773eb" + sha256 cellar: :any_skip_relocation, arm64_ventura: "8c968b2a4dec4894b325aeb1c0778a1542d9f407268011a3449badff21be143f" + sha256 cellar: :any_skip_relocation, sonoma: "56266f4c294fcba15af2963f1ea7347ecf9e7273119cfa3cc101e750bde71507" + sha256 cellar: :any_skip_relocation, ventura: "611148d827fda896746b585baa2e8772232327e3f2e8b015bf2e462f8946f8d6" + sha256 cellar: :any_skip_relocation, arm64_linux: "e1c97980d67bc558407c29f2f550c7fe2ceb22a2ea9104fcd0db678118d14817" + sha256 cellar: :any_skip_relocation, x86_64_linux: "275da0c1f4e7889211ac1257f1af77a2b64fdd6bc27baba36eecaa734dda04d6" end depends_on "go" => :build From c07de6c099aea4f7587c5d089d0ee44f8400511d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 12:05:41 +0000 Subject: [PATCH 0052/1364] opensearch: update 3.0.0 bottle. --- Formula/o/opensearch.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/o/opensearch.rb b/Formula/o/opensearch.rb index 810c61ddc2a87..0c0a5b308037e 100644 --- a/Formula/o/opensearch.rb +++ b/Formula/o/opensearch.rb @@ -6,13 +6,13 @@ class Opensearch < Formula license "Apache-2.0" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "2dc6a9a9df5ecb31dc045f765c6fa4a725793d91b70595861ad3f11b3b0064a7" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "88975f6160f4a89fc9493e6c889b8b698dec4028a527bfa68da32214c1ba1bbb" - sha256 cellar: :any_skip_relocation, arm64_ventura: "ec9dce75fab4820d576da5b88bc86cdc3247824f1bad98f6e9333eadc09c5597" - sha256 cellar: :any_skip_relocation, sonoma: "668204234f0812989aa2e7ffc52661c578e3ac935b952907be2260554cfc3ac9" - sha256 cellar: :any_skip_relocation, ventura: "15d0a18e26c272146a86425d0ce5c2dbf1c5c433aab352db783e46b66ee17795" - sha256 cellar: :any_skip_relocation, arm64_linux: "ffd1eddbab1e73489038703ac8ef8c6beadd30b054f830c85d21454adfd3e39e" - sha256 cellar: :any_skip_relocation, x86_64_linux: "c24ab6ddd1a235545f34efa48bb75be5e607590bd6929acc9ab6b343fc9e8f32" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "02c7d73c1f51d079efc702aeabc45e840dfbd6f9c3e3a5d5d39845b7e084f9b9" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "08a110cc034a792732c5612adfa6879b8d0cd360d0abb538f4987be274bdf829" + sha256 cellar: :any_skip_relocation, arm64_ventura: "3ff98574221a06111ee8663c5a55f9de0661b3275f85c93fea08cc4b93a21abb" + sha256 cellar: :any_skip_relocation, sonoma: "9ac2af223ccdc1bc9df151bd53e56415c3ea5a3dd664e9ff6efd32734df83974" + sha256 cellar: :any_skip_relocation, ventura: "7316664aaad936f205d760e5e3292b3f567723d05acd4eaf7cf3c7818333a60b" + sha256 cellar: :any_skip_relocation, arm64_linux: "2af72cc2f707be2ca3ea709fbf1e597a923e4daa7a3e5610178bb697bb022eb8" + sha256 cellar: :any_skip_relocation, x86_64_linux: "c7f8b518e5898e1af368400a5053ee50e2df258bc05de53dfcc8549ffffab46f" end depends_on "gradle" => :build From 0047df8722a6899ee11596cb92b8f2325151ac7c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 12:05:56 +0000 Subject: [PATCH 0053/1364] okteto: update 3.7.0 bottle. --- Formula/o/okteto.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/o/okteto.rb b/Formula/o/okteto.rb index cb847bc01e045..beac8a5fa0817 100644 --- a/Formula/o/okteto.rb +++ b/Formula/o/okteto.rb @@ -7,13 +7,13 @@ class Okteto < Formula head "https://github.com/okteto/okteto.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "a5495feac6e0cee5456bfdd97e031d2e4dd91a1a5dad8e5a1c2c7244570a1f8c" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "00fcfbe6f5424d5a1b2edbb7c436551abd0f98ea5845622908a9365ff5578d5b" - sha256 cellar: :any_skip_relocation, arm64_ventura: "af1a57c0daa690f94e11dbbb016897bdd2e198207010f69f7931575483494c60" - sha256 cellar: :any_skip_relocation, sonoma: "42aef5a76be48374a5b1e41de14ad342c3813750a090b9233bc20d9bdb4d1108" - sha256 cellar: :any_skip_relocation, ventura: "51ecc4c948c395c34008ce1565adef8ccb08de747b05e3033bae322a3fc4a3f6" - sha256 cellar: :any_skip_relocation, arm64_linux: "ceec829c40c390515907e68700df629b677429e7ffed3ae50d147402908e5286" - sha256 cellar: :any_skip_relocation, x86_64_linux: "d28c10e34c3c7d22b7938315af8bff0c715676bbdc09bd91b2b9196e3dabb942" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "2e7afd43d02b1f5421ac7180bc828cf7ba2c8c4118b56d28b78a18a88a4ccd69" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "02e8454db51f7dbf0b53eceb8da1570df68e6b12f1e920321ce866d344db02af" + sha256 cellar: :any_skip_relocation, arm64_ventura: "cc1006702348ce55fe47c8f94c9b814170ea98ac17f966f2bb0d76b04ae1d686" + sha256 cellar: :any_skip_relocation, sonoma: "bbf2dac62f3aa45545082188ece218d08d34251c6e4a0d116ad2b8cc7c5cc8f7" + sha256 cellar: :any_skip_relocation, ventura: "67582281b1bd37c1c8eff1c1d84a4b804ed45dc8b4fc5f71d2f44af87b2dd29b" + sha256 cellar: :any_skip_relocation, arm64_linux: "a57f6bffccfe635b3fe6a890cc9a69a1efd1cdf1686e81ad3368c52db99a7878" + sha256 cellar: :any_skip_relocation, x86_64_linux: "de0800a06c51a01f9d4cf6e02028279578b21c67415ec25e8e04158c6c38d98d" end depends_on "go" => :build From f0c1158b4102bf490a569f6a74e3287313fc0af5 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 07:58:55 +0000 Subject: [PATCH 0054/1364] codesnap 0.12.3 --- Formula/c/codesnap.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/codesnap.rb b/Formula/c/codesnap.rb index 063d8eaffc7d1..e05592c8a0f8b 100644 --- a/Formula/c/codesnap.rb +++ b/Formula/c/codesnap.rb @@ -1,8 +1,8 @@ class Codesnap < Formula desc "Generates code snapshots in various formats" homepage "https://github.com/codesnap-rs/codesnap" - url "https://github.com/codesnap-rs/codesnap/archive/refs/tags/v0.12.1.tar.gz" - sha256 "f610782ab5acf36f626fce855a08ca925dd019a95d2dac5f7f7719983221c81e" + url "https://github.com/codesnap-rs/codesnap/archive/refs/tags/v0.12.3.tar.gz" + sha256 "4f0fb830cea43c197530f82896908646b389d2b9d5a6cdab8a344241ca6a79e7" license "MIT" head "https://github.com/codesnap-rs/codesnap.git", branch: "main" From 6cbdb5260dfd7b465662205154028a9dbec3b3c9 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 12:05:58 +0000 Subject: [PATCH 0055/1364] renovate: update 40.8.0 bottle. --- Formula/r/renovate.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/r/renovate.rb b/Formula/r/renovate.rb index 95502177818bc..f3408ffa08eb4 100644 --- a/Formula/r/renovate.rb +++ b/Formula/r/renovate.rb @@ -17,13 +17,13 @@ class Renovate < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "4c47a3c060ebdd963b3ad79939680811b3be2c11fb79baa80a6c5c41e4e6935b" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "3a5234b66fa64f72c6b9e7afa933e3204b5cf6529a8c88def0319b7c593333a3" - sha256 cellar: :any_skip_relocation, arm64_ventura: "3fafbceb0b6e22446a27d45711c4fc43cd037a3a745e87bd5210cbb3fec021e3" - sha256 cellar: :any_skip_relocation, sonoma: "0262f392fb74987a723b4943099705647972295c4080854a54f1ed78430a40a0" - sha256 cellar: :any_skip_relocation, ventura: "02077df7718a2d677f64e2d8f9f8d7586a496ea52d7a18b5bf1649f131ea6fa5" - sha256 cellar: :any_skip_relocation, arm64_linux: "c56a99648fbdcefd36835c6cbd95f548b850abc0352ad75fb2c0b78acd50d4d3" - sha256 cellar: :any_skip_relocation, x86_64_linux: "3e81e566147bd3754e5993574aca22093da1b659bafcb35b65abe24bc468438e" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "746fc183c7b06629971b0d728eea0b5ccfe00503d58ba0f83d3c1368e93074d8" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "bf9399de95d0500252f0d0a6cb08cec30579ea41e541659b288f7c2b6837b4b2" + sha256 cellar: :any_skip_relocation, arm64_ventura: "e29178b11f2d9a4d3a71cf1a97fea05ad9b07a7a1505f89ab55616d8c82b7fbb" + sha256 cellar: :any_skip_relocation, sonoma: "6fe518f6f2e5b253b90944c6e5e162c3ad54c953f5b3fd6a51dd40073f5ed2c2" + sha256 cellar: :any_skip_relocation, ventura: "bf551ec7106c614ff2dec7e15ee64d8c126c6f063189c10fc70c4bcfe7600bea" + sha256 cellar: :any_skip_relocation, arm64_linux: "0b3a57320156d3490cd8428667e68c427b8ff98239978627faebd98e3fe12ca2" + sha256 cellar: :any_skip_relocation, x86_64_linux: "76d2bb3ab025c9552e376300a1385e9f86003ed2a9b6082a995449229ad2e147" end depends_on "node@22" From f94eb03d292f1856eb5c02d9e662df5f90d0064d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 12:04:17 +0000 Subject: [PATCH 0056/1364] mercurial: update 7.0.2 bottle. --- Formula/m/mercurial.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/m/mercurial.rb b/Formula/m/mercurial.rb index 6b5c8705aa5d6..794342f2d2d98 100644 --- a/Formula/m/mercurial.rb +++ b/Formula/m/mercurial.rb @@ -13,13 +13,13 @@ class Mercurial < Formula end bottle do - sha256 arm64_sequoia: "1fdd92c2c0dc8440f5387f3d565dbbf989c78c47c34fcefd3de2cf46c2421340" - sha256 arm64_sonoma: "8cf485e6165d5f4fd5c9b0ea715ab9fee0b774b8a378d5c6d1102206eb9b51de" - sha256 arm64_ventura: "8e914b80eb43ff46dcf247fc3972d9e208e8693dbe1fe33eeff1d7b3f6defe1f" - sha256 sonoma: "08363d46dc27e5b78a2867141d57c14119395783270055966de604d57c303fe2" - sha256 ventura: "331126108ce4e1ed617e8e12bf8888ff3dd5af91e7bd72d07d93113ee005ebd5" - sha256 arm64_linux: "868a69a03072742a511683c5801b58969eba4aa3310df0ee7e45304448b56db7" - sha256 x86_64_linux: "08c7b78cf6ade20b06817945ccd19a39f31129a672a7aa02672f50e2d2c6fcce" + sha256 arm64_sequoia: "adcdd94f98f4e8214b39b1146dfc80d506147de819550038c96b960ecff9eb0e" + sha256 arm64_sonoma: "3fe5462406773aa19b203c2ca413acfa8f71e1efe7ab1c36ddc547d878fda0d3" + sha256 arm64_ventura: "0429c995db285cbaeb2efc82b1d33ad2046cb664de0fc80ea08893ce2553a880" + sha256 sonoma: "e1821949354dd3457e591a72600497769e419a52d2fc64136ba74974e3fc20bf" + sha256 ventura: "9a7a4d71679097671e9fbc6c06c5d148c037676be4b08e163c936bb69a55654a" + sha256 arm64_linux: "7c5d9f264c42b27e1e2082feb8330eea70dc8e949230b3a2dbdf5796274a123a" + sha256 x86_64_linux: "5b9a76306427e100dd319136e80aede8e5b0dba734a1b788a57a9308f49c5932" end depends_on "python@3.13" From 5f69d127f6bc9968520f76abc7aa6ca3c9684c7a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 12:45:23 +0000 Subject: [PATCH 0057/1364] kubectl-ai: add 0.0.7 bottle. --- Formula/k/kubectl-ai.rb | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Formula/k/kubectl-ai.rb b/Formula/k/kubectl-ai.rb index 8994796f7471d..571e4147f6c18 100644 --- a/Formula/k/kubectl-ai.rb +++ b/Formula/k/kubectl-ai.rb @@ -5,6 +5,15 @@ class KubectlAi < Formula sha256 "594bf9333e39b4c9e7292bbb4d27c7eee932efb5d11da59b684ec9953a5e29bf" license "Apache-2.0" + bottle do + sha256 cellar: :any_skip_relocation, arm64_sequoia: "0c78bd9e8304415fbce8aaf0ff11d9bc39e8ee0e78025aed9332c9f421574b9c" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "0c78bd9e8304415fbce8aaf0ff11d9bc39e8ee0e78025aed9332c9f421574b9c" + sha256 cellar: :any_skip_relocation, arm64_ventura: "0c78bd9e8304415fbce8aaf0ff11d9bc39e8ee0e78025aed9332c9f421574b9c" + sha256 cellar: :any_skip_relocation, sonoma: "6e05526307b272cbc582299b3cd5a818b94d9e88e69775a0bb4a18a77159c8fe" + sha256 cellar: :any_skip_relocation, ventura: "6e05526307b272cbc582299b3cd5a818b94d9e88e69775a0bb4a18a77159c8fe" + sha256 cellar: :any_skip_relocation, x86_64_linux: "dee44cc8114fc5a5cddc3fd5aaadf7caf0f27bb6df5fb6f4a17dea3818111bff" + end + depends_on "go" => :build def install From c5513d8bd2b38398d7a3026235f4e77c3dd68f55 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 12:46:49 +0000 Subject: [PATCH 0058/1364] solidity: update 0.8.30 bottle. --- Formula/s/solidity.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/s/solidity.rb b/Formula/s/solidity.rb index bf51175672096..d06431510411f 100644 --- a/Formula/s/solidity.rb +++ b/Formula/s/solidity.rb @@ -11,13 +11,13 @@ class Solidity < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "0c4e75dcca9d33d11eb8268070850b20b4829677fabfef247c54dd0aeecdf9d4" - sha256 cellar: :any, arm64_sonoma: "3ac368ff5cebe1fa5128653f34c5c73703257694e2ef2e66b8874157e91edebf" - sha256 cellar: :any, arm64_ventura: "4f22dff097bb4ca769aadb4132d3fef9634ae83bc2815d9d41d6e2a10137c08c" - sha256 cellar: :any, sonoma: "d2122a4129e2781aa5b2110e2b95655592f3052557d54e6ce0705338b348683d" - sha256 cellar: :any, ventura: "bf6500b6c763575d30fc2c0650c12f206995e4d39f957a16e9e1132dee278ab4" - sha256 cellar: :any_skip_relocation, arm64_linux: "5df67fea4e2ed2663b268fcc7de13fd70e750b3037987cec832c06cf64d615c8" - sha256 cellar: :any_skip_relocation, x86_64_linux: "434f32192625362a4b50161e0972c5c930d21e50e5ff5a0eff4c151626d1a52a" + sha256 cellar: :any, arm64_sequoia: "473fa776a7d59bcddcd39fcae1decae308a7fcf76b955ad737788edb788dd1b1" + sha256 cellar: :any, arm64_sonoma: "1fff4b5d4ee6fdfe9f580cb4a0f9102a335c01c3e9cb9b43907b2904e1d9830d" + sha256 cellar: :any, arm64_ventura: "3056f30a88cf1eb1283ca37ee98d52a3b799f49cc4da481161ff4f5bf6f717e6" + sha256 cellar: :any, sonoma: "5c54b89ae94ff561cb13ae3f1a5614a9a0996a1101602aa68fd6d911b8cb05c6" + sha256 cellar: :any, ventura: "754784a2bf9a57e6fe88d57c43465af5a721667250faf7767e817421438c4a13" + sha256 cellar: :any_skip_relocation, arm64_linux: "e9d10fb6a132c5d5f5b36ef1c9296ad9f4c25a2236822e054150ac057f72154a" + sha256 cellar: :any_skip_relocation, x86_64_linux: "e88792a9be5d50f8732d8679c3fba67b84c9ecc839e9af1bcd114c4fcb543111" end depends_on "cmake" => :build From 8de63d2321cfc93796ec55a0a9f68aed6a32815f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 12:47:37 +0000 Subject: [PATCH 0059/1364] codesnap: update 0.12.3 bottle. --- Formula/c/codesnap.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/codesnap.rb b/Formula/c/codesnap.rb index e05592c8a0f8b..7efa09e2fbc45 100644 --- a/Formula/c/codesnap.rb +++ b/Formula/c/codesnap.rb @@ -7,13 +7,13 @@ class Codesnap < Formula head "https://github.com/codesnap-rs/codesnap.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "eaae5dc2277cabce5724d55b6c0d115a1893962abaaf5c3536d6d83a695bddb7" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "2584ad189be6ac5429b90c06ec91f346e7273154c372924ef04060f4ecce8ed8" - sha256 cellar: :any_skip_relocation, arm64_ventura: "cf7ca506c720bcc07c81e2167c30e0361a2e6a4ee43cc375afd099605182bbb3" - sha256 cellar: :any_skip_relocation, sonoma: "dbfeb98f7ab03b17efd8c1aead4c19e69bd4be40c97909122bd952ed728b3730" - sha256 cellar: :any_skip_relocation, ventura: "cda67c6659be3910f803e1030a170aa2a868bb6dd31f6b3adeb68b766a73b1b2" - sha256 cellar: :any_skip_relocation, arm64_linux: "97b8ed09c62719d62bb81b487fa3090c48c1dfcc0fbabb3710fc99dba578a5a7" - sha256 cellar: :any_skip_relocation, x86_64_linux: "af6649a1933093f489051d8ad2a925372c60a7e1abdad0c62c66869c636e0695" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "fa1c2b995faae52597b835dc4110e415b09e9962cb8c5f2420b768700bd9271d" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "fa05440c837a5fb916c55fcc23fbebe494d8d42d4bcbaeafa15de0bc1678d849" + sha256 cellar: :any_skip_relocation, arm64_ventura: "3b5501bcffcbf376117cd17e49b4880863c47df0a909e75673b9ca128e660b3f" + sha256 cellar: :any_skip_relocation, sonoma: "6755a7d529df1b10104ff6d80c4932ca3bfe44490bae9b8080db20d9cdb0ed78" + sha256 cellar: :any_skip_relocation, ventura: "a0a20b587d2ee163df60afd5c76401ed112d1ac61128ec923064773d55869a5e" + sha256 cellar: :any_skip_relocation, arm64_linux: "fc3a633e4742c10a0e3be34860585907e64271ae2b799c685c8e894cb653603b" + sha256 cellar: :any_skip_relocation, x86_64_linux: "9ead9ea80f15498ed088c8b99bced2998e2320ab6d3b717bdf2d343075208c39" end depends_on "pkgconf" => :build From 00ab2e0f3503be683c1fc050129efb5cadccd1cf Mon Sep 17 00:00:00 2001 From: l5io <47201130+l5io@users.noreply.github.com> Date: Wed, 7 May 2025 08:41:37 -0500 Subject: [PATCH 0060/1364] mesheryctl 0.8.74 Created by https://github.com/mislav/bump-homebrew-formula-action --- Formula/m/mesheryctl.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/m/mesheryctl.rb b/Formula/m/mesheryctl.rb index 4e1398510133f..bee703ac022f4 100644 --- a/Formula/m/mesheryctl.rb +++ b/Formula/m/mesheryctl.rb @@ -2,8 +2,8 @@ class Mesheryctl < Formula desc "Command-line utility for Meshery, the cloud native management plane" homepage "https://meshery.io" url "https://github.com/meshery/meshery.git", - tag: "v0.8.73", - revision: "52d3f9827b7012b859b007e13064b152352a2791" + tag: "v0.8.74", + revision: "4597589757fae7d3675d37741529224e2040e29b" license "Apache-2.0" head "https://github.com/meshery/meshery.git", branch: "master" From ac8f2900e3c4e7a14d97ad8406b32254122a7dec Mon Sep 17 00:00:00 2001 From: botantony Date: Wed, 7 May 2025 15:51:58 +0200 Subject: [PATCH 0061/1364] sfml 3.0.1 Signed-off-by: botantony --- Formula/s/sfml.rb | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/Formula/s/sfml.rb b/Formula/s/sfml.rb index 255ff9afef2b1..0ffacd7ff09be 100644 --- a/Formula/s/sfml.rb +++ b/Formula/s/sfml.rb @@ -2,12 +2,18 @@ class Sfml < Formula # Don't update SFML until there's a corresponding CSFML release desc "Multi-media library with bindings for multiple languages" homepage "https://www.sfml-dev.org/" - url "https://www.sfml-dev.org/files/SFML-3.0.0-sources.zip" - sha256 "8cc41db46b59f07c44ecf21c74a0f956d37735dec9d90ff4522856cb162ba642" + url "https://github.com/SFML/SFML/archive/refs/tags/3.0.1.tar.gz" + sha256 "f99f71bb2f2608835b1a37e078512b75dd39d52b89e13e12246603a950da3c1f" license "Zlib" - revision 1 head "https://github.com/SFML/SFML.git", branch: "master" + # Exclude release candidates + livecheck do + url :stable + regex(/v?(\d+(?:\.\d+)+)/i) + strategy :github_releases + end + bottle do sha256 cellar: :any, arm64_sequoia: "841d0e1423e34e33e51de92e86b4467d6d5d22d3ee69a2f6860336d9fa36225b" sha256 cellar: :any, arm64_sonoma: "e24405eaf1b0ef6c425aab8b0facf4cdd8fdfb08c07910ae37e390c3cab6bed0" @@ -52,6 +58,7 @@ def install "-DBUILD_SHARED_LIBS=ON", "-DCMAKE_INSTALL_RPATH=#{rpath}", "-DSFML_INSTALL_PKGCONFIG_FILES=TRUE", + "-DSFML_PKGCONFIG_INSTALL_DIR=#{lib}/pkgconfig", "-DSFML_BUILD_DOC=TRUE", "-DSFML_USE_SYSTEM_DEPS=ON", ] From 34b2a97815c2bc75a42904b6bb2b4514331c9376 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 13:52:45 +0000 Subject: [PATCH 0062/1364] angular-cli 19.2.11 --- Formula/a/angular-cli.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/a/angular-cli.rb b/Formula/a/angular-cli.rb index 181a4ca7ca799..89615fc326ca4 100644 --- a/Formula/a/angular-cli.rb +++ b/Formula/a/angular-cli.rb @@ -1,8 +1,8 @@ class AngularCli < Formula desc "CLI tool for Angular" homepage "https://angular.dev/cli/" - url "https://registry.npmjs.org/@angular/cli/-/cli-19.2.10.tgz" - sha256 "b9af75473cd7a9fbe9312343f50f4fe9894dbc7ff62dcb389abf92ce208af489" + url "https://registry.npmjs.org/@angular/cli/-/cli-19.2.11.tgz" + sha256 "a4ea045fcecc07f2eb963627019982c964280994e39c43393f72713892ae48a1" license "MIT" bottle do From f992640267518002c7647c07264fcc9df2143178 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 13:59:00 +0000 Subject: [PATCH 0063/1364] cargo-binstall 1.12.4 --- Formula/c/cargo-binstall.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/cargo-binstall.rb b/Formula/c/cargo-binstall.rb index f70964d06cd5b..b91135d7900f1 100644 --- a/Formula/c/cargo-binstall.rb +++ b/Formula/c/cargo-binstall.rb @@ -1,8 +1,8 @@ class CargoBinstall < Formula desc "Binary installation for rust projects" homepage "https://github.com/cargo-bins/cargo-binstall" - url "https://github.com/cargo-bins/cargo-binstall/archive/refs/tags/v1.12.3.tar.gz" - sha256 "04c373890842eca59146398f319650e8a16632d497fee108132f597089505c13" + url "https://github.com/cargo-bins/cargo-binstall/archive/refs/tags/v1.12.4.tar.gz" + sha256 "f7dde9a0299c38073bc7a8fdb9a200885584ea0a97e1110f439948d11c955077" license "GPL-3.0-only" head "https://github.com/cargo-bins/cargo-binstall.git", branch: "main" From ec50ba268ad93e5043aebffb1c4c3d79931da0a5 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 14:02:06 +0000 Subject: [PATCH 0064/1364] cloudflare-wrangler 4.14.3 --- Formula/c/cloudflare-wrangler.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/cloudflare-wrangler.rb b/Formula/c/cloudflare-wrangler.rb index 6a7db7900f43a..fb05b1801da1e 100644 --- a/Formula/c/cloudflare-wrangler.rb +++ b/Formula/c/cloudflare-wrangler.rb @@ -1,8 +1,8 @@ class CloudflareWrangler < Formula desc "CLI tool for Cloudflare Workers" homepage "https://github.com/cloudflare/workers-sdk" - url "https://registry.npmjs.org/wrangler/-/wrangler-4.14.2.tgz" - sha256 "2b89beac1edf2f9d92f819b00b9fa59b33d03f7a91aa98b9e7a286ad996028b7" + url "https://registry.npmjs.org/wrangler/-/wrangler-4.14.3.tgz" + sha256 "69614607067fa46857cdca81cf38bf035cf5e78f0d10684a141522528691b962" license any_of: ["Apache-2.0", "MIT"] bottle do From af4ebead3887be20506ad51950f617166d4afbd3 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 14:04:30 +0000 Subject: [PATCH 0065/1364] mesheryctl: update 0.8.74 bottle. --- Formula/m/mesheryctl.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/m/mesheryctl.rb b/Formula/m/mesheryctl.rb index bee703ac022f4..c8064cfb87b59 100644 --- a/Formula/m/mesheryctl.rb +++ b/Formula/m/mesheryctl.rb @@ -10,13 +10,13 @@ class Mesheryctl < Formula no_autobump! because: :bumped_by_upstream bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "a308da8a34c23f3df305e6e07c48a6df7f193033cf43cf2c0418dfcc68fb8726" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "a308da8a34c23f3df305e6e07c48a6df7f193033cf43cf2c0418dfcc68fb8726" - sha256 cellar: :any_skip_relocation, arm64_ventura: "a308da8a34c23f3df305e6e07c48a6df7f193033cf43cf2c0418dfcc68fb8726" - sha256 cellar: :any_skip_relocation, sonoma: "687ac09bbd1d3107b330f7b6cb30a4607af40efc664ad5cb69117f0b28656827" - sha256 cellar: :any_skip_relocation, ventura: "687ac09bbd1d3107b330f7b6cb30a4607af40efc664ad5cb69117f0b28656827" - sha256 cellar: :any_skip_relocation, arm64_linux: "d8cf931411df3654a376f4aa1a9c37d3e2de0af4d9ddaef2fce39c270e6b18e9" - sha256 cellar: :any_skip_relocation, x86_64_linux: "271d6420004f9d51683e11d11ca2ac02c12aa2d6de57fa6f20f1a0b39e5180e3" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "05618a459452aa51d8599d63d43348e2ecf83ea5d6cebbb7a35448c988de777e" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "05618a459452aa51d8599d63d43348e2ecf83ea5d6cebbb7a35448c988de777e" + sha256 cellar: :any_skip_relocation, arm64_ventura: "05618a459452aa51d8599d63d43348e2ecf83ea5d6cebbb7a35448c988de777e" + sha256 cellar: :any_skip_relocation, sonoma: "b414c3737ec01d6e03b1375356a7d89b230237c333945acba863a36087ea0f70" + sha256 cellar: :any_skip_relocation, ventura: "b414c3737ec01d6e03b1375356a7d89b230237c333945acba863a36087ea0f70" + sha256 cellar: :any_skip_relocation, arm64_linux: "b6116a65a488706cc80b966f8043c7942527f5e0014dd6f088c5f576b3a32388" + sha256 cellar: :any_skip_relocation, x86_64_linux: "189fcfeb3d10ecb5b47303bcbbcd300625be652ecc80edf144793dafe9ff1b9c" end depends_on "go" => :build From 7624b6ec645854b39d339760e0651457a3667765 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 14:07:25 +0000 Subject: [PATCH 0066/1364] docker-compose 2.36.0 --- Formula/d/docker-compose.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/d/docker-compose.rb b/Formula/d/docker-compose.rb index 566a8f2c17523..db81ab329dacb 100644 --- a/Formula/d/docker-compose.rb +++ b/Formula/d/docker-compose.rb @@ -1,8 +1,8 @@ class DockerCompose < Formula desc "Isolated development environments using Docker" homepage "https://docs.docker.com/compose/" - url "https://github.com/docker/compose/archive/refs/tags/v2.35.1.tar.gz" - sha256 "999f5e3405c8da64f7296d8e90b6777a2ce7f3a582b4b1800a7a1c21dbebaf16" + url "https://github.com/docker/compose/archive/refs/tags/v2.36.0.tar.gz" + sha256 "bbc5de6d0da1c1f20877b6fb3102bf7f4f7ec4882cbc30e9fa9f61908fc9e748" license "Apache-2.0" head "https://github.com/docker/compose.git", branch: "main" From 53be846cb1892a48465f2bbf54cae019bdad0397 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 14:10:26 +0000 Subject: [PATCH 0067/1364] angular-cli: update 19.2.11 bottle. --- Formula/a/angular-cli.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/a/angular-cli.rb b/Formula/a/angular-cli.rb index 89615fc326ca4..d5e07ede53bc9 100644 --- a/Formula/a/angular-cli.rb +++ b/Formula/a/angular-cli.rb @@ -6,13 +6,13 @@ class AngularCli < Formula license "MIT" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "7dd3916a0e9ecfc0f2c9eaa6bc46437594f23b6a090bd0562286ce632c6ba82e" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "7dd3916a0e9ecfc0f2c9eaa6bc46437594f23b6a090bd0562286ce632c6ba82e" - sha256 cellar: :any_skip_relocation, arm64_ventura: "7dd3916a0e9ecfc0f2c9eaa6bc46437594f23b6a090bd0562286ce632c6ba82e" - sha256 cellar: :any_skip_relocation, sonoma: "20ef2c30fa3a5c534c1368e89e20f3eba21044a2f2923d759bc2a48952d79aa4" - sha256 cellar: :any_skip_relocation, ventura: "20ef2c30fa3a5c534c1368e89e20f3eba21044a2f2923d759bc2a48952d79aa4" - sha256 cellar: :any_skip_relocation, arm64_linux: "7dd3916a0e9ecfc0f2c9eaa6bc46437594f23b6a090bd0562286ce632c6ba82e" - sha256 cellar: :any_skip_relocation, x86_64_linux: "7dd3916a0e9ecfc0f2c9eaa6bc46437594f23b6a090bd0562286ce632c6ba82e" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "25de4fbf36ac9bc7c79f882d15104806856418bb51a2913106e6dacf542e486f" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "25de4fbf36ac9bc7c79f882d15104806856418bb51a2913106e6dacf542e486f" + sha256 cellar: :any_skip_relocation, arm64_ventura: "25de4fbf36ac9bc7c79f882d15104806856418bb51a2913106e6dacf542e486f" + sha256 cellar: :any_skip_relocation, sonoma: "d8054044964da66f845cf73c72d70163a1ed33497c772ce943390da0995d0237" + sha256 cellar: :any_skip_relocation, ventura: "d8054044964da66f845cf73c72d70163a1ed33497c772ce943390da0995d0237" + sha256 cellar: :any_skip_relocation, arm64_linux: "25de4fbf36ac9bc7c79f882d15104806856418bb51a2913106e6dacf542e486f" + sha256 cellar: :any_skip_relocation, x86_64_linux: "25de4fbf36ac9bc7c79f882d15104806856418bb51a2913106e6dacf542e486f" end depends_on "node" From 0b5b0c0f5a0623dcf5ea9a1e7efe8db05f996717 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 14:18:12 +0000 Subject: [PATCH 0068/1364] goenv 2.2.23 --- Formula/g/goenv.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/g/goenv.rb b/Formula/g/goenv.rb index e29266ff152af..fdd8b94567b31 100644 --- a/Formula/g/goenv.rb +++ b/Formula/g/goenv.rb @@ -1,8 +1,8 @@ class Goenv < Formula desc "Go version management" homepage "https://github.com/go-nv/goenv" - url "https://github.com/go-nv/goenv/archive/refs/tags/2.2.22.tar.gz" - sha256 "7508de421dcfd26ef9f3f557fca3a7f82454aa13555d401c1c9e5c8f25234d14" + url "https://github.com/go-nv/goenv/archive/refs/tags/2.2.23.tar.gz" + sha256 "1377c6e75e48e92932f65f41f80dad59307eee2d1f644bdd42fc45453517ce21" license "MIT" version_scheme 1 head "https://github.com/go-nv/goenv.git", branch: "master" From b10d9285db9ee2ecb22adfde746964b220c9376a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 14:23:51 +0000 Subject: [PATCH 0069/1364] jfrog-cli 2.75.1 --- Formula/j/jfrog-cli.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/j/jfrog-cli.rb b/Formula/j/jfrog-cli.rb index 7298bb75ad592..284789e7e62a6 100644 --- a/Formula/j/jfrog-cli.rb +++ b/Formula/j/jfrog-cli.rb @@ -1,8 +1,8 @@ class JfrogCli < Formula desc "Command-line interface for JFrog products" homepage "https://www.jfrog.com/confluence/display/CLI/JFrog+CLI" - url "https://github.com/jfrog/jfrog-cli/archive/refs/tags/v2.75.0.tar.gz" - sha256 "f6713c141ab8f659d717990f92c4b41e7c0adbaec5160e2fbacf4cfab24422cf" + url "https://github.com/jfrog/jfrog-cli/archive/refs/tags/v2.75.1.tar.gz" + sha256 "ec3e9e87d89163afbeaaf4019510c24db3b9614599e4ff45a7af1d60cb015a48" license "Apache-2.0" head "https://github.com/jfrog/jfrog-cli.git", branch: "v2" From 07eaa0edb41b70c1f7afa8c0a2eefa6e17bf5aae Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 14:24:47 +0000 Subject: [PATCH 0070/1364] jsonnet 0.21.0 --- Formula/j/jsonnet.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/j/jsonnet.rb b/Formula/j/jsonnet.rb index 0e5dcb32f74b4..e4c40bd401d43 100644 --- a/Formula/j/jsonnet.rb +++ b/Formula/j/jsonnet.rb @@ -1,8 +1,8 @@ class Jsonnet < Formula desc "Domain specific configuration language for defining JSON data" homepage "https://jsonnet.org/" - url "https://github.com/google/jsonnet/archive/refs/tags/v0.20.0.tar.gz" - sha256 "77bd269073807731f6b11ff8d7c03e9065aafb8e4d038935deb388325e52511b" + url "https://github.com/google/jsonnet/archive/refs/tags/v0.21.0.tar.gz" + sha256 "a12ebca72e43e7061ffe4ef910e572b95edd7778a543d6bf85f6355bd290300e" license "Apache-2.0" head "https://github.com/google/jsonnet.git", branch: "master" From dffcbdf3a57389ac28869d1b8958f1a0214ebad2 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 14:25:38 +0000 Subject: [PATCH 0071/1364] keploy 2.6.2 --- Formula/k/keploy.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/k/keploy.rb b/Formula/k/keploy.rb index c482c90c96fef..55acbec63e5ae 100644 --- a/Formula/k/keploy.rb +++ b/Formula/k/keploy.rb @@ -1,8 +1,8 @@ class Keploy < Formula desc "Testing Toolkit creates test-cases and data mocks from API calls, DB queries" homepage "https://keploy.io" - url "https://github.com/keploy/keploy/archive/refs/tags/v2.6.1.tar.gz" - sha256 "247afb1bb7976f4e7ec3cf66bf6695470c76c071abf34d080009d0afdf171b7e" + url "https://github.com/keploy/keploy/archive/refs/tags/v2.6.2.tar.gz" + sha256 "3272d8941f7c03efb854f1a00f2dce537c7d2993bc49ff60e201e4ac98daca65" license "Apache-2.0" head "https://github.com/keploy/keploy.git", branch: "main" From 04b0a59767e7edaf39472c2ad24e9f6b1277fa16 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 14:41:15 +0000 Subject: [PATCH 0072/1364] nexus 3.80.0-06 --- Formula/n/nexus.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/n/nexus.rb b/Formula/n/nexus.rb index e64d2d07646b3..41a5b3670dcfc 100644 --- a/Formula/n/nexus.rb +++ b/Formula/n/nexus.rb @@ -2,8 +2,8 @@ class Nexus < Formula desc "Repository manager for binary software components" homepage "https://www.sonatype.com/" url "https://github.com/sonatype/nexus-public.git", - tag: "release-3.79.1-04", - revision: "f87adc0e74e44bc26366a851ca96d16922f6f175" + tag: "release-3.80.0-06", + revision: "74aa87dcd43439ef2b69d0a5e49d5522b7944261" license "EPL-1.0" # As of writing, upstream is publishing both v2 and v3 releases. The "latest" From 4754f29cb217f911482720363988afef5271f036 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 14:09:52 +0000 Subject: [PATCH 0073/1364] dstack 0.19.8 --- Formula/d/dstack.rb | 33 +++++++++++++++++++-------------- 1 file changed, 19 insertions(+), 14 deletions(-) diff --git a/Formula/d/dstack.rb b/Formula/d/dstack.rb index 3f4846f0e7e1e..abbcc1c13c51b 100644 --- a/Formula/d/dstack.rb +++ b/Formula/d/dstack.rb @@ -3,8 +3,8 @@ class Dstack < Formula desc "ML workflow orchestration system designed for reproducibility and collaboration" homepage "https://dstack.ai/" - url "https://files.pythonhosted.org/packages/35/53/95e1ca856291a61a66f5482a9ada99570bfac7f9bbd613c0bd1a30b317dd/dstack-0.19.7.tar.gz" - sha256 "fe6e7c47ffc6ad8f039e68cbfeb802b0fad1a5d69389a01e5bb79b70bab5d4b7" + url "https://files.pythonhosted.org/packages/c2/05/9f2acd1c33b6521aa292042e1ab9d7468ba9d894fdfb62db962ea668a931/dstack-0.19.8.tar.gz" + sha256 "f2550ba218e6df7fe0f1aefd8799b83d32c2d30669cb2234e0d3db85e525dd4e" license "MPL-2.0" bottle do @@ -82,13 +82,13 @@ class Dstack < Formula end resource "azure-core" do - url "https://files.pythonhosted.org/packages/75/aa/7c9db8edd626f1a7d99d09ef7926f6f4fb34d5f9fa00dc394afdfe8e2a80/azure_core-1.33.0.tar.gz" - sha256 "f367aa07b5e3005fec2c1e184b882b0b039910733907d001c20fb08ebb8c0eb9" + url "https://files.pythonhosted.org/packages/c9/29/ff7a519a315e41c85bab92a7478c6acd1cf0b14353139a08caee4c691f77/azure_core-1.34.0.tar.gz" + sha256 "bdb544989f246a0ad1c85d72eeb45f2f835afdcbc5b45e43f0dbde7461c81ece" end resource "azure-identity" do - url "https://files.pythonhosted.org/packages/b5/a1/f1a683672e7a88ea0e3119f57b6c7843ed52650fdcac8bfa66ed84e86e40/azure_identity-1.21.0.tar.gz" - sha256 "ea22ce6e6b0f429bc1b8d9212d5b9f9877bd4c82f1724bfa910760612c07a9a6" + url "https://files.pythonhosted.org/packages/58/8e/1b5916f5e1696bf05b009cf7d41383cea54aa8536d4a4f6f88cca15eb6a4/azure_identity-1.22.0.tar.gz" + sha256 "c8f5ef23e5295c2fa300c984dd9f5e1fe43503fc25c121c37ff6a15e39b800b9" end resource "azure-mgmt-authorization" do @@ -106,6 +106,11 @@ class Dstack < Formula sha256 "380ae3dfa3639f4a5c246a7db7ed2d08374e88230fd0da3eb899f7c11e5c441a" end + resource "azure-mgmt-msi" do + url "https://files.pythonhosted.org/packages/77/d7/4ef788fb8e0f90a3fe5875b05dcef535ad4b4a766372af82870120cd5dd3/azure-mgmt-msi-7.0.0.zip" + sha256 "72d46c9a62783ec4eab619be9d1b78ffebbdaa164d406fd303f16303f37256b2" + end + resource "azure-mgmt-network" do url "https://files.pythonhosted.org/packages/bf/aa/bf464fd70eefa8f13f5e5b45d021416d5c9c8d79eabb96f4a673fe91346d/azure_mgmt_network-27.0.0.tar.gz" sha256 "5c1c61d8bb13ad40f788a26fd7569c1d9d60eb2e4cb19c2a1b5d9c02ae862316" @@ -132,13 +137,13 @@ class Dstack < Formula end resource "boto3" do - url "https://files.pythonhosted.org/packages/e9/1c/4f7233a257d0981bc3f5b4bef80be0698454b87097927aee75ba3cc35fab/boto3-1.38.6.tar.gz" - sha256 "9d764c402cadd112020812b9621a567058aa29d41a491d2d04b070be19ad5173" + url "https://files.pythonhosted.org/packages/5f/26/c4a2f1c64efb5ae6b47b94cb543282ab5770aa2c4562aba6934af628cf76/boto3-1.38.10.tar.gz" + sha256 "af4c78a3faa1a56cbaeb9e06cd5580772138be519fc6e740b81db586d5d1910c" end resource "botocore" do - url "https://files.pythonhosted.org/packages/a8/12/416080d232c677da31f259b24acb0557d9423325565bafaec80ef5bd9c4f/botocore-1.38.6.tar.gz" - sha256 "07e0721f6b1758183ed425f481a7af79e4897a3c02c2c486e101c576aee7377c" + url "https://files.pythonhosted.org/packages/c0/18/c03b763c831e269d76a7c0fcba53802f99bf68f8d4530af672ae96a6d343/botocore-1.38.10.tar.gz" + sha256 "c531c13803e0fad5b395c5ccab4c11ac88acfccde71c9b998df6fa841392a8fc" end resource "cached-classproperty" do @@ -152,8 +157,8 @@ class Dstack < Formula end resource "charset-normalizer" do - url "https://files.pythonhosted.org/packages/16/b0/572805e227f01586461c80e0fd25d65a2115599cc9dad142fee4b747c357/charset_normalizer-3.4.1.tar.gz" - sha256 "44251f18cd68a75b56585dd00dae26183e102cd5e0f9f1466e6df5da2ed64ea3" + url "https://files.pythonhosted.org/packages/e4/33/89c2ced2b67d1c2a61c19c6751aa8902d46ce3dacb23600a283619f5a12d/charset_normalizer-3.4.2.tar.gz" + sha256 "5baececa9ecba31eff645232d59845c07aa030f0c81ee70184a90d35099a0e63" end resource "click" do @@ -207,8 +212,8 @@ class Dstack < Formula end resource "google-auth" do - url "https://files.pythonhosted.org/packages/cb/8e/8f45c9a32f73e786e954b8f9761c61422955d23c45d1e8c347f9b4b59e8e/google_auth-2.39.0.tar.gz" - sha256 "73222d43cdc35a3aeacbfdcaf73142a97839f10de930550d89ebfe1d0a00cde7" + url "https://files.pythonhosted.org/packages/94/a5/38c21d0e731bb716cffcf987bd9a3555cb95877ab4b616cfb96939933f20/google_auth-2.40.1.tar.gz" + sha256 "58f0e8416a9814c1d86c9b7f6acf6816b51aba167b2c76821965271bac275540" end resource "google-auth-httplib2" do From 95f67ca7905e83773445d87401866391b513801a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 14:54:23 +0000 Subject: [PATCH 0074/1364] safety 3.5.0 --- Formula/s/safety.rb | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/Formula/s/safety.rb b/Formula/s/safety.rb index 70dbef16e4ed0..b765ef32880d6 100644 --- a/Formula/s/safety.rb +++ b/Formula/s/safety.rb @@ -3,10 +3,9 @@ class Safety < Formula desc "Checks Python dependencies for known vulnerabilities and suggests remediations" homepage "https://safetycli.com/product/safety-cli" - url "https://files.pythonhosted.org/packages/52/fc/fcb27a9d0c2689d642cf0d3dcb6199c1a346d575e82eabf0307139d5f15c/safety-3.4.0.tar.gz" - sha256 "fc8763166616751c468bf401e66bdf6a87ea5f544c8b32679d6ba4c48c33c679" + url "https://files.pythonhosted.org/packages/c2/31/e4875edebb8fd5885ff8e52d0522c44a4d9bc2abe26f11225b8e64b31868/safety-3.5.0.tar.gz" + sha256 "7223af388bde5323867eca5495f9817746289be9fd5b1896f168dc7082ea8ff1" license "MIT" - revision 1 head "https://github.com/pyupio/safety.git", branch: "main" bottle do @@ -41,8 +40,8 @@ class Safety < Formula end resource "charset-normalizer" do - url "https://files.pythonhosted.org/packages/16/b0/572805e227f01586461c80e0fd25d65a2115599cc9dad142fee4b747c357/charset_normalizer-3.4.1.tar.gz" - sha256 "44251f18cd68a75b56585dd00dae26183e102cd5e0f9f1466e6df5da2ed64ea3" + url "https://files.pythonhosted.org/packages/e4/33/89c2ced2b67d1c2a61c19c6751aa8902d46ce3dacb23600a283619f5a12d/charset_normalizer-3.4.2.tar.gz" + sha256 "5baececa9ecba31eff645232d59845c07aa030f0c81ee70184a90d35099a0e63" end resource "click" do @@ -86,8 +85,8 @@ class Safety < Formula end resource "joblib" do - url "https://files.pythonhosted.org/packages/64/33/60135848598c076ce4b231e1b1895170f45fbcaeaa2c9d5e38b04db70c35/joblib-1.4.2.tar.gz" - sha256 "2382c5816b2636fbd20a09e0f4e9dad4736765fdfb7dca582943b9c1366b3f0e" + url "https://files.pythonhosted.org/packages/30/08/8bd4a0250247861420a040b33ccf42f43c426ac91d99405374ef117e5872/joblib-1.5.0.tar.gz" + sha256 "d8757f955389a3dd7a23152e43bc297c2e0c2d3060056dad0feefc88a06939b5" end resource "markdown-it-py" do @@ -166,8 +165,8 @@ class Safety < Formula end resource "setuptools" do - url "https://files.pythonhosted.org/packages/bb/71/b6365e6325b3290e14957b2c3a804a529968c77a049b2ed40c095f749707/setuptools-79.0.1.tar.gz" - sha256 "128ce7b8f33c3079fd1b067ecbb4051a66e8526e7b65f6cec075dfc650ddfa88" + url "https://files.pythonhosted.org/packages/70/dc/3976b322de9d2e87ed0007cf04cc7553969b6c7b3f48a565d0333748fbcd/setuptools-80.3.1.tar.gz" + sha256 "31e2c58dbb67c99c289f51c16d899afedae292b978f8051efaf6262d8212f927" end resource "shellingham" do @@ -196,8 +195,8 @@ class Safety < Formula end resource "typer" do - url "https://files.pythonhosted.org/packages/8b/6f/3991f0f1c7fcb2df31aef28e0594d8d54b05393a0e4e34c65e475c2a5d41/typer-0.15.2.tar.gz" - sha256 "ab2fab47533a813c49fe1f16b1a370fd5819099c00b119e0633df65f22144ba5" + url "https://files.pythonhosted.org/packages/98/1a/5f36851f439884bcfe8539f6a20ff7516e7b60f319bbaf69a90dc35cc2eb/typer-0.15.3.tar.gz" + sha256 "818873625d0569653438316567861899f7e9972f2e6e0c16dab608345ced713c" end resource "typing-extensions" do From 1f31c651efea9619eafb0f2c2c013e5fe31996aa Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 14:54:49 +0000 Subject: [PATCH 0075/1364] scala 3.7.0 --- Formula/s/scala.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/s/scala.rb b/Formula/s/scala.rb index 2547f2d6586e8..6b37443bf8475 100644 --- a/Formula/s/scala.rb +++ b/Formula/s/scala.rb @@ -1,8 +1,8 @@ class Scala < Formula desc "JVM-based programming language" homepage "https://dotty.epfl.ch/" - url "https://github.com/scala/scala3/releases/download/3.6.4/scala3-3.6.4.tar.gz" - sha256 "23c269abf69e942272019cef36ae7f41b7dd0f4324e663eecd30f155d908c4a5" + url "https://github.com/scala/scala3/releases/download/3.7.0/scala3-3.7.0.tar.gz" + sha256 "4f6cc6aafd974a3740dedd05689be575cb61829811acc4f2891ce796040e9811" license "Apache-2.0" livecheck do From 07e42b15ac2d1e201f3fbd6d031427900492f5a2 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 14:58:21 +0000 Subject: [PATCH 0076/1364] sfml: update 3.0.1 bottle. --- Formula/s/sfml.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/s/sfml.rb b/Formula/s/sfml.rb index 0ffacd7ff09be..ab513fc39ab0f 100644 --- a/Formula/s/sfml.rb +++ b/Formula/s/sfml.rb @@ -15,13 +15,13 @@ class Sfml < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "841d0e1423e34e33e51de92e86b4467d6d5d22d3ee69a2f6860336d9fa36225b" - sha256 cellar: :any, arm64_sonoma: "e24405eaf1b0ef6c425aab8b0facf4cdd8fdfb08c07910ae37e390c3cab6bed0" - sha256 cellar: :any, arm64_ventura: "70ebb93655fbae8872a022eeb87261e309a156d2b3b6391dc68b6fefd0722018" - sha256 cellar: :any, sonoma: "56f6a53b8f21d6c5e107af718c21015f7bd4d3ef7f07ce78c5d65a049dd1ae0e" - sha256 cellar: :any, ventura: "cfedbdb752f826191781241bcbeb9e892e33ce1002728c4a6ddd21b3c82ffbe9" - sha256 cellar: :any_skip_relocation, arm64_linux: "a1c89bbd1723ddedf2594df0889ef7657090d15bcedff84da3b6a571a5710e31" - sha256 cellar: :any_skip_relocation, x86_64_linux: "48d843038a6686959a999821bbdb94ec35f99de5fd1eb66ca3d38c546f0eb85e" + sha256 cellar: :any, arm64_sequoia: "219438b2d39684b110414e0c199ef9c303bb14ea442d5de6aed2805564c2525e" + sha256 cellar: :any, arm64_sonoma: "41e3ddc554afb5b505cb036672539652b5981591fb62d02797c16fac39217f69" + sha256 cellar: :any, arm64_ventura: "6f124cf63ea4944b4f395a06848b6b6d8e47f2e029dc029814271d4e8a38215a" + sha256 cellar: :any, sonoma: "f56186107e571de0d38538cb941ae6598636513c575672e24ef4641e9038ac1f" + sha256 cellar: :any, ventura: "3351ec1251bbc1c8b5dbac9c20807e70e32df6581e69b3ea1f821224eb3933e5" + sha256 cellar: :any_skip_relocation, arm64_linux: "af868781ca4dabd34f9ee0a16a25dd414184fd2e4373c9f01bd6bbc65b7bcc34" + sha256 cellar: :any_skip_relocation, x86_64_linux: "fee6dff9705e907632542b1279f71c880f676cf235a5a3aba457a235c23fd709" end depends_on "cmake" => :build From 97adcc59b1eabe303495023683ec7b9727626ddc Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 14:58:49 +0000 Subject: [PATCH 0077/1364] cargo-binstall: update 1.12.4 bottle. --- Formula/c/cargo-binstall.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/cargo-binstall.rb b/Formula/c/cargo-binstall.rb index b91135d7900f1..f914d3c6a746d 100644 --- a/Formula/c/cargo-binstall.rb +++ b/Formula/c/cargo-binstall.rb @@ -15,13 +15,13 @@ class CargoBinstall < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "d4daf4662ade31ad872e70ecafdfcdba1bef0ec9bc10b18371335683ab3281e9" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "fede77cd45423c1378a35907c7c8b161c6ab25847ae23d54d65ede1112ed8949" - sha256 cellar: :any_skip_relocation, arm64_ventura: "2770fe3132afdcef618d0d9146f9087e5425356a066eea2178bb823825361d0b" - sha256 cellar: :any_skip_relocation, sonoma: "9f3524935dbcf003adeac48a155722a696649e976201b69121fcb4bc41f2de9e" - sha256 cellar: :any_skip_relocation, ventura: "e5f4b7fc830cfd7b8d585555c6e8095d6d1ac7094812825ab3daf25395ab5a41" - sha256 cellar: :any_skip_relocation, arm64_linux: "2ebd6dca5d46ccae3ad4e6b66416a69b57cc1522e16cb0c1368eb56de288db2c" - sha256 cellar: :any_skip_relocation, x86_64_linux: "9afd411c700b63581e2be21e32fee46e9ad507a3f756cb0160676241cfc21348" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "383c23c37d669f05e190056d63f1434fd26f92b5e6223461273e3aa56c845514" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "8ae41307b02150eb726282b54c8f2c75fab48877d602883fb849de56708909e2" + sha256 cellar: :any_skip_relocation, arm64_ventura: "76d84b2a9f8dbc469ad323762e807a68f544c54e88db8fb49f89301e0a76cb99" + sha256 cellar: :any_skip_relocation, sonoma: "da678704285a3319fbfccc308f58bab7f7966e9c7c9650e90b8b42e2fd3062c6" + sha256 cellar: :any_skip_relocation, ventura: "4fbaab703a634f5ef0269d314447c71581753a3b72d564db2fdbc43f5c70c903" + sha256 cellar: :any_skip_relocation, arm64_linux: "c6f284faeaabdde88e82a96889b87546945459e20e70b569e170f0a017607720" + sha256 cellar: :any_skip_relocation, x86_64_linux: "0ebb5f83a3b761633f053fcc22c42113f4634174175c3f9d398d86e10f2678ce" end depends_on "rust" => :build From 0da38375726b05d8de6611029f0108a4aa640daf Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 14:58:50 +0000 Subject: [PATCH 0078/1364] jfrog-cli: update 2.75.1 bottle. --- Formula/j/jfrog-cli.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/j/jfrog-cli.rb b/Formula/j/jfrog-cli.rb index 284789e7e62a6..d3ef42f8cd51d 100644 --- a/Formula/j/jfrog-cli.rb +++ b/Formula/j/jfrog-cli.rb @@ -15,12 +15,12 @@ class JfrogCli < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "7ad1d4c1a4ae2e4a62152622275dd9586cec2bb06a89bf14fa2ba5945ffe8565" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "7ad1d4c1a4ae2e4a62152622275dd9586cec2bb06a89bf14fa2ba5945ffe8565" - sha256 cellar: :any_skip_relocation, arm64_ventura: "7ad1d4c1a4ae2e4a62152622275dd9586cec2bb06a89bf14fa2ba5945ffe8565" - sha256 cellar: :any_skip_relocation, sonoma: "41e3d4e5d6373329f6ab479de720fff96ddd431d096a532b40a377f15a4e0595" - sha256 cellar: :any_skip_relocation, ventura: "41e3d4e5d6373329f6ab479de720fff96ddd431d096a532b40a377f15a4e0595" - sha256 cellar: :any_skip_relocation, x86_64_linux: "7c8f77b878bdc69ca2e0141c9c378ef4b3c2d39c74774add2018b428ae295972" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "2bd715f6e84a63cb4fb1c8709f9d37d6aa2b4c17c92c5ca2c72df5af75924fd4" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "2bd715f6e84a63cb4fb1c8709f9d37d6aa2b4c17c92c5ca2c72df5af75924fd4" + sha256 cellar: :any_skip_relocation, arm64_ventura: "2bd715f6e84a63cb4fb1c8709f9d37d6aa2b4c17c92c5ca2c72df5af75924fd4" + sha256 cellar: :any_skip_relocation, sonoma: "409623dbbae34169b7e14c8ea2d3c146227f73c7df2cc85f2dc4c422e442e02c" + sha256 cellar: :any_skip_relocation, ventura: "409623dbbae34169b7e14c8ea2d3c146227f73c7df2cc85f2dc4c422e442e02c" + sha256 cellar: :any_skip_relocation, x86_64_linux: "a5299524cc36404cf42b169e1b8bb8d335d3843d70c2d7cdcd18083cf9e3a6f3" end depends_on "go" => :build From 6e71fd1be416eb184f13f5bf018833ed498f2b1c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 14:58:51 +0000 Subject: [PATCH 0079/1364] docker-compose: update 2.36.0 bottle. --- Formula/d/docker-compose.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/d/docker-compose.rb b/Formula/d/docker-compose.rb index db81ab329dacb..c6d16381058ae 100644 --- a/Formula/d/docker-compose.rb +++ b/Formula/d/docker-compose.rb @@ -15,12 +15,12 @@ class DockerCompose < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "6a079c55b6538a2e858e072dac52ff048c9df7b70acfade6b0e5a8339337b095" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "ba32cd9bb7761d9ad34a36c7dcf8d1aecf725dbedc02f93f5a53d871999eeb04" - sha256 cellar: :any_skip_relocation, arm64_ventura: "52107606093f3e6ecd4005c9f7264a81e88f6c41d2e6dbaa27b6bddbb4250cbd" - sha256 cellar: :any_skip_relocation, sonoma: "ca9c64fcc38fde7bbeb1577b4cb5277ae4c8e6513bd9ca3f096b43c991870206" - sha256 cellar: :any_skip_relocation, ventura: "68fdb4fe62f06b556649a375f43efcdd65b9998fee94c069f901fd87e36dfdda" - sha256 cellar: :any_skip_relocation, x86_64_linux: "e707513799718760ed20a5a40d1766bd07bde7b43fd48d486d86488f122d4bf6" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "29cbac67c636fd303d42176136455c324ed52c4ecb9e5ddac00604b2ffac0431" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "4a2742978b20a1fb9f2c75d309ee54b15cfc77c9abb200acdce32c7eefb3ffca" + sha256 cellar: :any_skip_relocation, arm64_ventura: "c1c7539130b19035663fb6800b02f89e2cc9039186076d625c073928a954d9d6" + sha256 cellar: :any_skip_relocation, sonoma: "27095d258e0b2aa3ebf7a458488169a8e8357222f500765fdd3c6477ad301a09" + sha256 cellar: :any_skip_relocation, ventura: "01b0ac514c54db5992e259f05bdf9c1afea65e5374983afc33c600ba6981e6a6" + sha256 cellar: :any_skip_relocation, x86_64_linux: "fc3f306bb07a40097847f6876264cfefdeea3ef784f4d23c3d066c5168b61a7f" end depends_on "go" => :build From 7edb750ad78248bc1e41f17eded430f95ab4f13a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 14:58:59 +0000 Subject: [PATCH 0080/1364] jsonnet: update 0.21.0 bottle. --- Formula/j/jsonnet.rb | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/Formula/j/jsonnet.rb b/Formula/j/jsonnet.rb index e4c40bd401d43..d4ed64139e618 100644 --- a/Formula/j/jsonnet.rb +++ b/Formula/j/jsonnet.rb @@ -12,17 +12,13 @@ class Jsonnet < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "6fb8cda3b694eda4c0a8869eb3c87e06007c4ec85d6eadd0bcc5bc3d13c0db05" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "ccaf3138589f7378e7fbcf5fb30a2fc9c2d5ac0a6e2caacd50f69e5918d1719b" - sha256 cellar: :any_skip_relocation, arm64_ventura: "03ec1379d7d5378af1ac82ba694e6de7bbc4cecd2f3ef6c764319289e0543dd9" - sha256 cellar: :any_skip_relocation, arm64_monterey: "7257a1daa4372d40f359b43243d30954367e52b162ec27893175fdb1036602ad" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "d3093c17684dda91a5b4bff1096fea38eaa7d5167326e93143b32afb1ae090cc" - sha256 cellar: :any_skip_relocation, sonoma: "1e5b28337c0272c443e96387ce6f339fed9aa0b2a064118df6b42840ea7f7292" - sha256 cellar: :any_skip_relocation, ventura: "0e43c89b55909edbe4d9afe85c6da8e6ae31e148ec91ff494eb7e4a3115fd4bb" - sha256 cellar: :any_skip_relocation, monterey: "08c2a197781b175611f446838028d3a9c23982c0d6031af98cf6408ebc24a6a8" - sha256 cellar: :any_skip_relocation, big_sur: "468ec8c830e8cb239534389e54eb086a78b5b4b9261ae0a174a2ad40cfb792d2" - sha256 cellar: :any_skip_relocation, arm64_linux: "2a73f0fa12e38e9ce011303f8e79b90447e14d17fb0dcd0eaa052507325116e9" - sha256 cellar: :any_skip_relocation, x86_64_linux: "3c93bb362a5b6c22590afb2ba44ab597ae623cddc650d8bc1a65eae169c43105" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "5d833d4f2134eb94e5062bf1286da9b53e8054e32710f8b6677de914b92b83e9" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "d5b11fba2474e6e24a697467b232c5cebb6721f71892996162fa138e79a0188b" + sha256 cellar: :any_skip_relocation, arm64_ventura: "9d0d5b81bb0fe59cf6dbea23813ef6f069d25cec0138a8cb4710657dbf89b57c" + sha256 cellar: :any_skip_relocation, sonoma: "d779b7d3f5968eef74405f45d0fa213246baff6167d5b30332ae58c0e40ae433" + sha256 cellar: :any_skip_relocation, ventura: "938b8bfa969c79fc6112292dcd90ee25d6ea4b4fe3472aeb33718ca92ec6d9b2" + sha256 cellar: :any_skip_relocation, arm64_linux: "d1dbbf7eef0126d88c484d629eb06569f318808e133120cf98478c31befdc8f6" + sha256 cellar: :any_skip_relocation, x86_64_linux: "0d40920e6c3486ac5d0e52355bd7ad9709439be11676e791e6b5eb31881dca4e" end conflicts_with "go-jsonnet", because: "both install binaries with the same name" From 611efa8ce05a81bf59f840d9e3f60f3af04a3b17 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 14:59:04 +0000 Subject: [PATCH 0081/1364] cloudflare-wrangler: update 4.14.3 bottle. --- Formula/c/cloudflare-wrangler.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/cloudflare-wrangler.rb b/Formula/c/cloudflare-wrangler.rb index fb05b1801da1e..31414d53743e0 100644 --- a/Formula/c/cloudflare-wrangler.rb +++ b/Formula/c/cloudflare-wrangler.rb @@ -6,13 +6,13 @@ class CloudflareWrangler < Formula license any_of: ["Apache-2.0", "MIT"] bottle do - sha256 cellar: :any, arm64_sequoia: "690817a724fd21490950ec12cbcf5da4d017b750e9f3303b7c56b63684241f43" - sha256 cellar: :any, arm64_sonoma: "690817a724fd21490950ec12cbcf5da4d017b750e9f3303b7c56b63684241f43" - sha256 cellar: :any, arm64_ventura: "690817a724fd21490950ec12cbcf5da4d017b750e9f3303b7c56b63684241f43" - sha256 sonoma: "05569bc80ae87e53243bf9ac9caf9fc235f154a466a7a19f3eff3f4c2959721d" - sha256 ventura: "05569bc80ae87e53243bf9ac9caf9fc235f154a466a7a19f3eff3f4c2959721d" - sha256 cellar: :any_skip_relocation, arm64_linux: "3112f2e38f674a04f2c449e09b675f00bce0baaf42b76cd2233b026d7799352b" - sha256 cellar: :any_skip_relocation, x86_64_linux: "19f2b9acd0e2a78e5f09996f9e1dcc6d04ef4f1f9ed5d15ac8c1019be366cdea" + sha256 cellar: :any, arm64_sequoia: "66bb24a9eb47e875f68f57c25e4f3189e7b6c9b20c8e622a0f448b1b13aff2ff" + sha256 cellar: :any, arm64_sonoma: "66bb24a9eb47e875f68f57c25e4f3189e7b6c9b20c8e622a0f448b1b13aff2ff" + sha256 cellar: :any, arm64_ventura: "66bb24a9eb47e875f68f57c25e4f3189e7b6c9b20c8e622a0f448b1b13aff2ff" + sha256 sonoma: "b322d9fb25521ee8362903b47ca980dc26354b61b120cd5ae25fc08995eb9dc4" + sha256 ventura: "b322d9fb25521ee8362903b47ca980dc26354b61b120cd5ae25fc08995eb9dc4" + sha256 cellar: :any_skip_relocation, arm64_linux: "080f315e669859c03033a846d16774fa5244a89dce483e686e09e8a26e99781e" + sha256 cellar: :any_skip_relocation, x86_64_linux: "d079bc64dc1430ecc17042fdbd56853495cbb19c80cc725dc6b4f9b537467bb8" end depends_on "node" From 43aa2da908fda3c5a3fb70b0fa56e6fe6420fbaf Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 14:59:07 +0000 Subject: [PATCH 0082/1364] keploy: update 2.6.2 bottle. --- Formula/k/keploy.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/k/keploy.rb b/Formula/k/keploy.rb index 55acbec63e5ae..165224dbe674e 100644 --- a/Formula/k/keploy.rb +++ b/Formula/k/keploy.rb @@ -7,12 +7,12 @@ class Keploy < Formula head "https://github.com/keploy/keploy.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "5a4954ace48e3658bfda4e8c4ab76851634929ad62f66fce8eb0caf8d7b077ad" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "5a4954ace48e3658bfda4e8c4ab76851634929ad62f66fce8eb0caf8d7b077ad" - sha256 cellar: :any_skip_relocation, arm64_ventura: "5a4954ace48e3658bfda4e8c4ab76851634929ad62f66fce8eb0caf8d7b077ad" - sha256 cellar: :any_skip_relocation, sonoma: "689f8d3be9629194e6ec4b8336d58da067ee92439b205d4ac2cfce8db06d540d" - sha256 cellar: :any_skip_relocation, ventura: "689f8d3be9629194e6ec4b8336d58da067ee92439b205d4ac2cfce8db06d540d" - sha256 cellar: :any_skip_relocation, x86_64_linux: "bdb6d1db4d68b3e3c6e587f4950125997be7c22bb6c170c79bc5b9cd013a0b5c" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "eee48980b7fa657a7253a8de854c7c75352c879070e113c2fcd5175b436569b8" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "eee48980b7fa657a7253a8de854c7c75352c879070e113c2fcd5175b436569b8" + sha256 cellar: :any_skip_relocation, arm64_ventura: "eee48980b7fa657a7253a8de854c7c75352c879070e113c2fcd5175b436569b8" + sha256 cellar: :any_skip_relocation, sonoma: "df628530823014d486d795a7120483518d80de2d403f050805f9c5a4a34b5e52" + sha256 cellar: :any_skip_relocation, ventura: "df628530823014d486d795a7120483518d80de2d403f050805f9c5a4a34b5e52" + sha256 cellar: :any_skip_relocation, x86_64_linux: "65aa01e95d7a4e784f40780d00e789d23fdf4ad874a6bf016af4b0453f8baf89" end depends_on "go" => :build From a918cdac1cd515e194126902d5e531d029b46491 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 14:59:12 +0000 Subject: [PATCH 0083/1364] goenv: update 2.2.23 bottle. --- Formula/g/goenv.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/g/goenv.rb b/Formula/g/goenv.rb index fdd8b94567b31..15cd7e60cd0ac 100644 --- a/Formula/g/goenv.rb +++ b/Formula/g/goenv.rb @@ -13,13 +13,13 @@ class Goenv < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "15faf9092efbd5134d7ab4514fb08088613a9d6529c6ad572c8e43bae9863a41" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "15faf9092efbd5134d7ab4514fb08088613a9d6529c6ad572c8e43bae9863a41" - sha256 cellar: :any_skip_relocation, arm64_ventura: "15faf9092efbd5134d7ab4514fb08088613a9d6529c6ad572c8e43bae9863a41" - sha256 cellar: :any_skip_relocation, sonoma: "b1716a357c066fedb9eaedefa0a19976285131a213984bc058c6e811566908e7" - sha256 cellar: :any_skip_relocation, ventura: "b1716a357c066fedb9eaedefa0a19976285131a213984bc058c6e811566908e7" - sha256 cellar: :any_skip_relocation, arm64_linux: "15faf9092efbd5134d7ab4514fb08088613a9d6529c6ad572c8e43bae9863a41" - sha256 cellar: :any_skip_relocation, x86_64_linux: "15faf9092efbd5134d7ab4514fb08088613a9d6529c6ad572c8e43bae9863a41" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "58437356ca3fdb08fb0102b6cd0baf241f6335217c785e0104d1422828938db7" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "58437356ca3fdb08fb0102b6cd0baf241f6335217c785e0104d1422828938db7" + sha256 cellar: :any_skip_relocation, arm64_ventura: "58437356ca3fdb08fb0102b6cd0baf241f6335217c785e0104d1422828938db7" + sha256 cellar: :any_skip_relocation, sonoma: "f3d91219e970a6157c8cdc5d25248548b9700de43dde859ec3d8630bafe920f5" + sha256 cellar: :any_skip_relocation, ventura: "f3d91219e970a6157c8cdc5d25248548b9700de43dde859ec3d8630bafe920f5" + sha256 cellar: :any_skip_relocation, arm64_linux: "58437356ca3fdb08fb0102b6cd0baf241f6335217c785e0104d1422828938db7" + sha256 cellar: :any_skip_relocation, x86_64_linux: "58437356ca3fdb08fb0102b6cd0baf241f6335217c785e0104d1422828938db7" end def install From 0e0df3bfb9892d1f4f2ec7384e5df0b0f17f9a51 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 15:06:08 +0000 Subject: [PATCH 0084/1364] typstyle 0.13.5 --- Formula/t/typstyle.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/t/typstyle.rb b/Formula/t/typstyle.rb index b570b5e0e9cb8..6928daa627a30 100644 --- a/Formula/t/typstyle.rb +++ b/Formula/t/typstyle.rb @@ -1,8 +1,8 @@ class Typstyle < Formula desc "Beautiful and reliable typst code formatter" homepage "https://enter-tainer.github.io/typstyle/" - url "https://github.com/Enter-tainer/typstyle/archive/refs/tags/v0.13.4.tar.gz" - sha256 "acdee42ef6794050cd08eb658b450712be7b678295267a1d9a990eb0ccd9eb79" + url "https://github.com/Enter-tainer/typstyle/archive/refs/tags/v0.13.5.tar.gz" + sha256 "8d152334a41c9c1b0668c765e9713b5454f8db5eada02a3a32fff93753508579" license "Apache-2.0" head "https://github.com/Enter-tainer/typstyle.git", branch: "master" From abf768657441a26b8a1e3bcdb11be0196c8ac117 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 15:09:56 +0000 Subject: [PATCH 0085/1364] woodpecker-cli 3.6.0 --- Formula/w/woodpecker-cli.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/w/woodpecker-cli.rb b/Formula/w/woodpecker-cli.rb index 87aa0476343a1..ba94967cd6e12 100644 --- a/Formula/w/woodpecker-cli.rb +++ b/Formula/w/woodpecker-cli.rb @@ -1,8 +1,8 @@ class WoodpeckerCli < Formula desc "CLI client for the Woodpecker Continuous Integration server" homepage "https://woodpecker-ci.org/" - url "https://github.com/woodpecker-ci/woodpecker/archive/refs/tags/v3.5.2.tar.gz" - sha256 "d450fc666c14bc106dd3009152aac1cf6ba871b0daf7412cccec860ee098bb4b" + url "https://github.com/woodpecker-ci/woodpecker/archive/refs/tags/v3.6.0.tar.gz" + sha256 "77e6cf71266b0b11a045a71da17bef27a65631a32bf717ef4f85c539101418d9" license "Apache-2.0" head "https://github.com/woodpecker-ci/woodpecker.git", branch: "main" From 44dcd50d24af3e7f20ccfb4d1545f47fb817de18 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 15:11:11 +0000 Subject: [PATCH 0086/1364] xk6 0.19.2 --- Formula/x/xk6.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/x/xk6.rb b/Formula/x/xk6.rb index 6b02df764eb15..8f202b6422a26 100644 --- a/Formula/x/xk6.rb +++ b/Formula/x/xk6.rb @@ -1,8 +1,8 @@ class Xk6 < Formula desc "Build k6 with extensions" homepage "https://k6.io" - url "https://github.com/grafana/xk6/archive/refs/tags/v0.19.1.tar.gz" - sha256 "623e20fc5de3b5458e32be1d8b10d4e6960ad42b8d24a79465d451927fd24e43" + url "https://github.com/grafana/xk6/archive/refs/tags/v0.19.2.tar.gz" + sha256 "059ea134cb054fe3f8dca0af849ce7e3ed513a1cee244adb038921a3a78157df" license "Apache-2.0" head "https://github.com/grafana/xk6.git", branch: "master" From f8645bdec6ddb6852b47e158d8e7c2365594d103 Mon Sep 17 00:00:00 2001 From: Tatsuya Kyushima <49891479+kyu08@users.noreply.github.com> Date: Thu, 8 May 2025 00:25:05 +0900 Subject: [PATCH 0087/1364] fzf-make 0.58.0 Created by https://github.com/mislav/bump-homebrew-formula-action --- Formula/f/fzf-make.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/f/fzf-make.rb b/Formula/f/fzf-make.rb index baf1674664ecf..6bd410218ff91 100644 --- a/Formula/f/fzf-make.rb +++ b/Formula/f/fzf-make.rb @@ -1,8 +1,8 @@ class FzfMake < Formula desc "Fuzzy finder with preview window for make, pnpm, & yarn" homepage "https://github.com/kyu08/fzf-make" - url "https://github.com/kyu08/fzf-make/archive/refs/tags/v0.57.0.tar.gz" - sha256 "5230ea1da29463a717974a70daacb3145c7ba4e44473e7b685f8b66ffb8cd235" + url "https://github.com/kyu08/fzf-make/archive/refs/tags/v0.58.0.tar.gz" + sha256 "54496764a55d6cbd3ab76135dab7b0b07384a698c70d19ba8a6abfdb7d9d2792" license "MIT" head "https://github.com/kyu08/fzf-make.git", branch: "main" From f2c9b4be0ad0c47f68cec70906b40ee572722a2e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 15:26:55 +0000 Subject: [PATCH 0088/1364] nexus: update 3.80.0-06 bottle. --- Formula/n/nexus.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/n/nexus.rb b/Formula/n/nexus.rb index 41a5b3670dcfc..b202478779ad5 100644 --- a/Formula/n/nexus.rb +++ b/Formula/n/nexus.rb @@ -15,13 +15,13 @@ class Nexus < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "49a297a1bc820fc4c584bbab2654117b3c92e2045251a7394f764fbb30247656" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "1b6c25b4d6103e37a4a4cf93194483c2db11e0f31ec9b70e7ed16f9631b06815" - sha256 cellar: :any_skip_relocation, arm64_ventura: "7c5268108751d0107d94456f689e4d7aad710143c0c735e6308a81adcdc3c303" - sha256 cellar: :any_skip_relocation, sonoma: "87e17682a7e4e0ca6d6353fe0b87ea3d73f0899f3e275a1763d88c86a9086e8f" - sha256 cellar: :any_skip_relocation, ventura: "e455e3cce9b4bb8c29de12cec46743f12f051afd35f80a7200f45faf7be96d62" - sha256 cellar: :any_skip_relocation, arm64_linux: "2d9fca47c00f9032e126c9df8cb26f10352ed330e805d8dc89717116664be1ea" - sha256 cellar: :any_skip_relocation, x86_64_linux: "3082ed2ea92d7ac3e6703f84636fcd9c470ce5b14d7ccf80312df0d5afbce8ff" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "c8a3fd80c8008fd25205fb318ee06ae801a7d74d969b1d6f06bf5e7c2fb62b4c" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "41d2feb6e85f4df82192cf62afdb21e93bf5ea79b8fc163f9d297d4a440f8c39" + sha256 cellar: :any_skip_relocation, arm64_ventura: "939834966728216f77cd05f37e7be1d40e803615792cbc94510880e22be58514" + sha256 cellar: :any_skip_relocation, sonoma: "b368f0bd961164f00b33c38de70810cf24091f457dcfaf96bcbf41ac10102df9" + sha256 cellar: :any_skip_relocation, ventura: "1317def65ab1ab74b617e15c16918e3d1eed2bd974007049d942d96ced029a7c" + sha256 cellar: :any_skip_relocation, arm64_linux: "8bd720dbef91a776d339d8a3dfd14a4f960a01a40f9388a5503c1c285da8f8be" + sha256 cellar: :any_skip_relocation, x86_64_linux: "d5dae4e536f76bf9badb1b6989d8d2a671009767a8324f16b81748471d6fdf2a" end depends_on "maven" => :build From 8622f991d745ea822d682a6732abc42eb083ee79 Mon Sep 17 00:00:00 2001 From: Daeho Ro Date: Thu, 8 May 2025 00:42:18 +0900 Subject: [PATCH 0089/1364] kubevpn: revert to v2.7.2 --- Formula/k/kubevpn.rb | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/Formula/k/kubevpn.rb b/Formula/k/kubevpn.rb index 5c200564a6d5a..6ebc693cba31e 100644 --- a/Formula/k/kubevpn.rb +++ b/Formula/k/kubevpn.rb @@ -1,19 +1,20 @@ class Kubevpn < Formula desc "Offers a Cloud-Native Dev Environment that connects to your K8s cluster network" homepage "https://www.kubevpn.dev" - url "https://github.com/kubenetworks/kubevpn/archive/refs/tags/v2.7.4.tar.gz" - sha256 "6d44f406efc4e1bd586fab896592cdfc6cc63c6cefb4721a464fba1b3c35de7f" + url "https://github.com/kubenetworks/kubevpn/archive/refs/tags/v2.7.2.tar.gz" + sha256 "2ebd97ff789de7f36ade5f94cf19ce279f69c878f75023b3140e3a3f7c2bb2c5" license "MIT" head "https://github.com/kubenetworks/kubevpn.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "681928136c5578748a0136dc6a3c3fcab02bc37f90229eafafa0505368beac7b" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "67d8fe214908d2b66bd6076beda337b47e570889df83d8a680f77370eecffe9c" - sha256 cellar: :any_skip_relocation, arm64_ventura: "9b844ad36fbda12fb52c3d55341c9a4db86bf919c1985f7e7c913fa3c68f5165" - sha256 cellar: :any_skip_relocation, sonoma: "c8216e6931a42f18af2a59861a0883b5b4705f7aae083825ba5ddb4ac9b526f0" - sha256 cellar: :any_skip_relocation, ventura: "b7b5a7f5823faf697fe92450a0641663306d5f147446a8d8945660347fe46326" - sha256 cellar: :any_skip_relocation, arm64_linux: "a723a85869b6881ecf804fc75f7ba8c341ff57548ca5778addd1c76ec368a049" - sha256 cellar: :any_skip_relocation, x86_64_linux: "9bed0f2ae7aa6f3e5ab343d133eb6a0a6b46f51ceaaef262cf669bfff2b590fc" + rebuild 1 + sha256 cellar: :any_skip_relocation, arm64_sequoia: "8526da1fe3a1f381358ab9ea6d7b3c787ef2fd1e0d5d3175aebf7ad6b8a25e3d" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "3abb4b7c8a299eda685a614afba9d3404b97dd2b0b2a2be0b4eb17c2911c9382" + sha256 cellar: :any_skip_relocation, arm64_ventura: "223df4c21fa1fce82f4d6b61b5992629e5844f95aa61d86d088c8abba503ff33" + sha256 cellar: :any_skip_relocation, sonoma: "4acb91f660f022b7f33adfe5ad1694308b3a45d51a929caa05454b771d362184" + sha256 cellar: :any_skip_relocation, ventura: "1d60f5d32de3eda4cbb21da525fd78e85871fff91569b544a83c4aeda7e382bd" + sha256 cellar: :any_skip_relocation, arm64_linux: "a22cf4a29361a97c00fa568e93a253b2c8de0066b789d2affac1877ad8853609" + sha256 cellar: :any_skip_relocation, x86_64_linux: "bf014ae3ba2a8eac5d7f1dceeda87f0a81c1d4c8a0eb2814d717287dca1de176" end depends_on "go" => :build From 39cd118ca6b19a48394eeff0d30f7ad5e3a053f2 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 15:55:32 +0000 Subject: [PATCH 0090/1364] fzf-make: update 0.58.0 bottle. --- Formula/f/fzf-make.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/f/fzf-make.rb b/Formula/f/fzf-make.rb index 6bd410218ff91..9288473807e12 100644 --- a/Formula/f/fzf-make.rb +++ b/Formula/f/fzf-make.rb @@ -7,13 +7,13 @@ class FzfMake < Formula head "https://github.com/kyu08/fzf-make.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "1313a3b143621bad711ceffbe4b6c6004e7d58fb0719af4794f1435c17000251" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "0576bdc5ab9827f9cee9eb73bdddf8ff0ceeee03d05f2a193f60d43455bfa64a" - sha256 cellar: :any_skip_relocation, arm64_ventura: "0d113fdaac36dc998d60c1430f44e4112d1b3314a8b9ac67b84a9205901c3922" - sha256 cellar: :any_skip_relocation, sonoma: "bf4bb38e6b39867b0bf2a2d6c36bbd9dd763744dda942d6f70faef5edc381d86" - sha256 cellar: :any_skip_relocation, ventura: "63e60e3f8546f2b80187b5380695b38b33573967d28d97aed653aa7961b0a822" - sha256 cellar: :any_skip_relocation, arm64_linux: "71ef1a0c560c7f4cfdbfea281846d27da6855cb046435b2a32b260efa746a59f" - sha256 cellar: :any_skip_relocation, x86_64_linux: "b08d8abe828e196924888938be0656c35d1943b217323aa7c69997c51363b3c7" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "8617ca6580060a598d7b855382271906f7e427e66fbcc9b6cb914c0a425d09cb" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "b4d28928aee0e73b62cdb09567ab660c5ce38c88941199caccd4865a6fb2ffb5" + sha256 cellar: :any_skip_relocation, arm64_ventura: "117f6aa1fbe29e37979c73def722124a87ae5e235b3267221113bab3bdef16e4" + sha256 cellar: :any_skip_relocation, sonoma: "bbfb21e4f3924237e1679cfb8d6ca7a057e0e69b2776c7f4e21102072d6cb9b7" + sha256 cellar: :any_skip_relocation, ventura: "1c50504540ea917bdbe077051d6d253ce8223b0866ce87265fb845899b912813" + sha256 cellar: :any_skip_relocation, arm64_linux: "2e5070510f3b3c845e55c4de6ee7096705afd07e5c09a0ab7b15745e22b6ab98" + sha256 cellar: :any_skip_relocation, x86_64_linux: "e4bd94ed3ca50c09d5b7f78335e5917eab12a56379a3c76ddbc690bbbabce5ab" end depends_on "rust" => :build From c754de884bfc2371e27fb31ca538aec9bd908aea Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 15:56:04 +0000 Subject: [PATCH 0091/1364] woodpecker-cli: update 3.6.0 bottle. --- Formula/w/woodpecker-cli.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/w/woodpecker-cli.rb b/Formula/w/woodpecker-cli.rb index ba94967cd6e12..9d21463fb4606 100644 --- a/Formula/w/woodpecker-cli.rb +++ b/Formula/w/woodpecker-cli.rb @@ -7,12 +7,12 @@ class WoodpeckerCli < Formula head "https://github.com/woodpecker-ci/woodpecker.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "f5b9089c744f91ebc7ea0e4622bb70887084b5b2b9e6101a22dff12f7661e750" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "f5b9089c744f91ebc7ea0e4622bb70887084b5b2b9e6101a22dff12f7661e750" - sha256 cellar: :any_skip_relocation, arm64_ventura: "f5b9089c744f91ebc7ea0e4622bb70887084b5b2b9e6101a22dff12f7661e750" - sha256 cellar: :any_skip_relocation, sonoma: "0b23ac633fdca58b55cdfd0ba5bcd7f6b334fa26844ff17f40a44ce128292e8a" - sha256 cellar: :any_skip_relocation, ventura: "0b23ac633fdca58b55cdfd0ba5bcd7f6b334fa26844ff17f40a44ce128292e8a" - sha256 cellar: :any_skip_relocation, x86_64_linux: "633b65ec62470da27372fbe6cb47a69c7d5cb90eb9e2c636cf9648e66169f8ad" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "3dc4d07dca613479ebeb0050593405c558aca54014b1250782aa3d95b2eb186f" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "3dc4d07dca613479ebeb0050593405c558aca54014b1250782aa3d95b2eb186f" + sha256 cellar: :any_skip_relocation, arm64_ventura: "3dc4d07dca613479ebeb0050593405c558aca54014b1250782aa3d95b2eb186f" + sha256 cellar: :any_skip_relocation, sonoma: "b2a640746e58da818f060a467d4ca9f284c752208813a764b251fd7f25192fc9" + sha256 cellar: :any_skip_relocation, ventura: "b2a640746e58da818f060a467d4ca9f284c752208813a764b251fd7f25192fc9" + sha256 cellar: :any_skip_relocation, x86_64_linux: "04f8b898d1642b7387c6ef5e5eab9e57eb9a863076e75337db570109172eb7c4" end depends_on "go" => :build From 198f064698365ab67795dc9cb719bb74ed4b67ad Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 15:56:05 +0000 Subject: [PATCH 0092/1364] xk6: update 0.19.2 bottle. --- Formula/x/xk6.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/x/xk6.rb b/Formula/x/xk6.rb index 8f202b6422a26..0e1f2b895d6f8 100644 --- a/Formula/x/xk6.rb +++ b/Formula/x/xk6.rb @@ -12,12 +12,12 @@ class Xk6 < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "d74cf7ae14e338f58b0c83c07fd22277ae071975313f0b354cbb68dc8d402a94" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "d74cf7ae14e338f58b0c83c07fd22277ae071975313f0b354cbb68dc8d402a94" - sha256 cellar: :any_skip_relocation, arm64_ventura: "d74cf7ae14e338f58b0c83c07fd22277ae071975313f0b354cbb68dc8d402a94" - sha256 cellar: :any_skip_relocation, sonoma: "a3cf8afbd960cff0aff9059b1b48b9f0892b60d58e1e32b991954099c51ad948" - sha256 cellar: :any_skip_relocation, ventura: "a3cf8afbd960cff0aff9059b1b48b9f0892b60d58e1e32b991954099c51ad948" - sha256 cellar: :any_skip_relocation, x86_64_linux: "8fcecf5eb28ec11ad23b163159becd1ceabb80c2484686f0a42ea761de608ee4" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "b05a9d6fe9a247dbcf2cba5a0a8e2fe1eaea1197198f9e3efed7a41e935cbe1c" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "b05a9d6fe9a247dbcf2cba5a0a8e2fe1eaea1197198f9e3efed7a41e935cbe1c" + sha256 cellar: :any_skip_relocation, arm64_ventura: "b05a9d6fe9a247dbcf2cba5a0a8e2fe1eaea1197198f9e3efed7a41e935cbe1c" + sha256 cellar: :any_skip_relocation, sonoma: "a2d5e3b42e6c29a404211e6e1691fb032ab2e14aab8628fab10fc437c5d6fd60" + sha256 cellar: :any_skip_relocation, ventura: "a2d5e3b42e6c29a404211e6e1691fb032ab2e14aab8628fab10fc437c5d6fd60" + sha256 cellar: :any_skip_relocation, x86_64_linux: "9394c2e3bd325835bcd1d0eb8cd8ee9d0413fb381c945d62a622bd1c53867e16" end depends_on "go" From 844e7675acd4648bdb51da4dc272e1c9062427c9 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 15:56:11 +0000 Subject: [PATCH 0093/1364] typstyle: update 0.13.5 bottle. --- Formula/t/typstyle.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/t/typstyle.rb b/Formula/t/typstyle.rb index 6928daa627a30..1b0720f50037a 100644 --- a/Formula/t/typstyle.rb +++ b/Formula/t/typstyle.rb @@ -7,13 +7,13 @@ class Typstyle < Formula head "https://github.com/Enter-tainer/typstyle.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "2541e5eb43f0d5bdb51d96b1aca9bd3d041c3c72b7484adf20d92aa93cfee511" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "f0fb7922a182e1d7ba638e46fd78ed11be0a8b4a7a6f71793a4621fd7ef7e065" - sha256 cellar: :any_skip_relocation, arm64_ventura: "49a28889261bb7e6fa865956ce6e320f8f8bf26ce9c8f2e02857f83eca8625aa" - sha256 cellar: :any_skip_relocation, sonoma: "513cf30bd2d18a8a1c8cd961adc1d516ae42317b478c1b39969401a0dbce7cb9" - sha256 cellar: :any_skip_relocation, ventura: "ce620f68649c47d93df05fe712bec7cd55cef8c69b98bf93e64b3f07b731093a" - sha256 cellar: :any_skip_relocation, arm64_linux: "75f56b755f6976138ec62da9c8045444859f8b4c644b403b8663314a3fd945f5" - sha256 cellar: :any_skip_relocation, x86_64_linux: "050909fc7a654bfaa38872db38d8930513fb8820d92a4e7d0860ba6d7bf53936" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "eb73ba2633000a83b7adca1dcf76e94e284d9639d5e6247ea636d554f3a587a4" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "c02bf966d290d9e9022168b4b834065e94deca2d3b18cee72d5a54b862635453" + sha256 cellar: :any_skip_relocation, arm64_ventura: "63a58357f91b686dcc256fe954eb9b9395fbbc7d95d477e8ae4bdfc66a7918cf" + sha256 cellar: :any_skip_relocation, sonoma: "c9328898f04b2c545306cc942392545498e6102efd4732f0bb36c90166a58cd5" + sha256 cellar: :any_skip_relocation, ventura: "15cc042fc3fb2402f8df1db6b727f513012d200193615f5fbc60198e0ed0ab06" + sha256 cellar: :any_skip_relocation, arm64_linux: "fea3705566ef8c2f998df4a93be67a0c209ac95f2e5e363e58cdb80e5d9aec99" + sha256 cellar: :any_skip_relocation, x86_64_linux: "8dc133a867428cd587bca4598c04932a95740ab7c892dc285da8930a6148bfb6" end depends_on "rust" => :build From 684102edf99abeef3a20a308356a8d9b5e7323af Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 16:04:21 +0000 Subject: [PATCH 0094/1364] dstack: update 0.19.8 bottle. --- Formula/d/dstack.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/d/dstack.rb b/Formula/d/dstack.rb index abbcc1c13c51b..d980cd2a1bd42 100644 --- a/Formula/d/dstack.rb +++ b/Formula/d/dstack.rb @@ -8,13 +8,13 @@ class Dstack < Formula license "MPL-2.0" bottle do - sha256 cellar: :any, arm64_sequoia: "f8e9ecef2b6d74687db5443a38fa3ceecaf098e4ef29b61b8b513ccabf79aebc" - sha256 cellar: :any, arm64_sonoma: "8177168400ad08e25338b30fc174b7ca845481047f07f21a456ebcee24b1df86" - sha256 cellar: :any, arm64_ventura: "8e27937b09ce425c0683086edf028f096807f6ceb55809d9a528bc694f4b4c5d" - sha256 cellar: :any, sonoma: "5043e3577b688a9e42c17fbed3f9b1f670489933570a70daafd9e21f3a8a38c1" - sha256 cellar: :any, ventura: "b76b1fd0711d14595abe2276873a785545aa441ad41afa621cc8bb1bd6d8e40a" - sha256 cellar: :any_skip_relocation, arm64_linux: "28ff0a8357c21c9765f5999c1a4f850c9f6310e4586110809abdcff9b64e30c7" - sha256 cellar: :any_skip_relocation, x86_64_linux: "bcee2dbc2a38063824c3e97fa69a500227ed03dabea9d3461a0e294c7b285af2" + sha256 cellar: :any, arm64_sequoia: "6986dfde9c1c0f129306ae2b4ed3b12f61719cddbcb5b73a5447523ecf5ebdd0" + sha256 cellar: :any, arm64_sonoma: "74c6873412c3cb71e189fb781b441e09f42b3f5b7fa948f0e603572bb2b701b1" + sha256 cellar: :any, arm64_ventura: "e1f5aaf2deec0a66e081fcc0f356f28700828898f9f09bc0aa38a947cd98df2a" + sha256 cellar: :any, sonoma: "256eabb566a41330c30917bc8af9aaad8eab4b8698f4176ed1a112ed7083d285" + sha256 cellar: :any, ventura: "cc65a5d95a2ee24db5c1d5d649acd43ffaa984626641678c44843e2d6288915d" + sha256 cellar: :any_skip_relocation, arm64_linux: "2af490cc93e1edc815348567af327695951fc38003f5483041b2ff805539992c" + sha256 cellar: :any_skip_relocation, x86_64_linux: "ee7f1d096ff855be693ba4657c585be662a49f6c7f5895d098585a319bdca8a6" end # `pkgconf` and `rust` are for bcrypt. From 6f1301d64dcdab2ea93ce04d8bb0e999dd261037 Mon Sep 17 00:00:00 2001 From: William Tsai Date: Thu, 8 May 2025 00:08:18 +0800 Subject: [PATCH 0095/1364] llvm@19: Fix build issue on macOS with CMake 4 --- Formula/l/llvm@19.rb | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Formula/l/llvm@19.rb b/Formula/l/llvm@19.rb index 597cc20c1cf5d..083176c1b7694 100644 --- a/Formula/l/llvm@19.rb +++ b/Formula/l/llvm@19.rb @@ -95,6 +95,11 @@ def install .select { |name| name.start_with? "python@" } .map { |py| py.delete_prefix("python@") } + # Work around build failure (maybe from CMake 4 update) by using environment + # variable for https://cmake.org/cmake/help/latest/variable/CMAKE_OSX_SYSROOT.html + # TODO: Consider if this should be handled in superenv as impacts other formulae + ENV["SDKROOT"] = MacOS.sdk_for_formula(self).path if OS.mac? && MacOS.sdk_root_needed? + # Apple's libstdc++ is too old to build LLVM ENV.libcxx if ENV.compiler == :clang From 72daa9fc78ae739bf0e7880c6fc2b78a46b066e0 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 16:15:23 +0000 Subject: [PATCH 0096/1364] safety: update 3.5.0 bottle. --- Formula/s/safety.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/s/safety.rb b/Formula/s/safety.rb index b765ef32880d6..f9a90aae07e76 100644 --- a/Formula/s/safety.rb +++ b/Formula/s/safety.rb @@ -9,13 +9,13 @@ class Safety < Formula head "https://github.com/pyupio/safety.git", branch: "main" bottle do - sha256 cellar: :any, arm64_sequoia: "89a90574e96052bd73efc4af2f86a643317fce795c4d30f3ebf4df52b758849a" - sha256 cellar: :any, arm64_sonoma: "4dd373ee260d5a0baf1f8b9ea2edfa6d33df8cd89e241c29bfbd093da8238a13" - sha256 cellar: :any, arm64_ventura: "3cf6114f33b2fd43f49864088d5e52aa911be230cfa80442757c0a7c2ea800dc" - sha256 cellar: :any, sonoma: "6d8ae1bcda9eb8138ac3752e47f3b190c61105f607d3d57e033013446552f38b" - sha256 cellar: :any, ventura: "521ded29ab4045466ddd79adb3e0fcf55e1c779a052fc07e183b06817817245e" - sha256 cellar: :any_skip_relocation, arm64_linux: "40dd2485c040bbecf4ddb3d885790289abc10f329363c80c8dbf07bf71e8422c" - sha256 cellar: :any_skip_relocation, x86_64_linux: "b61cde0b46d10531530e88f408cc5b661ac30f89965ec1219ed6d1e50cd10386" + sha256 cellar: :any, arm64_sequoia: "07a5b617950c6941903023a18fb738793bc56079e0b65224b639a5b1dc5f9702" + sha256 cellar: :any, arm64_sonoma: "a686b6e1f3fb9913a41b818021748abc11824830fab393feed31e5aafa06a70a" + sha256 cellar: :any, arm64_ventura: "21b760cc745e23b198c693ad133cb5fcf28a1ce35045de6f6f786f2fb84db82a" + sha256 cellar: :any, sonoma: "45db61f7c1eefc43e67e352e9a8a0b1efe84d65bdced009d35ec433fc81641a0" + sha256 cellar: :any, ventura: "f21749a743c58bf9d1dfd6efd0d398e0919afe6c5686928f0c6a29646e42ac84" + sha256 cellar: :any_skip_relocation, arm64_linux: "7a667b7b892c52bfaadcd3a9ce238b6ede6d13bc4218f9c3edde6093bfa595b0" + sha256 cellar: :any_skip_relocation, x86_64_linux: "702ab426ce3512162455f3b738db243828c790377bbc45e8d235d95bb9704055" end depends_on "cmake" => :build From 80db716ca01d3c24af2fe17f510879bbb9e236c8 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 16:18:18 +0000 Subject: [PATCH 0097/1364] scala: update 3.7.0 bottle. --- Formula/s/scala.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/s/scala.rb b/Formula/s/scala.rb index 6b37443bf8475..1a0043b485060 100644 --- a/Formula/s/scala.rb +++ b/Formula/s/scala.rb @@ -11,7 +11,7 @@ class Scala < Formula end bottle do - sha256 cellar: :any_skip_relocation, all: "766187b4b8b191e3df5cccc2697ffd55e01c6234f02d9598dc40cb837fa29ad8" + sha256 cellar: :any_skip_relocation, all: "0dbf4cdbed9be74c8ff5b292d99dbb940017c6a5cdda1f274d18dd647a16cc84" end # JDK Compatibility: https://docs.scala-lang.org/overviews/jdk-compatibility/overview.html From 4ff7eb17b1d9f49f07da8f403e507ca92f19954e Mon Sep 17 00:00:00 2001 From: botantony Date: Wed, 7 May 2025 18:23:29 +0200 Subject: [PATCH 0098/1364] montage: add livecheck block Signed-off-by: botantony --- Formula/m/montage.rb | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Formula/m/montage.rb b/Formula/m/montage.rb index 2c00d706535fc..54d0fe001817b 100644 --- a/Formula/m/montage.rb +++ b/Formula/m/montage.rb @@ -7,6 +7,11 @@ class Montage < Formula revision 1 head "https://github.com/Caltech-IPAC/Montage.git", branch: "main" + livecheck do + url "http://montage.ipac.caltech.edu/docs/download2.html" + regex(/href=.*?Montage[._-]v?(\d+(?:\.\d+)+)\.t.*?/i) + end + bottle do rebuild 1 sha256 cellar: :any, arm64_sequoia: "b1d5f7c20f35e617f62197124a7c5c7e43bd4fc6272cf642346f6311d1da41b3" From 488ae4dde5a606417833f7ec35e57175e591de57 Mon Sep 17 00:00:00 2001 From: botantony Date: Wed, 7 May 2025 18:23:36 +0200 Subject: [PATCH 0099/1364] mutt: add livecheck block Signed-off-by: botantony --- Formula/m/mutt.rb | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Formula/m/mutt.rb b/Formula/m/mutt.rb index c8e02a17f0494..997f7cf17a7e7 100644 --- a/Formula/m/mutt.rb +++ b/Formula/m/mutt.rb @@ -14,6 +14,15 @@ class Mutt < Formula sha256 "d162fb6d491e3af43d6f62f949b7e687bb0c7c2584da52c99a99354a25de14ef" license "GPL-2.0-or-later" + # Livecheck uses GitLab tags to determine current version. + # They all have `-rel` suffix which needs to be omitted. + # + # BitBucket strategy doesn't work for some reason. + livecheck do + url "https://gitlab.com/muttmua/mutt.git" + regex(/^mutt[._-]v?(\d+(?:-\d+)+)-rel$/i) + end + bottle do sha256 arm64_sequoia: "e11bd2be69fee9b5c24190699cf2318559ca0cda04520ae1845a5512e0fcd843" sha256 arm64_sonoma: "b5ef0c774e2c1926a13345f73f2f6370aa28d54bd4dfff553f945fb7f9ab7858" From 7586fb537f4191a79f911c5ad9f0b37eab50e621 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 16:59:23 +0000 Subject: [PATCH 0100/1364] cfn-lint 1.35.0 --- Formula/c/cfn-lint.rb | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/Formula/c/cfn-lint.rb b/Formula/c/cfn-lint.rb index df59fa1eddccc..5831e811399d6 100644 --- a/Formula/c/cfn-lint.rb +++ b/Formula/c/cfn-lint.rb @@ -3,8 +3,8 @@ class CfnLint < Formula desc "Validate CloudFormation templates against the CloudFormation spec" homepage "https://github.com/aws-cloudformation/cfn-lint/" - url "https://files.pythonhosted.org/packages/73/42/5dd6fdad1382d37143a2c84dd2143c7dd3d065a64e55b51e23e20b8f8b14/cfn_lint-1.34.2.tar.gz" - sha256 "d340a6f816676489fac6f2fae3609e266c48d031abed04b978b07db7adf05f75" + url "https://files.pythonhosted.org/packages/75/6f/3c944f28de02ed6f6c9043fd671e2e3e7c7db57e12c2b5f9600f53075a2e/cfn_lint-1.35.0.tar.gz" + sha256 "110795daa7d34a93ca411b22406d2278a224a66702a4b32be3871cfd786af28f" license "MIT-0" bottle do @@ -37,13 +37,13 @@ class CfnLint < Formula end resource "boto3" do - url "https://files.pythonhosted.org/packages/fc/6c/61664d66c05888fcb960e316a265a7f65ade54d9e5983cbded7d8945e0c2/boto3-1.38.2.tar.gz" - sha256 "53c8d44b231251fa9421dd13d968236d59fe2cf0421e077afedbf3821653fb3b" + url "https://files.pythonhosted.org/packages/5f/26/c4a2f1c64efb5ae6b47b94cb543282ab5770aa2c4562aba6934af628cf76/boto3-1.38.10.tar.gz" + sha256 "af4c78a3faa1a56cbaeb9e06cd5580772138be519fc6e740b81db586d5d1910c" end resource "botocore" do - url "https://files.pythonhosted.org/packages/06/3a/0576ba7922b295f57835469263357ad64e483676c37731c4b5c66457d2dc/botocore-1.38.2.tar.gz" - sha256 "b688a9bd17211a1eaae3a6c965ba9f3973e5435efaaa4fa201f499d3467830e1" + url "https://files.pythonhosted.org/packages/c0/18/c03b763c831e269d76a7c0fcba53802f99bf68f8d4530af672ae96a6d343/botocore-1.38.10.tar.gz" + sha256 "c531c13803e0fad5b395c5ccab4c11ac88acfccde71c9b998df6fa841392a8fc" end resource "jmespath" do @@ -82,13 +82,13 @@ class CfnLint < Formula end resource "pydantic" do - url "https://files.pythonhosted.org/packages/10/2e/ca897f093ee6c5f3b0bee123ee4465c50e75431c3d5b6a3b44a47134e891/pydantic-2.11.3.tar.gz" - sha256 "7471657138c16adad9322fe3070c0116dd6c3ad8d649300e3cbdfe91f4db4ec3" + url "https://files.pythonhosted.org/packages/77/ab/5250d56ad03884ab5efd07f734203943c8a8ab40d551e208af81d0257bf2/pydantic-2.11.4.tar.gz" + sha256 "32738d19d63a226a52eed76645a98ee07c1f410ee41d93b4afbfa85ed8111c2d" end resource "pydantic-core" do - url "https://files.pythonhosted.org/packages/17/19/ed6a078a5287aea7922de6841ef4c06157931622c89c2a47940837b5eecd/pydantic_core-2.33.1.tar.gz" - sha256 "bcc9c6fdb0ced789245b02b7d6603e17d1563064ddcfc36f046b61c0c05dd9df" + url "https://files.pythonhosted.org/packages/ad/88/5f2260bdfae97aabf98f1778d43f69574390ad787afb646292a638c923d4/pydantic_core-2.33.2.tar.gz" + sha256 "7cb8bc3605c29176e1b105350d2e6474142d7c1bd1d9327c4a9bdb46bf827acc" end resource "python-dateutil" do @@ -127,8 +127,8 @@ class CfnLint < Formula end resource "sympy" do - url "https://files.pythonhosted.org/packages/11/8a/5a7fd6284fa8caac23a26c9ddf9c30485a48169344b4bd3b0f02fef1890f/sympy-1.13.3.tar.gz" - sha256 "b27fd2c6530e0ab39e275fc9b683895367e51d5da91baa8d3d64db2565fec4d9" + url "https://files.pythonhosted.org/packages/83/d3/803453b36afefb7c2bb238361cd4ae6125a569b4db67cd9e79846ba2d68c/sympy-1.14.0.tar.gz" + sha256 "d3d3fe8df1e5a0b42f0e7bdf50541697dbe7d23746e894990c030e2b05e72517" end resource "typing-extensions" do From c8c7e224ecb19e45af4bcb3e0046e68acda15291 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 17:03:35 +0000 Subject: [PATCH 0101/1364] dependabot 1.63.0 --- Formula/d/dependabot.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/d/dependabot.rb b/Formula/d/dependabot.rb index 198dc55f42f5b..b0d1e67d25193 100644 --- a/Formula/d/dependabot.rb +++ b/Formula/d/dependabot.rb @@ -1,8 +1,8 @@ class Dependabot < Formula desc "Tool for testing and debugging Dependabot update jobs" homepage "https://github.com/dependabot/cli" - url "https://github.com/dependabot/cli/archive/refs/tags/v1.62.2.tar.gz" - sha256 "bf350da9f1bf3dec4073ff80da72bfaa6d401f38dbe72bf1beff76fca200524f" + url "https://github.com/dependabot/cli/archive/refs/tags/v1.63.0.tar.gz" + sha256 "0c8296efdcdead61b903efa794bcf6e8f296106c79b61adc131968636997f63a" license "MIT" head "https://github.com/dependabot/cli.git", branch: "main" From 833267f83a24894509c6c76541ed1ecf48801a52 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 17:04:18 +0000 Subject: [PATCH 0102/1364] django-completion 5.2.1 --- Formula/d/django-completion.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/d/django-completion.rb b/Formula/d/django-completion.rb index 2dacb520459f7..611aadb2855ce 100644 --- a/Formula/d/django-completion.rb +++ b/Formula/d/django-completion.rb @@ -1,8 +1,8 @@ class DjangoCompletion < Formula desc "Bash completion for Django" homepage "https://www.djangoproject.com/" - url "https://github.com/django/django/archive/refs/tags/5.2.tar.gz" - sha256 "25dd8b612f50bde9a395b370a2e7f6dd768ae125d92203781150aec672074d09" + url "https://github.com/django/django/archive/refs/tags/5.2.1.tar.gz" + sha256 "07387d6874e47225804bc589282165af137b9d3214e1b55590b2d33201f36c70" license "BSD-3-Clause" head "https://github.com/django/django.git", branch: "main" From 27c78be045bbe84798ace6db37a6f5c26ef00cb5 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 17:05:21 +0000 Subject: [PATCH 0103/1364] dropbear 2025.88 --- Formula/d/dropbear.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/d/dropbear.rb b/Formula/d/dropbear.rb index fec33b7d4c2dd..dd17b8cc1c5c6 100644 --- a/Formula/d/dropbear.rb +++ b/Formula/d/dropbear.rb @@ -1,8 +1,8 @@ class Dropbear < Formula desc "Small SSH server/client for POSIX-based system" homepage "https://matt.ucc.asn.au/dropbear/dropbear.html" - url "https://matt.ucc.asn.au/dropbear/releases/dropbear-2025.87.tar.bz2" - sha256 "738b7f358547f0c64c3e1a56bbc5ef98d34d9ec6adf9ccdf01dc0bf2caa2bc8d" + url "https://matt.ucc.asn.au/dropbear/releases/dropbear-2025.88.tar.bz2" + sha256 "783f50ea27b17c16da89578fafdb6decfa44bb8f6590e5698a4e4d3672dc53d4" license "MIT" livecheck do From e59cb64503dc1322c287966473f364e3b9c9b086 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 17:07:37 +0000 Subject: [PATCH 0104/1364] fern-api 0.60.21 --- Formula/f/fern-api.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/f/fern-api.rb b/Formula/f/fern-api.rb index 955363a757623..6d429f27284cd 100644 --- a/Formula/f/fern-api.rb +++ b/Formula/f/fern-api.rb @@ -1,8 +1,8 @@ class FernApi < Formula desc "Stripe-level SDKs and Docs for your API" homepage "https://buildwithfern.com/" - url "https://registry.npmjs.org/fern-api/-/fern-api-0.60.20.tgz" - sha256 "eeec3074cb1eb9c524702bb852a36b548a8300a17bb44e4b5006690ba994e086" + url "https://registry.npmjs.org/fern-api/-/fern-api-0.60.21.tgz" + sha256 "953cc6c35cf899f9b76b8928a9667a6da64d7d97f427af962c1186a2097c2035" license "Apache-2.0" head "https://github.com/fern-api/fern.git", branch: "main" From 9b417dfe157680d7209902d002d7c627470bd9fb Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 17:10:35 +0000 Subject: [PATCH 0105/1364] gettext 0.25 --- Formula/g/gettext.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Formula/g/gettext.rb b/Formula/g/gettext.rb index a8d8172c67bc2..810b81f015d5c 100644 --- a/Formula/g/gettext.rb +++ b/Formula/g/gettext.rb @@ -1,10 +1,10 @@ class Gettext < Formula desc "GNU internationalization (i18n) and localization (l10n) library" homepage "https://www.gnu.org/software/gettext/" - url "https://ftp.gnu.org/gnu/gettext/gettext-0.24.1.tar.gz" - mirror "https://ftpmirror.gnu.org/gettext/gettext-0.24.1.tar.gz" - mirror "http://ftp.gnu.org/gnu/gettext/gettext-0.24.1.tar.gz" - sha256 "7387ec048971a1b42c0aab866c51222f63af3cf51938695f555609c33d89e486" + url "https://ftp.gnu.org/gnu/gettext/gettext-0.25.tar.gz" + mirror "https://ftpmirror.gnu.org/gettext/gettext-0.25.tar.gz" + mirror "http://ftp.gnu.org/gnu/gettext/gettext-0.25.tar.gz" + sha256 "aee02dab79d9138fdcc7226b67ec985121bce6007edebe30d0e39d42f69a340e" license "GPL-3.0-or-later" bottle do From afcbc68d6b9026be48e0c09f36779420795e1f7d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 17:12:15 +0000 Subject: [PATCH 0106/1364] go-jsonnet 0.21.0 --- Formula/g/go-jsonnet.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/g/go-jsonnet.rb b/Formula/g/go-jsonnet.rb index af0d8e94fe773..ffb248b0f2b64 100644 --- a/Formula/g/go-jsonnet.rb +++ b/Formula/g/go-jsonnet.rb @@ -1,8 +1,8 @@ class GoJsonnet < Formula desc "Go implementation of configuration language for defining JSON data" homepage "https://jsonnet.org/" - url "https://github.com/google/go-jsonnet/archive/refs/tags/v0.20.0.tar.gz" - sha256 "bf9923a848dba65fa99f6e926221ab4222c2f259ba837d279b43917962bc7d70" + url "https://github.com/google/go-jsonnet/archive/refs/tags/v0.21.0.tar.gz" + sha256 "ee7aa004e78fb49608bcf28142a7494dc204a07cc07d323dd2cff3d97298c696" license "Apache-2.0" head "https://github.com/google/go-jsonnet.git", branch: "master" From c0d516802c879c861e5741d52fed470a7406a4ec Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 17:16:33 +0000 Subject: [PATCH 0107/1364] jruby 10.0.0.1 --- Formula/j/jruby.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/j/jruby.rb b/Formula/j/jruby.rb index b7f27439db71f..e595c8d0a9430 100644 --- a/Formula/j/jruby.rb +++ b/Formula/j/jruby.rb @@ -1,8 +1,8 @@ class Jruby < Formula desc "Ruby implementation in pure Java" homepage "https://www.jruby.org/" - url "https://search.maven.org/remotecontent?filepath=org/jruby/jruby-dist/10.0.0.0/jruby-dist-10.0.0.0-bin.tar.gz" - sha256 "427d9827ed23fe6b4d11fe61665c75dd7476ba36a0438376eb310ce2a8d24733" + url "https://search.maven.org/remotecontent?filepath=org/jruby/jruby-dist/10.0.0.1/jruby-dist-10.0.0.1-bin.tar.gz" + sha256 "0ba34ac5dfec7c22659b14db668a06284db7fc1c820c49c04b92271a6636bafb" license any_of: ["EPL-2.0", "GPL-2.0-only", "LGPL-2.1-only"] livecheck do From 150045a57931484cfe33f7337df9f678218a6786 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 17:20:12 +0000 Subject: [PATCH 0108/1364] libgcrypt 1.11.1 --- Formula/lib/libgcrypt.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/lib/libgcrypt.rb b/Formula/lib/libgcrypt.rb index 67fae5634da7b..e0884c31ec289 100644 --- a/Formula/lib/libgcrypt.rb +++ b/Formula/lib/libgcrypt.rb @@ -1,8 +1,8 @@ class Libgcrypt < Formula desc "Cryptographic library based on the code from GnuPG" homepage "https://gnupg.org/related_software/libgcrypt/" - url "https://gnupg.org/ftp/gcrypt/libgcrypt/libgcrypt-1.11.0.tar.bz2" - sha256 "09120c9867ce7f2081d6aaa1775386b98c2f2f246135761aae47d81f58685b9c" + url "https://gnupg.org/ftp/gcrypt/libgcrypt/libgcrypt-1.11.1.tar.bz2" + sha256 "24e91c9123a46c54e8371f3a3a2502f1198f2893fbfbf59af95bc1c21499b00e" license all_of: ["LGPL-2.1-or-later", "GPL-2.0-or-later"] livecheck do From d4df33ce31a28826fa606470cdf76b473425f028 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 17:46:04 +0000 Subject: [PATCH 0109/1364] vifm 0.14.2 --- Formula/v/vifm.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/v/vifm.rb b/Formula/v/vifm.rb index 843d4402b04c5..b938a5e15dec2 100644 --- a/Formula/v/vifm.rb +++ b/Formula/v/vifm.rb @@ -1,8 +1,8 @@ class Vifm < Formula desc "Ncurses-based file manager with vi-like keybindings" homepage "https://vifm.info/" - url "https://github.com/vifm/vifm/releases/download/v0.14.1/vifm-0.14.1.tar.bz2" - sha256 "01f19e114e29f481d20faa6b35a42b883a3f487324ddb2f7107ce1c102c4a496" + url "https://github.com/vifm/vifm/releases/download/v0.14.2/vifm-0.14.2.tar.bz2" + sha256 "cd1b05d2543cdf6829d60b23bc225c6fde13d3ef7c1008f821b9209837f1e2b0" license "GPL-2.0-or-later" head "https://github.com/vifm/vifm.git", branch: "master" From 21e474f65c12f4a1d63645e951173a4a578b0e6d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 17:47:51 +0000 Subject: [PATCH 0110/1364] wstunnel 10.2.0 --- Formula/w/wstunnel.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/w/wstunnel.rb b/Formula/w/wstunnel.rb index 425ed76d7066c..59c1738c179bc 100644 --- a/Formula/w/wstunnel.rb +++ b/Formula/w/wstunnel.rb @@ -1,8 +1,8 @@ class Wstunnel < Formula desc "Tunnel all your traffic over Websocket or HTTP2" homepage "https://github.com/erebe/wstunnel" - url "https://github.com/erebe/wstunnel/archive/refs/tags/v10.1.11.tar.gz" - sha256 "a560268d5aa1f8dac9c158798828c495c4d266ce5953891494868d4647e36cac" + url "https://github.com/erebe/wstunnel/archive/refs/tags/v10.2.0.tar.gz" + sha256 "e5b29465c447c110e4f7d2c1e99a9e6e883f2ddaf6373459d1008607811e637d" license "BSD-3-Clause" head "https://github.com/erebe/wstunnel.git", branch: "main" From a350c9f7e75197fa567a0c8d6adaab90e3209bb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mislav=20Marohni=C4=87?= Date: Wed, 7 May 2025 20:08:28 +0200 Subject: [PATCH 0111/1364] ruby-build 20250507 Created by https://github.com/mislav/bump-homebrew-formula-action --- Formula/r/ruby-build.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/r/ruby-build.rb b/Formula/r/ruby-build.rb index 94ef1299d27c5..44554ad350a1e 100644 --- a/Formula/r/ruby-build.rb +++ b/Formula/r/ruby-build.rb @@ -1,8 +1,8 @@ class RubyBuild < Formula desc "Install various Ruby versions and implementations" homepage "https://rbenv.org/man/ruby-build.1" - url "https://github.com/rbenv/ruby-build/archive/refs/tags/v20250430.tar.gz" - sha256 "06e2a934f84102ed6aff430d73c76f2051c70d8aecd4d3b3dfb94f71e790f986" + url "https://github.com/rbenv/ruby-build/archive/refs/tags/v20250507.tar.gz" + sha256 "59992f934dccb48d2547969efd3075a5338617e02a5bff8c566ca1e51b6d349d" license "MIT" head "https://github.com/rbenv/ruby-build.git", branch: "master" From dac7f4e32174e27137a35d858a23fe8f1e21a9f3 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 18:09:51 +0000 Subject: [PATCH 0112/1364] vifm: update 0.14.2 bottle. --- Formula/v/vifm.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/v/vifm.rb b/Formula/v/vifm.rb index b938a5e15dec2..4c5e9faf1fa9a 100644 --- a/Formula/v/vifm.rb +++ b/Formula/v/vifm.rb @@ -7,13 +7,13 @@ class Vifm < Formula head "https://github.com/vifm/vifm.git", branch: "master" bottle do - sha256 arm64_sequoia: "d42bbd65abb6dd248287efa95c048b635da1d6234007ce49c4d6a79805364980" - sha256 arm64_sonoma: "6578e3bd6cd66a91acefdadb102aa8ac732e7b0ce83c60da858379803e04ad72" - sha256 arm64_ventura: "af13db929893b961f318f4bbc810495d74eae4f1a287aa3b85eed524e4b7fefb" - sha256 sonoma: "fbb0b81a0d33fa1261bed0aad03873d886d8186607d549ae58f23c436f4cdcff" - sha256 ventura: "09763481c3ae34dca7122f83beb04905cd3603e0678be6673df54836fa2ba681" - sha256 arm64_linux: "eb189220e297f0584aa4659a0364c367857247568139d71b9221c00e5a474919" - sha256 x86_64_linux: "35efcfbcb43d8da80932740a39bfd6c2f84e2f173bd2fee994ba479ba61fc7c1" + sha256 arm64_sequoia: "9276255fe9b32995b3eae789f1d36a8392aa8b8660687ccaf72254f3f38cbbc9" + sha256 arm64_sonoma: "8f9fb46f4484435937bef4a659c1fb3c2b9c76d5b0cd34ef982dd709aec0805e" + sha256 arm64_ventura: "2058d4a40e37ed15822c06e2f2c27fd299f15d992a177daaf88d419d27224c38" + sha256 sonoma: "2a7cde7ab932811531b08addaea260eaebe721053dd7c655cd67dab342755251" + sha256 ventura: "df22d2e5dae7db8ac5724c3fae19e9f8b8b15f8b75205b0f98360ce438a3c9b4" + sha256 arm64_linux: "8009c37ce7a2fce889c16ef9e6506e9916e5b33213ce8e22e09adad77206d8d7" + sha256 x86_64_linux: "3eb75803e9f5796343cee46031d84d69a5e245ad90ce3ebd875b5dffd9002f82" end depends_on "ncurses" From a46ddb48da4b1a7b517d23cf784e5cc4020a214a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 18:15:03 +0000 Subject: [PATCH 0113/1364] jruby: update 10.0.0.1 bottle. --- Formula/j/jruby.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/j/jruby.rb b/Formula/j/jruby.rb index e595c8d0a9430..07083035925da 100644 --- a/Formula/j/jruby.rb +++ b/Formula/j/jruby.rb @@ -11,13 +11,13 @@ class Jruby < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "ad196fcad0f3c6a97b69c12fab1f0961c2c94182edca8c5e2918639ec66f3817" - sha256 cellar: :any, arm64_sonoma: "ad196fcad0f3c6a97b69c12fab1f0961c2c94182edca8c5e2918639ec66f3817" - sha256 cellar: :any, arm64_ventura: "ad196fcad0f3c6a97b69c12fab1f0961c2c94182edca8c5e2918639ec66f3817" - sha256 cellar: :any, sonoma: "3a5a010bde4c89457722c83401bef605a28ea35b82dd6ce0c387c088ff7e04c1" - sha256 cellar: :any, ventura: "3a5a010bde4c89457722c83401bef605a28ea35b82dd6ce0c387c088ff7e04c1" - sha256 cellar: :any_skip_relocation, arm64_linux: "6df34cf800775713d76d8e689df4792bf5310d8b2e1af249d186a806bc1328c5" - sha256 cellar: :any_skip_relocation, x86_64_linux: "93de6a0e45595d8a1e47eefa3c6a950c0c915eb9d1a7b0bdf2ee0de028b61743" + sha256 cellar: :any, arm64_sequoia: "c82c17f18e1078d370cb8ca36dce63593a500bef026a4367a76e18919d909818" + sha256 cellar: :any, arm64_sonoma: "c82c17f18e1078d370cb8ca36dce63593a500bef026a4367a76e18919d909818" + sha256 cellar: :any, arm64_ventura: "c82c17f18e1078d370cb8ca36dce63593a500bef026a4367a76e18919d909818" + sha256 cellar: :any, sonoma: "592788c3ca665d10bd368ad18aef56ee21ea79b799c05122027c9e29fc7b958b" + sha256 cellar: :any, ventura: "592788c3ca665d10bd368ad18aef56ee21ea79b799c05122027c9e29fc7b958b" + sha256 cellar: :any_skip_relocation, arm64_linux: "47a46c4290e0a4645eca1156283f62dd5d7cc565bff0c3cf9b00eb714afaed54" + sha256 cellar: :any_skip_relocation, x86_64_linux: "c3412f241bda3335c86a77ca999e6460c41a90a698135de8c2cbd289fe1b8c4a" end depends_on "openjdk" From d11812d9a0816deb96fb9b579b61d7b020b16be7 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 18:15:38 +0000 Subject: [PATCH 0114/1364] go-jsonnet: update 0.21.0 bottle. --- Formula/g/go-jsonnet.rb | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/Formula/g/go-jsonnet.rb b/Formula/g/go-jsonnet.rb index ffb248b0f2b64..b27188e291dc9 100644 --- a/Formula/g/go-jsonnet.rb +++ b/Formula/g/go-jsonnet.rb @@ -12,17 +12,13 @@ class GoJsonnet < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "3bc19e31a7ea1de9376c90135df48fdd8ed498f594dd0f7916dac2f41b5a2d31" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "7eed7e4575bf7d5222f5d2e40ab27c0fbc5ef5a1c06cb45bb69a84060500a8cb" - sha256 cellar: :any_skip_relocation, arm64_ventura: "d7ef4c5d8638c9eb8197bd5be4bfc1e1e52d6dcb7275fe193850b4729ca199af" - sha256 cellar: :any_skip_relocation, arm64_monterey: "9f6ee690b5458c98426e668d40adc3d9f392b1a3d66a084eb5661dd032ba25d6" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "047317978d20c496cecfed47b54268962b041ef4599de8d46218f382b2ff60d9" - sha256 cellar: :any_skip_relocation, sonoma: "5890f2fa8484a2b9492ee5a0e95aba6231f0c62bdbc5541297b95856a3586d75" - sha256 cellar: :any_skip_relocation, ventura: "0cb7c6f14e4d80552bb290c3f6f9cfe564ca46c37756b14a86adf0ddf671e146" - sha256 cellar: :any_skip_relocation, monterey: "ad1d51519e7a45af2b8132258360965ca84d7b9e4a36ea30dc5b708682ef06d8" - sha256 cellar: :any_skip_relocation, big_sur: "c11c053543e2d2bae86497ceadb07ebd78949aa4822a7061757604a920ce3e1b" - sha256 cellar: :any_skip_relocation, arm64_linux: "fc4ef7e6386b78d8ea874f39df40f82b052a9f69ab8a94d808dfa4eb5db88352" - sha256 cellar: :any_skip_relocation, x86_64_linux: "b6e4b46c874cc4019c247df166cf633df2dbf0dd77e8046aae0cb6594c49cf4b" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "1da0bff35201dd30f0992b3a4d2be4dcf4081a8ece97e8841cdc56202ce9f5f4" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "1da0bff35201dd30f0992b3a4d2be4dcf4081a8ece97e8841cdc56202ce9f5f4" + sha256 cellar: :any_skip_relocation, arm64_ventura: "1da0bff35201dd30f0992b3a4d2be4dcf4081a8ece97e8841cdc56202ce9f5f4" + sha256 cellar: :any_skip_relocation, sonoma: "857205b6b5af2d4cbf762b4479612ceb5cb330d89c4825a7519f216a39fd61f6" + sha256 cellar: :any_skip_relocation, ventura: "857205b6b5af2d4cbf762b4479612ceb5cb330d89c4825a7519f216a39fd61f6" + sha256 cellar: :any_skip_relocation, arm64_linux: "cd6fefa551f11430c771c4f9bc581a08b0ca166eb1caa02d52cfdae71e4e0065" + sha256 cellar: :any_skip_relocation, x86_64_linux: "f561d3294310d773a7f59d4eeb506aca0a86b510a654965096bbebe041c87032" end depends_on "go" => :build From bdf9eafbc0abb3f81f6d469629f0f233de572328 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 18:16:36 +0000 Subject: [PATCH 0115/1364] dependabot: update 1.63.0 bottle. --- Formula/d/dependabot.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/d/dependabot.rb b/Formula/d/dependabot.rb index b0d1e67d25193..e4b8a00b40274 100644 --- a/Formula/d/dependabot.rb +++ b/Formula/d/dependabot.rb @@ -7,12 +7,12 @@ class Dependabot < Formula head "https://github.com/dependabot/cli.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "eeb5548ae78771de3c53106f5a6c6386179fbbc156c54beb83298d3e46495ad3" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "eeb5548ae78771de3c53106f5a6c6386179fbbc156c54beb83298d3e46495ad3" - sha256 cellar: :any_skip_relocation, arm64_ventura: "eeb5548ae78771de3c53106f5a6c6386179fbbc156c54beb83298d3e46495ad3" - sha256 cellar: :any_skip_relocation, sonoma: "6185f7cfaaa886ac22768fb510e323e9425d39c5d5e87ff0e932c7944c0dafc2" - sha256 cellar: :any_skip_relocation, ventura: "6185f7cfaaa886ac22768fb510e323e9425d39c5d5e87ff0e932c7944c0dafc2" - sha256 cellar: :any_skip_relocation, x86_64_linux: "99882a1079b384305faf3fe4ebc498e8db03f1c72427d82d71254d2ef5149de0" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "88c82cf79cf06d85dd7b4cba5060ae8a205b911d587a56f1c4db371c9de94a04" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "88c82cf79cf06d85dd7b4cba5060ae8a205b911d587a56f1c4db371c9de94a04" + sha256 cellar: :any_skip_relocation, arm64_ventura: "88c82cf79cf06d85dd7b4cba5060ae8a205b911d587a56f1c4db371c9de94a04" + sha256 cellar: :any_skip_relocation, sonoma: "e41b12a2aadd7a93f1d594c43161306ed1194ffcfc8c51a64d87b57b363b3aa9" + sha256 cellar: :any_skip_relocation, ventura: "e41b12a2aadd7a93f1d594c43161306ed1194ffcfc8c51a64d87b57b363b3aa9" + sha256 cellar: :any_skip_relocation, x86_64_linux: "d5104f3e4c770b8af07e801f027dcd9ca66448c17c052b568949071e34b6beb4" end depends_on "go" => :build From f930c70340f8ca261c166fe8aea4433a75dbeb8c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 18:17:56 +0000 Subject: [PATCH 0116/1364] fern-api: update 0.60.21 bottle. --- Formula/f/fern-api.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/f/fern-api.rb b/Formula/f/fern-api.rb index 6d429f27284cd..066f306939728 100644 --- a/Formula/f/fern-api.rb +++ b/Formula/f/fern-api.rb @@ -7,7 +7,7 @@ class FernApi < Formula head "https://github.com/fern-api/fern.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, all: "ab4f6aa13173dee7217481886e9992e1c2381bc6db586650279ac07eb68d1416" + sha256 cellar: :any_skip_relocation, all: "eef2c176f8a0bfaa4a55366642aa0ab7960c9aa46b96a3a7e3adde79c205acd1" end depends_on "node" From 457b2287acdfda28f58fd4b6a8c4f56e25e40f26 Mon Sep 17 00:00:00 2001 From: l5io <47201130+l5io@users.noreply.github.com> Date: Wed, 7 May 2025 13:17:56 -0500 Subject: [PATCH 0117/1364] mesheryctl 0.8.75 Created by https://github.com/mislav/bump-homebrew-formula-action --- Formula/m/mesheryctl.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/m/mesheryctl.rb b/Formula/m/mesheryctl.rb index c8064cfb87b59..36e2aa13f94fa 100644 --- a/Formula/m/mesheryctl.rb +++ b/Formula/m/mesheryctl.rb @@ -2,8 +2,8 @@ class Mesheryctl < Formula desc "Command-line utility for Meshery, the cloud native management plane" homepage "https://meshery.io" url "https://github.com/meshery/meshery.git", - tag: "v0.8.74", - revision: "4597589757fae7d3675d37741529224e2040e29b" + tag: "v0.8.75", + revision: "7f1945679d677d6d7baabb9bfc2cd40838a71254" license "Apache-2.0" head "https://github.com/meshery/meshery.git", branch: "master" From d35df7748dbb23c8757faa07d25ac5b256ed9fb0 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 18:17:59 +0000 Subject: [PATCH 0118/1364] dropbear: update 2025.88 bottle. --- Formula/d/dropbear.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/d/dropbear.rb b/Formula/d/dropbear.rb index dd17b8cc1c5c6..89a6297e6369f 100644 --- a/Formula/d/dropbear.rb +++ b/Formula/d/dropbear.rb @@ -11,13 +11,13 @@ class Dropbear < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "1dfc0dcddaa51ff418928bbab824cd4382635ba80ae30cdd90e666ea08a965b6" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "7f4677b6768e3875db44518083f5ac557c17fc9fb964b12839677d0e6284d3f9" - sha256 cellar: :any_skip_relocation, arm64_ventura: "35ef5691418b6927d65e7158ae999b21ee8ee6cbf01d5a6d3a92c44e5fd0836d" - sha256 cellar: :any_skip_relocation, sonoma: "8c1b9b713aed39530cc9ff87b499998293e601d10055bb037498cd9ae29f6dfd" - sha256 cellar: :any_skip_relocation, ventura: "150f8a1e98c529ed24a7e544772de85dcec36d853007938bf0e55a4802758585" - sha256 cellar: :any_skip_relocation, arm64_linux: "930552145f7a020c1c9c78afce2f1dba87ebcb50de3477a42a5e187e6bf390d0" - sha256 cellar: :any_skip_relocation, x86_64_linux: "1ea8c7093f3d411aea877bfc1d26c9538dcf3c6a973aa21696a34b2902e72b5c" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "b9328cf8c07250bf2320af722633579e84db7c992f11d43ebc67aa85a3bbebad" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "fb134cc3f5603b552af4a3b83d58e6576aac58a4a589537f8a1d87d73b1cde15" + sha256 cellar: :any_skip_relocation, arm64_ventura: "a17000ca546c8c5cb69b916d660bab2c9ab3341161d33a6a73f5d40e0dad2300" + sha256 cellar: :any_skip_relocation, sonoma: "db12fa6ae371b408f2ec14107afa41ef7eea2dfeb12cd267b186188e10a19b1b" + sha256 cellar: :any_skip_relocation, ventura: "f5dae867598a50af551fcd22893d6980830310fd01bac1d89c037e428b127085" + sha256 cellar: :any_skip_relocation, arm64_linux: "5252254322544bf05aa9cd1c0d78770b7cee10f037bd0f93d336794a81c51383" + sha256 cellar: :any_skip_relocation, x86_64_linux: "e275ebce599f0b89bdbdd74d0ac4083f61b4ea8b1d4b97b16ba80af6dd4a41af" end head do From a2ca9971732c6aff17684daed447ee40d2a29443 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 18:19:27 +0000 Subject: [PATCH 0119/1364] cfn-lint: update 1.35.0 bottle. --- Formula/c/cfn-lint.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/cfn-lint.rb b/Formula/c/cfn-lint.rb index 5831e811399d6..0f850d0368bc6 100644 --- a/Formula/c/cfn-lint.rb +++ b/Formula/c/cfn-lint.rb @@ -8,13 +8,13 @@ class CfnLint < Formula license "MIT-0" bottle do - sha256 cellar: :any, arm64_sequoia: "a40a059f8a9585095221e8dcc739e2c07b5744cf4ccf569ac4de39ad227bb1ea" - sha256 cellar: :any, arm64_sonoma: "c62787a0a209cc7f1490d2e9b5144f97fa8961fbe6f151cbb474a1652ad25770" - sha256 cellar: :any, arm64_ventura: "99b8e91487100076528b2aba44f500f228d6c52c97c762dbe5572dc387285701" - sha256 cellar: :any, sonoma: "f8b7bf5373a2160a422e8d6a5580985beed0395990a31a89243ac3a3d3749e29" - sha256 cellar: :any, ventura: "cba5cb278ffec3da5a2aecff54413dfae26c6de575f43f67ad0e5b82a5172e1a" - sha256 cellar: :any_skip_relocation, arm64_linux: "cacc32db4f0bc0652025b64ed6836f0d51753deaa307e344031abc76d0e5057d" - sha256 cellar: :any_skip_relocation, x86_64_linux: "550f032b9973f718b7fc876cead6b1ace43e16ecef6a3610081f0cb71cec92bb" + sha256 cellar: :any, arm64_sequoia: "817523c2aab17d240bd6e12994c47804b85753a838187035804f03b83fb0a05a" + sha256 cellar: :any, arm64_sonoma: "2835f36c6532b0c24a8d5c680c6014c2bbaba77c34a23ce5f8c1a213136ad4b5" + sha256 cellar: :any, arm64_ventura: "98733992aaff72e1cf06541dd0edc0f2c1029bcac713c686b0cf7711ef6193bc" + sha256 cellar: :any, sonoma: "1f60bccd11d151885dbb98884d1c1b0ff3cf3ee3198a068711381d240480316c" + sha256 cellar: :any, ventura: "876b602122de375528585fd887eb3d48b6905e2e201411f6a5e3eb08720c42cb" + sha256 cellar: :any_skip_relocation, arm64_linux: "986e76b968984e17c7460eab49047d6b093731a98de0da6660a63497a338fb6d" + sha256 cellar: :any_skip_relocation, x86_64_linux: "c5d6ab88beb9c9849796aeb5958176980665bd9c454b00ea7eb155ba88a44c3d" end depends_on "rust" => :build From 6831d9d6bf7dc2efda140cea3ec4845accbe20d7 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 18:19:50 +0000 Subject: [PATCH 0120/1364] wstunnel: update 10.2.0 bottle. --- Formula/w/wstunnel.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/w/wstunnel.rb b/Formula/w/wstunnel.rb index 59c1738c179bc..143138d14cac7 100644 --- a/Formula/w/wstunnel.rb +++ b/Formula/w/wstunnel.rb @@ -15,13 +15,13 @@ class Wstunnel < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "26a541261c8e7a15e54f8947d3aae6f4ba3389e752d79cbee12e9c48f1b47c9d" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "f653a89edf804bfda5647b1c4041f6354ae441a54dc731ecc6f326013506b660" - sha256 cellar: :any_skip_relocation, arm64_ventura: "a255e81118bdff2150be5b916d64d514f62565aaee0723543ac74ef213f423d0" - sha256 cellar: :any_skip_relocation, sonoma: "05e79f69fa7727cd7eab0356a7e8222b31f9e6725fb82bc2ab82608a8deda219" - sha256 cellar: :any_skip_relocation, ventura: "3c5a6e0c9c4525265e6f958b8d0ab6cf540c521cd4733bcdff94e6f091eae27d" - sha256 cellar: :any_skip_relocation, arm64_linux: "521aa631302b5abc8ec5650c6226eacfc1b902e58b02653c7e2668245d79bd63" - sha256 cellar: :any_skip_relocation, x86_64_linux: "dcef7c221dd3185f7e83e988e6edadb6bba4b8480a23d26e7e08cb65d7fc0387" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "37087a7c1dfe67b61fe2d91c10aa6ef203bc2cf16dc726fcaa6dcc28c0e4a282" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "28ebaec804efedd2d0ea729524ecdce4b224b594575740907b2d97cb60213bd9" + sha256 cellar: :any_skip_relocation, arm64_ventura: "ad3eaaf6382533c30f1d8ae528a9d13dec05433321e5d237d920e8f661de738d" + sha256 cellar: :any_skip_relocation, sonoma: "1cce15bbc4f38d5294eab53411cad2acfb9914d850e1e1a9fe3d6c13ad66eb09" + sha256 cellar: :any_skip_relocation, ventura: "dce50becdc45bb17dad79eec62a6e61d65b9b779e097a43a7d1ea843d8be807a" + sha256 cellar: :any_skip_relocation, arm64_linux: "4a4f49da0e0675859eb7fe252f9b8e0fa17225d28a6e12accd6677aeee7efacd" + sha256 cellar: :any_skip_relocation, x86_64_linux: "6f71fe635fb3472976cb60580cf7ffd7ad8a9e162089840246addca6411beb80" end depends_on "rust" => :build From 8a737999a5f1a39a7b264b99409773be3930b99f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 17:09:04 +0000 Subject: [PATCH 0121/1364] fwupd 2.0.9 --- Formula/f/fwupd.rb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Formula/f/fwupd.rb b/Formula/f/fwupd.rb index 07279a3f66ba9..06ea78c90e827 100644 --- a/Formula/f/fwupd.rb +++ b/Formula/f/fwupd.rb @@ -3,8 +3,8 @@ class Fwupd < Formula desc "Firmware update daemon" homepage "https://github.com/fwupd/fwupd" - url "https://github.com/fwupd/fwupd/releases/download/2.0.8/fwupd-2.0.8.tar.xz" - sha256 "9aac805d18ed8a48fb37c7e8d9644520c33984326b7954584fe38ee2d10a3988" + url "https://github.com/fwupd/fwupd/releases/download/2.0.9/fwupd-2.0.9.tar.xz" + sha256 "091947258ffe7d7d0724864afdc79fcc3c64a42303622b1577a829e7d8ebc2c9" license "LGPL-2.1-or-later" head "https://github.com/fwupd/fwupd.git", branch: "main" @@ -36,6 +36,7 @@ class Fwupd < Formula depends_on "libusb" depends_on "libxmlb" depends_on "protobuf-c" + depends_on "readline" depends_on "sqlite" depends_on "usb.ids" depends_on "xz" From 3821e6e01cc9f83c316f1856937a12d894499a11 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 18:24:50 +0000 Subject: [PATCH 0122/1364] django-completion: update 5.2.1 bottle. --- Formula/d/django-completion.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/d/django-completion.rb b/Formula/d/django-completion.rb index 611aadb2855ce..2d27e738553ee 100644 --- a/Formula/d/django-completion.rb +++ b/Formula/d/django-completion.rb @@ -12,7 +12,7 @@ class DjangoCompletion < Formula end bottle do - sha256 cellar: :any_skip_relocation, all: "5e025add88e385b4aff678cf28f6d8cce558d8d95f0c10c4142ae881f9da8c8e" + sha256 cellar: :any_skip_relocation, all: "4e20fed6f8306d964efba520d1d9fb2f9bc34e445885e036add3bb86dab6c0fc" end def install From 147a45c221804cbd793570c5c60ebeb85d779066 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 18:29:03 +0000 Subject: [PATCH 0123/1364] ruby-build: update 20250507 bottle. --- Formula/r/ruby-build.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/r/ruby-build.rb b/Formula/r/ruby-build.rb index 44554ad350a1e..32a6c5d6ac28e 100644 --- a/Formula/r/ruby-build.rb +++ b/Formula/r/ruby-build.rb @@ -7,7 +7,7 @@ class RubyBuild < Formula head "https://github.com/rbenv/ruby-build.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, all: "f2069c5400f133b43fd287acb62d88671e8d9f7b09547130eb1261f47cea02e9" + sha256 cellar: :any_skip_relocation, all: "d0ef5d0009457d4850b97d009473a98ad10155e5dd00d02994fef9939c73f452" end depends_on "autoconf" From 7dfbab4f2d1eb739f94d4b3c946abf846ada1af3 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 17:43:25 +0000 Subject: [PATCH 0124/1364] tgpt 2.10.0 --- Formula/t/tgpt.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Formula/t/tgpt.rb b/Formula/t/tgpt.rb index 7e90194fb5df0..573d9b99d8f01 100644 --- a/Formula/t/tgpt.rb +++ b/Formula/t/tgpt.rb @@ -1,8 +1,8 @@ class Tgpt < Formula desc "AI Chatbots in terminal without needing API keys" homepage "https://github.com/aandrew-me/tgpt" - url "https://github.com/aandrew-me/tgpt/archive/refs/tags/v2.9.6.tar.gz" - sha256 "6800b06059de1f5bab2aa3bbf61c3d43ec63498a9dccb7a4918e7f8790c04bd8" + url "https://github.com/aandrew-me/tgpt/archive/refs/tags/v2.10.0.tar.gz" + sha256 "0e312176908d581eeb7f0df8fcd0524a4aa4702029d50f553f0f75d6c15bc0d9" license "GPL-3.0-only" head "https://github.com/aandrew-me/tgpt.git", branch: "main" @@ -25,6 +25,6 @@ def install assert_match version.to_s, shell_output("#{bin}/tgpt --version") output = shell_output("#{bin}/tgpt --provider pollinations \"What is 1+1\"") - assert_match "1 + 1 equals 2.", output + assert_match(/(1|one)\s*(\+|\splus\s|\sand\s)\s*(1|one)\s*(\sequals\s|\sis\s|=)\s*(2|two)/i, output) end end From c8033c2401f336e490ac932c577538b657916171 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 19:22:54 +0000 Subject: [PATCH 0125/1364] mesheryctl: update 0.8.75 bottle. --- Formula/m/mesheryctl.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/m/mesheryctl.rb b/Formula/m/mesheryctl.rb index 36e2aa13f94fa..0c58eca8081b8 100644 --- a/Formula/m/mesheryctl.rb +++ b/Formula/m/mesheryctl.rb @@ -10,13 +10,13 @@ class Mesheryctl < Formula no_autobump! because: :bumped_by_upstream bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "05618a459452aa51d8599d63d43348e2ecf83ea5d6cebbb7a35448c988de777e" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "05618a459452aa51d8599d63d43348e2ecf83ea5d6cebbb7a35448c988de777e" - sha256 cellar: :any_skip_relocation, arm64_ventura: "05618a459452aa51d8599d63d43348e2ecf83ea5d6cebbb7a35448c988de777e" - sha256 cellar: :any_skip_relocation, sonoma: "b414c3737ec01d6e03b1375356a7d89b230237c333945acba863a36087ea0f70" - sha256 cellar: :any_skip_relocation, ventura: "b414c3737ec01d6e03b1375356a7d89b230237c333945acba863a36087ea0f70" - sha256 cellar: :any_skip_relocation, arm64_linux: "b6116a65a488706cc80b966f8043c7942527f5e0014dd6f088c5f576b3a32388" - sha256 cellar: :any_skip_relocation, x86_64_linux: "189fcfeb3d10ecb5b47303bcbbcd300625be652ecc80edf144793dafe9ff1b9c" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "50c8d9ede27905878df946e8effcefff91c6a9518372d8ad89450dbc0fd4d368" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "50c8d9ede27905878df946e8effcefff91c6a9518372d8ad89450dbc0fd4d368" + sha256 cellar: :any_skip_relocation, arm64_ventura: "50c8d9ede27905878df946e8effcefff91c6a9518372d8ad89450dbc0fd4d368" + sha256 cellar: :any_skip_relocation, sonoma: "9039e89c33e9efa6edec5058b4fea29b7b1a2140c3e14f541acf6ab84da8c864" + sha256 cellar: :any_skip_relocation, ventura: "9039e89c33e9efa6edec5058b4fea29b7b1a2140c3e14f541acf6ab84da8c864" + sha256 cellar: :any_skip_relocation, arm64_linux: "3fdd0c29dfa8b8ac49f84d6f5fd7d2eed03dbe5cac885e919b3be644e18ae397" + sha256 cellar: :any_skip_relocation, x86_64_linux: "61bfb44dfc446d23480dcc85d14692cf0b7f9ffe9f058141af6fcf7fdb949142" end depends_on "go" => :build From 7a5f3d160ab847781babb3c345f3a12c797f7ff2 Mon Sep 17 00:00:00 2001 From: Pulumi Bot <30351955+pulumi-bot@users.noreply.github.com> Date: Wed, 7 May 2025 19:39:06 +0000 Subject: [PATCH 0126/1364] pulumi --- Formula/p/pulumi.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/p/pulumi.rb b/Formula/p/pulumi.rb index 5835c1ab419e6..69a7c714704ab 100644 --- a/Formula/p/pulumi.rb +++ b/Formula/p/pulumi.rb @@ -2,8 +2,8 @@ class Pulumi < Formula desc "Cloud native development platform" homepage "https://pulumi.io/" url "https://github.com/pulumi/pulumi.git", - tag: "v3.167.0", - revision: "0070add9bd24c1117812e07313dada740a196116" + tag: "v3.168.0", + revision: "800c710a9366c3bcaa213f5765ee887ef17ef508" license "Apache-2.0" head "https://github.com/pulumi/pulumi.git", branch: "master" From 7edf3f9dbc3f1b0a429a9e4b3be2e5be36d08325 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 19:50:09 +0000 Subject: [PATCH 0127/1364] apko 0.27.3 --- Formula/a/apko.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/a/apko.rb b/Formula/a/apko.rb index 92748b0d700ea..ecc0ce47bb63c 100644 --- a/Formula/a/apko.rb +++ b/Formula/a/apko.rb @@ -1,8 +1,8 @@ class Apko < Formula desc "Build OCI images from APK packages directly without Dockerfile" homepage "https://github.com/chainguard-dev/apko" - url "https://github.com/chainguard-dev/apko/archive/refs/tags/v0.27.2.tar.gz" - sha256 "0377bb2968bedae14b91c7f50a06b444600ac2e7d11fdf49d483950be0866873" + url "https://github.com/chainguard-dev/apko/archive/refs/tags/v0.27.3.tar.gz" + sha256 "aec5480a1006ccf3ce9c6e100d64d4b4dbffafaa4f2b9c1005762fb1a88a687e" license "Apache-2.0" head "https://github.com/chainguard-dev/apko.git", branch: "main" From 3898c2d783a212313ab98096e11a1655862b43af Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 19:53:30 +0000 Subject: [PATCH 0128/1364] awscli 2.27.10 --- Formula/a/awscli.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/a/awscli.rb b/Formula/a/awscli.rb index 45634fe516c36..15eeb164d1a19 100644 --- a/Formula/a/awscli.rb +++ b/Formula/a/awscli.rb @@ -3,8 +3,8 @@ class Awscli < Formula desc "Official Amazon AWS command-line interface" homepage "https://aws.amazon.com/cli/" - url "https://github.com/aws/aws-cli/archive/refs/tags/2.27.9.tar.gz" - sha256 "0f4aa58c1c9b0d63a45130f3eedff70e658d0b04d6f79ecc90bf1a4d7aca9481" + url "https://github.com/aws/aws-cli/archive/refs/tags/2.27.10.tar.gz" + sha256 "9ca30a1f8b6b416319eb3306beaac2f543de691d0f30862d851be78808d740b3" license "Apache-2.0" head "https://github.com/aws/aws-cli.git", branch: "v2" From e62c4303f9167a67dc1c5847681f56757a798203 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 19:54:14 +0000 Subject: [PATCH 0129/1364] awscli@1 1.40.10 --- Formula/a/awscli@1.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Formula/a/awscli@1.rb b/Formula/a/awscli@1.rb index a7f5acf0a190b..74c773eaf48c7 100644 --- a/Formula/a/awscli@1.rb +++ b/Formula/a/awscli@1.rb @@ -4,8 +4,8 @@ class AwscliAT1 < Formula desc "Official Amazon AWS command-line interface" homepage "https://aws.amazon.com/cli/" # awscli should only be updated every 10 releases on multiples of 10 - url "https://files.pythonhosted.org/packages/49/ab/4e92a518dbe225606952382bae3c386d4df1e40128ef17581fba4ec243ce/awscli-1.40.0.tar.gz" - sha256 "97f35e7858137d502c279e83713fa3991fd3b76734e43a6751641cdd525c3308" + url "https://files.pythonhosted.org/packages/59/45/76d3fbf5d0f2df3e27420621156603731e71312275dab69f8fe7b66a22cb/awscli-1.40.10.tar.gz" + sha256 "c55420f9b95b731104de9837b86021e73391c899a250fb16a2763c47094918de" license "Apache-2.0" livecheck do @@ -32,8 +32,8 @@ class AwscliAT1 < Formula uses_from_macos "mandoc" resource "botocore" do - url "https://files.pythonhosted.org/packages/7e/49/02f87fd4371662d590f9c4178615e18316e451ba82b214780c06a0be79d7/botocore-1.38.1.tar.gz" - sha256 "c2eb42eeaa502f236ba894a65ea7f7241711150cc450b9d59fbbad41e741adc0" + url "https://files.pythonhosted.org/packages/22/5d/96ec53163bb60f16777af91f5412df73beb79675d264fd3f1cd57dcea2fe/botocore-1.38.11.tar.gz" + sha256 "44c5cb042fefedbe0b0ae4c3f96aed03f4cab6973d4317410c8d7c6d32807aef" end resource "colorama" do From acce86eaded51bb942d268d376fe10bb204a6ced Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 20:05:54 +0000 Subject: [PATCH 0130/1364] draft 0.17.11 --- Formula/d/draft.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/d/draft.rb b/Formula/d/draft.rb index 4e02953d9aa92..8c9d9ebf29198 100644 --- a/Formula/d/draft.rb +++ b/Formula/d/draft.rb @@ -1,8 +1,8 @@ class Draft < Formula desc "Day 0 tool for getting your app on Kubernetes fast" homepage "https://github.com/Azure/draft" - url "https://github.com/Azure/draft/archive/refs/tags/v0.17.10.tar.gz" - sha256 "87486abdf9cbd45de4146a3d80ea1e08a46ecc3e018382a52968de9ca4aedfd2" + url "https://github.com/Azure/draft/archive/refs/tags/v0.17.11.tar.gz" + sha256 "91ab1bc877883e4bc2bd0424f748e2ba8b6c5e20acec52d3061ebd68706956dd" license "MIT" head "https://github.com/Azure/draft.git", branch: "main" From b6e0d2d69eed01764ee98694a5bd6b9c4543b3c8 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 20:09:50 +0000 Subject: [PATCH 0131/1364] flyctl 0.3.117 --- Formula/f/flyctl.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/f/flyctl.rb b/Formula/f/flyctl.rb index c86e5ed296b76..1381a599b2fd1 100644 --- a/Formula/f/flyctl.rb +++ b/Formula/f/flyctl.rb @@ -2,8 +2,8 @@ class Flyctl < Formula desc "Command-line tools for fly.io services" homepage "https://fly.io" url "https://github.com/superfly/flyctl.git", - tag: "v0.3.116", - revision: "b4df9606794f60631ae90b7beef39d39227c3ede" + tag: "v0.3.117", + revision: "13cce8e9a1a4a3f5c0fa4e1b5573576a188b30ed" license "Apache-2.0" head "https://github.com/superfly/flyctl.git", branch: "master" From 4284bac20309e8f33f4e153cba7c014cdf7b38c9 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 20:21:23 +0000 Subject: [PATCH 0132/1364] infat 2.3.4 --- Formula/i/infat.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/i/infat.rb b/Formula/i/infat.rb index 5ccf66ea73a69..f249c6fe9dab8 100644 --- a/Formula/i/infat.rb +++ b/Formula/i/infat.rb @@ -1,8 +1,8 @@ class Infat < Formula desc "Tool to set default openers for file formats and url schemes on MacOS" homepage "https://github.com/philocalyst/infat" - url "https://github.com/philocalyst/infat/archive/refs/tags/v2.3.3.tar.gz" - sha256 "d07e1331d8afc54302c09e35c392255be8484d4fc1c30a953190e892115253a2" + url "https://github.com/philocalyst/infat/archive/refs/tags/v2.3.4.tar.gz" + sha256 "5dd263952f49617ce688d3ec6c043e3dce8c5766fab9a4aef31f99c010c1ccd5" license "MIT" bottle do From e562cf958d6fdec36a5fc9e24c7b657b0080f4bf Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 20:21:59 +0000 Subject: [PATCH 0133/1364] ipsw 3.1.602 --- Formula/i/ipsw.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/i/ipsw.rb b/Formula/i/ipsw.rb index 44b26a0a54b64..6c4e9e494e499 100644 --- a/Formula/i/ipsw.rb +++ b/Formula/i/ipsw.rb @@ -1,8 +1,8 @@ class Ipsw < Formula desc "Research tool for iOS & macOS devices" homepage "https://blacktop.github.io/ipsw" - url "https://github.com/blacktop/ipsw/archive/refs/tags/v3.1.601.tar.gz" - sha256 "8b4868b9434b8c88c076b85e5ad045c5bc3fc390b6af30024173e62fbd54737c" + url "https://github.com/blacktop/ipsw/archive/refs/tags/v3.1.602.tar.gz" + sha256 "513aca01feafb93a2cd17463bf99c79ee8caa37609bfa7e93a5a314129083226" license "MIT" head "https://github.com/blacktop/ipsw.git", branch: "master" From 00df9b42904852eb105ad65c630ac4866adf0485 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 20:22:40 +0000 Subject: [PATCH 0134/1364] jj 0.29.0 --- Formula/j/jj.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/j/jj.rb b/Formula/j/jj.rb index 9d00bfe48991e..2d29f7a2d9123 100644 --- a/Formula/j/jj.rb +++ b/Formula/j/jj.rb @@ -1,8 +1,8 @@ class Jj < Formula desc "Git-compatible distributed version control system" homepage "https://github.com/jj-vcs/jj" - url "https://github.com/jj-vcs/jj/archive/refs/tags/v0.28.2.tar.gz" - sha256 "dae80d2629a9f430a9ea795c8cd378ced6ce1c870ab9ffe3b61f64cdd636a2bc" + url "https://github.com/jj-vcs/jj/archive/refs/tags/v0.29.0.tar.gz" + sha256 "57df34a06b1d2125ccd6e8383ea08f24160c48e33e9daecd883a2e59567a9fd9" license "Apache-2.0" head "https://github.com/jj-vcs/jj.git", branch: "main" From aec8250a8b387f039ea633614aebca29565306e1 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 20:24:38 +0000 Subject: [PATCH 0135/1364] kubectl-ai 0.0.8 --- Formula/k/kubectl-ai.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/k/kubectl-ai.rb b/Formula/k/kubectl-ai.rb index 571e4147f6c18..7c1205dc4a565 100644 --- a/Formula/k/kubectl-ai.rb +++ b/Formula/k/kubectl-ai.rb @@ -1,8 +1,8 @@ class KubectlAi < Formula desc "AI powered Kubernetes Assistant" homepage "https://github.com/GoogleCloudPlatform/kubectl-ai" - url "https://github.com/GoogleCloudPlatform/kubectl-ai/archive/refs/tags/v0.0.7.tar.gz" - sha256 "594bf9333e39b4c9e7292bbb4d27c7eee932efb5d11da59b684ec9953a5e29bf" + url "https://github.com/GoogleCloudPlatform/kubectl-ai/archive/refs/tags/v0.0.8.tar.gz" + sha256 "d4547d69a2b1014ed23989349eb210829373d43b94514896d2d4fecb6bb3488a" license "Apache-2.0" bottle do From d2c9790ecf2fb3841866e43f0c408b3bf7a2d636 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 20:32:26 +0000 Subject: [PATCH 0136/1364] locust 2.37.1 --- Formula/l/locust.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Formula/l/locust.rb b/Formula/l/locust.rb index 66e43583c8c5a..3d627f74703c2 100644 --- a/Formula/l/locust.rb +++ b/Formula/l/locust.rb @@ -3,8 +3,8 @@ class Locust < Formula desc "Scalable user load testing tool written in Python" homepage "https://locust.io/" - url "https://files.pythonhosted.org/packages/88/c7/02dc461ba86b58bfee8b812d3e0ce556ce41e84597bd04d3d1490649e797/locust-2.37.0.tar.gz" - sha256 "9e3982e325d2ca7bca1641f8100dc102366f600ed752b6d33c9439d6ad4cf5ac" + url "https://files.pythonhosted.org/packages/6a/8f/e358f3e3850a4057c05f635d94e27a2fe739301fae5f2ece230a6a8ea282/locust-2.37.1.tar.gz" + sha256 "97951b319cb08c8853ef76d4732359f04617d27be41c1bf91469b9a528b652e0" license "MIT" bottle do @@ -104,8 +104,8 @@ class Locust < Formula end resource "locust-cloud" do - url "https://files.pythonhosted.org/packages/22/b7/7612b19f900d547f278aef8834a4dccb40c3524d12e268c4449267eea4da/locust_cloud-1.21.1.tar.gz" - sha256 "942101a069ddc82ec22b9085c30bd6b94816b952e957448be7253ac89c3d5ebe" + url "https://files.pythonhosted.org/packages/22/6b/886a625ec10c429091473abfe96ccddff84e7de97dfc2abce450e2fc3ff7/locust_cloud-1.21.2.tar.gz" + sha256 "f780dccc41910cc406da7e67adc411eab6e02dc198eb0c0e037347632d75791a" end resource "markupsafe" do From 2e86198f284ba68ccaeacf58d294ddf29a0c833f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 20:46:03 +0000 Subject: [PATCH 0137/1364] railway 4.4.0 --- Formula/r/railway.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/r/railway.rb b/Formula/r/railway.rb index e1e4fb6c0cef9..f099746468281 100644 --- a/Formula/r/railway.rb +++ b/Formula/r/railway.rb @@ -1,8 +1,8 @@ class Railway < Formula desc "Develop and deploy code with zero configuration" homepage "https://railway.com/" - url "https://github.com/railwayapp/cli/archive/refs/tags/v4.3.0.tar.gz" - sha256 "dc237d08b18f26efa33f39504be010fdabc2ad7201cd8353d133c9a6eac22be0" + url "https://github.com/railwayapp/cli/archive/refs/tags/v4.4.0.tar.gz" + sha256 "b8879601028e9922491f9bcf56f53837d19be655ffa0fd88eb090f3d1b1b3e06" license "MIT" head "https://github.com/railwayapp/cli.git", branch: "master" From 38fece310f1a0790218105429c128de0b0117af3 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 20:46:30 +0000 Subject: [PATCH 0138/1364] rattler-index 0.22.6 --- Formula/r/rattler-index.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/r/rattler-index.rb b/Formula/r/rattler-index.rb index 4457ab1d8e6d5..50f233acd5dcb 100644 --- a/Formula/r/rattler-index.rb +++ b/Formula/r/rattler-index.rb @@ -1,8 +1,8 @@ class RattlerIndex < Formula desc "Index conda channels using rattler" homepage "https://github.com/conda/rattler" - url "https://github.com/conda/rattler/archive/refs/tags/rattler_index-v0.22.5.tar.gz" - sha256 "9cef3f2122c18c7c6c06417c087d7cc7153d2ceca0d0d8bb2fa9892d1299c016" + url "https://github.com/conda/rattler/archive/refs/tags/rattler_index-v0.22.6.tar.gz" + sha256 "c50d7e025b50c828ebf71e8393eec4c177a2cf727940478a4d8af17ff1b0ac49" license "BSD-3-Clause" head "https://github.com/conda/rattler.git", branch: "main" From a834b852287d55aa46790ecda865b26abe7e710e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 20:49:18 +0000 Subject: [PATCH 0139/1364] sf 2.87.7 --- Formula/s/sf.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/s/sf.rb b/Formula/s/sf.rb index de5c27d607856..b513d0d93a076 100644 --- a/Formula/s/sf.rb +++ b/Formula/s/sf.rb @@ -1,8 +1,8 @@ class Sf < Formula desc "Command-line toolkit for Salesforce development" homepage "https://developer.salesforce.com/tools/salesforcecli" - url "https://registry.npmjs.org/@salesforce/cli/-/cli-2.86.9.tgz" - sha256 "6c31d518b5faf55e92e1f29249aba62c714f7cc609bf5ff2f31ab8644436c6d6" + url "https://registry.npmjs.org/@salesforce/cli/-/cli-2.87.7.tgz" + sha256 "5595dc6eb8794b9fb0f002322911d03dc1184ece2c9f8dbfcc265b2010f03ba1" license "BSD-3-Clause" livecheck do From 4d9e7f343ffa11a0cdde1c21587df2ff5ec59ad4 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 20:55:53 +0000 Subject: [PATCH 0140/1364] uv 0.7.3 --- Formula/u/uv.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/u/uv.rb b/Formula/u/uv.rb index 43a5f8d1104a4..b162993bc17ed 100644 --- a/Formula/u/uv.rb +++ b/Formula/u/uv.rb @@ -1,8 +1,8 @@ class Uv < Formula desc "Extremely fast Python package installer and resolver, written in Rust" homepage "https://docs.astral.sh/uv/" - url "https://github.com/astral-sh/uv/archive/refs/tags/0.7.2.tar.gz" - sha256 "bf42c698cff01e7f383351efce7f014af788810fa77d41a8f4a853e073582d1e" + url "https://github.com/astral-sh/uv/archive/refs/tags/0.7.3.tar.gz" + sha256 "ad6dbd387c8627571580c81e9e127555d4b91d2bec4578876c5f2505a4cda29c" license any_of: ["Apache-2.0", "MIT"] head "https://github.com/astral-sh/uv.git", branch: "main" From 998461d07224ad6816438a2e2687a59560d157da Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 20:56:23 +0000 Subject: [PATCH 0141/1364] vercel-cli 41.7.3 --- Formula/v/vercel-cli.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/v/vercel-cli.rb b/Formula/v/vercel-cli.rb index 4f3bf1c3cdbab..fb0f5ce600a3e 100644 --- a/Formula/v/vercel-cli.rb +++ b/Formula/v/vercel-cli.rb @@ -1,8 +1,8 @@ class VercelCli < Formula desc "Command-line interface for Vercel" homepage "https://vercel.com/home" - url "https://registry.npmjs.org/vercel/-/vercel-41.7.2.tgz" - sha256 "0c580414f235d99da11e1bfb5bf8dd0ec0cedd8e6d0b5f9c71bb5f6c399a09c6" + url "https://registry.npmjs.org/vercel/-/vercel-41.7.3.tgz" + sha256 "b4c6fb69535108ab5cbc8f47abe582afad9c71c9a6e06ce3aea5b18fa7e54964" license "Apache-2.0" bottle do From 9954f4f6e4b7a18d31c1c8bbae2071626f93adf3 Mon Sep 17 00:00:00 2001 From: Val V Date: Wed, 7 May 2025 21:33:43 +0000 Subject: [PATCH 0142/1364] tmuxai 1.0.3 (new formula) --- .github/autobump.txt | 1 + Formula/t/tmuxai.rb | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 Formula/t/tmuxai.rb diff --git a/.github/autobump.txt b/.github/autobump.txt index df8c622fef60b..d6ed3d3d08c84 100644 --- a/.github/autobump.txt +++ b/.github/autobump.txt @@ -3627,6 +3627,7 @@ tmt tmux-mem-cpu-load tmux-sessionizer tmux-xpanes +tmuxai tmuxp tmx toast diff --git a/Formula/t/tmuxai.rb b/Formula/t/tmuxai.rb new file mode 100644 index 0000000000000..245a6f1561b5a --- /dev/null +++ b/Formula/t/tmuxai.rb @@ -0,0 +1,23 @@ +class Tmuxai < Formula + desc "AI-powered, non-intrusive terminal assistant" + homepage "https://tmuxai.dev/" + url "https://github.com/alvinunreal/tmuxai/archive/refs/tags/v1.0.3.tar.gz" + sha256 "731bd76515d3ddef1d8c9582c5e35fb382c3137a97b72802c4ea8b1da859c97e" + license "Apache-2.0" + + depends_on "go" => :build + depends_on "tmux" + + def install + ldflags = "-s -w -X github.com/alvinunreal/tmuxai/internal.Version=v#{version}" + + system "go", "build", *std_go_args(ldflags:) + end + + test do + assert_match version.to_s, shell_output("#{bin}/tmuxai -v") + + output = shell_output("#{bin}/tmuxai -f nonexistent 2>&1", 1) + assert_match "Error reading task file", output + end +end From 34b34b1782ca7232e8ae1a1b620dd2e22252c76f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 22:46:34 +0000 Subject: [PATCH 0143/1364] vercel-cli: update 41.7.3 bottle. --- Formula/v/vercel-cli.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/v/vercel-cli.rb b/Formula/v/vercel-cli.rb index fb0f5ce600a3e..3c14c99722281 100644 --- a/Formula/v/vercel-cli.rb +++ b/Formula/v/vercel-cli.rb @@ -6,13 +6,13 @@ class VercelCli < Formula license "Apache-2.0" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "8d07209c98c675477f0d718ba43df4616d49e1481b781d97a2a40467adbf9809" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "8d07209c98c675477f0d718ba43df4616d49e1481b781d97a2a40467adbf9809" - sha256 cellar: :any_skip_relocation, arm64_ventura: "8d07209c98c675477f0d718ba43df4616d49e1481b781d97a2a40467adbf9809" - sha256 cellar: :any_skip_relocation, sonoma: "15e9108f7d86a01e36fc85350a83c9fd7f5a013a86738bf62405b2dff29c9c35" - sha256 cellar: :any_skip_relocation, ventura: "15e9108f7d86a01e36fc85350a83c9fd7f5a013a86738bf62405b2dff29c9c35" - sha256 cellar: :any_skip_relocation, arm64_linux: "6b3b29942c6dcdd70d2438ddd086e4ead479c04707fe232515dd1f8e1894b9cf" - sha256 cellar: :any_skip_relocation, x86_64_linux: "5f1678bf2265ce36756821b4d0b78134657901f9389a5c19e2e7816807051495" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "70a68095f657c43135aebfec4217d8d059f1b34fd8e2cfae94854266db2f6a11" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "70a68095f657c43135aebfec4217d8d059f1b34fd8e2cfae94854266db2f6a11" + sha256 cellar: :any_skip_relocation, arm64_ventura: "70a68095f657c43135aebfec4217d8d059f1b34fd8e2cfae94854266db2f6a11" + sha256 cellar: :any_skip_relocation, sonoma: "2d13fab60052c5082e1aaf6a1a6da62ba5eb7e88eae739044f426021881b5297" + sha256 cellar: :any_skip_relocation, ventura: "2d13fab60052c5082e1aaf6a1a6da62ba5eb7e88eae739044f426021881b5297" + sha256 cellar: :any_skip_relocation, arm64_linux: "5da41b861161393c81d1c7af9a280bcd49e6ff9cb2e02aa6c4e4137fc4983462" + sha256 cellar: :any_skip_relocation, x86_64_linux: "95056f4ed61642609f2e79b6ba79da8768a9026259e1a8c021f6edceb8ce90c0" end depends_on "node" From 444a05a7115183d5be10e8704183f758d8a03098 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 22:53:18 +0000 Subject: [PATCH 0144/1364] botan 3.8.1 --- Formula/b/botan.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/b/botan.rb b/Formula/b/botan.rb index 4c7ff455221db..9442a540a3a62 100644 --- a/Formula/b/botan.rb +++ b/Formula/b/botan.rb @@ -1,8 +1,8 @@ class Botan < Formula desc "Cryptographic algorithms and formats library in C++" homepage "https://botan.randombit.net/" - url "https://botan.randombit.net/releases/Botan-3.8.0.tar.xz" - sha256 "2af468933ba6b53b1a65696cdae6479f04726c606c19ee8bd0252df3faf07f99" + url "https://botan.randombit.net/releases/Botan-3.8.1.tar.xz" + sha256 "b039681d4b861a2f5853746d8ba806f553e23869ed72d89edbfa3c3dbfa17e68" license "BSD-2-Clause" head "https://github.com/randombit/botan.git", branch: "master" From ba8b1fa6a727b07e7c5f74634dac61c9b0a44f59 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 22:55:56 +0000 Subject: [PATCH 0145/1364] clarinet 3.0.1 --- Formula/c/clarinet.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/clarinet.rb b/Formula/c/clarinet.rb index 4ea91f916e782..e70260885f769 100644 --- a/Formula/c/clarinet.rb +++ b/Formula/c/clarinet.rb @@ -1,8 +1,8 @@ class Clarinet < Formula desc "Command-line tool and runtime for the Clarity smart contract language" homepage "https://www.hiro.so/clarinet" - url "https://github.com/hirosystems/clarinet/archive/refs/tags/v2.16.0.tar.gz" - sha256 "a573b1a111be95c200bb0638ef6ac896a3511dea741b4ac43161f9fc9e4d5579" + url "https://github.com/hirosystems/clarinet/archive/refs/tags/v3.0.1.tar.gz" + sha256 "97feea2fe5b32262c90a34124c7becab7a2fbbe8a0ff409b325ed7d229abd47a" license "GPL-3.0-only" head "https://github.com/hirosystems/clarinet.git", branch: "main" From a440e0269207215bc0cfcdf10538b2d02d75db80 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 22:57:05 +0000 Subject: [PATCH 0146/1364] cog 0.14.9 --- Formula/c/cog.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/cog.rb b/Formula/c/cog.rb index 44b92f865c640..1a5ff1ef89791 100644 --- a/Formula/c/cog.rb +++ b/Formula/c/cog.rb @@ -1,8 +1,8 @@ class Cog < Formula desc "Containers for machine learning" homepage "https://cog.run/" - url "https://github.com/replicate/cog/archive/refs/tags/v0.14.8.tar.gz" - sha256 "1e5de299426f59dd0f42a135400e252601dcbad25c110d5e13b577733c86dd7a" + url "https://github.com/replicate/cog/archive/refs/tags/v0.14.9.tar.gz" + sha256 "3e5db97b0cd59b3e0106371ef37c1e2d8c542f74c6aef1dfd58c6cbd67fc0705" license "Apache-2.0" head "https://github.com/replicate/cog.git", branch: "main" From 654aa0846858d186aa1fb953bf087245e53ffd4a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 23:01:36 +0000 Subject: [PATCH 0147/1364] dyld-headers 1284.13 --- Formula/d/dyld-headers.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/d/dyld-headers.rb b/Formula/d/dyld-headers.rb index 1fa84b8cccda7..412e629fc64c9 100644 --- a/Formula/d/dyld-headers.rb +++ b/Formula/d/dyld-headers.rb @@ -1,8 +1,8 @@ class DyldHeaders < Formula desc "Header files for the dynamic linker" homepage "https://opensource.apple.com/" - url "https://github.com/apple-oss-distributions/dyld/archive/refs/tags/dyld-1245.1.tar.gz" - sha256 "5d3f663a084086d2096b9b7681209922716f940c8bd895ffd13be3da7fde2f17" + url "https://github.com/apple-oss-distributions/dyld/archive/refs/tags/dyld-1284.13.tar.gz" + sha256 "583a6ac254698f17feb7c8a83c364d242ab9185aaf4f73478056579da6bce968" license "APSL-2.0" bottle do From d5ad9f32aad23ac420e58d303a0fb0bd3af65c1c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 23:04:59 +0000 Subject: [PATCH 0148/1364] ftxui 6.1.9 --- Formula/f/ftxui.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/f/ftxui.rb b/Formula/f/ftxui.rb index 1985f39698e31..692ea571068a7 100644 --- a/Formula/f/ftxui.rb +++ b/Formula/f/ftxui.rb @@ -1,8 +1,8 @@ class Ftxui < Formula desc "C++ Functional Terminal User Interface" homepage "https://github.com/ArthurSonzogni/FTXUI" - url "https://github.com/ArthurSonzogni/FTXUI/archive/refs/tags/v6.1.8.tar.gz" - sha256 "bf9166bcc9425ec38f98c864150666356fb2673b47b63e1647f5acccc6787d0d" + url "https://github.com/ArthurSonzogni/FTXUI/archive/refs/tags/v6.1.9.tar.gz" + sha256 "45819c1e54914783d4a1ca5633885035d74146778a1f74e1213cdb7b76340e71" license "MIT" head "https://github.com/ArthurSonzogni/FTXUI.git", branch: "main" From 39a9b3d927c3062a96018e03a8d121a80cf55e60 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 23:18:38 +0000 Subject: [PATCH 0149/1364] lume 0.2.12 --- Formula/l/lume.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/l/lume.rb b/Formula/l/lume.rb index 1f3482e4d5654..8fcbc67727477 100644 --- a/Formula/l/lume.rb +++ b/Formula/l/lume.rb @@ -1,8 +1,8 @@ class Lume < Formula desc "Create and manage Apple Silicon-native virtual machines" homepage "https://github.com/trycua/computer" - url "https://github.com/trycua/computer/archive/refs/tags/lume-v0.2.11.tar.gz" - sha256 "026e74db52493b7fcfca9f82bce486e2f896d159baad32215e1d597356e6e9c5" + url "https://github.com/trycua/computer/archive/refs/tags/lume-v0.2.12.tar.gz" + sha256 "3739c2c9b5cb630759916f51e09748296a51817ca9419d497010dc6c7ddbd290" license "MIT" head "https://github.com/trycua/computer.git", branch: "main" From efd2f317fda6701e380e877e6e1adc5e85ca6882 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 23:20:56 +0000 Subject: [PATCH 0150/1364] mlt 7.32.0 --- Formula/m/mlt.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/m/mlt.rb b/Formula/m/mlt.rb index 0d71c51b5dce9..5e8e3fea39850 100644 --- a/Formula/m/mlt.rb +++ b/Formula/m/mlt.rb @@ -1,8 +1,8 @@ class Mlt < Formula desc "Author, manage, and run multitrack audio/video compositions" homepage "https://www.mltframework.org/" - url "https://github.com/mltframework/mlt/releases/download/v7.30.0/mlt-7.30.0.tar.gz" - sha256 "c802a5fdc16324f6c69273d0bb9718d30c2f635422e171ee01c0e7745e0e793c" + url "https://github.com/mltframework/mlt/releases/download/v7.32.0/mlt-7.32.0.tar.gz" + sha256 "1ca5aadfe27995c879b9253b3a48d1dcc3b1247ea0b5620b087d58f5521be028" license "LGPL-2.1-only" head "https://github.com/mltframework/mlt.git", branch: "master" From 38f2c07122df71c742c4380a82ea8a133a9e5c6a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 23:22:17 +0000 Subject: [PATCH 0151/1364] mtoc 1024.3 --- Formula/m/mtoc.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/m/mtoc.rb b/Formula/m/mtoc.rb index 8a868903deb05..a8f09dfe829f4 100644 --- a/Formula/m/mtoc.rb +++ b/Formula/m/mtoc.rb @@ -1,8 +1,8 @@ class Mtoc < Formula desc "Mach-O to PE/COFF binary converter" homepage "https://opensource.apple.com/" - url "https://github.com/apple-oss-distributions/cctools/archive/refs/tags/cctools-1021.4.tar.gz" - sha256 "3d28444b2d33ae53a6ac0119846e98cfebdb5839a224a2436fe7537dcc0d79ae" + url "https://github.com/apple-oss-distributions/cctools/archive/refs/tags/cctools-1024.3.tar.gz" + sha256 "ffe47144929605307826d9cc5697369e18c83f681860e3c397b6c11279e03318" license "APSL-2.0" bottle do From cbd5f5c4db2e1a0753c52fe0ebc794f24f2ad18e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 23:23:34 +0000 Subject: [PATCH 0152/1364] netlify-cli 21.2.0 --- Formula/n/netlify-cli.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/n/netlify-cli.rb b/Formula/n/netlify-cli.rb index 692a3c710e0a7..0e761a01007d5 100644 --- a/Formula/n/netlify-cli.rb +++ b/Formula/n/netlify-cli.rb @@ -1,8 +1,8 @@ class NetlifyCli < Formula desc "Netlify command-line tool" homepage "https://www.netlify.com/docs/cli" - url "https://registry.npmjs.org/netlify-cli/-/netlify-cli-21.1.0.tgz" - sha256 "3f8acdc7b72510bed02e8210caf6029c8ac3f856b1b469b476b62fec489908d3" + url "https://registry.npmjs.org/netlify-cli/-/netlify-cli-21.2.0.tgz" + sha256 "9a237e7f6fca419dfc7cc42ed34d15927d82a8a0970ceaa165ffac34c46f0608" license "MIT" head "https://github.com/netlify/cli.git", branch: "main" From 305517e4e7e6127489af7189418c47f04b2805a1 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 23:28:09 +0000 Subject: [PATCH 0153/1364] pgrx 0.14.2 --- Formula/p/pgrx.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/p/pgrx.rb b/Formula/p/pgrx.rb index e4ccdde4d3cc9..c18349de811eb 100644 --- a/Formula/p/pgrx.rb +++ b/Formula/p/pgrx.rb @@ -1,8 +1,8 @@ class Pgrx < Formula desc "Build Postgres Extensions with Rust" homepage "https://github.com/pgcentralfoundation/pgrx" - url "https://github.com/pgcentralfoundation/pgrx/archive/refs/tags/v0.14.1.tar.gz" - sha256 "65243eb07e2979db3f4536e353accec1037bb33d5485669afb2f652ffc4f550f" + url "https://github.com/pgcentralfoundation/pgrx/archive/refs/tags/v0.14.2.tar.gz" + sha256 "3d3d45d225756a7dadfaed3b22c3a0898b5292968314747c5f4de3c4a96f497d" license "MIT" bottle do From 7b850ecde67648efbc1bf600be82dc561392a34e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 23:38:48 +0000 Subject: [PATCH 0154/1364] telnet 306 --- Formula/t/telnet.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/t/telnet.rb b/Formula/t/telnet.rb index 4f48317ae7242..d23ba819adae7 100644 --- a/Formula/t/telnet.rb +++ b/Formula/t/telnet.rb @@ -1,8 +1,8 @@ class Telnet < Formula desc "User interface to the TELNET protocol" homepage "https://opensource.apple.com/" - url "https://github.com/apple-oss-distributions/remote_cmds/archive/refs/tags/remote_cmds-303.141.1.tar.gz" - sha256 "5b434a619008406a798af1d724591f6a71f691292ea20c07bfc32b783b8a08a9" + url "https://github.com/apple-oss-distributions/remote_cmds/archive/refs/tags/remote_cmds-306.tar.gz" + sha256 "7f014f7eebb115460ea782e6bcade6d16effa56da17ee30f00012af07bc96c36" license all_of: ["BSD-4-Clause-UC", "APSL-1.0"] bottle do From b4b6dc03790ddb4dd9360f8586f3c72bd23fcd6b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 23:38:57 +0000 Subject: [PATCH 0155/1364] telnetd 306 --- Formula/t/telnetd.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/t/telnetd.rb b/Formula/t/telnetd.rb index 8cee8e0e650db..5024f416371f2 100644 --- a/Formula/t/telnetd.rb +++ b/Formula/t/telnetd.rb @@ -1,8 +1,8 @@ class Telnetd < Formula desc "TELNET server" homepage "https://opensource.apple.com/" - url "https://github.com/apple-oss-distributions/remote_cmds/archive/refs/tags/remote_cmds-303.141.1.tar.gz" - sha256 "5b434a619008406a798af1d724591f6a71f691292ea20c07bfc32b783b8a08a9" + url "https://github.com/apple-oss-distributions/remote_cmds/archive/refs/tags/remote_cmds-306.tar.gz" + sha256 "7f014f7eebb115460ea782e6bcade6d16effa56da17ee30f00012af07bc96c36" license all_of: ["BSD-4-Clause-UC", "BSD-3-Clause"] bottle do From 82fcdffcd949a9280c9cfafadede02a8c985976e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 23:45:04 +0000 Subject: [PATCH 0156/1364] youtubedr 2.10.4 --- Formula/y/youtubedr.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/y/youtubedr.rb b/Formula/y/youtubedr.rb index 0e6575b5ffa0f..a3e31374e7e27 100644 --- a/Formula/y/youtubedr.rb +++ b/Formula/y/youtubedr.rb @@ -1,8 +1,8 @@ class Youtubedr < Formula desc "Download Youtube Video in Golang" homepage "https://github.com/kkdai/youtube" - url "https://github.com/kkdai/youtube/archive/refs/tags/v2.10.3.tar.gz" - sha256 "697ca27f894efdd3f1249b46d7e587a3d1348158e130c5c1307ce32d505c6d01" + url "https://github.com/kkdai/youtube/archive/refs/tags/v2.10.4.tar.gz" + sha256 "c1c282ae902d84f65ea3e891bb8da48525b5d9b0cc9662c277312d5cc402ea66" license "MIT" bottle do From f548bb6296bfd1acf42cfd7d832e8ed82b216b15 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 00:27:56 +0000 Subject: [PATCH 0157/1364] youtubedr: update 2.10.4 bottle. --- Formula/y/youtubedr.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/y/youtubedr.rb b/Formula/y/youtubedr.rb index a3e31374e7e27..39a3441141ace 100644 --- a/Formula/y/youtubedr.rb +++ b/Formula/y/youtubedr.rb @@ -6,12 +6,12 @@ class Youtubedr < Formula license "MIT" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "80be28d8e4ae7338c0265cd4c41f23c932fc38dc5547079b261d5dc4a2b22252" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "80be28d8e4ae7338c0265cd4c41f23c932fc38dc5547079b261d5dc4a2b22252" - sha256 cellar: :any_skip_relocation, arm64_ventura: "80be28d8e4ae7338c0265cd4c41f23c932fc38dc5547079b261d5dc4a2b22252" - sha256 cellar: :any_skip_relocation, sonoma: "c50f57c5f6eabfb52a640149f3c1a9941c7fbdbaf97349d31ada9f4cfe14cb1c" - sha256 cellar: :any_skip_relocation, ventura: "c50f57c5f6eabfb52a640149f3c1a9941c7fbdbaf97349d31ada9f4cfe14cb1c" - sha256 cellar: :any_skip_relocation, x86_64_linux: "7812640bda54733cb1ee2b0144041576815809a3c6381ea75b082db2dc39a7b1" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "908db821e0a543801517fa6195aabf2ae9a688ed7037e89d629f5723b509f141" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "908db821e0a543801517fa6195aabf2ae9a688ed7037e89d629f5723b509f141" + sha256 cellar: :any_skip_relocation, arm64_ventura: "908db821e0a543801517fa6195aabf2ae9a688ed7037e89d629f5723b509f141" + sha256 cellar: :any_skip_relocation, sonoma: "812303cccd71ab7bd988ee97428eab75afa80d562f939f5021491609d27333fd" + sha256 cellar: :any_skip_relocation, ventura: "812303cccd71ab7bd988ee97428eab75afa80d562f939f5021491609d27333fd" + sha256 cellar: :any_skip_relocation, x86_64_linux: "dfd738a7fb08baf4d5c4f6bd2c561ce742c4f99288f6dd1c078565aae27591e0" end depends_on "go" => :build From 6617eeee710b6a9646de156c9785942c37af2aa9 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 00:28:53 +0000 Subject: [PATCH 0158/1364] pgrx: update 0.14.2 bottle. --- Formula/p/pgrx.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/p/pgrx.rb b/Formula/p/pgrx.rb index c18349de811eb..6f971bc96e907 100644 --- a/Formula/p/pgrx.rb +++ b/Formula/p/pgrx.rb @@ -6,13 +6,13 @@ class Pgrx < Formula license "MIT" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "9dd5b2d8f08d7d6ecb120e789ab2c9dd61082bb1be08617d4c8efceaeb82e64f" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "cab3f075c46646063a259cef20b00c579514f60f4974bf09a8915e43348541f7" - sha256 cellar: :any_skip_relocation, arm64_ventura: "eba6c0b8b346ce032c32e4b3be1ec6310b10cb9d70a0ebb61c4537bade5a0fa9" - sha256 cellar: :any_skip_relocation, sonoma: "8d6f3f683b189fede332739d6d65e7337c49ea4469c83274331155bdb4b6ea19" - sha256 cellar: :any_skip_relocation, ventura: "ece4fc9c89237b468784170068f1a3e476c9c2536c3850b0a9d471490109d526" - sha256 cellar: :any_skip_relocation, arm64_linux: "c6eb1275c721e9d6ebad7601ed3857183009988a1d4ce11803bdd754a9d8c110" - sha256 cellar: :any_skip_relocation, x86_64_linux: "7fae180ab458941618f2afc02b206b277f4cae2830218cd6c7701addffd14b3a" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "73f0c406bebd43959455aeff419442dd183f50a4334c6952d88cadfd3789e3fd" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "d6f04a4c9a14d67ab5ee51f14d4a09a346558c9a7392139bfba93a3d8aac5f48" + sha256 cellar: :any_skip_relocation, arm64_ventura: "a1e78d65541f458e0e4772cf0ce22da31becfc4415d0f30fbf0b6b1dbf4426ce" + sha256 cellar: :any_skip_relocation, sonoma: "d4d597c9e49f2e68d67b1b3a1f59e1522ad852b89042a5bbbe2bd71e8698e597" + sha256 cellar: :any_skip_relocation, ventura: "3e098fc95719bdacdf15b368694ffa63a562c3fbe24f76695184befebb63d3d2" + sha256 cellar: :any_skip_relocation, arm64_linux: "69bd019df33da3eeb8a704c5c60db8246a56e1e1135d8d617fcd4537c0fabfe8" + sha256 cellar: :any_skip_relocation, x86_64_linux: "b077d3db94e29075d1a3a3e076f455139f9514160b9a1a1cdc733512c6fc4e68" end depends_on "pkgconf" => :build From 65a92ea0d54c766fdff1a0077ee13e645f8b644b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 00:28:59 +0000 Subject: [PATCH 0159/1364] netlify-cli: update 21.2.0 bottle. --- Formula/n/netlify-cli.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/n/netlify-cli.rb b/Formula/n/netlify-cli.rb index 0e761a01007d5..ecca26e47e8ed 100644 --- a/Formula/n/netlify-cli.rb +++ b/Formula/n/netlify-cli.rb @@ -7,13 +7,13 @@ class NetlifyCli < Formula head "https://github.com/netlify/cli.git", branch: "main" bottle do - sha256 arm64_sequoia: "129946cd7871739a8c4b847b6bb46d13654ab7c38777080c8f1e226c7511348d" - sha256 arm64_sonoma: "91ce14ac348281efd13c47b9deaaf91be5098b2f8ab37ae106e2f84ef5e5b1e7" - sha256 arm64_ventura: "56a79f977737f67eec987b17d3250f372126366ee637465ab8f9b562a663ec7e" - sha256 sonoma: "9dbdfcdd8a09bba86d3ed0f9a157c93824ac81a50ee4052412240441a2db460e" - sha256 ventura: "01fb73bcd8944bb7a7990ad580626bac6c67d835b812492af685faef91e8d094" - sha256 cellar: :any_skip_relocation, arm64_linux: "676a5b2cb48626c917afa0cce72476658921257facb24ac8a6ba81abbb1dcded" - sha256 cellar: :any_skip_relocation, x86_64_linux: "4d29f8ec454339877b14da77b0525d73843f2791faf4bd668f65c8d33f85a4b1" + sha256 arm64_sequoia: "2308423d95f0a4a9e7a0104d632b8ef7c72038f7289235a1a689bbf9beb93f1a" + sha256 arm64_sonoma: "8b8ac1e591db37fdc6d9071c56492a8ceca5882808dfb75b6ab04db1cb8c583e" + sha256 arm64_ventura: "42f90b1c18c524ffdb52239bdd3e8b853b63fabefb19597980866acc6e7c407c" + sha256 sonoma: "f9c2bc6e7e3b45ccf7d98d2594669f3a417dfec33310cf8c70a2fe020fd7b6c3" + sha256 ventura: "ea9fe66b51f6bae259d99b332c5a86ab59ce57a8f7bae2666688582f503fa8e2" + sha256 cellar: :any_skip_relocation, arm64_linux: "72f97a34bd0c6469c954245a6f2863e03a5c6fa988061968ccc4e91670c2df51" + sha256 cellar: :any_skip_relocation, x86_64_linux: "5250f698335c03018e8643fc82d00f0d969d92b8cff740e23ae5a383d11a255b" end depends_on "node" From 3b863063003bb5005f1e9069e96e5c4f4a2a82d3 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 00:30:42 +0000 Subject: [PATCH 0160/1364] mtoc: update 1024.3 bottle. --- Formula/m/mtoc.rb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Formula/m/mtoc.rb b/Formula/m/mtoc.rb index a8f09dfe829f4..cd23a21325adc 100644 --- a/Formula/m/mtoc.rb +++ b/Formula/m/mtoc.rb @@ -6,11 +6,11 @@ class Mtoc < Formula license "APSL-2.0" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "fac0032654cba40741fb4cdd162651efca8c1dc3dc408038a2377de99a276c75" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "dc0e915cd88cd910b0c5e232b010b94199ca75b0a8f08924fbb5d3848334a231" - sha256 cellar: :any_skip_relocation, arm64_ventura: "510d19f1eb39b8a8f9f15ea6ebcfde4ffd1c75c9c60a04cf9d0100da94df0caf" - sha256 cellar: :any_skip_relocation, sonoma: "10ada3c174f8a963144da540ed241d89cb10c4ab7c11f006105c337048ed389a" - sha256 cellar: :any_skip_relocation, ventura: "49a1662a7a1741e78834652a49c4629463d96b9eef3903b553cbf7a16e30228c" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "ee82cf8117b696fd2cbbf0994706e9efa73aa2403adc15a5fbc50fa0be9b8e03" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "d3c766c433b8ae315ef4a2386327c5ae674b5a360faaa29f0449677ae32f74e5" + sha256 cellar: :any_skip_relocation, arm64_ventura: "9605d52ea43f7661e05cf626ebfe6a68e57a5aa2985d05ac0c64f54c07ed55b7" + sha256 cellar: :any_skip_relocation, sonoma: "b41ec3a03f405eb6d60abec7c08f3e97e6c19de4f291050281f2ac9df680b53d" + sha256 cellar: :any_skip_relocation, ventura: "5e882dbfadd1b1c6a167e4930f6c5aeda8b8f25c110dd7c679167ba0abc0e971" end depends_on "llvm" => :build From 66e1313f77b0506148e04541097c0681c63b881b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 00:31:17 +0000 Subject: [PATCH 0161/1364] lume: update 0.2.12 bottle. --- Formula/l/lume.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/l/lume.rb b/Formula/l/lume.rb index 8fcbc67727477..752df2bf61360 100644 --- a/Formula/l/lume.rb +++ b/Formula/l/lume.rb @@ -12,8 +12,8 @@ class Lume < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "751834aec719d4a6e72729fd2905ae91c290b57c9727b9360ac1f0ea1f35db62" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "b0fb519076579cab50a0ee641a98a980f5fb7d03e959649b8abb20ad6eb2e3d0" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "b83fbec4d9ed2c096c3747bdb81ed62ec8e0ace350168042fbe3f72bf3e3b39e" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "1b629c3c3d1389578de26ca4805f83adfa7bf7fbd136583c50c3a237c507c8be" end depends_on xcode: ["16.0", :build] From 53aa25eb347161e02e284291950501da4236fdff Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 00:32:43 +0000 Subject: [PATCH 0162/1364] ftxui: update 6.1.9 bottle. --- Formula/f/ftxui.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/f/ftxui.rb b/Formula/f/ftxui.rb index 692ea571068a7..730d1f07e2ee3 100644 --- a/Formula/f/ftxui.rb +++ b/Formula/f/ftxui.rb @@ -7,13 +7,13 @@ class Ftxui < Formula head "https://github.com/ArthurSonzogni/FTXUI.git", branch: "main" bottle do - sha256 cellar: :any, arm64_sequoia: "abf9d457dabbb11a19039ebabf345292c6f33d76ec6287a89b1fa440739e29d4" - sha256 cellar: :any, arm64_sonoma: "0b1e38e32479461739b41e01b4ee9fb0e63570c87b006fa62876cffe712f4ee2" - sha256 cellar: :any, arm64_ventura: "63f418d1badbe327f90b018a7c74e3fe2f55cb2b0464764335cecf66220e1463" - sha256 cellar: :any, sonoma: "1db4e6052ba59bb7c5309f17530189e91368ab20916098eb016a968a71635490" - sha256 cellar: :any, ventura: "6cdbee455c90145316815e72c2977a845329d5f317b4492bcd8f0783d17eac47" - sha256 cellar: :any_skip_relocation, arm64_linux: "cc61d939599a72b21662e7cff91ec619a9036055a95a983ccf52b92c52b0e21b" - sha256 cellar: :any_skip_relocation, x86_64_linux: "5a683a44515eea925fb2aa9d3841a9756759ce65ebd6687f89919e37a8fa6df1" + sha256 cellar: :any, arm64_sequoia: "5b3e3442ed075b99e3604bea2a515ebb1cbbd9d806386e040d925d38a54692f8" + sha256 cellar: :any, arm64_sonoma: "04064b1363f454f0f9cbbbeb16d98d8d5fef2daf3e0bef0c5e168a73e8b54b89" + sha256 cellar: :any, arm64_ventura: "2ea1f6c02f9a1c4cf135a928a6dd9c4ee0e839b113307f436963558c5acd3007" + sha256 cellar: :any, sonoma: "dd41f7868452173504be6f2786966ed4836c1531d06c7f1f9c3b46fb8b587ba9" + sha256 cellar: :any, ventura: "798c20dcbe2d7f97f44a52237d58d7097c3b80fb879427fc6be532467277f8f0" + sha256 cellar: :any_skip_relocation, arm64_linux: "bf56dd804ae10402637a259399706b18d9db65477f5472282181c8beff69f9e8" + sha256 cellar: :any_skip_relocation, x86_64_linux: "26a35edfd086bb2cdc76b5e8d699094882a633285a4a2ead8323bb8bb2fc9b78" end depends_on "cmake" => :build From c24c8b47975348fe40963b1e9d9bd0a052b7c472 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 00:33:14 +0000 Subject: [PATCH 0163/1364] dyld-headers: update 1284.13 bottle. --- Formula/d/dyld-headers.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/d/dyld-headers.rb b/Formula/d/dyld-headers.rb index 412e629fc64c9..f0038a48f314f 100644 --- a/Formula/d/dyld-headers.rb +++ b/Formula/d/dyld-headers.rb @@ -6,7 +6,7 @@ class DyldHeaders < Formula license "APSL-2.0" bottle do - sha256 cellar: :any_skip_relocation, all: "1b92b46f229d62fc227aca770f009e930a89dce01a90a90cf3f88fb4cdef3fd3" + sha256 cellar: :any_skip_relocation, all: "fcb398c76d5ef67211d4f30bea2475f9e60ceaa2d1351e133e3e0c12bbcb3554" end keg_only :provided_by_macos From 2e2ce8cea9e5d37f61f0e0e02769c7772e0a2ee5 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 00:35:52 +0000 Subject: [PATCH 0164/1364] cog: update 0.14.9 bottle. --- Formula/c/cog.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/c/cog.rb b/Formula/c/cog.rb index 1a5ff1ef89791..b30e9c9509435 100644 --- a/Formula/c/cog.rb +++ b/Formula/c/cog.rb @@ -7,12 +7,12 @@ class Cog < Formula head "https://github.com/replicate/cog.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "dfdcf817f86e87b74a381307a92e79525264475e7f5d5e15265058b003fe73c9" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "dfdcf817f86e87b74a381307a92e79525264475e7f5d5e15265058b003fe73c9" - sha256 cellar: :any_skip_relocation, arm64_ventura: "dfdcf817f86e87b74a381307a92e79525264475e7f5d5e15265058b003fe73c9" - sha256 cellar: :any_skip_relocation, sonoma: "d94e651e9b52ee26da32a3995cac0207d2606024c8b94114c327813516064b25" - sha256 cellar: :any_skip_relocation, ventura: "d94e651e9b52ee26da32a3995cac0207d2606024c8b94114c327813516064b25" - sha256 cellar: :any_skip_relocation, x86_64_linux: "e854e4cde708f400aa415c4cdd1b9377bf40b5a24839396be371a261d9a66994" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "c952ef491df77534a33e12385047694246eadbc9a54aecb9bae416024d9d2cee" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "c952ef491df77534a33e12385047694246eadbc9a54aecb9bae416024d9d2cee" + sha256 cellar: :any_skip_relocation, arm64_ventura: "c952ef491df77534a33e12385047694246eadbc9a54aecb9bae416024d9d2cee" + sha256 cellar: :any_skip_relocation, sonoma: "961445b3064c1e292c4bb39e4789deb864c78a1626a27bc12d53921f09565e68" + sha256 cellar: :any_skip_relocation, ventura: "961445b3064c1e292c4bb39e4789deb864c78a1626a27bc12d53921f09565e68" + sha256 cellar: :any_skip_relocation, x86_64_linux: "db663aad500610e5b9e4f8fe11e5b7846b10ef16e2f2e80ddb36b0cd2aa714f1" end depends_on "go" => :build From a18e92945b66810ffefbd6a3fdf9dc556d0366c9 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 00:37:55 +0000 Subject: [PATCH 0165/1364] clarinet: update 3.0.1 bottle. --- Formula/c/clarinet.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/clarinet.rb b/Formula/c/clarinet.rb index e70260885f769..711a978816906 100644 --- a/Formula/c/clarinet.rb +++ b/Formula/c/clarinet.rb @@ -12,13 +12,13 @@ class Clarinet < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "5b22280e0430c7035bbc81de7591433b267c87447857965a6772866e0a77dc7a" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "6226c8c9fb31598545cc606d4688ce6771d648a79838f16475f0866a50545af7" - sha256 cellar: :any_skip_relocation, arm64_ventura: "49b1d4286bb806357c9757b1690b4ffe78e4f2f6bee8885b34ff48496cb5855f" - sha256 cellar: :any_skip_relocation, sonoma: "2915938d8f1c81b7ecf0d716e35681ace0c07a48fe3045c52a4c790e201e50b4" - sha256 cellar: :any_skip_relocation, ventura: "bf32217fc5caab7bcc51af25749a40e0f556edb10a9d4c9dfc386747845a865e" - sha256 cellar: :any_skip_relocation, arm64_linux: "0f1b8ebbacb745ad636719d9c18ef31bcfe2edc2145ed4c2df9bef62687f637c" - sha256 cellar: :any_skip_relocation, x86_64_linux: "69579e0f800bd56ccffe36b6b72960220bd976fed8d8980fab1b751dcd6e9f13" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "b9a130f8e651f43fb17132145980c40e6715fc594d4d6875c9c2cfaa26fbde37" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "f54da2888266a45097d8fd8981eb654e7cf15424481c4a49ae83c2564af09088" + sha256 cellar: :any_skip_relocation, arm64_ventura: "341256a4b48376a8ea9e97c4bfc834313f8403d92ed057e20107793d24f5567c" + sha256 cellar: :any_skip_relocation, sonoma: "72708e1f87cbf537f67e948aea694a2e2d9e85d3d5983879049c5882509086ba" + sha256 cellar: :any_skip_relocation, ventura: "d221bd62bcb1c138b26c562edb9d5a61546124188a42241835caad04ea011128" + sha256 cellar: :any_skip_relocation, arm64_linux: "671ed97a8287eba1c8b61f9989804488e575ec59a5b2c37b4acb2cbb2554ece2" + sha256 cellar: :any_skip_relocation, x86_64_linux: "cc300665c815e442f35f3ae1db7cf325557079c8a881a4e5e5ea2b92839924a2" end depends_on "rust" => :build From 3ff245b74ba9a6ac6a14a28c851517c2dc5bc72b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 00:38:25 +0000 Subject: [PATCH 0166/1364] botan: update 3.8.1 bottle. --- Formula/b/botan.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/b/botan.rb b/Formula/b/botan.rb index 9442a540a3a62..2bddcdac18ef2 100644 --- a/Formula/b/botan.rb +++ b/Formula/b/botan.rb @@ -12,13 +12,13 @@ class Botan < Formula end bottle do - sha256 arm64_sequoia: "828c6482aa84b598e9e7814b840f1540c7970fc8b339efe9b4d2cdf6cd2a37c4" - sha256 arm64_sonoma: "6949d51bc49e0926e0887e1faa0cada0cfef2d1b1ac4626ad8c7b96e45de3d3b" - sha256 arm64_ventura: "ed129b0d70088270e69701049fb5dfd19a9f234105cee83e1c3ab1d088c28094" - sha256 sonoma: "70de9a26d70616dfa6a9688d9ad0c0bcd9ba551f14faa5ffc8073541d4c522c6" - sha256 ventura: "b921480c1e85f1dc574754898bc21b778b3e450945c6c2e4e579a52ef3a3c355" - sha256 arm64_linux: "ef40bc156a84dd5fcb9a62cee8a70ab50cbd323b3b194e2bf6764fa9afe34a14" - sha256 x86_64_linux: "fbc259942cc0414e004fdb16e9b810c7110d1d411705ac64c1f2969756f506d2" + sha256 arm64_sequoia: "0d1f589f900dc679b34940bf606a016e015ed922a5f759b9daadbd9b8969c1ae" + sha256 arm64_sonoma: "751910a74fe11ed9d3b8b3abf79aae11036b92f9875fd0475d13294d92dcf49c" + sha256 arm64_ventura: "466dbfcd5eaff897ea903b82d6ecf680f1159c28087e6621760f0f29c96805cf" + sha256 sonoma: "1d91396c3dd3462bd6c770c75e65add1b924f97c21d66d8448abbe24906588a9" + sha256 ventura: "38149c11397d68a6e7671dd3efd73922357105e29f8a68ef7d6652e293293d80" + sha256 arm64_linux: "0a7614e14b1aaa075695bc05185c789f48b8deec3d431288fd547f10f53f4fa1" + sha256 x86_64_linux: "2b8a84de394ad2ecc64249091c0f4ccc23521a4b33ff70b693480a5731271454" end depends_on "pkgconf" => :build From 58dd520e8e7033a11bdeb7247d9f3ff35a45eaad Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 00:38:40 +0000 Subject: [PATCH 0167/1364] uv: update 0.7.3 bottle. --- Formula/u/uv.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/u/uv.rb b/Formula/u/uv.rb index b162993bc17ed..60d89639b1ea5 100644 --- a/Formula/u/uv.rb +++ b/Formula/u/uv.rb @@ -7,13 +7,13 @@ class Uv < Formula head "https://github.com/astral-sh/uv.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "bb4648deb832ef080d5c6860fb8028720421b8961070fcdcb56a657c5eefef11" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "f18ee743c15eb3b32a448681821595766754119fdd96f3d0a7fc1618b3714e14" - sha256 cellar: :any_skip_relocation, arm64_ventura: "a65c334c37d83d3f8b5d0d6b79eeb09a9e1a4b26dd113e354360a6272a19e3ec" - sha256 cellar: :any_skip_relocation, sonoma: "0cd1334ae73e0ef2b2ed9de4f5627181e91b2c80de9c835befaf815998883d91" - sha256 cellar: :any_skip_relocation, ventura: "e151b133fb3a36f1b5b7e74e869fc4122a94698994af94dea8f8cd68b96c6375" - sha256 cellar: :any_skip_relocation, arm64_linux: "1808127b496d2f113eb7dd9e579498d579548b7aa61f3e46e5a561c9633a4103" - sha256 cellar: :any_skip_relocation, x86_64_linux: "df11275bf1c27c51017ee0c4a9eafb0603613c6c97a053463606ba1ab048ab12" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "4db8da2dc036a010b3b0cf2e2f7d970efaebc16982348dcc33fb79e82b82752d" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "9c2a629d4da2aba07e6d374838f01db06d2e3583dcf9ccf1dd6f6e10895799c6" + sha256 cellar: :any_skip_relocation, arm64_ventura: "ef26369e9210798460374a0cfe36b5c46e0be54d7da673cca5ce161ba85ed8c7" + sha256 cellar: :any_skip_relocation, sonoma: "46fe6092235be06b0408c3bb03a3a28f61af1c37afbc3e0b8149b616d1ba48be" + sha256 cellar: :any_skip_relocation, ventura: "3d300ee7ebcfa7e0ef7802ddec4fdbf0ac6e023851bad35460ba9f58dc5951d8" + sha256 cellar: :any_skip_relocation, arm64_linux: "5145c344b1c9f3e0fd82d9f9adf42d7cecac8a53e554977bd0728a4776de3048" + sha256 cellar: :any_skip_relocation, x86_64_linux: "11bea9b1a255cddfbe232d737d1e8e22b4b01bd1135dfcc935978454daab2c53" end depends_on "pkgconf" => :build From 643f5d2a0ff1c38f6b4479f5c5bc8ffa78501c4b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 00:38:47 +0000 Subject: [PATCH 0168/1364] sf: update 2.87.7 bottle. --- Formula/s/sf.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/s/sf.rb b/Formula/s/sf.rb index b513d0d93a076..0d544faa57862 100644 --- a/Formula/s/sf.rb +++ b/Formula/s/sf.rb @@ -13,13 +13,13 @@ class Sf < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "7c2bcc54e5d61244d7de123f79d5223f662be91a6cdb5bbe6c95f8c8efcd95df" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "7c2bcc54e5d61244d7de123f79d5223f662be91a6cdb5bbe6c95f8c8efcd95df" - sha256 cellar: :any_skip_relocation, arm64_ventura: "7c2bcc54e5d61244d7de123f79d5223f662be91a6cdb5bbe6c95f8c8efcd95df" - sha256 cellar: :any_skip_relocation, sonoma: "90430220c516509faa01760597705e7731a15a4c9dc732d2c0376a252c7ace19" - sha256 cellar: :any_skip_relocation, ventura: "90430220c516509faa01760597705e7731a15a4c9dc732d2c0376a252c7ace19" - sha256 cellar: :any_skip_relocation, arm64_linux: "7c2bcc54e5d61244d7de123f79d5223f662be91a6cdb5bbe6c95f8c8efcd95df" - sha256 cellar: :any_skip_relocation, x86_64_linux: "7c2bcc54e5d61244d7de123f79d5223f662be91a6cdb5bbe6c95f8c8efcd95df" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "600ce3a90c3cb3659ea143f40a620c9af2002119d561c69a3aaa6a1a6b8e6bdd" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "600ce3a90c3cb3659ea143f40a620c9af2002119d561c69a3aaa6a1a6b8e6bdd" + sha256 cellar: :any_skip_relocation, arm64_ventura: "600ce3a90c3cb3659ea143f40a620c9af2002119d561c69a3aaa6a1a6b8e6bdd" + sha256 cellar: :any_skip_relocation, sonoma: "9878807ff10dc81252ccca8f8404202bcb3d0a9e3630546c9d235a4b459fb679" + sha256 cellar: :any_skip_relocation, ventura: "9878807ff10dc81252ccca8f8404202bcb3d0a9e3630546c9d235a4b459fb679" + sha256 cellar: :any_skip_relocation, arm64_linux: "600ce3a90c3cb3659ea143f40a620c9af2002119d561c69a3aaa6a1a6b8e6bdd" + sha256 cellar: :any_skip_relocation, x86_64_linux: "600ce3a90c3cb3659ea143f40a620c9af2002119d561c69a3aaa6a1a6b8e6bdd" end depends_on "node" From 88c5c7bcc7be34f4a1936911b2a7cbd44a0e845f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 00:39:25 +0000 Subject: [PATCH 0169/1364] rattler-index: update 0.22.6 bottle. --- Formula/r/rattler-index.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/r/rattler-index.rb b/Formula/r/rattler-index.rb index 50f233acd5dcb..032371bbb38cf 100644 --- a/Formula/r/rattler-index.rb +++ b/Formula/r/rattler-index.rb @@ -12,13 +12,13 @@ class RattlerIndex < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "9467ec31c96b21611863561aea2248de22d62f9378950a395964cc8fdc541d45" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "8e2e70216465707e17884d5b279b525d58bab164a7150c2141a9c4eb122f9643" - sha256 cellar: :any_skip_relocation, arm64_ventura: "6a7b398ac3534454738bb4478cf1afe989f91cffc5a060b9571abab44ae34af1" - sha256 cellar: :any_skip_relocation, sonoma: "f6a59134fae2d3b82d38e654d3ad4d345d7bbf7942425066004e35e6428cc064" - sha256 cellar: :any_skip_relocation, ventura: "b1379507b76570d785d01ec4644952998e7c6672e0cb4d20f56cad2eb2dd01f1" - sha256 cellar: :any_skip_relocation, arm64_linux: "1c5063c43f767fc11d84835cc0b3d8d2f9eeec0cc2f076be260f134b0c59327c" - sha256 cellar: :any_skip_relocation, x86_64_linux: "c62236ae9754ca57cc83df6aa73d87f94848f34e3e273825fea9a22eb2576800" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "b50c7557283e9a57c264cdaaaa3d43729d08c86827c908ad988d428428740435" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "472bc6077fb2048b30c5d5de76d0bc2682f07dc229de158e472fe85ce80bcb82" + sha256 cellar: :any_skip_relocation, arm64_ventura: "d524487e009babb919299e2474416b2f186f2feaadff1652fa332c52bf7f55d7" + sha256 cellar: :any_skip_relocation, sonoma: "99848f8c1e25d6f12b665ced4a9ec1ad0b710bbefa3d82c489e228391187e323" + sha256 cellar: :any_skip_relocation, ventura: "473b110809a5e155fd202e78aa5fc9423ef53ecdb723b97256a56504cace9272" + sha256 cellar: :any_skip_relocation, arm64_linux: "989f923cfaf42716b651ac32c155e23f81204a40b155c5c8abbb3c80a6d14b6d" + sha256 cellar: :any_skip_relocation, x86_64_linux: "43248f46184d599d8e799ae7fa8afe69473bb46580f0ee5fe6ef91b7f6648e59" end depends_on "pkgconf" => :build From 577eb50ac251e85ffac85974a2b2040230896d18 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 00:39:35 +0000 Subject: [PATCH 0170/1364] railway: update 4.4.0 bottle. --- Formula/r/railway.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/r/railway.rb b/Formula/r/railway.rb index f099746468281..2f57d29f1bd65 100644 --- a/Formula/r/railway.rb +++ b/Formula/r/railway.rb @@ -7,13 +7,13 @@ class Railway < Formula head "https://github.com/railwayapp/cli.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "6f0a409c21462e324e46944047ac18a488216d42124bbb20e2de671963553272" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "472188eac749c58a935f3284549a2b67a9a00f62045b0db826d8197c2dbbf702" - sha256 cellar: :any_skip_relocation, arm64_ventura: "cd54c4518e311536736f7cb025453cb067dbccafe2c2391b2bbeb0694e472b93" - sha256 cellar: :any_skip_relocation, sonoma: "db3d763977e91e90f319646620cb25aba011d71b84cb94a83242fefe2a839983" - sha256 cellar: :any_skip_relocation, ventura: "6ea01a87e2acf520f5b9792bddf45386aab378d68c5c0ed1a2e963284be172cb" - sha256 cellar: :any_skip_relocation, arm64_linux: "54f2d02c1b42f081b3533717241e10080f988842f75b78a9cc6d5a08757e088d" - sha256 cellar: :any_skip_relocation, x86_64_linux: "53888b39b34889997adf17ca14995f398e02420208c2ae49506f9de49497160f" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "72222923f92283a386248aff68e5f5abd8ac44b89a622ed78ffda7b2e9228f46" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "bc308f449b00ca6975ee3d7aec5a27bfa4201126dfec154ba3ddbf13af349a6b" + sha256 cellar: :any_skip_relocation, arm64_ventura: "8f2cdbcdbff1a374e1f44ce5be2fedbc0554811b64061ad1ff99becb91be9c5f" + sha256 cellar: :any_skip_relocation, sonoma: "38db0a107fc460ccf8c7eae0b13f4b1045cd5c19b25090d6904afdb194303107" + sha256 cellar: :any_skip_relocation, ventura: "50c3013b7f2e97b28cc72a7ae44649f267cc41a72c7da19c8bf36490ca978d77" + sha256 cellar: :any_skip_relocation, arm64_linux: "020a585c5000ed69e771a9d8d2ee0e07a7ce3e845f0df72fbc7c025026305c91" + sha256 cellar: :any_skip_relocation, x86_64_linux: "2268a935a70b57a4e9c639e0ddab32b33df9714f585bf1b0c45bd1bf5df3729e" end depends_on "rust" => :build From b0f47ff3e140021aefb36b77fcd309d828029aaf Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 00:40:04 +0000 Subject: [PATCH 0171/1364] locust: update 2.37.1 bottle. --- Formula/l/locust.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/l/locust.rb b/Formula/l/locust.rb index 3d627f74703c2..7d3eaa806f9c2 100644 --- a/Formula/l/locust.rb +++ b/Formula/l/locust.rb @@ -8,13 +8,13 @@ class Locust < Formula license "MIT" bottle do - sha256 cellar: :any, arm64_sequoia: "b1492c8ff3c424385cff174e0d218485474de6fa7465621216e9c81d6acd5668" - sha256 cellar: :any, arm64_sonoma: "02d0f42cd147e6efdacd4a37ec4e5a8a594b21ade737008b30f44a57b02f5880" - sha256 cellar: :any, arm64_ventura: "116e7efe5d5ba358bbbdd03fef8a79c5125e29f07184c59f21924171f875749a" - sha256 cellar: :any, sonoma: "6552e35a22fd9d19f8a362e3df57fdea05cd3d24905aafff9e37e6968ec12921" - sha256 cellar: :any, ventura: "3a673f409f7e5bb11fe6ee18fde8f859085c5219faa678c25296dd9d92251e4a" - sha256 cellar: :any_skip_relocation, arm64_linux: "baea56348fafa418e7ffae50120a3dd48bda18966f31a0c16db0c3a9e858ebb7" - sha256 cellar: :any_skip_relocation, x86_64_linux: "2b3f6a1a1894c8e52df787b0920938dfd5ab7ea253f65d10dc47be72fb165434" + sha256 cellar: :any, arm64_sequoia: "6b1a8f0959c887bb34e2bb70e08ea5736ad1a3f3db0fe1829f84d6d43997f16c" + sha256 cellar: :any, arm64_sonoma: "45a89ef095a29f5bfeb425b348f821534d8f56f6e7f7bc31ae56be020771e809" + sha256 cellar: :any, arm64_ventura: "1b1b7a071ede35833e7bd49f34ccdf93a9b1e98a97811d66b52d5eb12069c3ca" + sha256 cellar: :any, sonoma: "59d2b0884abcb525bd2625ebf4a46ecf527e683781460891fcf27c5dcaec7fbe" + sha256 cellar: :any, ventura: "cb3f148777fe52a45a8c58148239043a9cb2bdd5f8868dbb34ff82f6f36dd8bb" + sha256 cellar: :any_skip_relocation, arm64_linux: "e600e8dcc60f339bc2af442ee4a4352ddd77e1da28649545f23d658e1fcf9b0c" + sha256 cellar: :any_skip_relocation, x86_64_linux: "ae1ecba0127225994115f103f071ac3489badcd92fd51b4c246c020a37e2d58f" end depends_on "cmake" => :build # for pyzmq From 09c127769d552d68ae335e0919a29c5edfd70e2e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 00:40:29 +0000 Subject: [PATCH 0172/1364] kubectl-ai: update 0.0.8 bottle. --- Formula/k/kubectl-ai.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/k/kubectl-ai.rb b/Formula/k/kubectl-ai.rb index 7c1205dc4a565..3aa6e9c9d9cdf 100644 --- a/Formula/k/kubectl-ai.rb +++ b/Formula/k/kubectl-ai.rb @@ -6,12 +6,12 @@ class KubectlAi < Formula license "Apache-2.0" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "0c78bd9e8304415fbce8aaf0ff11d9bc39e8ee0e78025aed9332c9f421574b9c" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "0c78bd9e8304415fbce8aaf0ff11d9bc39e8ee0e78025aed9332c9f421574b9c" - sha256 cellar: :any_skip_relocation, arm64_ventura: "0c78bd9e8304415fbce8aaf0ff11d9bc39e8ee0e78025aed9332c9f421574b9c" - sha256 cellar: :any_skip_relocation, sonoma: "6e05526307b272cbc582299b3cd5a818b94d9e88e69775a0bb4a18a77159c8fe" - sha256 cellar: :any_skip_relocation, ventura: "6e05526307b272cbc582299b3cd5a818b94d9e88e69775a0bb4a18a77159c8fe" - sha256 cellar: :any_skip_relocation, x86_64_linux: "dee44cc8114fc5a5cddc3fd5aaadf7caf0f27bb6df5fb6f4a17dea3818111bff" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "ecddd7b1d507131d8eee3d2d0d96a752328c8e8b36eca148d3e9358a97f1699c" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "ecddd7b1d507131d8eee3d2d0d96a752328c8e8b36eca148d3e9358a97f1699c" + sha256 cellar: :any_skip_relocation, arm64_ventura: "ecddd7b1d507131d8eee3d2d0d96a752328c8e8b36eca148d3e9358a97f1699c" + sha256 cellar: :any_skip_relocation, sonoma: "22491d946f000e2cc97310fba5748fcdb955f49635ba4556b7927dad682fd69d" + sha256 cellar: :any_skip_relocation, ventura: "22491d946f000e2cc97310fba5748fcdb955f49635ba4556b7927dad682fd69d" + sha256 cellar: :any_skip_relocation, x86_64_linux: "0e894616c1423a4a1a75ddcee5782445bf4d6ddfd5e93b7efa1239baf9ee4b7c" end depends_on "go" => :build From 6cfeaf235d2702d4dcb803cb9982901be2a9df0e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 00:40:54 +0000 Subject: [PATCH 0173/1364] jj: update 0.29.0 bottle. --- Formula/j/jj.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/j/jj.rb b/Formula/j/jj.rb index 2d29f7a2d9123..64d3457d8ed79 100644 --- a/Formula/j/jj.rb +++ b/Formula/j/jj.rb @@ -7,13 +7,13 @@ class Jj < Formula head "https://github.com/jj-vcs/jj.git", branch: "main" bottle do - sha256 cellar: :any, arm64_sequoia: "94cb7b6bd94ef185ad140d6697d5475b6577f192bf8a4e8a599acc504d61bbcb" - sha256 cellar: :any, arm64_sonoma: "ac72b0219e7cc311b02b2e8837e54cb3c6df9963a063e20e37f7a2aabdc7eacb" - sha256 cellar: :any, arm64_ventura: "0a6ee059850461f8407e2065de7505e0b7971226cd715cadb44f2be992bd3185" - sha256 cellar: :any, sonoma: "f31c88e39a0d30ed5efabd04a27e8d9ce8a7f9f87cf43122dd8bfee3620894cb" - sha256 cellar: :any, ventura: "adcee265c948ff6f08a8b92578665ce2cdd1ebb2eadc4e8587fbade75250e0a8" - sha256 cellar: :any_skip_relocation, arm64_linux: "be843c4b26b533c13138f5f3d5f455cb58ac4c7fe7a5890fe5cf84764379fb1d" - sha256 cellar: :any_skip_relocation, x86_64_linux: "805f70f61961c73de428e3d714fec32dbd1aef834081a70a2fef8a2b3689082c" + sha256 cellar: :any, arm64_sequoia: "50c511670ee40fa1da2d8b18029bad69223ee3d8e50a3009d4607ac94390fc48" + sha256 cellar: :any, arm64_sonoma: "5d6c168d37c55fdfcaaa4c95b3e380cc859296ef9d114ff5830ff8aa2291bbae" + sha256 cellar: :any, arm64_ventura: "48f0c95193b1714f59799528db6ae6069148fdc21963dcf76c205f9b5b377579" + sha256 cellar: :any, sonoma: "33a01d5e4b4cd52ae2dcb1830288cbde9a9560f56c2205fb267140797ffa2d42" + sha256 cellar: :any, ventura: "62b3be14fd3c750708c27a70c1edea19c893a67cdd45154ea259583661459970" + sha256 cellar: :any_skip_relocation, arm64_linux: "439cd35809f8b0eb10150b5598be56d1afbfa9aa5a2c26aecbd1dcaad1414a46" + sha256 cellar: :any_skip_relocation, x86_64_linux: "2140f62549e58a6938ee9d265d926223bdfca139485464958e89340279f3af47" end depends_on "pkgconf" => :build From 09f8e44eff178e033b5d4b325892def545951fa1 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 00:41:24 +0000 Subject: [PATCH 0174/1364] ipsw: update 3.1.602 bottle. --- Formula/i/ipsw.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/i/ipsw.rb b/Formula/i/ipsw.rb index 6c4e9e494e499..8c85721f77204 100644 --- a/Formula/i/ipsw.rb +++ b/Formula/i/ipsw.rb @@ -12,13 +12,13 @@ class Ipsw < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "c116b6d19d5aaae3d3ad5744760f61bf24b5cc650b902ac9ba14ad4121b3bf72" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "66fa353d660f75c52f121b87ad125cf5e3e2336fa5c7e029e3b5c4ea03921c6b" - sha256 cellar: :any_skip_relocation, arm64_ventura: "5640c9924d192670d7be3a1b8d084a7b33d49343c9f166e7bcdc0923267c4ac5" - sha256 cellar: :any_skip_relocation, sonoma: "d384cf61deec1bbbd8ea3e0ae24c8a6c3177eb5986a334eed2e7afab7b529d78" - sha256 cellar: :any_skip_relocation, ventura: "1c4641c98a4642570ed8fcf147a2dad6742c177b65b01404aba6c5292af46a3d" - sha256 cellar: :any_skip_relocation, arm64_linux: "611b79a9bb2b7457495fa039816091cc0da5f115748eb0e6252c0807d4f7962e" - sha256 cellar: :any_skip_relocation, x86_64_linux: "f4d27fa3ce373e471c9a0d38ec33ef6057bfae0854e4bf5147e03f50fa226a03" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "6930d0c420cbe38de25c10a5d0f44aafb4d6fb517c9343e59e4ad05a0b9d7c5e" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "8628ac79ded85cc17dfe0fd52b5111dbfd9d4179c635afd5235e71883d8b11e8" + sha256 cellar: :any_skip_relocation, arm64_ventura: "0496beb579bbdb1fe961d870b63f6f397124afa9eaaf22ea9bcfefa59e76c2dd" + sha256 cellar: :any_skip_relocation, sonoma: "9fbd544a4b477c895524f21a1796f4342db2741cec5035a1bccc27b6af80b56d" + sha256 cellar: :any_skip_relocation, ventura: "30b8b7767cb8ebff07f32c4eb8e474ac2f1c70d82c7d12552afe5a06607b7df1" + sha256 cellar: :any_skip_relocation, arm64_linux: "c5680bc25f88544e4541f707bfe39e98a0b183d5e2b7147259e9cfa81abf5749" + sha256 cellar: :any_skip_relocation, x86_64_linux: "0e4e8e61960c75bbfba986e2810714a2e825de82a0963a6076c25467c6b07ebb" end depends_on "go" => :build From ede1d7abe18003eedfb2098cdf2c134a788c25e4 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 00:42:15 +0000 Subject: [PATCH 0175/1364] infat: update 2.3.4 bottle. --- Formula/i/infat.rb | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Formula/i/infat.rb b/Formula/i/infat.rb index f249c6fe9dab8..bae58f7d6a984 100644 --- a/Formula/i/infat.rb +++ b/Formula/i/infat.rb @@ -6,12 +6,11 @@ class Infat < Formula license "MIT" bottle do - rebuild 1 - sha256 cellar: :any_skip_relocation, arm64_sequoia: "9f46fdc6180bb8b686097fd882637447a83dbe05067cb73ed5455b75b382aecb" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "54a73c2c23dd9a21eaeb9f996617dfc5722b1c112e392d10bbd9105c889b652c" - sha256 cellar: :any_skip_relocation, arm64_ventura: "658fe1a3fb17b91952dd51b320fb531704b73d923cf7525e740f29ba06c1e5e2" - sha256 cellar: :any_skip_relocation, sonoma: "a1338457b9a58c1f664384ea4bee06ee72b3a34ea1eb8e4d1922751365fc48ca" - sha256 cellar: :any_skip_relocation, ventura: "e8badab073016a3671fbe30d827926955802cf501362ee221db13b082fd60dc7" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "e263c627344fa10c4373c6f7f76b96bbf090703a2e1761ed247f04f385deaf56" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "db3419a6e095edcea41b5a029dcbc2aa1a94b70c684e42c67e38019de59dbf69" + sha256 cellar: :any_skip_relocation, arm64_ventura: "0c57aaf12f258985b59315f828aaee79cb6fda188dca639a29407205cef827ab" + sha256 cellar: :any_skip_relocation, sonoma: "76e0af0201e4226d74e7b95c0217b0b3a1bdd21f98de04cf2c7f07a7d4bb6d3a" + sha256 cellar: :any_skip_relocation, ventura: "be3d4afc2a8963e9e6bdafdf6b6dd7522b5bb0594fabd7bec6a669eeeaac78e9" end depends_on :macos From 0d1861550dcbca7af6b2c69cec6e23131c9e3b88 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 00:42:32 +0000 Subject: [PATCH 0176/1364] flyctl: update 0.3.117 bottle. --- Formula/f/flyctl.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/f/flyctl.rb b/Formula/f/flyctl.rb index 1381a599b2fd1..6ac2d9fe1715e 100644 --- a/Formula/f/flyctl.rb +++ b/Formula/f/flyctl.rb @@ -18,13 +18,13 @@ class Flyctl < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "f2f2d6cf3510166a258926d3c2395e739d813abd3b36411b7fb1520ba41b5571" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "f2f2d6cf3510166a258926d3c2395e739d813abd3b36411b7fb1520ba41b5571" - sha256 cellar: :any_skip_relocation, arm64_ventura: "f2f2d6cf3510166a258926d3c2395e739d813abd3b36411b7fb1520ba41b5571" - sha256 cellar: :any_skip_relocation, sonoma: "75858ea3be2bb291c58dfb76b98f190537fa0b096ceb3e298b8caddada2fea4f" - sha256 cellar: :any_skip_relocation, ventura: "75858ea3be2bb291c58dfb76b98f190537fa0b096ceb3e298b8caddada2fea4f" - sha256 cellar: :any_skip_relocation, arm64_linux: "c5c76479608b375abec0d1ec8e88e0aa148c54910f822039bc5fab11ba2bf0c2" - sha256 cellar: :any_skip_relocation, x86_64_linux: "2d79a0ec28a92c948975bfb3e07e0dc0944da59dd4a5ca09eda4b1f248f57e70" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "0338ac76f9bcaa04e50b8bf80cdf16cbb0143923dceddb09eab0cfd6de5e30ea" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "0338ac76f9bcaa04e50b8bf80cdf16cbb0143923dceddb09eab0cfd6de5e30ea" + sha256 cellar: :any_skip_relocation, arm64_ventura: "0338ac76f9bcaa04e50b8bf80cdf16cbb0143923dceddb09eab0cfd6de5e30ea" + sha256 cellar: :any_skip_relocation, sonoma: "3c77fb25265e91ab4cfe199abb79dfc32a8c4656378c03a69cba7ddbfafb9803" + sha256 cellar: :any_skip_relocation, ventura: "3c77fb25265e91ab4cfe199abb79dfc32a8c4656378c03a69cba7ddbfafb9803" + sha256 cellar: :any_skip_relocation, arm64_linux: "3f09bb249e47ce1e8137caa2921f1dcc0d076522f3d7e73d1f48b056b1a428c9" + sha256 cellar: :any_skip_relocation, x86_64_linux: "0f16cc0d12579d26d7442d10f3db6e80e7dd37937cff618cc9f13a93ec68dfc2" end depends_on "go" => :build From d259f6bd17acb2a265e3bec7bec345334e094f16 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 00:42:47 +0000 Subject: [PATCH 0177/1364] draft: update 0.17.11 bottle. --- Formula/d/draft.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/d/draft.rb b/Formula/d/draft.rb index 8c9d9ebf29198..93fbb79fbc881 100644 --- a/Formula/d/draft.rb +++ b/Formula/d/draft.rb @@ -7,13 +7,13 @@ class Draft < Formula head "https://github.com/Azure/draft.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "d8fa2caaa95f051b5114e447b8fbdae51b54739a4c6daa7b84fce1e64d08a96e" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "10c3f0e502da1e148f89389876e70dcd552f55f76ee4e941e2c465f10c111dbe" - sha256 cellar: :any_skip_relocation, arm64_ventura: "566351c1619f024b65a2ec36bc720121313be80b1a316f442f710ec597d3bd25" - sha256 cellar: :any_skip_relocation, sonoma: "8941b472e637d3fa1623b4a8326044a8819a8730d682e623d356abc6dbd42c83" - sha256 cellar: :any_skip_relocation, ventura: "9bd6770e661e90564d36c7e2d65191a595147c7cb56ed5fd120094eed92822ad" - sha256 cellar: :any_skip_relocation, arm64_linux: "43e900f5dc9888b8dc5f32f8f0663aa0b0a0778c6ae8ccbc1cb18690fd49671e" - sha256 cellar: :any_skip_relocation, x86_64_linux: "a4bf653b0d28d85422fc63a577f1b6a8cec6cfa739c4332a3267baf9e6a5c33e" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "aaa730301a7d77c4638927be72b648b9c86555318873ba4d03cec5152e5ed710" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "ac732690e8096ce8d836ff10c46867529373a8450530977f77b0751639df4c09" + sha256 cellar: :any_skip_relocation, arm64_ventura: "6441a7329f77438daa227cc746071742bb4ae2594df338ce59ee4bb9adcf3074" + sha256 cellar: :any_skip_relocation, sonoma: "6cb28c0ccd6b48aba8e49c82a56a7e223514b321ccbc8c8ce1a597281961b85b" + sha256 cellar: :any_skip_relocation, ventura: "f10aaa049dd8739890b5b26d6b0fb4f771e816e34b92e9d70553d509f2a1fe1f" + sha256 cellar: :any_skip_relocation, arm64_linux: "1c81c7afc2efb7f0513b0f1763bbe8b068ed22e8ccb1234f42482a310e233ce3" + sha256 cellar: :any_skip_relocation, x86_64_linux: "d654a7f06ea0e4cc21e9a25930c33b883835ccf4d6211d231dea39c0e5715d13" end depends_on "go" => :build From 0e77a2350ac4346c7040a028d401d182c73330b5 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 00:43:28 +0000 Subject: [PATCH 0178/1364] awscli@1: update 1.40.10 bottle. --- Formula/a/awscli@1.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/a/awscli@1.rb b/Formula/a/awscli@1.rb index 74c773eaf48c7..41cb26618b533 100644 --- a/Formula/a/awscli@1.rb +++ b/Formula/a/awscli@1.rb @@ -15,13 +15,13 @@ class AwscliAT1 < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "e2e40a766844a8d47e6d0d1b4e3c04a36ed39641ef600e5b3a40f9c422a827f8" - sha256 cellar: :any, arm64_sonoma: "e4ee610906dd2e9c772fadd316cbde0971bb666aadbac736d8bdf1a1e3348782" - sha256 cellar: :any, arm64_ventura: "a400fec86749b4613eb964cb6112fb789c1b09b0590b57db02251aba091a2cfc" - sha256 cellar: :any, sonoma: "bd1813050508b18eed58076ad06df5d49e6140415e8d385c07e60cac11a7efa9" - sha256 cellar: :any, ventura: "731097c9fd92992505e51913c1021b48b55da6ac31741e1c70ff4f217c8ddcd7" - sha256 cellar: :any_skip_relocation, arm64_linux: "a0f82873cc6968dfb645f97e9efb227f395f1323d7e36ad07dba2472ab385bff" - sha256 cellar: :any_skip_relocation, x86_64_linux: "6b5d2f636e545ea9d9d5366ea52f3374b1c5324884c830cec3596fe75d3ed52b" + sha256 cellar: :any, arm64_sequoia: "ea30036f53245a11daa161115b73d343abada76adba7e138aeb6dc28271288a3" + sha256 cellar: :any, arm64_sonoma: "eb7753bf144746a9a9bfd87feaf443fcb1702f76085e093021b76ffe36357fa0" + sha256 cellar: :any, arm64_ventura: "94dca4b69837b640b529b670663ffc4b5748482a72db9b36cf2952a9c6810cd9" + sha256 cellar: :any, sonoma: "1345cd7f2eec74159ff99fbfc70cc1de1c8a5aecaaa228fb4f1f4d767aef29eb" + sha256 cellar: :any, ventura: "b2a3597eee02acc39ff7c45690954e83de4fab98227dbc9aa609f5e972f150f9" + sha256 cellar: :any_skip_relocation, arm64_linux: "5f50f59a25f8118839861021e5c467c69f4eac2257752da176ad427c7e4ce06c" + sha256 cellar: :any_skip_relocation, x86_64_linux: "99de1380f426892dda12bdae739e623f662ac185b80638d91b0e0b4adac2dc3c" end keg_only :versioned_formula From 7f1c2aa344e71b1762715c2507106a8453eb4af7 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 00:44:01 +0000 Subject: [PATCH 0179/1364] apko: update 0.27.3 bottle. --- Formula/a/apko.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/a/apko.rb b/Formula/a/apko.rb index ecc0ce47bb63c..8bfdc7436b812 100644 --- a/Formula/a/apko.rb +++ b/Formula/a/apko.rb @@ -15,12 +15,12 @@ class Apko < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "af9070b054b209a2481979ba7621bcb37b625548e9505b950a97dcb728493231" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "af9070b054b209a2481979ba7621bcb37b625548e9505b950a97dcb728493231" - sha256 cellar: :any_skip_relocation, arm64_ventura: "af9070b054b209a2481979ba7621bcb37b625548e9505b950a97dcb728493231" - sha256 cellar: :any_skip_relocation, sonoma: "01f9f42f241f9606dde87407811ed5eb82e7f780bb18eee814208d335bce7c43" - sha256 cellar: :any_skip_relocation, ventura: "01f9f42f241f9606dde87407811ed5eb82e7f780bb18eee814208d335bce7c43" - sha256 cellar: :any_skip_relocation, x86_64_linux: "1b14842b4b026baa4867b5b9cdbf0029d56083751dc88a0a2451e126acd0c6fb" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "7c570f84adc1c972fe4ec3e29400923b79c986a315a333b62faea6e6dbe07f2f" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "7c570f84adc1c972fe4ec3e29400923b79c986a315a333b62faea6e6dbe07f2f" + sha256 cellar: :any_skip_relocation, arm64_ventura: "7c570f84adc1c972fe4ec3e29400923b79c986a315a333b62faea6e6dbe07f2f" + sha256 cellar: :any_skip_relocation, sonoma: "1a1057e72dd1105c133b026e241db0e4ef11dda1d618786340923b17bc8db24e" + sha256 cellar: :any_skip_relocation, ventura: "1a1057e72dd1105c133b026e241db0e4ef11dda1d618786340923b17bc8db24e" + sha256 cellar: :any_skip_relocation, x86_64_linux: "46d7247afa0fd4ae630c87588c8313d13b929e3fedd3b1150148ef787d98bbe2" end depends_on "go" => :build From 7846520c160ed85e65b558c185153e8a4f4bf170 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 00:44:18 +0000 Subject: [PATCH 0180/1364] fwupd: update 2.0.9 bottle. --- Formula/f/fwupd.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/f/fwupd.rb b/Formula/f/fwupd.rb index 06ea78c90e827..eeb23f401bada 100644 --- a/Formula/f/fwupd.rb +++ b/Formula/f/fwupd.rb @@ -9,13 +9,13 @@ class Fwupd < Formula head "https://github.com/fwupd/fwupd.git", branch: "main" bottle do - sha256 arm64_sequoia: "7d49636df66927c758efe2487a219b70bdc527da5caa86c67742018e8599ca72" - sha256 arm64_sonoma: "f4fbec9c586cc70c4be7b32332cc5f815a0d9256aa59968159aafa528ea8cadf" - sha256 arm64_ventura: "c51cafcea5d9b33f7c19468d9db44ae427ee3dce540e6bf9266279f8cf66aa2b" - sha256 sonoma: "14ec7ea3ea80063019ec6825e1f3f77bdb0f1fcdfc3d11a524ec141f74f6cf96" - sha256 ventura: "04f8e8820fabce1477bca0886daeb4865b570aadaed0378e7be3a08a7d61f4f5" - sha256 arm64_linux: "32ed3f93ab30fdcc83c67b208987e23db0b04290aa0658be14c3a8d25938f6f8" - sha256 x86_64_linux: "22d48e644b5aa022f9b27c6df0537e0f9d89f78d55b8e73bb30a4628dbda7a3f" + sha256 arm64_sequoia: "a851b08724e82513c7fd9ae3332d9ace21b1bd1012dc8730ab0b12bc4584fd26" + sha256 arm64_sonoma: "c8ea6d0e368ac08535802ad195fd1a52445ca7d0e62c8cc991a73e06ddb0fcf5" + sha256 arm64_ventura: "e1d6cd82871dee54d600a3afd1816fea623778774f8080aa5296e287d6c17f5c" + sha256 sonoma: "fbcc943c9c91fe26948521a6d7e20e3ee56ca3aec7201b1b13be4469f57f7534" + sha256 ventura: "da7d409f4633c13ac3198805a170e96513fcbd2a89e7b74a0cd49517de99efba" + sha256 arm64_linux: "a2f7ce99b63d187a9080b9ae599debe2a24e3161b8a04df20887b1818cf03f75" + sha256 x86_64_linux: "6c2b83904e3c74fe5db555e4b46eb1ce288965d83d6b6b58495209cb049a0759" end depends_on "gettext" => :build From 710f7dc90fee3a4787ad94238a234df180ce530c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 01:01:16 +0000 Subject: [PATCH 0181/1364] pulumi: update 3.168.0 bottle. --- Formula/p/pulumi.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/p/pulumi.rb b/Formula/p/pulumi.rb index 69a7c714704ab..0b9001a4479f1 100644 --- a/Formula/p/pulumi.rb +++ b/Formula/p/pulumi.rb @@ -10,12 +10,12 @@ class Pulumi < Formula no_autobump! because: :bumped_by_upstream bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "d9a129deb12ea066242a76a12b9368ba23cdfb6450395678f811d234689d3d2a" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "1fa1a5b0d996049cca4765b818ef7186eaea0b9e6a0af3609058a8ec3315d720" - sha256 cellar: :any_skip_relocation, arm64_ventura: "94a07899763a974582ba7999e4fc1ca8b3a5d44045254b851989372674349e23" - sha256 cellar: :any_skip_relocation, sonoma: "5ef7bf4b0c4bdcd7fe6352391d1f588e77eabfb66ebd5f3898d92c0b3809567d" - sha256 cellar: :any_skip_relocation, ventura: "050e61e46160add68a21fb795fbfb21cc292880a7d480b1f6ff0127d8f19a3ca" - sha256 cellar: :any_skip_relocation, x86_64_linux: "c1b0f906c756c0df2da16bdcd859fe6a19e09d9c37a2ae1b284990695182a77a" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "08fbbe5280c121730067626ef3efe6274154431cf1d73fef5b6ea898eab42238" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "e947c9999b25799dea45637f1618ed536b12e20e99f37a49abc1d5fcbd0aa325" + sha256 cellar: :any_skip_relocation, arm64_ventura: "2f2de40b037247f50d656d9f0118793354867d21cf5036333ec474f4d40d624a" + sha256 cellar: :any_skip_relocation, sonoma: "0197786250ce1fd6ec10a0f0e83aa50eff3a51b719dfab977560b7a374b6d8ed" + sha256 cellar: :any_skip_relocation, ventura: "bc1d1cc5f0a008bbf6f88a0b5536ddcd7ba2499d0f447f55263fcf43ec0f2a3f" + sha256 cellar: :any_skip_relocation, x86_64_linux: "e25046643bbcf33cafe051abe898e70e43aeeb915b7b94754ebef36715a72223" end depends_on "go" => :build From f2cf0eb524c5518d10c7ada7f472ce731f070c21 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 01:01:44 +0000 Subject: [PATCH 0182/1364] tgpt: update 2.10.0 bottle. --- Formula/t/tgpt.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/t/tgpt.rb b/Formula/t/tgpt.rb index 573d9b99d8f01..c06b87a5b41b3 100644 --- a/Formula/t/tgpt.rb +++ b/Formula/t/tgpt.rb @@ -7,12 +7,12 @@ class Tgpt < Formula head "https://github.com/aandrew-me/tgpt.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "163aa59bc4dd9c67e3ce54511a684e320a601918eb72d8f472d1eea2aba8b119" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "163aa59bc4dd9c67e3ce54511a684e320a601918eb72d8f472d1eea2aba8b119" - sha256 cellar: :any_skip_relocation, arm64_ventura: "163aa59bc4dd9c67e3ce54511a684e320a601918eb72d8f472d1eea2aba8b119" - sha256 cellar: :any_skip_relocation, sonoma: "4c38b7cb01d247c012fdb613946a14aa4b7131a6e159f9e58c198938e898e831" - sha256 cellar: :any_skip_relocation, ventura: "4c38b7cb01d247c012fdb613946a14aa4b7131a6e159f9e58c198938e898e831" - sha256 cellar: :any_skip_relocation, x86_64_linux: "2593ebb991c8ee46269554aea50ec20af8fd15c2465a08a2570e792d9afaa948" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "7ac29989e7df6f0eb1779469e3c07608422bcc9b9dd16a52f3d422f3b7522a33" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "7ac29989e7df6f0eb1779469e3c07608422bcc9b9dd16a52f3d422f3b7522a33" + sha256 cellar: :any_skip_relocation, arm64_ventura: "7ac29989e7df6f0eb1779469e3c07608422bcc9b9dd16a52f3d422f3b7522a33" + sha256 cellar: :any_skip_relocation, sonoma: "9cb050173265ba399c3884be9fd64fcaccf69931a729c66a550dbcfc47c41fce" + sha256 cellar: :any_skip_relocation, ventura: "9cb050173265ba399c3884be9fd64fcaccf69931a729c66a550dbcfc47c41fce" + sha256 cellar: :any_skip_relocation, x86_64_linux: "822a8e1a33f876b00a794681e74f6c687a2dabfcdbd811bc345c8ef684309383" end depends_on "go" => :build From 1b3d0da6100108354c593406cfaa97aec75d4be5 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 01:30:18 +0000 Subject: [PATCH 0183/1364] awscli: update 2.27.10 bottle. --- Formula/a/awscli.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/a/awscli.rb b/Formula/a/awscli.rb index 15eeb164d1a19..c4e5a64d08744 100644 --- a/Formula/a/awscli.rb +++ b/Formula/a/awscli.rb @@ -9,13 +9,13 @@ class Awscli < Formula head "https://github.com/aws/aws-cli.git", branch: "v2" bottle do - sha256 cellar: :any, arm64_sequoia: "0b4951cd057858751dd62aa7ac2a2ada97d72cab77590f80fac8033980fbb229" - sha256 cellar: :any, arm64_sonoma: "5bc9c53e2a2029c1afbddf88197476058778d7b880a5ac266e0348f106f2d344" - sha256 cellar: :any, arm64_ventura: "757b3f4b80eae71f511d51335c9e2346c3837043497c6e00f67a74829d29def2" - sha256 cellar: :any, sonoma: "3434dfaa8ee00cded04cffd29ec7130ef9cf5ef4baaf9a2cfc79a0009b5f3d0d" - sha256 cellar: :any, ventura: "176639fe5227a5a0aab21e1d629b74da1f681d53282cb7962ae5ef2baf2a5d45" - sha256 cellar: :any_skip_relocation, arm64_linux: "3531616f743821225dc7be890490c108de497274075505289d44a5adc5071e56" - sha256 cellar: :any_skip_relocation, x86_64_linux: "2fbe7545f9b32691837bf49c3f2335c70c6584c947dc78483bf721428683b635" + sha256 cellar: :any, arm64_sequoia: "2b70af19bdcb9126d3d9ae1e348e23e3c3c967b9b0c40b0c92ee121fee36431c" + sha256 cellar: :any, arm64_sonoma: "4884d8c72e74cbf83d3a08810a2d7aa8f671970b632de94f7a191d44246a703d" + sha256 cellar: :any, arm64_ventura: "2b85be88faac67995b9c92ae7fac861d5623664984e472cafb98e2371da8c87d" + sha256 cellar: :any, sonoma: "9ede8c3f5ba289c05747b1808cb73e22a3dd84b057995b5d648ac5613c69e250" + sha256 cellar: :any, ventura: "f55c8daf43d1d434d8902ee0fc3fa72e23d3aa71a5196a1bc561c553c0886978" + sha256 cellar: :any_skip_relocation, arm64_linux: "79c77a0f12b7c7ae839013b5ee200bf14af697b02fa8692f095103529f31575f" + sha256 cellar: :any_skip_relocation, x86_64_linux: "058d710485f37ed6536f249e4779bfb81cc03ab614537f74d157a1aaa5090a17" end depends_on "cmake" => :build From 694fc8b5ffbe5553f998aaf820f3df00f408c3d3 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 01:30:31 +0000 Subject: [PATCH 0184/1364] libgcrypt: update 1.11.1 bottle. --- Formula/lib/libgcrypt.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/lib/libgcrypt.rb b/Formula/lib/libgcrypt.rb index e0884c31ec289..954058bade71e 100644 --- a/Formula/lib/libgcrypt.rb +++ b/Formula/lib/libgcrypt.rb @@ -11,13 +11,13 @@ class Libgcrypt < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "d6010619edaf0b17877797dc4beb14c1ccb423833e864bf9e2990cf4c21373ce" - sha256 cellar: :any, arm64_sonoma: "7915e7cef1926e5d1613329f7972414c79824a5401034b01f858ed253dee0cbf" - sha256 cellar: :any, arm64_ventura: "53cba38f74d4eedbd8c74935b4b35f567f8f68455b8df38d66e5244f155c2ac8" - sha256 cellar: :any, sonoma: "0b9a2f6ca55e36d113b8d3c2c6098fb0e66709624bf5d84aca682e26fb4da696" - sha256 cellar: :any, ventura: "a2e2f896a1d89c8e7cecde7ba2a7f9a7e7470700b5b2ae88db5d4e26e18b14a0" - sha256 cellar: :any_skip_relocation, arm64_linux: "9236852d8de37e61b114bb6085a94e2adfda926a41774682513435c898195fc5" - sha256 cellar: :any_skip_relocation, x86_64_linux: "45ca7345d0a07b08c6802ff2d536235e5c8aa49592321faa4950611bb9ef8f87" + sha256 cellar: :any, arm64_sequoia: "be268e1e718212df254fb8b678adbcef8bad3994deb995566b8fdd7743e0b482" + sha256 cellar: :any, arm64_sonoma: "531de63827be5ab57b3b82dff1107af39bc50da502c38c3a504e864d11996c75" + sha256 cellar: :any, arm64_ventura: "2ef2f9a5995d4ece50c45dddf2a373a1674a18569272067c653ae2840cc6744c" + sha256 cellar: :any, sonoma: "4097600d438cb3383fcad621f71a011c79b90b96a96c8a5591406d63b08f12e6" + sha256 cellar: :any, ventura: "f24441d156443abc7b2621c61acd68647f60c90cd381028be3cb9876155902e2" + sha256 cellar: :any_skip_relocation, arm64_linux: "dc425dfd0efe384e0bac5647ea0fe058450c6a12852c100ddc1ece85dca5ac27" + sha256 cellar: :any_skip_relocation, x86_64_linux: "d943d57e65e44159873931d24de16762e527793bb0478b8cbd0580af31a2ed34" end depends_on "libgpg-error" From 1caf68b0591c1221fe2ca0877adab1cb3d0630fa Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 01:37:45 +0000 Subject: [PATCH 0185/1364] telnet: update 306 bottle. --- Formula/t/telnet.rb | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/Formula/t/telnet.rb b/Formula/t/telnet.rb index d23ba819adae7..7b1fbf76e8af9 100644 --- a/Formula/t/telnet.rb +++ b/Formula/t/telnet.rb @@ -6,13 +6,11 @@ class Telnet < Formula license all_of: ["BSD-4-Clause-UC", "APSL-1.0"] bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "7683b4348e7fc4f1170c3be8a3d282cf65572c82581eaa8ebf9151bd09fb7670" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "39af0c922c6db7c331dbcf63c14831c02dc9b8724b6aaa0ce893c79571437721" - sha256 cellar: :any_skip_relocation, arm64_ventura: "420b61c1995caeb463181faf7576a2e7d4688eead5c47a92c2f112a6ec02b494" - sha256 cellar: :any_skip_relocation, arm64_monterey: "451c787a0907689e34c433448e9428d72c330f72300256ae3faa42557647d9d8" - sha256 cellar: :any_skip_relocation, sonoma: "cc24db7265b969fa2120ca97606aaed36ffde687c89bf7822be08f759cadcb46" - sha256 cellar: :any_skip_relocation, ventura: "1be6b7b6a17a311fb3a2f1bffe7dae52284f3239b8af03f651c4fac11362f702" - sha256 cellar: :any_skip_relocation, monterey: "d1f70d1634a9a81032516d0b9c7a5553fe9f643b1dd0563ec99bfd6e7d689e40" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "a5314fd7135b21e32772b3d96751829e521453a429ab6b734fefbc99b4c94446" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "4db0190453f42c13370d8412c5d15398c1f85528c2f55e0e7f70d87d6fe1fd19" + sha256 cellar: :any_skip_relocation, arm64_ventura: "19ac3a5684b7216a9f42b0d38574fe09b675060184a703b9ce902778080b45e2" + sha256 cellar: :any_skip_relocation, sonoma: "7cd17dbe54ca38974677ffaa5716384f0095957f5ad6aa5ee6e6398f58de6cb9" + sha256 cellar: :any_skip_relocation, ventura: "e19e94a0f40871798ad05efa016f6bfd367b6216e3230d87324d41437411562a" end depends_on xcode: :build From 8d57df8f7703721ea4fbe258842b86633da154a0 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 01:38:13 +0000 Subject: [PATCH 0186/1364] telnetd: update 306 bottle. --- Formula/t/telnetd.rb | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/Formula/t/telnetd.rb b/Formula/t/telnetd.rb index 5024f416371f2..2c9cd4260a02f 100644 --- a/Formula/t/telnetd.rb +++ b/Formula/t/telnetd.rb @@ -6,13 +6,11 @@ class Telnetd < Formula license all_of: ["BSD-4-Clause-UC", "BSD-3-Clause"] bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "0981e34d3f11237109f2a8ae1c06fcf74107dac1041db5398ca2c9960ac28410" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "90a0461f0e2548b2b64bf6c84c30654401696632b60b650b532d49e03471281b" - sha256 cellar: :any_skip_relocation, arm64_ventura: "eb4d6ccbfed1c663629001f590d5328dd4bc5235b98aad628d9e0b918ace86b7" - sha256 cellar: :any_skip_relocation, arm64_monterey: "9c4d31ac7909b6b79275d6f08b2e0ac8c5ff67c4af4c55472b9d5244cf63a857" - sha256 cellar: :any_skip_relocation, sonoma: "e4ecd04f334f60b6944402ec2a9a761956b97e77f599aa3a7f10e0bae3e42bab" - sha256 cellar: :any_skip_relocation, ventura: "fbd68a8c5507c6c9ed80a1a3fb9002904424a628d48c6a944b5c28b0eb4add1a" - sha256 cellar: :any_skip_relocation, monterey: "c0f1d50c09d4631571033155a098aefc6d07d09e424e8888f945e86c71cc42b4" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "07bf8f40affa2499a35c1d4721d0f037e12081c299a43df1c11a0a51ebf15ac0" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "ed85960517cbb617e9b60788b809d4909266b9a377d28d714f9a713858fd57da" + sha256 cellar: :any_skip_relocation, arm64_ventura: "02ad1e6f02dcf3316ecb981540fcac0ebf600ffe5f24250a830704464742185c" + sha256 cellar: :any_skip_relocation, sonoma: "7fea7f6cc2ea119744bfa263e2c2a67766d169fb9ed0f73a97a6de8c00a0e06e" + sha256 cellar: :any_skip_relocation, ventura: "447534356a8a29764410dcf44c188300ce42e57487f9c8145d81b19d1b0868b4" end depends_on xcode: :build From f5a10bff6c8df6532b9dfbeea3041a81379ac046 Mon Sep 17 00:00:00 2001 From: Val V Date: Thu, 8 May 2025 01:46:54 +0000 Subject: [PATCH 0187/1364] newsraft: remove yajl dependency --- Formula/n/newsraft.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/Formula/n/newsraft.rb b/Formula/n/newsraft.rb index f34261a6afb1d..ed322985023dd 100644 --- a/Formula/n/newsraft.rb +++ b/Formula/n/newsraft.rb @@ -18,7 +18,6 @@ class Newsraft < Formula depends_on "scdoc" => :build depends_on "gumbo-parser" depends_on "ncurses" - depends_on "yajl" uses_from_macos "curl" uses_from_macos "expat" From 2f7d229b0569ad419f2da3dbc9aa8dde2ee1b30e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 16:55:11 +0000 Subject: [PATCH 0188/1364] azqr 2.4.6 azqr: update build Signed-off-by: Rui Chen --- Formula/a/azqr.rb | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/Formula/a/azqr.rb b/Formula/a/azqr.rb index 341e9ea2072eb..c4c39f2a8bda3 100644 --- a/Formula/a/azqr.rb +++ b/Formula/a/azqr.rb @@ -3,8 +3,8 @@ class Azqr < Formula homepage "https://azure.github.io/azqr/" # pull from git tag to get submodules url "https://github.com/Azure/azqr.git", - tag: "v.2.4.5", - revision: "669aca130d6232a413934b1cfdd4e67c2dc7efcf" + tag: "v.2.4.6", + revision: "551b1b787fcb838840785f6d4f289f4a2b46232a" license "MIT" head "https://github.com/Azure/azqr.git", branch: "main" @@ -20,7 +20,11 @@ class Azqr < Formula depends_on "go" => :build def install - system "go", "build", *std_go_args(ldflags: "-s -w -X github.com/Azure/azqr/cmd/azqr.version=#{version}"), "./cmd" + ldflags = %W[ + -s -w + -X github.com/Azure/azqr/cmd/azqr/commands.version=#{version} + ] + system "go", "build", *std_go_args(ldflags:), "./cmd/azqr" generate_completions_from_executable(bin/"azqr", "completion") end From a1b509c651d3e1ebab21e1c4d39c16726d052554 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 02:28:15 +0000 Subject: [PATCH 0189/1364] cargo-shuttle 0.54.0 --- Formula/c/cargo-shuttle.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/cargo-shuttle.rb b/Formula/c/cargo-shuttle.rb index f362edffdfb22..6a92469246ea4 100644 --- a/Formula/c/cargo-shuttle.rb +++ b/Formula/c/cargo-shuttle.rb @@ -1,8 +1,8 @@ class CargoShuttle < Formula desc "Build & ship backends without writing any infrastructure files" homepage "https://shuttle.dev" - url "https://github.com/shuttle-hq/shuttle/archive/refs/tags/v0.53.0.tar.gz" - sha256 "fd6df2d28d5a0f1a4cefcaefb1d5a7e73a40e2aed8f15f7276277596fd970f1d" + url "https://github.com/shuttle-hq/shuttle/archive/refs/tags/v0.54.0.tar.gz" + sha256 "469e08c0a168cf26347a9ca5fa746154a4887ae748e1809ba54fd342f64cfa82" license "Apache-2.0" head "https://github.com/shuttle-hq/shuttle.git", branch: "main" From 488ebf4caa7fc657ac552409095c3d51595497dc Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 02:35:21 +0000 Subject: [PATCH 0190/1364] dunamai 1.24.0 --- Formula/d/dunamai.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/d/dunamai.rb b/Formula/d/dunamai.rb index d27c529fb3693..95d6c7f786d8d 100644 --- a/Formula/d/dunamai.rb +++ b/Formula/d/dunamai.rb @@ -3,8 +3,8 @@ class Dunamai < Formula desc "Dynamic version generation" homepage "https://github.com/mtkennerly/dunamai" - url "https://files.pythonhosted.org/packages/5e/45/a7ce37a6d6e0ae6d5ff4f6045e2b77a35233df2c786185c855f1a1edd427/dunamai-1.23.2.tar.gz" - sha256 "df71e6de961f715579252011f94982ca864f2120c195c15122f5fd6ad436682f" + url "https://files.pythonhosted.org/packages/7b/39/1d9099f7529c61c80ef00c88b385493b9f6183582ac9bca5af84fe62311b/dunamai-1.24.0.tar.gz" + sha256 "c2d1a9f7359033c04dfc1865481d890acc5be4ac02596ad3275b854aba342294" license "MIT" bottle do From e92a817bde898287ab4ae7af19485bc52147472c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 02:44:39 +0000 Subject: [PATCH 0191/1364] jd 2.2.3 --- Formula/j/jd.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/j/jd.rb b/Formula/j/jd.rb index 8b246ab01bab4..1d0de1d3ed357 100644 --- a/Formula/j/jd.rb +++ b/Formula/j/jd.rb @@ -1,8 +1,8 @@ class Jd < Formula desc "JSON diff and patch" homepage "https://github.com/josephburnett/jd" - url "https://github.com/josephburnett/jd/archive/refs/tags/v2.2.2.tar.gz" - sha256 "85abf994c1f11aa0c2d13db03b2f02cb458e987ceaaccf4200b10193dd2895af" + url "https://github.com/josephburnett/jd/archive/refs/tags/v2.2.3.tar.gz" + sha256 "eb15f4eef5d418ef002c388f1c30b5802cea3f30609185ce4d12ef05e5148711" license "MIT" head "https://github.com/josephburnett/jd.git", branch: "master" From 08c871e1929e7567f7b2908a3f0522e31a0b2031 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 02:46:27 +0000 Subject: [PATCH 0192/1364] azqr: update 2.4.6 bottle. --- Formula/a/azqr.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/a/azqr.rb b/Formula/a/azqr.rb index c4c39f2a8bda3..ddd98e6a86d2b 100644 --- a/Formula/a/azqr.rb +++ b/Formula/a/azqr.rb @@ -9,12 +9,12 @@ class Azqr < Formula head "https://github.com/Azure/azqr.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "362c76de73f7c8d6fee4e64af20f45157287dcca2b291a09aebbdbb99afb69fc" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "362c76de73f7c8d6fee4e64af20f45157287dcca2b291a09aebbdbb99afb69fc" - sha256 cellar: :any_skip_relocation, arm64_ventura: "362c76de73f7c8d6fee4e64af20f45157287dcca2b291a09aebbdbb99afb69fc" - sha256 cellar: :any_skip_relocation, sonoma: "69e89765513c81e45efe0d5c3a39c77eb1986c507357852f65f0d4c78d347eb0" - sha256 cellar: :any_skip_relocation, ventura: "69e89765513c81e45efe0d5c3a39c77eb1986c507357852f65f0d4c78d347eb0" - sha256 cellar: :any_skip_relocation, x86_64_linux: "ebb2307c7ede47380de31dfee250f1b587f1bc3c0fab35f5ace7b3d4e58feac1" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "d829e1f2103f30449c954c50bbedf34ff1fcb28a6578e214737f1956d6cdc4c5" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "d829e1f2103f30449c954c50bbedf34ff1fcb28a6578e214737f1956d6cdc4c5" + sha256 cellar: :any_skip_relocation, arm64_ventura: "d829e1f2103f30449c954c50bbedf34ff1fcb28a6578e214737f1956d6cdc4c5" + sha256 cellar: :any_skip_relocation, sonoma: "be7bc031429270ed7d21c266aaf8507c3e807840605151b29bab9224508ffead" + sha256 cellar: :any_skip_relocation, ventura: "be7bc031429270ed7d21c266aaf8507c3e807840605151b29bab9224508ffead" + sha256 cellar: :any_skip_relocation, x86_64_linux: "5d8b0d8a49ba4051f5b388eaa978473d7f1a756ebaf54693fa972b0352342273" end depends_on "go" => :build From 615c0742d5981f4c143865558fe42ca731359759 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 03:08:35 +0000 Subject: [PATCH 0193/1364] snowball 3.0.0 --- Formula/s/snowball.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/s/snowball.rb b/Formula/s/snowball.rb index cf322a0286a95..4874a39f47f31 100644 --- a/Formula/s/snowball.rb +++ b/Formula/s/snowball.rb @@ -1,8 +1,8 @@ class Snowball < Formula desc "Stemming algorithms" homepage "https://snowballstem.org" - url "https://github.com/snowballstem/snowball/archive/refs/tags/v2.2.0.tar.gz" - sha256 "425cdb5fba13a01db59a1713780f0662e984204f402d3dae1525bda9e6d30f1a" + url "https://github.com/snowballstem/snowball/archive/refs/tags/v3.0.0.tar.gz" + sha256 "4100b983cec95e1e6c998ea57b220d235f082b9ef6e837afb97dee0bb0a65d14" license "BSD-3-Clause" bottle do From 9244cec2f1d0c66c3cb4799dfaa4a9cc333e4a25 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 03:15:30 +0000 Subject: [PATCH 0194/1364] mlt: update 7.32.0 bottle. --- Formula/m/mlt.rb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Formula/m/mlt.rb b/Formula/m/mlt.rb index 5e8e3fea39850..3962dc2f22917 100644 --- a/Formula/m/mlt.rb +++ b/Formula/m/mlt.rb @@ -7,11 +7,11 @@ class Mlt < Formula head "https://github.com/mltframework/mlt.git", branch: "master" bottle do - sha256 arm64_sonoma: "4de3e5e78a379b8bc478447011971e155a4e41684855b4a3797a06f5bc6e5287" - sha256 arm64_ventura: "31da49da4518a121f6e9e6ab04ff56276f3f8364f133ee150c8998ea16c52193" - sha256 sonoma: "e117b46970f88dbc7727a1330c75daa209c2cea3803707762b0b1af77a9f0f7e" - sha256 ventura: "f1fb9a4230fa99629c0f38817283e185df10926b6303d477ea334b9a242bfd25" - sha256 x86_64_linux: "87b9a9c1d8cf15fc06090f60b30c0fe882555f605d725f4ad0fa317b5828b2c5" + sha256 arm64_sonoma: "7af2750dbcf09aca5479d570e56c43a8e180d168a5f7a4603099eac650c3096f" + sha256 arm64_ventura: "6c9fe0de14917afb7d7eb5146e5ad011abe85acb19a4fd416380ad35f3258ac9" + sha256 sonoma: "eab1dff7f3e3e2fbf3616e903ab8c90ad7624d80bd1ebd02ad737671025fa657" + sha256 ventura: "7de16a6e73f1f5bd759430b63ae31dd4ccfe2b944d67df61a0e8ff4177d9bdc6" + sha256 x86_64_linux: "b38d747109cfd0aff7ab1826c1f9a1560ac17454fdb7325dca1989a06e9eb611" end depends_on "cmake" => :build From b2d36ff393e92c6bf58e01842bd7428b20f56205 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 04:44:24 +0000 Subject: [PATCH 0195/1364] snowball: update 3.0.0 bottle. --- Formula/s/snowball.rb | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/Formula/s/snowball.rb b/Formula/s/snowball.rb index 4874a39f47f31..8d0b224dbb40c 100644 --- a/Formula/s/snowball.rb +++ b/Formula/s/snowball.rb @@ -6,18 +6,13 @@ class Snowball < Formula license "BSD-3-Clause" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "ee9cb154c98b21ccd83d8e8f88a9d767a0a80284c679a73ff2e10db9e5a6beb4" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "e61964218eb34ae6ae5975f05233ea44a9c254edbb344010ff8748aef3ac0c9a" - sha256 cellar: :any_skip_relocation, arm64_ventura: "d8e1cf937fbaa3c25c0d7104b1c7734c0c19261f5b9fe6055a4dcca59dcf20e2" - sha256 cellar: :any_skip_relocation, arm64_monterey: "6974dd00e92e2e7bfc20b4778846c2ed28006b629405da64075f25a1bb9822ab" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "c4dd9009ce77704933f0a5ed20dc6ad94eb234f375ea220c24fe1936ee75afe4" - sha256 cellar: :any_skip_relocation, sonoma: "af002d2a86b2b25ebcc37b2d383808bb938e756d95f3f1d9efd978b15a18d969" - sha256 cellar: :any_skip_relocation, ventura: "1375b053e5d742bb072d6ce041f53fbfc14c2e1cda40fbbc4d29cd91fd0177bc" - sha256 cellar: :any_skip_relocation, monterey: "421db9b9e06d84eb71c1bd249892c39f69726a645b08317618747534dab7a5ce" - sha256 cellar: :any_skip_relocation, big_sur: "54ddcd5be49b2ff80a37bfacfc8987b51415cc697e7f44c1ed503a2651c0ffe3" - sha256 cellar: :any_skip_relocation, catalina: "2d0eb0914d79c2977dbaf48d7c7103de5f09c8bf12dba872f1687522890681e4" - sha256 cellar: :any_skip_relocation, arm64_linux: "51b9fa9044856c1399c80575f5984b13ac207cec645d8c0e054c34e85d27677a" - sha256 cellar: :any_skip_relocation, x86_64_linux: "d85b1d508f2b88dbeaaa20e26861c18694f92a8d307830dbf73db60421de57aa" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "f800d74cc3e5337071d2bb59a39085fa36af75fae8b2f00cffeee25fc0dc6d29" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "18a4becde03a59785d32e2e4b8fed9b079ee9f6cdebb5fcd4e89a3210687c163" + sha256 cellar: :any_skip_relocation, arm64_ventura: "a2595984accd236f401f4e0f37a2cbad5260d7afea79ac55b0182c6630cb72ec" + sha256 cellar: :any_skip_relocation, sonoma: "7d328109b67b97484f0570d86560c3086952f638da20d181cdbb5ffed10e3852" + sha256 cellar: :any_skip_relocation, ventura: "73a1328a2b670adc21b014aab0261fa393d2a3de2a5acb07f28c321f2b0472a6" + sha256 cellar: :any_skip_relocation, arm64_linux: "070310bee31cfcb3dcbf59b4fa5c9b05c3ada77f33fd096c5a1281e17741f2a7" + sha256 cellar: :any_skip_relocation, x86_64_linux: "0d8beb30dbbb73efbf7727da953b2a9d2c2b3bdc74814ea2eb6da54f5e3a0684" end def install From 826c2cae182803f04928cad169215d2038150ffc Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 04:44:46 +0000 Subject: [PATCH 0196/1364] jd: update 2.2.3 bottle. --- Formula/j/jd.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/j/jd.rb b/Formula/j/jd.rb index 1d0de1d3ed357..93891b20e259f 100644 --- a/Formula/j/jd.rb +++ b/Formula/j/jd.rb @@ -7,12 +7,12 @@ class Jd < Formula head "https://github.com/josephburnett/jd.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "849464c157d6dc35010b3fb9532f619db68ea4394c45992311bbdb7d6f592764" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "849464c157d6dc35010b3fb9532f619db68ea4394c45992311bbdb7d6f592764" - sha256 cellar: :any_skip_relocation, arm64_ventura: "849464c157d6dc35010b3fb9532f619db68ea4394c45992311bbdb7d6f592764" - sha256 cellar: :any_skip_relocation, sonoma: "74758b3059a267701f7cd9fe7ac20d32e38471756a80befd51010bae913dfb90" - sha256 cellar: :any_skip_relocation, ventura: "74758b3059a267701f7cd9fe7ac20d32e38471756a80befd51010bae913dfb90" - sha256 cellar: :any_skip_relocation, x86_64_linux: "e97787a3acac2daecccd56c77f6b5fc1f8f09cdbd4dc5846d7e71d56f7bd33d7" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "b454b956683fdb424faf9d899e9f27a319949ca30cc8629ec297bb86fd231db3" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "b454b956683fdb424faf9d899e9f27a319949ca30cc8629ec297bb86fd231db3" + sha256 cellar: :any_skip_relocation, arm64_ventura: "b454b956683fdb424faf9d899e9f27a319949ca30cc8629ec297bb86fd231db3" + sha256 cellar: :any_skip_relocation, sonoma: "427da10a6b21d60ee3df226cc974018fda3eedd6af251af383f27af80f5253d9" + sha256 cellar: :any_skip_relocation, ventura: "427da10a6b21d60ee3df226cc974018fda3eedd6af251af383f27af80f5253d9" + sha256 cellar: :any_skip_relocation, x86_64_linux: "55039aa88fc295cffebda6c27d4a536fc605a4ab10c5ee1570967d0ae6de570c" end depends_on "go" => :build From 2a2867b3e5f9706698447733711f360e1d5530c5 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 04:45:09 +0000 Subject: [PATCH 0197/1364] dunamai: update 1.24.0 bottle. --- Formula/d/dunamai.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/d/dunamai.rb b/Formula/d/dunamai.rb index 95d6c7f786d8d..8ba2d60ecfe53 100644 --- a/Formula/d/dunamai.rb +++ b/Formula/d/dunamai.rb @@ -8,7 +8,7 @@ class Dunamai < Formula license "MIT" bottle do - sha256 cellar: :any_skip_relocation, all: "9582f32e94a7278b3ad55cec5407dd33c3d74b970b35f40d032c9d4a9a95e04e" + sha256 cellar: :any_skip_relocation, all: "6dd7ec71034e04dba5dc663ed3a4c445124baf7e0277be99c8d72426cc02a268" end depends_on "python@3.13" From 7c1e6b3ebd4136d6499a38be1e3578174cb60eee Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 04:45:54 +0000 Subject: [PATCH 0198/1364] cargo-shuttle: update 0.54.0 bottle. --- Formula/c/cargo-shuttle.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/cargo-shuttle.rb b/Formula/c/cargo-shuttle.rb index 6a92469246ea4..85beed9c02cc4 100644 --- a/Formula/c/cargo-shuttle.rb +++ b/Formula/c/cargo-shuttle.rb @@ -7,13 +7,13 @@ class CargoShuttle < Formula head "https://github.com/shuttle-hq/shuttle.git", branch: "main" bottle do - sha256 cellar: :any, arm64_sequoia: "66e26dbb46e1537ed6ad7ab78b63035a72a3acf7033a3f2138abdaac98e76559" - sha256 cellar: :any, arm64_sonoma: "ba3ee979c33f9582b2cfc271d9c46a3fe6b100d083a1a20d6815015ff791c43d" - sha256 cellar: :any, arm64_ventura: "625f92819f038c176402410ad52c9fdf79c30bd61d0714b3566b48aca29d4657" - sha256 cellar: :any, sonoma: "877622e78dc41e19ffa984e2d3e8746daf0a97bb70279746ae631b29952220ef" - sha256 cellar: :any, ventura: "89fffe2c86bda927cd009a5112535199d52257cac326c653147a58d2931d8b2b" - sha256 cellar: :any_skip_relocation, arm64_linux: "2c12c2044f4cf607be4a8766f6adf9926bafa6ebb4b4d92cda346a3ff94e500c" - sha256 cellar: :any_skip_relocation, x86_64_linux: "e09df817e9c223875e94b0ead41e10519e4dd66c2d496d303277b16cec96595c" + sha256 cellar: :any, arm64_sequoia: "1d8a79e772cadc92aa068942893197405b905080894351408be9e919dbb5f58e" + sha256 cellar: :any, arm64_sonoma: "fee93017ecccbce60465e5535dbd4ec255a62c1a63077ce124135ef0b1a63013" + sha256 cellar: :any, arm64_ventura: "3de03d91bf65d8681ab1c4944431104ac39e56575dc14ec97ad1cb9f74c8cccf" + sha256 cellar: :any, sonoma: "2525c6c0cfe6ffd5c17358db32337b297064988aefcff5ad5293c422ea4fcc90" + sha256 cellar: :any, ventura: "ede971d32cee736d3c7e8e2d8bf1f9f1201efce2dff909901d681751c342d846" + sha256 cellar: :any_skip_relocation, arm64_linux: "44f0cab56ac4f063240b24a72cb381b263a70df203f5926175614caa615d7771" + sha256 cellar: :any_skip_relocation, x86_64_linux: "aa7bae036f97a2c3b7ee866c9965aa0a283857538f0376d4cdc8251450ac2536" end depends_on "pkgconf" => :build From d5f7d3855f9f00bc3b78c54312b0fd2055778e43 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 04:49:20 +0000 Subject: [PATCH 0199/1364] newsraft: update 0.30 bottle. --- Formula/n/newsraft.rb | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Formula/n/newsraft.rb b/Formula/n/newsraft.rb index ed322985023dd..1428ad309aa57 100644 --- a/Formula/n/newsraft.rb +++ b/Formula/n/newsraft.rb @@ -6,13 +6,14 @@ class Newsraft < Formula license "ISC" bottle do - sha256 cellar: :any, arm64_sequoia: "29fd1bfb589d23856ba5a4c8a7833f8a017bfb942dcef041d73d0dbede4da802" - sha256 cellar: :any, arm64_sonoma: "721539470524ce3d472ec99f9ed3791d5f82ce34136c4c85850b672fc74221d2" - sha256 cellar: :any, arm64_ventura: "feb7572e11c73b7a8b86d59b0e1147eac7767f2f1c59496777ff4889d9a94b2d" - sha256 cellar: :any, sonoma: "b566119c0a0fb37b2f5b2a925a61e787acb00202c227ef415a4ff67e7805aa9f" - sha256 cellar: :any, ventura: "588e84062f56bbf2815eb8c094f679d33fd7b8c20f7cc7435391e12aa88a4fbc" - sha256 cellar: :any_skip_relocation, arm64_linux: "b555f5fa493b75a38832a89bb6e395892d6de46b7dea689dea1872a4e1a773fe" - sha256 cellar: :any_skip_relocation, x86_64_linux: "c15e9536c644f1251c32c5ee67b74582425545f1d48987dd51c0918485760e4d" + rebuild 1 + sha256 cellar: :any, arm64_sequoia: "fc25441587a212a0e2ff3ea4f3da8ea8ae4ee6eb056734f34457e359226c5075" + sha256 cellar: :any, arm64_sonoma: "ccbf32aa2aad3feca89328629e5639cc590cceb84e0819014d92c7b9edc7cd09" + sha256 cellar: :any, arm64_ventura: "28c538465291b8b65247cee90652ab3a81bdc4dff555386798a7cb2cdcedd87a" + sha256 cellar: :any, sonoma: "6524f7e716bd15f1a0b53de139f1ddbef314ef15700e5c1d0b3e6bfe04127a7c" + sha256 cellar: :any, ventura: "2d0e01a5a206136515d82bca07ae11c478995e9f1f9bb7d70c251428992f5519" + sha256 cellar: :any_skip_relocation, arm64_linux: "416ea9344c2a5e145eb76c0cc7238ba0214a85fbec51a3c2ba4335fe8ec813c1" + sha256 cellar: :any_skip_relocation, x86_64_linux: "984b829e7f58382aa6a5af27221be3424fef32dca3c7965c37dd04c7e332a575" end depends_on "scdoc" => :build From b713e4d904e58211b7dd3d44a56c4cbf416c9334 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 04:57:59 +0000 Subject: [PATCH 0200/1364] commitlint 19.8.1 --- Formula/c/commitlint.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/commitlint.rb b/Formula/c/commitlint.rb index ed5734817c204..b43b117d3440b 100644 --- a/Formula/c/commitlint.rb +++ b/Formula/c/commitlint.rb @@ -1,8 +1,8 @@ class Commitlint < Formula desc "Lint commit messages according to a commit convention" homepage "https://commitlint.js.org/#/" - url "https://registry.npmjs.org/commitlint/-/commitlint-19.8.0.tgz" - sha256 "6c242cc853cda7748c850aafdb13df7ec05a4d64dd1badabc87b865fb25d9775" + url "https://registry.npmjs.org/commitlint/-/commitlint-19.8.1.tgz" + sha256 "b87082a3113be1c2929db63d727d3765b92f89e103b966996e7cfc560315ef68" license "MIT" head "https://github.com/conventional-changelog/commitlint.git", branch: "master" From 73bb60f9c606bfa7cd8141e1bb809f54b678f720 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 05:00:03 +0000 Subject: [PATCH 0201/1364] dbml-cli 3.13.5 --- Formula/d/dbml-cli.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/d/dbml-cli.rb b/Formula/d/dbml-cli.rb index 37bd393411741..8c0d795143193 100644 --- a/Formula/d/dbml-cli.rb +++ b/Formula/d/dbml-cli.rb @@ -1,8 +1,8 @@ class DbmlCli < Formula desc "Convert DBML file to SQL and vice versa" homepage "https://www.dbml.org/cli/" - url "https://registry.npmjs.org/@dbml/cli/-/cli-3.13.4.tgz" - sha256 "3484fc287598b715bc922ce959782694e480df80d0e4c046d02ee6aba38e45c7" + url "https://registry.npmjs.org/@dbml/cli/-/cli-3.13.5.tgz" + sha256 "d981fa4e82ce33b140f1efa2e057f12dca83d25774b58dc5ed2ed92fb9ba2569" license "Apache-2.0" bottle do From 3b21c13a80ea2b87f3eb1b7f0a17a789580a9403 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 05:07:20 +0000 Subject: [PATCH 0202/1364] gollama 1.33.2 --- Formula/g/gollama.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/g/gollama.rb b/Formula/g/gollama.rb index 02f90fd408901..d9ad40297381d 100644 --- a/Formula/g/gollama.rb +++ b/Formula/g/gollama.rb @@ -1,8 +1,8 @@ class Gollama < Formula desc "Go manage your Ollama models" homepage "https://smcleod.net" - url "https://github.com/sammcj/gollama/archive/refs/tags/v1.33.1.tar.gz" - sha256 "57414ab5fc6ac33b37b966f264a220131a2f6c9057d4f36d6e64ed2866d95fed" + url "https://github.com/sammcj/gollama/archive/refs/tags/v1.33.2.tar.gz" + sha256 "70fc868a0e0d2a81dc4be2c8d802f956617654fbab7bacbb9afbf9162d0e847b" license "MIT" head "https://github.com/sammcj/gollama.git", branch: "main" From 6febf44c9ec1bd7e433eb9e0e6f38bc27d48d9ca Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 05:10:05 +0000 Subject: [PATCH 0203/1364] iguana 1.0.9 --- Formula/i/iguana.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/i/iguana.rb b/Formula/i/iguana.rb index f27e5d6bcccf2..ae8070ce5a7be 100644 --- a/Formula/i/iguana.rb +++ b/Formula/i/iguana.rb @@ -1,8 +1,8 @@ class Iguana < Formula desc "Universal serialization engine" homepage "https://github.com/qicosmos/iguana" - url "https://github.com/qicosmos/iguana/archive/refs/tags/1.0.8.tar.gz" - sha256 "d73da8c876a060781ccf56ec79a6984dadefc7a6b00820365edf0d4ce71b822d" + url "https://github.com/qicosmos/iguana/archive/refs/tags/1.0.9.tar.gz" + sha256 "b6e3f11a0c37538e84e25397565f5f12b0e6810e582bce7f3ca046425b0b1edf" license "Apache-2.0" head "https://github.com/qicosmos/iguana.git", branch: "master" From d293e1d41bb3fb8b7602571464710c29e0b518e4 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 05:13:13 +0000 Subject: [PATCH 0204/1364] commitlint: update 19.8.1 bottle. --- Formula/c/commitlint.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/commitlint.rb b/Formula/c/commitlint.rb index b43b117d3440b..3b693244bead6 100644 --- a/Formula/c/commitlint.rb +++ b/Formula/c/commitlint.rb @@ -7,13 +7,13 @@ class Commitlint < Formula head "https://github.com/conventional-changelog/commitlint.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "c9ad018a47784ad630908660e7d046667249aeabb44dc626c2cc7d7eba11627a" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "c9ad018a47784ad630908660e7d046667249aeabb44dc626c2cc7d7eba11627a" - sha256 cellar: :any_skip_relocation, arm64_ventura: "c9ad018a47784ad630908660e7d046667249aeabb44dc626c2cc7d7eba11627a" - sha256 cellar: :any_skip_relocation, sonoma: "ca9b14e39291378f087640fc43df856cc1563902e1dcbcf0c7d58bda9f181c8a" - sha256 cellar: :any_skip_relocation, ventura: "ca9b14e39291378f087640fc43df856cc1563902e1dcbcf0c7d58bda9f181c8a" - sha256 cellar: :any_skip_relocation, arm64_linux: "5c612a2a32afd765251ecec05911ec06cc5e4944492c1a2a1432b68fc46ac0db" - sha256 cellar: :any_skip_relocation, x86_64_linux: "c9ad018a47784ad630908660e7d046667249aeabb44dc626c2cc7d7eba11627a" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "a5060996ad29bdfaed43cc556cd7f361c3fb3fb4240fe0f8ed9b3e2634963ec9" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "a5060996ad29bdfaed43cc556cd7f361c3fb3fb4240fe0f8ed9b3e2634963ec9" + sha256 cellar: :any_skip_relocation, arm64_ventura: "a5060996ad29bdfaed43cc556cd7f361c3fb3fb4240fe0f8ed9b3e2634963ec9" + sha256 cellar: :any_skip_relocation, sonoma: "86842a5c386c604d290b3784bfc29310ee7bc4de1e6b3c71d5a4621947d8b35d" + sha256 cellar: :any_skip_relocation, ventura: "86842a5c386c604d290b3784bfc29310ee7bc4de1e6b3c71d5a4621947d8b35d" + sha256 cellar: :any_skip_relocation, arm64_linux: "a5060996ad29bdfaed43cc556cd7f361c3fb3fb4240fe0f8ed9b3e2634963ec9" + sha256 cellar: :any_skip_relocation, x86_64_linux: "a5060996ad29bdfaed43cc556cd7f361c3fb3fb4240fe0f8ed9b3e2634963ec9" end depends_on "node" From bffe39d1277717c74b65bbe055b55a9c3e37fc8f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 05:15:35 +0000 Subject: [PATCH 0205/1364] libphonenumber 9.0.5 --- Formula/lib/libphonenumber.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/lib/libphonenumber.rb b/Formula/lib/libphonenumber.rb index 3efccf70df665..3bb8ce1a603a0 100644 --- a/Formula/lib/libphonenumber.rb +++ b/Formula/lib/libphonenumber.rb @@ -1,8 +1,8 @@ class Libphonenumber < Formula desc "C++ Phone Number library by Google" homepage "https://github.com/google/libphonenumber" - url "https://github.com/google/libphonenumber/archive/refs/tags/v9.0.3.tar.gz" - sha256 "496c0fa9f046d3750d747e929f21e95ca153a0266c57e0d92edf523adf2a35c9" + url "https://github.com/google/libphonenumber/archive/refs/tags/v9.0.5.tar.gz" + sha256 "60095f6dc67d0359ec5008c5ad37f17003012c3de149b545d5a07b18d89acf90" license "Apache-2.0" livecheck do From 22db3eb4ab3523d0eca5152724b7b9bc12f12425 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 05:29:34 +0000 Subject: [PATCH 0206/1364] renovate 40.9.0 --- Formula/r/renovate.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/r/renovate.rb b/Formula/r/renovate.rb index f3408ffa08eb4..806e92d8f7483 100644 --- a/Formula/r/renovate.rb +++ b/Formula/r/renovate.rb @@ -1,8 +1,8 @@ class Renovate < Formula desc "Automated dependency updates. Flexible so you don't need to be" homepage "https://github.com/renovatebot/renovate" - url "https://registry.npmjs.org/renovate/-/renovate-40.8.0.tgz" - sha256 "86b74d6799699adc138a83f94af53e8612510ac6f00a2af072aeb6ed2f64f67f" + url "https://registry.npmjs.org/renovate/-/renovate-40.9.0.tgz" + sha256 "766fede08f218d0f2a0737a02601e1bc19b074408d6a293d3cc06c6d41ac2fb0" license "AGPL-3.0-only" # There are thousands of renovate releases on npm and the page the `Npm` From fe2a1223171e2236f7d09bf7d0e0894b16a136a5 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 05:30:14 +0000 Subject: [PATCH 0207/1364] gollama: update 1.33.2 bottle. --- Formula/g/gollama.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/g/gollama.rb b/Formula/g/gollama.rb index d9ad40297381d..93fb140989616 100644 --- a/Formula/g/gollama.rb +++ b/Formula/g/gollama.rb @@ -7,12 +7,12 @@ class Gollama < Formula head "https://github.com/sammcj/gollama.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "51340c8961e74d7860e819665afa525e303d13418d2751694a1c2991ce3ecce8" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "68d0f33bf2920d7a49f7625ff96efe7427f1b175ba67f6b643af8b79a3e454a2" - sha256 cellar: :any_skip_relocation, arm64_ventura: "7220b9642562d92423965170fb9c358b080294e58294aac81f0bd9abcbdd0d61" - sha256 cellar: :any_skip_relocation, sonoma: "d7a52541277393a36822e6e336e950225061ad4bc177e8b0d3f0942a15350010" - sha256 cellar: :any_skip_relocation, ventura: "231771a00f0c7fa4d5a4ca2dd2be9fbee5534302bf83af2e57c4e91eec4dce80" - sha256 cellar: :any_skip_relocation, x86_64_linux: "69db31d5057b0ed7278da420be21bc6335f0fbf017a1f794ddd27056569a26d7" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "939621719dc437392ef168588c1550bf3e0d0dd714989c75bdaf59416b67f1da" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "67e21fc58fa21ecb8dd3f14921bf8ace16f506e4c67c9364fdecddeeda51e7d0" + sha256 cellar: :any_skip_relocation, arm64_ventura: "fa138db2c17be7b15c9e867cbd48a1d3d58efeabb529428fd74b2b4b61885c58" + sha256 cellar: :any_skip_relocation, sonoma: "6af8c5f2eab49e6415fbbfcd582f1b7198b56023b9258187c0619b9e98fd9051" + sha256 cellar: :any_skip_relocation, ventura: "b338e549a94f5451e0b5d50d4276f291cd510b9f03fe97cbf06c67ee1d815176" + sha256 cellar: :any_skip_relocation, x86_64_linux: "1861d3394fbd9a652496d1df4be51177ab3274286205230e44963ee3b519c1fa" end depends_on "go" => :build From caf4c4b7b308ab67637d0c5dc5d4564c1adee7b9 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 05:30:46 +0000 Subject: [PATCH 0208/1364] dbml-cli: update 3.13.5 bottle. --- Formula/d/dbml-cli.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/d/dbml-cli.rb b/Formula/d/dbml-cli.rb index 8c0d795143193..a7b7240844e75 100644 --- a/Formula/d/dbml-cli.rb +++ b/Formula/d/dbml-cli.rb @@ -6,13 +6,13 @@ class DbmlCli < Formula license "Apache-2.0" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "634e925fef3d7224d5f50536307573363614739d6c123bd59b93b0982d486c7e" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "634e925fef3d7224d5f50536307573363614739d6c123bd59b93b0982d486c7e" - sha256 cellar: :any_skip_relocation, arm64_ventura: "634e925fef3d7224d5f50536307573363614739d6c123bd59b93b0982d486c7e" - sha256 cellar: :any_skip_relocation, sonoma: "7bc879cb4c67a28f0f5b8e9c2e06300533f713d25925541c5f31a8d694542206" - sha256 cellar: :any_skip_relocation, ventura: "7bc879cb4c67a28f0f5b8e9c2e06300533f713d25925541c5f31a8d694542206" - sha256 cellar: :any_skip_relocation, arm64_linux: "634e925fef3d7224d5f50536307573363614739d6c123bd59b93b0982d486c7e" - sha256 cellar: :any_skip_relocation, x86_64_linux: "634e925fef3d7224d5f50536307573363614739d6c123bd59b93b0982d486c7e" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "cbb40548dd4f2155051c5ca300e1edc8cf5aeb254b032233fe20afd34eb2eee8" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "cbb40548dd4f2155051c5ca300e1edc8cf5aeb254b032233fe20afd34eb2eee8" + sha256 cellar: :any_skip_relocation, arm64_ventura: "cbb40548dd4f2155051c5ca300e1edc8cf5aeb254b032233fe20afd34eb2eee8" + sha256 cellar: :any_skip_relocation, sonoma: "f48ac3665d9f77e9886340a6723f2f1ab4a274b8023cb7998e3e6a3f7f6d8de8" + sha256 cellar: :any_skip_relocation, ventura: "f48ac3665d9f77e9886340a6723f2f1ab4a274b8023cb7998e3e6a3f7f6d8de8" + sha256 cellar: :any_skip_relocation, arm64_linux: "cbb40548dd4f2155051c5ca300e1edc8cf5aeb254b032233fe20afd34eb2eee8" + sha256 cellar: :any_skip_relocation, x86_64_linux: "cbb40548dd4f2155051c5ca300e1edc8cf5aeb254b032233fe20afd34eb2eee8" end depends_on "node" From f992185b22ad5013277791bd69b64e2ff1eeb16c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 05:32:34 +0000 Subject: [PATCH 0209/1364] iguana: update 1.0.9 bottle. --- Formula/i/iguana.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/i/iguana.rb b/Formula/i/iguana.rb index ae8070ce5a7be..9f3540d4bc573 100644 --- a/Formula/i/iguana.rb +++ b/Formula/i/iguana.rb @@ -7,7 +7,7 @@ class Iguana < Formula head "https://github.com/qicosmos/iguana.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, all: "73d3a46b7dd83e975b5846d908ae88d60f42164d4a80ccfac6d896da899ed3ff" + sha256 cellar: :any_skip_relocation, all: "f67499cf80e3b24af53d4a7cc8c8f0f61fcbd603ded5ee734589a7fa3002deb0" end depends_on "frozen" From bf6170b4295a3e1649e7b94d4a2f395634f8f4cc Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 05:35:38 +0000 Subject: [PATCH 0210/1364] talhelper 3.0.24 --- Formula/t/talhelper.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/t/talhelper.rb b/Formula/t/talhelper.rb index 26a2f15e2d2e8..fa3168d78fc60 100644 --- a/Formula/t/talhelper.rb +++ b/Formula/t/talhelper.rb @@ -1,8 +1,8 @@ class Talhelper < Formula desc "Configuration helper for talos clusters" homepage "https://budimanjojo.github.io/talhelper/latest/" - url "https://github.com/budimanjojo/talhelper/archive/refs/tags/v3.0.23.tar.gz" - sha256 "4a73ef517470f8106c3ed2dbed09d33e1bb6d2151378d38da6f0088dbfb90bbe" + url "https://github.com/budimanjojo/talhelper/archive/refs/tags/v3.0.24.tar.gz" + sha256 "39f34dd4a5d94188bacdea85362307217e56eceba92801dd9a534c19fed91fe8" license "BSD-3-Clause" head "https://github.com/budimanjojo/talhelper.git", branch: "master" From c46238aad090e1587fd73d3fe6a9b633dc39835e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 05:36:21 +0000 Subject: [PATCH 0211/1364] libphonenumber: update 9.0.5 bottle. --- Formula/lib/libphonenumber.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/lib/libphonenumber.rb b/Formula/lib/libphonenumber.rb index 3bb8ce1a603a0..af1c83fb1f3ea 100644 --- a/Formula/lib/libphonenumber.rb +++ b/Formula/lib/libphonenumber.rb @@ -11,13 +11,13 @@ class Libphonenumber < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "8c1678e8b053454c95f6d8532e0d590161486ebac4aaad8a38b3eacbe1301f2b" - sha256 cellar: :any, arm64_sonoma: "a2a8a7372463e5ae85bf0b61cacd20ae7f978df49336f2366c75ec2c054df727" - sha256 cellar: :any, arm64_ventura: "b2cc6b390b3a35a93a2240c5b4232b74ae11d12c7f881d0f4e1503386f96fc5e" - sha256 cellar: :any, sonoma: "c685019cb203bc2d8fcd07b0265f9334a45a38fe1b80b93daadb69cc2519bd78" - sha256 cellar: :any, ventura: "56976c30873dc98fd88d65b67bbfa82fb4e011f3f7b6db1647a5ccbb39e71679" - sha256 cellar: :any_skip_relocation, arm64_linux: "10d5050c4e7a993371181a483970a33ba7154fce84d6f978ddee5b0c133ced8f" - sha256 cellar: :any_skip_relocation, x86_64_linux: "d1d752c0e33de8a3e18472f635fab9da61aea9f8a968747651a2644caaee5835" + sha256 cellar: :any, arm64_sequoia: "b4a71cae21d8c87897d07b99ee06be539f82197acf1d5b5e726901257885e282" + sha256 cellar: :any, arm64_sonoma: "ce59d445f338e6d66ddccfdf21b0be3f123dbc3cb3d651f46f8b2df33d39c0d0" + sha256 cellar: :any, arm64_ventura: "028ecf1b6a4f2336e8b87a0d8af8c021357e502584defae2356213be6a63b6f0" + sha256 cellar: :any, sonoma: "b112e32e8f6e8dde93bab8daf8494bd9d9578537ea5bb7e4f4322be24272ab24" + sha256 cellar: :any, ventura: "53a62a1eb87f63fdc18ee0cbae79bd95f1bfc2e9fb301e3ba40df33b019121c8" + sha256 cellar: :any_skip_relocation, arm64_linux: "9c71c4b92782ebcb6fe003cd1a02de6701ee6ade97e66f6f87c4c5f360483b17" + sha256 cellar: :any_skip_relocation, x86_64_linux: "a3cbccc4112d2b7c365bafc27d34a680a6fbe88b2fdc8980c0907ea6528db622" end depends_on "cmake" => [:build, :test] From 4fa75c8190f9a91ecf21a2b2433edeeec20e39e8 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 05:54:26 +0000 Subject: [PATCH 0212/1364] talhelper: update 3.0.24 bottle. --- Formula/t/talhelper.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/t/talhelper.rb b/Formula/t/talhelper.rb index fa3168d78fc60..da3d4b01e44b8 100644 --- a/Formula/t/talhelper.rb +++ b/Formula/t/talhelper.rb @@ -7,12 +7,12 @@ class Talhelper < Formula head "https://github.com/budimanjojo/talhelper.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "a8b038a4451b694a8b8938bfc1d002da59d7d2b5a3a9660f0570a3e3b33e3823" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "a8b038a4451b694a8b8938bfc1d002da59d7d2b5a3a9660f0570a3e3b33e3823" - sha256 cellar: :any_skip_relocation, arm64_ventura: "a8b038a4451b694a8b8938bfc1d002da59d7d2b5a3a9660f0570a3e3b33e3823" - sha256 cellar: :any_skip_relocation, sonoma: "fceaa009ffdcd87c1d39e54ecff87cd01a11f5d6337146c8e1bfe906554c7fee" - sha256 cellar: :any_skip_relocation, ventura: "fceaa009ffdcd87c1d39e54ecff87cd01a11f5d6337146c8e1bfe906554c7fee" - sha256 cellar: :any_skip_relocation, x86_64_linux: "f7025ab39fb53f715f97dfe348f5273d3e3ae542ed355f165b7f0c8ace493d63" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "e9b9cea08a4644d4b449ce379bc716285e94cd530e8ecbdda4a050ec302dd8de" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "e9b9cea08a4644d4b449ce379bc716285e94cd530e8ecbdda4a050ec302dd8de" + sha256 cellar: :any_skip_relocation, arm64_ventura: "e9b9cea08a4644d4b449ce379bc716285e94cd530e8ecbdda4a050ec302dd8de" + sha256 cellar: :any_skip_relocation, sonoma: "56e5e8c9919e86dc80aabbe76b05d1e0f5eb37cd1803494b48d34ed2fc38e64c" + sha256 cellar: :any_skip_relocation, ventura: "56e5e8c9919e86dc80aabbe76b05d1e0f5eb37cd1803494b48d34ed2fc38e64c" + sha256 cellar: :any_skip_relocation, x86_64_linux: "c74f1ac69469b0474047c636ac317e314dd5ad4924bc55588622b0fad7f94cda" end depends_on "go" => :build From ddd45a567117a2a0ab17714b23c4c9c73c920dd6 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 05:58:55 +0000 Subject: [PATCH 0213/1364] renovate: update 40.9.0 bottle. --- Formula/r/renovate.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/r/renovate.rb b/Formula/r/renovate.rb index 806e92d8f7483..e4ef7ea70f5c4 100644 --- a/Formula/r/renovate.rb +++ b/Formula/r/renovate.rb @@ -17,13 +17,13 @@ class Renovate < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "746fc183c7b06629971b0d728eea0b5ccfe00503d58ba0f83d3c1368e93074d8" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "bf9399de95d0500252f0d0a6cb08cec30579ea41e541659b288f7c2b6837b4b2" - sha256 cellar: :any_skip_relocation, arm64_ventura: "e29178b11f2d9a4d3a71cf1a97fea05ad9b07a7a1505f89ab55616d8c82b7fbb" - sha256 cellar: :any_skip_relocation, sonoma: "6fe518f6f2e5b253b90944c6e5e162c3ad54c953f5b3fd6a51dd40073f5ed2c2" - sha256 cellar: :any_skip_relocation, ventura: "bf551ec7106c614ff2dec7e15ee64d8c126c6f063189c10fc70c4bcfe7600bea" - sha256 cellar: :any_skip_relocation, arm64_linux: "0b3a57320156d3490cd8428667e68c427b8ff98239978627faebd98e3fe12ca2" - sha256 cellar: :any_skip_relocation, x86_64_linux: "76d2bb3ab025c9552e376300a1385e9f86003ed2a9b6082a995449229ad2e147" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "b6873ab92cdcf512d7e5fb86dab184bd74266674afb99bf4839d04f189324a87" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "45f680c0f358049b7016d570b1daf59212288c3e9f4a448ae3de8981652a02ce" + sha256 cellar: :any_skip_relocation, arm64_ventura: "42e4332169a268b1f52370df3c91862f2dddd8aefca229f5d952a89c0ea4e58d" + sha256 cellar: :any_skip_relocation, sonoma: "6acc6b7f337a87a255776dd540c5b1b7fffdc8c35e71859355d8743012eb4410" + sha256 cellar: :any_skip_relocation, ventura: "f82161075a9eab445ce48c2a9b6ee79d01f4bf5a979efd3f07186dbc2fd24577" + sha256 cellar: :any_skip_relocation, arm64_linux: "8073c1e37a93c5b8902357f768401df43da2a4ebdd8bf99ba11fec2b1bf2d531" + sha256 cellar: :any_skip_relocation, x86_64_linux: "a20a8d82823a1821ecca8240b740784a00a39e712c29558fb77a2e21e3d09efa" end depends_on "node@22" From c946f3a47f224a946fd241025d1ff9156c38afb2 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 7 May 2025 23:03:56 +0000 Subject: [PATCH 0214/1364] firebase-cli 14.3.0 --- Formula/f/firebase-cli.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Formula/f/firebase-cli.rb b/Formula/f/firebase-cli.rb index 2681dc8ca8a8c..3e651bdd8f069 100644 --- a/Formula/f/firebase-cli.rb +++ b/Formula/f/firebase-cli.rb @@ -1,8 +1,8 @@ class FirebaseCli < Formula desc "Firebase command-line tools" homepage "https://firebase.google.com/docs/cli/" - url "https://registry.npmjs.org/firebase-tools/-/firebase-tools-14.2.2.tgz" - sha256 "3493b9d12c491d06cf9fb32009edf40d376dccc3d34158dc52af15bb5db5017b" + url "https://registry.npmjs.org/firebase-tools/-/firebase-tools-14.3.0.tgz" + sha256 "2238f5d821af3e66d6b89e6e0b09596c7aa034ef12067dc320645d5d5fc467ec" license "MIT" head "https://github.com/firebase/firebase-tools.git", branch: "master" @@ -29,7 +29,7 @@ def install assert_match "Failed to authenticate", shell_output("#{bin}/firebase init", 1) end - output = pipe_output("#{bin}/firebase login:ci --interactive --no-localhost", "dummy-code") - assert_match "Unable to authenticate", output + output = shell_output("#{bin}/firebase use dev 2>&1", 1) + assert_match "Failed to authenticate, have you run \e[1mfirebase login\e[22m?", output end end From 348b91cf061449a086181b267a8f9c6371d86928 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 07:56:05 +0000 Subject: [PATCH 0215/1364] cdk8s 2.200.64 --- Formula/c/cdk8s.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/cdk8s.rb b/Formula/c/cdk8s.rb index 57a2922dbe2f9..951f81c4131a8 100644 --- a/Formula/c/cdk8s.rb +++ b/Formula/c/cdk8s.rb @@ -1,8 +1,8 @@ class Cdk8s < Formula desc "Define k8s native apps and abstractions using object-oriented programming" homepage "https://cdk8s.io/" - url "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.200.63.tgz" - sha256 "c8d7ccb427e0bbb636552ab64a76a763ace8330f5f58a7389a33aacf05ce4d51" + url "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.200.64.tgz" + sha256 "9ca3fc24103218fc6d2bf0e2e698a65db6ae9813659948bf8c24272965649508" license "Apache-2.0" head "https://github.com/cdk8s-team/cdk8s-cli.git", branch: "2.x" From a05bd647734822974f140ab5767ec3103c295d0e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 07:59:57 +0000 Subject: [PATCH 0216/1364] cspell 9.0.1 --- Formula/c/cspell.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/cspell.rb b/Formula/c/cspell.rb index 42291cc925897..9ae086e6c9b46 100644 --- a/Formula/c/cspell.rb +++ b/Formula/c/cspell.rb @@ -1,8 +1,8 @@ class Cspell < Formula desc "Spell checker for code" homepage "https://cspell.org" - url "https://registry.npmjs.org/cspell/-/cspell-9.0.0.tgz" - sha256 "ad48d250caa44adc14384c467080bfd08562884fc0aa9fb206d78b7270a93d4c" + url "https://registry.npmjs.org/cspell/-/cspell-9.0.1.tgz" + sha256 "5d68a8ad5228766aafb0e88ac2d07942dad506d652b2620805a501202509f37c" license "MIT" bottle do From 44f615a9895e9359beb29d5b39cb1cc7e102ffd4 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 08:12:48 +0000 Subject: [PATCH 0217/1364] harsh 0.10.21 --- Formula/h/harsh.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/h/harsh.rb b/Formula/h/harsh.rb index a0da9bc7fbacd..1d4f4c948e784 100644 --- a/Formula/h/harsh.rb +++ b/Formula/h/harsh.rb @@ -1,8 +1,8 @@ class Harsh < Formula desc "Habit tracking for geeks" homepage "https://github.com/wakatara/harsh" - url "https://github.com/wakatara/harsh/archive/refs/tags/v0.10.20.tar.gz" - sha256 "c90cab3aa5b3e2d564c381e5f4bf7805b9dbc3259dc920c133e4bdced3ca6f95" + url "https://github.com/wakatara/harsh/archive/refs/tags/v0.10.21.tar.gz" + sha256 "3ddf2798ab1853932ecadfb1bcc1ea6cecfb96fbda35fbd52a797baf5844e6b1" license "MIT" head "https://github.com/wakatara/harsh.git", branch: "master" From 6d4a75cfad45308f419d5cdd9e9758ea6b15c148 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 08:15:10 +0000 Subject: [PATCH 0218/1364] immich-go 0.26.2 --- Formula/i/immich-go.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/i/immich-go.rb b/Formula/i/immich-go.rb index 50e51635dc1c1..20359c4021d3d 100644 --- a/Formula/i/immich-go.rb +++ b/Formula/i/immich-go.rb @@ -1,8 +1,8 @@ class ImmichGo < Formula desc "Alternative to the official immich-CLI command written in Go" homepage "https://github.com/simulot/immich-go" - url "https://github.com/simulot/immich-go/archive/refs/tags/v0.26.1.tar.gz" - sha256 "db8c5d73e3e1d00930be06cfb6b16afa95b3894f1836c97a12f94bd2baf61c5a" + url "https://github.com/simulot/immich-go/archive/refs/tags/v0.26.2.tar.gz" + sha256 "f7f28e5564f8dcc9e212de540d1fcd97da42e4e01cbf23783ad75908499f3cd6" license "AGPL-3.0-only" head "https://github.com/simulot/immich-go.git", branch: "main" From dc4778f64d292f71b472d814c89be4035c3443c8 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 08:16:20 +0000 Subject: [PATCH 0219/1364] jackett 0.22.1877 --- Formula/j/jackett.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/j/jackett.rb b/Formula/j/jackett.rb index d5bac70331603..48dcf6e553cd7 100644 --- a/Formula/j/jackett.rb +++ b/Formula/j/jackett.rb @@ -1,8 +1,8 @@ class Jackett < Formula desc "API Support for your favorite torrent trackers" homepage "https://github.com/Jackett/Jackett" - url "https://github.com/Jackett/Jackett/archive/refs/tags/v0.22.1874.tar.gz" - sha256 "8e0874b6dad878541bc175e9265532675da250ea521bce156d6d50a40f980f28" + url "https://github.com/Jackett/Jackett/archive/refs/tags/v0.22.1877.tar.gz" + sha256 "b1f8c10402f3162189ec9d8e55dcf77e4b47651c10cb0fee93d27b1e31207c66" license "GPL-2.0-only" head "https://github.com/Jackett/Jackett.git", branch: "master" From 595b342e662ac6a4609f9eb25909da3074789bc3 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 08:17:52 +0000 Subject: [PATCH 0220/1364] k9s 0.50.5 --- Formula/k/k9s.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/k/k9s.rb b/Formula/k/k9s.rb index 6356a7a190fa5..efda92522a530 100644 --- a/Formula/k/k9s.rb +++ b/Formula/k/k9s.rb @@ -2,8 +2,8 @@ class K9s < Formula desc "Kubernetes CLI To Manage Your Clusters In Style!" homepage "https://k9scli.io/" url "https://github.com/derailed/k9s.git", - tag: "v0.50.4", - revision: "e4e38161857a202f09488c7ab3603a27de464ad4" + tag: "v0.50.5", + revision: "ccebaa604ef66dd77b9ddc4d2142798a414275ee" license "Apache-2.0" head "https://github.com/derailed/k9s.git", branch: "master" From 608fe02f2e85c578e5ade0fa92bd5a82305575f4 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 08:26:16 +0000 Subject: [PATCH 0221/1364] localstack 4.4.0 --- Formula/l/localstack.rb | 53 +++++++++++++++-------------------------- 1 file changed, 19 insertions(+), 34 deletions(-) diff --git a/Formula/l/localstack.rb b/Formula/l/localstack.rb index 6a32023d97f02..ae0ed5c36b92e 100644 --- a/Formula/l/localstack.rb +++ b/Formula/l/localstack.rb @@ -3,8 +3,8 @@ class Localstack < Formula desc "Fully functional local AWS cloud stack" homepage "https://localstack.cloud/" - url "https://files.pythonhosted.org/packages/e1/3a/1aefc78cfa26c39a404470ada314fd6e91f179e5a093d789e38e64fbc0c1/localstack-4.3.0.tar.gz" - sha256 "5d9e3c0bbd749253a2c7ea3fb120dc953f233778b090492676efaf5c0f7839da" + url "https://files.pythonhosted.org/packages/21/78/44c19a8ac78a5ff3ebf336593ac1f58c42f13da9c1a68ed4944d5c3b646e/localstack-4.4.0.tar.gz" + sha256 "d304dcbd025af1b67e1e50972446e5f5f875d9cf8f86ed947c86349228f0e8c9" license "Apache-2.0" bottle do @@ -33,8 +33,8 @@ class Localstack < Formula end resource "charset-normalizer" do - url "https://files.pythonhosted.org/packages/16/b0/572805e227f01586461c80e0fd25d65a2115599cc9dad142fee4b747c357/charset_normalizer-3.4.1.tar.gz" - sha256 "44251f18cd68a75b56585dd00dae26183e102cd5e0f9f1466e6df5da2ed64ea3" + url "https://files.pythonhosted.org/packages/e4/33/89c2ced2b67d1c2a61c19c6751aa8902d46ce3dacb23600a283619f5a12d/charset_normalizer-3.4.2.tar.gz" + sha256 "5baececa9ecba31eff645232d59845c07aa030f0c81ee70184a90d35099a0e63" end resource "click" do @@ -57,24 +57,19 @@ class Localstack < Formula sha256 "ce9c432eda0dc91cf618a5cedf1a4e142651196bbcd2c80e89ed5a907e5cfaf1" end - resource "ecdsa" do - url "https://files.pythonhosted.org/packages/c0/1f/924e3caae75f471eae4b26bd13b698f6af2c44279f67af317439c2f4c46a/ecdsa-0.19.1.tar.gz" - sha256 "478cba7b62555866fcb3bb3fe985e06decbdb68ef55713c4e5ab98c57d508e61" - end - resource "idna" do url "https://files.pythonhosted.org/packages/f1/70/7703c29685631f5a7590aa73f1f1d3fa9a380e654b86af429e0934a32f7d/idna-3.10.tar.gz" sha256 "12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9" end resource "localstack-core" do - url "https://files.pythonhosted.org/packages/d2/a3/c278d96ab7493947495fc33f6c555c2a158742553d0b6280d941490a8303/localstack_core-4.3.0.tar.gz" - sha256 "002b9d41a966c74e9610f7aa365d9257502fe87fbe803b3c0994f4336b20c5a4" + url "https://files.pythonhosted.org/packages/d8/7f/5fc41099382be3bc7f92427e0ea165b8ad50075cb01963769af6d8f96f58/localstack_core-4.4.0.tar.gz" + sha256 "02ed647d51946c09f2f77ff6dbec358eae676cbe2779ce13418133727fc00b37" end resource "localstack-ext" do - url "https://files.pythonhosted.org/packages/c9/bc/01ebe4741ad792f85df0ec230a2fb7bbba5e700fdccc6c928edbb64842cd/localstack_ext-4.3.0.tar.gz" - sha256 "625286748b5e7888eaa8ef4be0101f104bab39aeefad86809ab787f2021170f5" + url "https://files.pythonhosted.org/packages/a8/52/4ec536ece083fb7127f8b88087ec1d383c8bdc2e7b463cc276808ab323cc/localstack_ext-4.4.0.tar.gz" + sha256 "cbf8a733dec7fa7b984f2796d7a64b93b1280774dbe549cd26415a8d2def0088" end resource "markdown-it-py" do @@ -88,8 +83,8 @@ class Localstack < Formula end resource "packaging" do - url "https://files.pythonhosted.org/packages/d0/63/68dbb6eb2de9cb10ee4c9c14a0148804425e13c4fb20d61cce69f53106da/packaging-24.2.tar.gz" - sha256 "c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f" + url "https://files.pythonhosted.org/packages/a1/d4/1fc4078c65507b51b96ca8f8c3ba19e6a61c8253c72794544580a7b6c24d/packaging-25.0.tar.gz" + sha256 "d443872c98d677bf60f6a1f2f8c1cb748e8fe762d2bf9d3148b5599295b0fc4f" end resource "plux" do @@ -102,16 +97,16 @@ class Localstack < Formula sha256 "7be9c3eba38beccb6495ea33afd982a44074b78f28c434a1f51cc07fd315c456" end - resource "pyasn1" do - url "https://files.pythonhosted.org/packages/a4/db/fffec68299e6d7bad3d504147f9094830b704527a7fc098b721d38cc7fa7/pyasn1-0.4.8.tar.gz" - sha256 "aef77c9fb94a3ac588e87841208bdec464471d9871bd5050a287cc9a475cd0ba" - end - resource "pygments" do url "https://files.pythonhosted.org/packages/7c/2d/c3338d48ea6cc0feb8446d8e6937e1408088a72a39937982cc6111d17f84/pygments-2.19.1.tar.gz" sha256 "61c16d2a8576dc0649d9f39e089b5f02bcd27fba10d8fb4dcc28173f7a45151f" end + resource "pyjwt" do + url "https://files.pythonhosted.org/packages/e7/46/bd74733ff231675599650d3e47f361794b22ef3e3770998dda30d3b63726/pyjwt-2.10.1.tar.gz" + sha256 "3cc5772eb20009233caf06e9d8a0577824723b44e6648ee0a2aedb6cf9381953" + end + resource "pyotp" do url "https://files.pythonhosted.org/packages/f3/b2/1d5994ba2acde054a443bd5e2d384175449c7d2b6d1a0614dbca3a63abfc/pyotp-2.9.0.tar.gz" sha256 "346b6642e0dbdde3b4ff5a930b664ca82abfa116356ed48cc42c7d6590d36f63" @@ -132,11 +127,6 @@ class Localstack < Formula sha256 "41f90bc6f5f177fb41f53e87666db362025010eb28f60a01c9143bfa33a2b2d5" end - resource "python-jose" do - url "https://files.pythonhosted.org/packages/8e/a0/c49687cf40cb6128ea4e0559855aff92cd5ebd1a60a31c08526818c0e51e/python-jose-3.4.0.tar.gz" - sha256 "9a9a40f418ced8ecaf7e3b28d69887ceaa76adad3bcaa6dae0d9e596fec1d680" - end - resource "pyyaml" do url "https://files.pythonhosted.org/packages/54/ed/79a089b6be93607fa5cdaedf301d7dfb23af5f25c398d5ead2525b063e17/pyyaml-6.0.2.tar.gz" sha256 "d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e" @@ -148,13 +138,8 @@ class Localstack < Formula end resource "rich" do - url "https://files.pythonhosted.org/packages/ab/3a/0316b28d0761c6734d6bc14e770d85506c986c85ffb239e688eeaab2c2bc/rich-13.9.4.tar.gz" - sha256 "439594978a49a09530cff7ebc4b5c7103ef57baf48d5ea3184f21d9a2befa098" - end - - resource "rsa" do - url "https://files.pythonhosted.org/packages/aa/65/7d973b89c4d2351d7fb232c2e452547ddfa243e93131e7cfa766da627b52/rsa-4.9.tar.gz" - sha256 "e38464a49c6c85d7f1351b0126661487a7e0a14a50f1675ec50eb34d4f20ef21" + url "https://files.pythonhosted.org/packages/a1/53/830aa4c3066a8ab0ae9a9955976fb770fe9c6102117c8ec4ab3ea62d89e8/rich-14.0.0.tar.gz" + sha256 "82f1bc23a6a21ebca4ae0c45af9bdbc492ed20231dcb63f297d6d1021a9d5725" end resource "semver" do @@ -178,8 +163,8 @@ class Localstack < Formula end resource "urllib3" do - url "https://files.pythonhosted.org/packages/aa/63/e53da845320b757bf29ef6a9062f5c669fe997973f966045cb019c3f4b66/urllib3-2.3.0.tar.gz" - sha256 "f8c5449b3cf0861679ce7e0503c7b44b5ec981bec0d1d3795a07f1ba96f0204d" + url "https://files.pythonhosted.org/packages/8a/78/16493d9c386d8e60e442a35feac5e00f0913c0f4b7c217c11e8ec2ff53e0/urllib3-2.4.0.tar.gz" + sha256 "414bc6535b787febd7567804cc015fee39daab8ad86268f1310a9250697de466" end def install From 3a34897e9fdfc97d6e3e9292512f729b6282ad4d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 08:36:28 +0000 Subject: [PATCH 0222/1364] openrtsp 2025.05.08 --- Formula/o/openrtsp.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Formula/o/openrtsp.rb b/Formula/o/openrtsp.rb index 2964ab4a042fb..8200aee3a8bbe 100644 --- a/Formula/o/openrtsp.rb +++ b/Formula/o/openrtsp.rb @@ -1,10 +1,10 @@ class Openrtsp < Formula desc "Command-line RTSP client" homepage "http://www.live555.com/openRTSP" - url "http://www.live555.com/liveMedia/public/live.2025.04.24.tar.gz" - mirror "https://download.videolan.org/pub/videolan/testing/contrib/live555/live.2025.04.24.tar.gz" + url "http://www.live555.com/liveMedia/public/live.2025.05.08.tar.gz" + mirror "https://download.videolan.org/pub/videolan/testing/contrib/live555/live.2025.05.08.tar.gz" # Keep a mirror as upstream tarballs are removed after each version - sha256 "a34a17e8c0922097bcd1fae6d5b42a6d75d493266a4f4a6f11dc0b4c3351a6f6" + sha256 "52f6ad40580c00693dbc382e0e7e2aabc1b1bb0d6dcf1fc45f7d491fdcd023ef" license "LGPL-3.0-or-later" livecheck do From 4eb42e980bcbcae71cdcbdb037a5ef346b207135 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 08:36:53 +0000 Subject: [PATCH 0223/1364] openshift-cli 4.18.11 --- Formula/o/openshift-cli.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/o/openshift-cli.rb b/Formula/o/openshift-cli.rb index 7236eb8ca1467..b8b1e7130382a 100644 --- a/Formula/o/openshift-cli.rb +++ b/Formula/o/openshift-cli.rb @@ -1,7 +1,7 @@ class OpenshiftCli < Formula desc "OpenShift command-line interface tools" homepage "https://www.openshift.com/" - url "https://mirror.openshift.com/pub/openshift-v4/clients/ocp/4.18.10/openshift-client-src.tar.gz" + url "https://mirror.openshift.com/pub/openshift-v4/clients/ocp/4.18.11/openshift-client-src.tar.gz" # This project employs synchronized versioning so the sha256 may not change on version bumps sha256 "583abfd280c49a651f9edabb0ea3988ec2bc961c8723a24d6705ec1232c241ba" license "Apache-2.0" From 540a8a2ee3d225842268f71d1fdc1cd5a5a6fd72 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 08:38:17 +0000 Subject: [PATCH 0224/1364] passt 2025_05_07.eea8a76 --- Formula/p/passt.rb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Formula/p/passt.rb b/Formula/p/passt.rb index f909befe79474..ff2a69233c0eb 100644 --- a/Formula/p/passt.rb +++ b/Formula/p/passt.rb @@ -1,8 +1,9 @@ class Passt < Formula desc "User-mode networking daemons for virtual machines and namespaces" homepage "https://passt.top/passt/about/" - url "https://passt.top/passt/snapshot/passt-2025_05_03.587980c.tar.xz" - sha256 "69d5eb843f7d648c2cc60bfbca6ea7b5014c6b6f07cdee362c2a8cf490515a49" + url "https://passt.top/passt/snapshot/passt-2025_05_07.eea8a76.tar.xz" + version "2025_05_07.eea8a76" + sha256 "527e5b95d464913ac7748ed530c1e497356d0ded3299c73793efc2e7e575ca49" license all_of: ["GPL-2.0-or-later", "BSD-3-Clause"] head "git://passt.top/passt", branch: "master" From e26d43a5cf8c3ac538bac2713db6a4c71d73e47a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 08:39:40 +0000 Subject: [PATCH 0225/1364] pie 0.11.0 --- Formula/p/pie.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/p/pie.rb b/Formula/p/pie.rb index ca5c28bab6196..65f700b9440a2 100644 --- a/Formula/p/pie.rb +++ b/Formula/p/pie.rb @@ -1,8 +1,8 @@ class Pie < Formula desc "PHP Installer for Extensions" homepage "https://github.com/php/pie" - url "https://github.com/php/pie/releases/download/0.10.0/pie.phar" - sha256 "a630d071d0618f7cfbd1ca5ea9afcdcc67645546629a1d53bf4329628708d341" + url "https://github.com/php/pie/releases/download/0.11.0/pie.phar" + sha256 "5c37e6b4c244f1c6fec6ee066f2b5cba54d3c4d89a8df9ea97d3bf9708a5aee1" license "BSD-3-Clause" bottle do From 1cf326a1817195038c45d65258e9a4a63f7a0fc1 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 08:44:49 +0000 Subject: [PATCH 0226/1364] renovate 40.10.0 --- Formula/r/renovate.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/r/renovate.rb b/Formula/r/renovate.rb index e4ef7ea70f5c4..7a61ab5a5a6fb 100644 --- a/Formula/r/renovate.rb +++ b/Formula/r/renovate.rb @@ -1,8 +1,8 @@ class Renovate < Formula desc "Automated dependency updates. Flexible so you don't need to be" homepage "https://github.com/renovatebot/renovate" - url "https://registry.npmjs.org/renovate/-/renovate-40.9.0.tgz" - sha256 "766fede08f218d0f2a0737a02601e1bc19b074408d6a293d3cc06c6d41ac2fb0" + url "https://registry.npmjs.org/renovate/-/renovate-40.10.0.tgz" + sha256 "24d4a423520a2e3fef97148a79292dc16bd3679bb3ab149eaa8b4fc366efb025" license "AGPL-3.0-only" # There are thousands of renovate releases on npm and the page the `Npm` From a3174c5db1f7b0ec83c96a80b3262e3d74ce5d53 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 08:47:09 +0000 Subject: [PATCH 0227/1364] scooter 0.5.0 --- Formula/s/scooter.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/s/scooter.rb b/Formula/s/scooter.rb index 0eb8b22818566..c457569a90643 100644 --- a/Formula/s/scooter.rb +++ b/Formula/s/scooter.rb @@ -1,8 +1,8 @@ class Scooter < Formula desc "Interactive find and replace in the terminal" homepage "https://github.com/thomasschafer/scooter" - url "https://github.com/thomasschafer/scooter/archive/refs/tags/v0.4.0.tar.gz" - sha256 "19f38c588b11c3c69c8229182f875ac61a529604e6af73c00ed6259dca3880e9" + url "https://github.com/thomasschafer/scooter/archive/refs/tags/v0.5.0.tar.gz" + sha256 "9f2a6ebfef3339cfb13895e9233c1fef684c7d6c23d8b190b4435d369962283a" license "MIT" bottle do From 657e4560f72ac652d366fe635ff1f6f43d653f7c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 08:52:15 +0000 Subject: [PATCH 0228/1364] cdk8s: update 2.200.64 bottle. --- Formula/c/cdk8s.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/cdk8s.rb b/Formula/c/cdk8s.rb index 951f81c4131a8..079b4ce1afb79 100644 --- a/Formula/c/cdk8s.rb +++ b/Formula/c/cdk8s.rb @@ -7,13 +7,13 @@ class Cdk8s < Formula head "https://github.com/cdk8s-team/cdk8s-cli.git", branch: "2.x" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "219d5ff58250ccec98b8722ed648f364b0fc1840aafe332cc0d0a2134fab18b2" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "219d5ff58250ccec98b8722ed648f364b0fc1840aafe332cc0d0a2134fab18b2" - sha256 cellar: :any_skip_relocation, arm64_ventura: "219d5ff58250ccec98b8722ed648f364b0fc1840aafe332cc0d0a2134fab18b2" - sha256 cellar: :any_skip_relocation, sonoma: "16aa8c4f83580656c1eee66c197bc5d278f69ab5a4b8d292032819d550313367" - sha256 cellar: :any_skip_relocation, ventura: "16aa8c4f83580656c1eee66c197bc5d278f69ab5a4b8d292032819d550313367" - sha256 cellar: :any_skip_relocation, arm64_linux: "219d5ff58250ccec98b8722ed648f364b0fc1840aafe332cc0d0a2134fab18b2" - sha256 cellar: :any_skip_relocation, x86_64_linux: "219d5ff58250ccec98b8722ed648f364b0fc1840aafe332cc0d0a2134fab18b2" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "d7674735ad35dca33f679601370c04bcf1334563ddf9514b78faf5c917514d90" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "d7674735ad35dca33f679601370c04bcf1334563ddf9514b78faf5c917514d90" + sha256 cellar: :any_skip_relocation, arm64_ventura: "d7674735ad35dca33f679601370c04bcf1334563ddf9514b78faf5c917514d90" + sha256 cellar: :any_skip_relocation, sonoma: "532eff7ec55d9977f5352a241739fb2878fd98c45c1357de1a41e49b60e0ddbc" + sha256 cellar: :any_skip_relocation, ventura: "532eff7ec55d9977f5352a241739fb2878fd98c45c1357de1a41e49b60e0ddbc" + sha256 cellar: :any_skip_relocation, arm64_linux: "d7674735ad35dca33f679601370c04bcf1334563ddf9514b78faf5c917514d90" + sha256 cellar: :any_skip_relocation, x86_64_linux: "d7674735ad35dca33f679601370c04bcf1334563ddf9514b78faf5c917514d90" end depends_on "node" From 5492e317a8b6aa65b89efff0e11f01724448127c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 08:52:58 +0000 Subject: [PATCH 0229/1364] jackett: update 0.22.1877 bottle. --- Formula/j/jackett.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/j/jackett.rb b/Formula/j/jackett.rb index 48dcf6e553cd7..0edc0194b3dd3 100644 --- a/Formula/j/jackett.rb +++ b/Formula/j/jackett.rb @@ -7,12 +7,12 @@ class Jackett < Formula head "https://github.com/Jackett/Jackett.git", branch: "master" bottle do - sha256 cellar: :any, arm64_sequoia: "b8584ed18dbcb34d8d799511b16554ea757fe6d36dc250f060d43b216a82ade2" - sha256 cellar: :any, arm64_sonoma: "be0efb9cad0e205e34718f4b00bd142d3a2d3ad8692e83fc80a9e7518b85d1e4" - sha256 cellar: :any, arm64_ventura: "df1995e184ff7c1764a9d45cfcdc9ef6fc6346618f19a2595191132ff18b2506" - sha256 cellar: :any, ventura: "98f25407101853d6dae48321f1d01020b4e44eb0fe2fb1f84773c77710123bbc" - sha256 cellar: :any_skip_relocation, arm64_linux: "256a09d72684fac4676f8f30a2fe21915fe3716d0482603118555e7ff9ed88aa" - sha256 cellar: :any_skip_relocation, x86_64_linux: "d441c4dedb5044e61d764b2680ebf68d7d7d8a3e356f3ffd08512753134275b7" + sha256 cellar: :any, arm64_sequoia: "2a68ba786fcd01a8a8f92118bd45853f1f25f869759bea6ca89065a4f8326656" + sha256 cellar: :any, arm64_sonoma: "0041a17567221099b194e1496b61533ceea1cb36b726304d6f3b8cf66068737e" + sha256 cellar: :any, arm64_ventura: "60260079a21e4842ffbfee9b0ed77a39a6729106ce1a9360ac052968d1a94713" + sha256 cellar: :any, ventura: "e9c6b1d269584f6476c6c20f79e4d914f3d04f0c491600fb64d18dbeb25f2e55" + sha256 cellar: :any_skip_relocation, arm64_linux: "f1227515bd738478b0105389ea714d58fcedf45fcc65db9cb365511cf9893036" + sha256 cellar: :any_skip_relocation, x86_64_linux: "fa1583db21910fadfcb709c87369b2529b184de593e9e6c02a70a5069ecd0d52" end depends_on "dotnet@8" From 968808244beb1311958d271ee8f3dd84131688d5 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 08:53:18 +0000 Subject: [PATCH 0230/1364] k9s: update 0.50.5 bottle. --- Formula/k/k9s.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/k/k9s.rb b/Formula/k/k9s.rb index efda92522a530..95270f9f0dd80 100644 --- a/Formula/k/k9s.rb +++ b/Formula/k/k9s.rb @@ -13,13 +13,13 @@ class K9s < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "a94bafcc2cecebf1be02a1c13c2e33b909e4c35f4e89497357174ffd4faae19c" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "ba8b79c24cbf33668ed6004fee5e88ea3d82c882989c8707d1d6c83117c25d59" - sha256 cellar: :any_skip_relocation, arm64_ventura: "38044ba9fdbd1206786154439ce4d784ddcb176fbaac354c431a51989120b30c" - sha256 cellar: :any_skip_relocation, sonoma: "44d04da2dfdfa46d34d69cf6ba73ee0f624c5926071bdeec25bdd6ad8b867b22" - sha256 cellar: :any_skip_relocation, ventura: "00ead77a783f006226e198387ffa7ca6bfbd55b56942cb84d1d7f1d7ab9aea94" - sha256 cellar: :any_skip_relocation, arm64_linux: "74c2b5f4f8d2e1d4fbcdbbdfd29d1a8f51e975a8c315e83b3c2ae06c197babfa" - sha256 cellar: :any_skip_relocation, x86_64_linux: "95a80cf2819ddefedfb97a017147edaae6cbadd1702fd92f3d4234dc979bf71c" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "5cb1b5ec5e30557d6ad635a4e0319c0207ff83a2566d8f0a3e361119b0d28511" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "f11599564efb1229c452691e44c16bcfa4b36ab4cbf64cf103e31db73764e025" + sha256 cellar: :any_skip_relocation, arm64_ventura: "8d25f04597a4d1c4832132ceaece880af895b82c6b40fc6e6eae7883da6acaef" + sha256 cellar: :any_skip_relocation, sonoma: "2f53a00ee90ae2dd273e87fcd80ae044457eff11361016191ff79eb6eab61e99" + sha256 cellar: :any_skip_relocation, ventura: "93b0bff3e9eaed0c8a481e7520cf1c2bbe39b9075b5329ab11418be4d0c188bf" + sha256 cellar: :any_skip_relocation, arm64_linux: "59abf7ce0f6be6cd410e0bdfbc34d414f463daf33571b3cf1826ff21dd58995a" + sha256 cellar: :any_skip_relocation, x86_64_linux: "76e9ecaafb93ad94597913c480fa44226371cf73a7b0e62161331cdce9c845c1" end depends_on "go" => :build From d3de5610552cc9141fdf4ca1cde7ecf4fa52b65c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 08:53:47 +0000 Subject: [PATCH 0231/1364] immich-go: update 0.26.2 bottle. --- Formula/i/immich-go.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/i/immich-go.rb b/Formula/i/immich-go.rb index 20359c4021d3d..5c8ef8dfd7b5e 100644 --- a/Formula/i/immich-go.rb +++ b/Formula/i/immich-go.rb @@ -12,12 +12,12 @@ class ImmichGo < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "d87e1155f5c29be3dde59edb988f105556a573221f748de5fb1821604cc413a8" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "02d9763d159fa9e7cb140c28605505b4938462a305a19bb1d63287a31c7bcc04" - sha256 cellar: :any_skip_relocation, arm64_ventura: "dfe5868fd5019825a573247ef27cac5fe31df652b0865e1770b84cb5754c466d" - sha256 cellar: :any_skip_relocation, sonoma: "d4f29548602e4f71d99e55bc8f832263916456a569503b3bbc6c92836ac4d297" - sha256 cellar: :any_skip_relocation, ventura: "ff5766ad7e805e09fa0f3715715029f39494d8333bce2bbfbe4668cbdc415e0c" - sha256 cellar: :any_skip_relocation, x86_64_linux: "624a6242ddbe0aae6c7eca9292950d831ca18bfa316079d9b764870d91667170" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "a8a708643bbba7b9920e140ccf8ba2e9f58960ad6c9a2d944aaa01570393b321" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "7115f84fea56567bdf37f8516922810558bf15c4240bfed51ffefb52eaeffa77" + sha256 cellar: :any_skip_relocation, arm64_ventura: "a4aa81c30dbcbf3f0fa31a45a87c172811760c17cb677868f702ccc6f469a02c" + sha256 cellar: :any_skip_relocation, sonoma: "ecf85afab78a0cc610624e27a8d4e22d250f49a76dc89694ef9a2d634b39af30" + sha256 cellar: :any_skip_relocation, ventura: "5b3336520dc28e10dcee345c40b65ab96d6031a280caf898ff442e5f7792f71b" + sha256 cellar: :any_skip_relocation, x86_64_linux: "be30c5edd7fcde93f8a105d6ef4328f3a13be89e1c4bd10fcc76be562a75e393" end depends_on "go" => :build From 6dd2f8c873b6a6d0bf41717e0d83ee5fc6772693 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 08:54:08 +0000 Subject: [PATCH 0232/1364] harsh: update 0.10.21 bottle. --- Formula/h/harsh.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/h/harsh.rb b/Formula/h/harsh.rb index 1d4f4c948e784..e2b6a74f00842 100644 --- a/Formula/h/harsh.rb +++ b/Formula/h/harsh.rb @@ -7,12 +7,12 @@ class Harsh < Formula head "https://github.com/wakatara/harsh.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "af98439a6ef1b96ed3ce295a280396ecc72c647d4629969b2cda1d2711d6e999" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "af98439a6ef1b96ed3ce295a280396ecc72c647d4629969b2cda1d2711d6e999" - sha256 cellar: :any_skip_relocation, arm64_ventura: "af98439a6ef1b96ed3ce295a280396ecc72c647d4629969b2cda1d2711d6e999" - sha256 cellar: :any_skip_relocation, sonoma: "1523fb037337abc768b9db2d8e07d51d053a564b8442431e567e47fe9d037c46" - sha256 cellar: :any_skip_relocation, ventura: "1523fb037337abc768b9db2d8e07d51d053a564b8442431e567e47fe9d037c46" - sha256 cellar: :any_skip_relocation, x86_64_linux: "7bcd1da4aa661f6927ef69e488e8362de903fd48970c465a42b82070d91447b7" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "681743141ad4722b7161b6f11c6f513d4c5844ee51f25ba9f5535c85ca0eb64a" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "681743141ad4722b7161b6f11c6f513d4c5844ee51f25ba9f5535c85ca0eb64a" + sha256 cellar: :any_skip_relocation, arm64_ventura: "681743141ad4722b7161b6f11c6f513d4c5844ee51f25ba9f5535c85ca0eb64a" + sha256 cellar: :any_skip_relocation, sonoma: "c53ec508dd9962b23efba69a2948eecd0400a8468f571b869a4184c51f0e93cf" + sha256 cellar: :any_skip_relocation, ventura: "c53ec508dd9962b23efba69a2948eecd0400a8468f571b869a4184c51f0e93cf" + sha256 cellar: :any_skip_relocation, x86_64_linux: "82d1afdfcec69c42387a91aeebc377b0c7709e4fbfdf5a990362e852a598e417" end depends_on "go" => :build From f9dc3d216bdc3d7d656bf68773c01a14a72aec7f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 08:54:11 +0000 Subject: [PATCH 0233/1364] cspell: update 9.0.1 bottle. --- Formula/c/cspell.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/cspell.rb b/Formula/c/cspell.rb index 9ae086e6c9b46..95ae03f2cd1c5 100644 --- a/Formula/c/cspell.rb +++ b/Formula/c/cspell.rb @@ -6,13 +6,13 @@ class Cspell < Formula license "MIT" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "3f2a4b9ffb95f8abb0637928b17b06901e165d7c7a5e1da4154d53e15e604ec2" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "3f2a4b9ffb95f8abb0637928b17b06901e165d7c7a5e1da4154d53e15e604ec2" - sha256 cellar: :any_skip_relocation, arm64_ventura: "3f2a4b9ffb95f8abb0637928b17b06901e165d7c7a5e1da4154d53e15e604ec2" - sha256 cellar: :any_skip_relocation, sonoma: "fe728cae807e9ebc4b931790f51e7c69f9b7c029f5ba33f4fb3036b3ffe87663" - sha256 cellar: :any_skip_relocation, ventura: "fe728cae807e9ebc4b931790f51e7c69f9b7c029f5ba33f4fb3036b3ffe87663" - sha256 cellar: :any_skip_relocation, arm64_linux: "3f2a4b9ffb95f8abb0637928b17b06901e165d7c7a5e1da4154d53e15e604ec2" - sha256 cellar: :any_skip_relocation, x86_64_linux: "3f2a4b9ffb95f8abb0637928b17b06901e165d7c7a5e1da4154d53e15e604ec2" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "bdeb751f85e1838bf3743169b80bf1604da6acda4756531f75397d59889db24e" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "bdeb751f85e1838bf3743169b80bf1604da6acda4756531f75397d59889db24e" + sha256 cellar: :any_skip_relocation, arm64_ventura: "bdeb751f85e1838bf3743169b80bf1604da6acda4756531f75397d59889db24e" + sha256 cellar: :any_skip_relocation, sonoma: "23bc69b7b434f59f5d6aa3873c8a08b620d65a20287069ea14899505601608ae" + sha256 cellar: :any_skip_relocation, ventura: "23bc69b7b434f59f5d6aa3873c8a08b620d65a20287069ea14899505601608ae" + sha256 cellar: :any_skip_relocation, arm64_linux: "bdeb751f85e1838bf3743169b80bf1604da6acda4756531f75397d59889db24e" + sha256 cellar: :any_skip_relocation, x86_64_linux: "bdeb751f85e1838bf3743169b80bf1604da6acda4756531f75397d59889db24e" end depends_on "node" From e33ad9f4766d8efc5fd505b086f98bf9a50c90f9 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 08:54:17 +0000 Subject: [PATCH 0234/1364] openrtsp: update 2025.05.08 bottle. --- Formula/o/openrtsp.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/o/openrtsp.rb b/Formula/o/openrtsp.rb index 8200aee3a8bbe..cd740ff361fd7 100644 --- a/Formula/o/openrtsp.rb +++ b/Formula/o/openrtsp.rb @@ -13,13 +13,13 @@ class Openrtsp < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "273d91a585a8730de9017cabede57a9925b4c7f89580d3c09812117baefff81c" - sha256 cellar: :any, arm64_sonoma: "45a767e8183101a63e97a5d7b465515fbae6a8beb89c2ce6d22d9e9391065797" - sha256 cellar: :any, arm64_ventura: "9d3870e7428d1ab49a77096ba18b3bbd8e67edd53d1cb5d1297872f1a894e2e9" - sha256 cellar: :any, sonoma: "01fe90df1e0bff0cf2b0865d21a22d72d3507b1d94945c9c52d6416f5ca4a52c" - sha256 cellar: :any, ventura: "21439dd2d75eb60c35b5e4860d7b250700be31e633ed607d76b7889ace7c1c4e" - sha256 cellar: :any_skip_relocation, arm64_linux: "029d276cdfc068d07ef7cd8b98731df2b16cf7451de2d153dbbe790ebb3cb772" - sha256 cellar: :any_skip_relocation, x86_64_linux: "e08dd5c2b15d95bed03d21d5f3001d22890c3561916ad0895155393d1dc70c9a" + sha256 cellar: :any, arm64_sequoia: "29e06962412562175dad661c57cfe715af9925cebf0fab898b210e2fc73b6eda" + sha256 cellar: :any, arm64_sonoma: "758f7456a9c59e03fdc0a8cced0c283b50af553bf655eb13572e6eab4e3b3ad1" + sha256 cellar: :any, arm64_ventura: "c010ca5fa02921b7ae923aa6bab43ddc92c41b06e237a3eb0da500de03bc3b20" + sha256 cellar: :any, sonoma: "dc73335a0fda284247ad1bdaccbfe9d9d0916a6d4cd2367720e58593175f09fa" + sha256 cellar: :any, ventura: "acc1be7d6dd5e2622ee37878577f6cc40d18bb5fe7408718ab0a0ebe35eb0fc8" + sha256 cellar: :any_skip_relocation, arm64_linux: "2ab9222b7e1557cc44b2bb633dd191945424cb18ef0bf1cb18d3641a850614ab" + sha256 cellar: :any_skip_relocation, x86_64_linux: "84bdec8d93e663e328a55db8b376c985dfc0130aaa547600a8ab9a9c4ca79af6" end depends_on "openssl@3" From 46e04355e722939780958eb8d7f7c8f4a5af3e65 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 08:56:03 +0000 Subject: [PATCH 0235/1364] passt: update 2025_05_07.eea8a76 bottle. --- Formula/p/passt.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/p/passt.rb b/Formula/p/passt.rb index ff2a69233c0eb..8a6691a15f378 100644 --- a/Formula/p/passt.rb +++ b/Formula/p/passt.rb @@ -8,8 +8,8 @@ class Passt < Formula head "git://passt.top/passt", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_linux: "bed2f11336fdf01a4afb5e4769436535872a7e85ea5a59e8b65060af0de13611" - sha256 cellar: :any_skip_relocation, x86_64_linux: "eb104776ba86828585f00042d448518322a607006a243f5f44516fccfc8616ad" + sha256 cellar: :any_skip_relocation, arm64_linux: "1f9353b7ad6dbedb901f49361da5d2976019d2cec985e63ad5a81aefc70ae219" + sha256 cellar: :any_skip_relocation, x86_64_linux: "3d9b36baaa8019560bfde6cd211a655b0a6fb35beff9a8de246212bc0332428a" end depends_on :linux From 09ecea0b7b28ef28f4f061bd4306ba9f21bc1ca1 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 08:58:28 +0000 Subject: [PATCH 0236/1364] openshift-cli: update 4.18.11 bottle. --- Formula/o/openshift-cli.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/o/openshift-cli.rb b/Formula/o/openshift-cli.rb index b8b1e7130382a..c9043d31f0d66 100644 --- a/Formula/o/openshift-cli.rb +++ b/Formula/o/openshift-cli.rb @@ -13,13 +13,13 @@ class OpenshiftCli < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "18ec5e715ca93002b5f4c681c743cdeb6aa9a44f01b7f34cc982c18d0f529ca0" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "5212009ad63655d404ae2181462365ef93d144981799c032281a2a85c67a0a0c" - sha256 cellar: :any_skip_relocation, arm64_ventura: "64660c7a1dc345878f5e9caa2bba223c4228084fc50ee2bd58043ea44530e6d4" - sha256 cellar: :any_skip_relocation, sonoma: "c5615650bff70c67146bc04e0084379869c50ecb1a21f8c3d9bd2bb26bb9f694" - sha256 cellar: :any_skip_relocation, ventura: "8585c2d8887464b89165de089f7ef416b14954fa2f90a7838b0f7ea2ef953dc9" - sha256 cellar: :any_skip_relocation, arm64_linux: "ebac6dfeb7dad169158da5b65ae43792b1459764a4e707e1df5ac0550f20b5c1" - sha256 cellar: :any_skip_relocation, x86_64_linux: "e01417b89acf84296527b9d4775d799409bc5740bdabdc495bf315a0616fff02" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "74eb452cb9ff88aba88df2e45dd32734e2f653d4ddebbf593b54d631243ee82d" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "78cee8529089ee6ea61e3dab4b06cba9a1941a9bcda43d13c2966df4877c13c8" + sha256 cellar: :any_skip_relocation, arm64_ventura: "78274300844fad42a6c9ef4bb4e1eb6f7d3a052d6a9be886f61b7d097548ee5f" + sha256 cellar: :any_skip_relocation, sonoma: "81d2a8daf19e19d584d1118c6e32c51d8e3a3b45e488dccd8880e6598f601deb" + sha256 cellar: :any_skip_relocation, ventura: "6793c1bdc9ae4b485471d929046639f3be60862626901e374eddc9dbc4f5f138" + sha256 cellar: :any_skip_relocation, arm64_linux: "467258705086671466766543366571a3e0217452a3dd2d18edcacb9470c8fa8c" + sha256 cellar: :any_skip_relocation, x86_64_linux: "f90004831bdcba5dab2325f8b15ce6ff17314836051440a03b316bc6afb0e615" end depends_on "go" => :build From 4663e8f9a6ae0b1ca94d229ab65b4ae7254b1f85 Mon Sep 17 00:00:00 2001 From: Tommy Yang Date: Thu, 8 May 2025 02:00:59 -0700 Subject: [PATCH 0237/1364] xcodes: generate shell completions --- Formula/x/xcodes.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/x/xcodes.rb b/Formula/x/xcodes.rb index f59ad8fd5a920..1d3ab8de6e5e7 100644 --- a/Formula/x/xcodes.rb +++ b/Formula/x/xcodes.rb @@ -20,6 +20,7 @@ class Xcodes < Formula def install system "swift", "build", "--disable-sandbox", "--configuration", "release" bin.install ".build/release/xcodes" + generate_completions_from_executable(bin/"xcodes", "--generate-completion-script") end test do From 0f38fb4606bc4ba6e3b2d5a7cb9c17d3acedf482 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 09:04:37 +0000 Subject: [PATCH 0238/1364] pie: update 0.11.0 bottle. --- Formula/p/pie.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/p/pie.rb b/Formula/p/pie.rb index 65f700b9440a2..2ddfca8513d71 100644 --- a/Formula/p/pie.rb +++ b/Formula/p/pie.rb @@ -6,13 +6,13 @@ class Pie < Formula license "BSD-3-Clause" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "98291430aca19e4edf96f7fbc8c99f4ecc7db1611d794317b0549b1f08ff28bc" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "98291430aca19e4edf96f7fbc8c99f4ecc7db1611d794317b0549b1f08ff28bc" - sha256 cellar: :any_skip_relocation, arm64_ventura: "98291430aca19e4edf96f7fbc8c99f4ecc7db1611d794317b0549b1f08ff28bc" - sha256 cellar: :any_skip_relocation, sonoma: "0e475ddfc70180d2081eaa686563173c1bf1aa432c8023153ae5ddc60ad7c167" - sha256 cellar: :any_skip_relocation, ventura: "0e475ddfc70180d2081eaa686563173c1bf1aa432c8023153ae5ddc60ad7c167" - sha256 cellar: :any_skip_relocation, arm64_linux: "f6b17e1276d8f6e2c740e50a01624017d3154ad7a622fadcc9ce6d594c005249" - sha256 cellar: :any_skip_relocation, x86_64_linux: "f6b17e1276d8f6e2c740e50a01624017d3154ad7a622fadcc9ce6d594c005249" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "bcd9167ccf9227949d1289ed0a5d6c781dc0623facedfb3c795dbe57a46b8e4f" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "bcd9167ccf9227949d1289ed0a5d6c781dc0623facedfb3c795dbe57a46b8e4f" + sha256 cellar: :any_skip_relocation, arm64_ventura: "bcd9167ccf9227949d1289ed0a5d6c781dc0623facedfb3c795dbe57a46b8e4f" + sha256 cellar: :any_skip_relocation, sonoma: "ee61b13abb26574ec7385dde6ab76ee8b03e1e06674542b2441aa35493fdd366" + sha256 cellar: :any_skip_relocation, ventura: "ee61b13abb26574ec7385dde6ab76ee8b03e1e06674542b2441aa35493fdd366" + sha256 cellar: :any_skip_relocation, arm64_linux: "a4845da91b6b6c3c45a13e67b6751339326aae80c869ee40fb677c11694cb09e" + sha256 cellar: :any_skip_relocation, x86_64_linux: "a4845da91b6b6c3c45a13e67b6751339326aae80c869ee40fb677c11694cb09e" end depends_on "php" From bed243eb7e34f971b1e9541c880021c5beee3fb9 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 09:12:17 +0000 Subject: [PATCH 0239/1364] scooter: update 0.5.0 bottle. --- Formula/s/scooter.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/s/scooter.rb b/Formula/s/scooter.rb index c457569a90643..23e6bb6a2cc8b 100644 --- a/Formula/s/scooter.rb +++ b/Formula/s/scooter.rb @@ -6,13 +6,13 @@ class Scooter < Formula license "MIT" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "51094fae3c63652eea64bb8349e233f0d0302d17f1524b1c78f1c41987bf9d11" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "82a8664e984452e7a7c2c310b82e7793096d0f349efb1f973acb569cb592bbe3" - sha256 cellar: :any_skip_relocation, arm64_ventura: "2ae471a22dbc4548051afc05d37baf509a4c6d1b163a6a858c1aed1634fc2846" - sha256 cellar: :any_skip_relocation, sonoma: "092d5767abe9f5633e513ca112ab08c941fce37350802faf04936bac62b2013e" - sha256 cellar: :any_skip_relocation, ventura: "9ed604580f9dce19f5aa4ca3982f54f163650a5c7b1c9700728f2f4944b83d09" - sha256 cellar: :any_skip_relocation, arm64_linux: "93494c7aa1e7b2913ccb64abe25d1d180d528482746873cf692e28cfc54f749e" - sha256 cellar: :any_skip_relocation, x86_64_linux: "176e0670fd171ecfabc19f4980ce4486d2ce685c0c2e9a3596ba18b333123eef" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "a5ba20ec308eef2776b870a67c7b9813873ea42cc32d215baa8b1095f905c415" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "6e864afd07c9c80686178d2922b56ef82c1ad95e9c64082a4d2f011f38006e52" + sha256 cellar: :any_skip_relocation, arm64_ventura: "25e8fa0e7e55b2d7217f58e09f7354e411e568b054975f25e60f0699d9b2570b" + sha256 cellar: :any_skip_relocation, sonoma: "c32af36768fb79760b6470c7ace69bc8d70d8b06be0f4b28bd68b91e7d292e36" + sha256 cellar: :any_skip_relocation, ventura: "b8385fbe6278e4a9488a3531cc5ef4866206d057abbd4144227d2627855e2a93" + sha256 cellar: :any_skip_relocation, arm64_linux: "eead88f88ea430110aed85847a748c83e27f4406d62086f1394cccde34339213" + sha256 cellar: :any_skip_relocation, x86_64_linux: "f91050c73e974920a68d7639f7c9aae4aff48c7c8761e03c16559a2bdf92c357" end depends_on "rust" => :build From 5fe79a384700cea692293b5de708319ef6732603 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 09:12:48 +0000 Subject: [PATCH 0240/1364] localstack: update 4.4.0 bottle. --- Formula/l/localstack.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/l/localstack.rb b/Formula/l/localstack.rb index ae0ed5c36b92e..426d6d4f94da8 100644 --- a/Formula/l/localstack.rb +++ b/Formula/l/localstack.rb @@ -8,12 +8,12 @@ class Localstack < Formula license "Apache-2.0" bottle do - sha256 cellar: :any, arm64_sequoia: "cacb0dc38f2b1ec54e987ccb324941392190f8bfc31c916a4c52969365f5a5df" - sha256 cellar: :any, arm64_sonoma: "2ce02c0acf8913ae5eb63e92a84ef8c46b24cc9adb7723eeebf771a4c071168a" - sha256 cellar: :any, arm64_ventura: "b2dfa1e6bb1c41d1507c88cb3047855348d1765882905d2d532b965d6ee7ab8a" - sha256 cellar: :any, sonoma: "aa1e68ba05d620b7e450bc8ae09fed7d5c681c63a59bc829bdfb369bdf2c4149" - sha256 cellar: :any, ventura: "47d93c02d5068dd4bb65e421d201573bdb32395fd4d67e09563f82ecad6d4919" - sha256 cellar: :any_skip_relocation, x86_64_linux: "b7c0bdd5cf2c7bcaae54654351ba81abb7a4a6ac1efe3348338e39c292823d56" + sha256 cellar: :any, arm64_sequoia: "5e016059881bd0593c98d739e2b6f3c76c4643f628a7838b7329f425e894b010" + sha256 cellar: :any, arm64_sonoma: "edb73dfa7116e32f969cfedeeb173d038f5a56c1e0f72b1b15d488260048743b" + sha256 cellar: :any, arm64_ventura: "10930be4b785cd9191a4ac39f5855e9a83af264446f8d8e123125ed2f101c0cb" + sha256 cellar: :any, sonoma: "121fed99d0ba585fdd952cec67b1b900bdebecf9c1fd066a50a3087813f473d3" + sha256 cellar: :any, ventura: "446780d9fa301a9c5f6a2c8626c3988f52f6001d759e11c94f7f53302c020a70" + sha256 cellar: :any_skip_relocation, x86_64_linux: "9016027b0d67e9e842f045f3bd465f56ff7d9ed29786a550ae121a6f232955c6" end depends_on "docker" => :test From 932f0d022218eb8b76dc5ed3d743f0b8d0d03277 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 09:18:03 +0000 Subject: [PATCH 0241/1364] renovate: update 40.10.0 bottle. --- Formula/r/renovate.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/r/renovate.rb b/Formula/r/renovate.rb index 7a61ab5a5a6fb..07a63c489410f 100644 --- a/Formula/r/renovate.rb +++ b/Formula/r/renovate.rb @@ -17,13 +17,13 @@ class Renovate < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "b6873ab92cdcf512d7e5fb86dab184bd74266674afb99bf4839d04f189324a87" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "45f680c0f358049b7016d570b1daf59212288c3e9f4a448ae3de8981652a02ce" - sha256 cellar: :any_skip_relocation, arm64_ventura: "42e4332169a268b1f52370df3c91862f2dddd8aefca229f5d952a89c0ea4e58d" - sha256 cellar: :any_skip_relocation, sonoma: "6acc6b7f337a87a255776dd540c5b1b7fffdc8c35e71859355d8743012eb4410" - sha256 cellar: :any_skip_relocation, ventura: "f82161075a9eab445ce48c2a9b6ee79d01f4bf5a979efd3f07186dbc2fd24577" - sha256 cellar: :any_skip_relocation, arm64_linux: "8073c1e37a93c5b8902357f768401df43da2a4ebdd8bf99ba11fec2b1bf2d531" - sha256 cellar: :any_skip_relocation, x86_64_linux: "a20a8d82823a1821ecca8240b740784a00a39e712c29558fb77a2e21e3d09efa" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "8fcead4b40bdebac34f6fb7f26e01a7847f194865521b41618ce3dd5b22b912b" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "55d58a4b1195e419330b5337be66ccce61f9003c2ab11c162e0416a08641c250" + sha256 cellar: :any_skip_relocation, arm64_ventura: "3a59bfab73c8bc6c0de529e52f06816cb6ceda225305a8fbb7e7ea5e36336bf8" + sha256 cellar: :any_skip_relocation, sonoma: "e78d052d211e7d76e033d041d4a1be284bba50789b53885d54d53172c194d763" + sha256 cellar: :any_skip_relocation, ventura: "7891058a4a467c24208e230cc065d32b80df2d91d60c11139166facc9e6f37c5" + sha256 cellar: :any_skip_relocation, arm64_linux: "c8de081c06bfb3e57552d0957875045743b60c703c9d0a405b034618a37e87f0" + sha256 cellar: :any_skip_relocation, x86_64_linux: "cab83d5ddf91cebf4dbc3754756469fa9ba0245d78bd800b1ec704ff2a96d086" end depends_on "node@22" From 82e4bd9efa476a997599f5563865b101d2897cc7 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 09:35:06 +0000 Subject: [PATCH 0242/1364] xcodes: update 1.6.0 bottle. --- Formula/x/xcodes.rb | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Formula/x/xcodes.rb b/Formula/x/xcodes.rb index 1d3ab8de6e5e7..57c0f5904e7da 100644 --- a/Formula/x/xcodes.rb +++ b/Formula/x/xcodes.rb @@ -6,11 +6,12 @@ class Xcodes < Formula license "MIT" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "26be4fc0a95c2af65e8f67daba501fb22196c76190a279a1df38edd891aa758b" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "5a6ae2f20d6eb6667c2e382beafd24afa6bfc99784c794e88e0a6005f4e5a398" - sha256 cellar: :any_skip_relocation, arm64_ventura: "2f52a88c7e9317257adeb33761ce725a8dee29da1fec73514e458edd445fa4e6" - sha256 cellar: :any_skip_relocation, sonoma: "73e847c58f124ee2e6dadc821b7021edf0ab6cae564ef216b38c1e158faeeb7f" - sha256 cellar: :any_skip_relocation, ventura: "a48eb3978e5dbff7dd4f34245bb380bf56ef297c416b817140e54b53e31d10bb" + rebuild 1 + sha256 cellar: :any_skip_relocation, arm64_sequoia: "c0bfcfc461c00b753ca481a0a3e1d7997c5eb940389de08895ee673c1a0e2612" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "1913afb72f753a182a4d3d66f08b61f0abf2de924b93e3ad42f20bcf95260fa5" + sha256 cellar: :any_skip_relocation, arm64_ventura: "07d06a3446dba98e8b62bf31da5bee4b49a7f3d5215baf269ef78f4334ce222b" + sha256 cellar: :any_skip_relocation, sonoma: "86ff1161c99af9f9fad6d8d38bd2a8cea1a53a8764cc4368770e83bf136ba22d" + sha256 cellar: :any_skip_relocation, ventura: "7c00b27bce8dd91695740061ec9d5d4cd54faec6d7d7e18016723e2619fabaff" end depends_on xcode: ["13.3", :build] From dc96bdd9a2801a4733d33653477531394c520d57 Mon Sep 17 00:00:00 2001 From: l5io <47201130+l5io@users.noreply.github.com> Date: Thu, 8 May 2025 05:26:30 -0500 Subject: [PATCH 0243/1364] mesheryctl 0.8.76 Created by https://github.com/mislav/bump-homebrew-formula-action --- Formula/m/mesheryctl.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/m/mesheryctl.rb b/Formula/m/mesheryctl.rb index 0c58eca8081b8..1e1d2c0c75b4f 100644 --- a/Formula/m/mesheryctl.rb +++ b/Formula/m/mesheryctl.rb @@ -2,8 +2,8 @@ class Mesheryctl < Formula desc "Command-line utility for Meshery, the cloud native management plane" homepage "https://meshery.io" url "https://github.com/meshery/meshery.git", - tag: "v0.8.75", - revision: "7f1945679d677d6d7baabb9bfc2cd40838a71254" + tag: "v0.8.76", + revision: "b4f292ecd4e8e4bebc8ee13eef440c25296fbb8e" license "Apache-2.0" head "https://github.com/meshery/meshery.git", branch: "master" From 02fbf2fa51807f5c8344f26ce904af9b5c274d18 Mon Sep 17 00:00:00 2001 From: Mark Jentz <1196441+jentz@users.noreply.github.com> Date: Thu, 8 May 2025 12:49:19 +0200 Subject: [PATCH 0244/1364] atuin 18.6.0 --- Formula/a/atuin.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/a/atuin.rb b/Formula/a/atuin.rb index e5d6cd349a9eb..0d754135a65d6 100644 --- a/Formula/a/atuin.rb +++ b/Formula/a/atuin.rb @@ -1,8 +1,8 @@ class Atuin < Formula desc "Improved shell history for zsh, bash, fish and nushell" homepage "https://atuin.sh/" - url "https://github.com/atuinsh/atuin/archive/refs/tags/v18.5.0.tar.gz" - sha256 "f3744e8dfee2c7089ac140cb8aafe01e5d77a2299097a2cc0a42db26d127340a" + url "https://github.com/atuinsh/atuin/archive/refs/tags/18.6.0.tar.gz" + sha256 "a79cdcce09d2910e64c86e1f57d58a2214a76031df46782860187835c11fc99e" license "MIT" bottle do From 8d11e425c00cc36b87d2b6abe72c506cc8b1d432 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 10:50:58 +0000 Subject: [PATCH 0245/1364] aiven-client 4.7.1 --- Formula/a/aiven-client.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/a/aiven-client.rb b/Formula/a/aiven-client.rb index fe6840f1eb96c..d3a0ccb9fbd90 100644 --- a/Formula/a/aiven-client.rb +++ b/Formula/a/aiven-client.rb @@ -3,8 +3,8 @@ class AivenClient < Formula desc "Official command-line client for Aiven" homepage "https://aiven.io/docs/tools/cli" - url "https://files.pythonhosted.org/packages/fd/e6/c779642f848598182bba0be7dfda168cfc5f9eaec93edca3f5b481f3fc48/aiven_client-4.7.0.tar.gz" - sha256 "ba937130d8d4fbca2b5067873b016e795ac3ae1c2213fe29e5a3a96625599f1a" + url "https://files.pythonhosted.org/packages/7f/a4/69f54a86b576cba4331ca6ecd34f7c5a4167b8040f623dc8b810daf8561f/aiven_client-4.7.1.tar.gz" + sha256 "a9ea25eab4888d35fe47de90e66b4e2bba172cc419c022bf56b6b8f4607e29c4" license "Apache-2.0" head "https://github.com/aiven/aiven-client.git", branch: "main" @@ -16,8 +16,8 @@ class AivenClient < Formula depends_on "python@3.13" resource "charset-normalizer" do - url "https://files.pythonhosted.org/packages/16/b0/572805e227f01586461c80e0fd25d65a2115599cc9dad142fee4b747c357/charset_normalizer-3.4.1.tar.gz" - sha256 "44251f18cd68a75b56585dd00dae26183e102cd5e0f9f1466e6df5da2ed64ea3" + url "https://files.pythonhosted.org/packages/e4/33/89c2ced2b67d1c2a61c19c6751aa8902d46ce3dacb23600a283619f5a12d/charset_normalizer-3.4.2.tar.gz" + sha256 "5baececa9ecba31eff645232d59845c07aa030f0c81ee70184a90d35099a0e63" end resource "idna" do @@ -36,8 +36,8 @@ class AivenClient < Formula end resource "urllib3" do - url "https://files.pythonhosted.org/packages/aa/63/e53da845320b757bf29ef6a9062f5c669fe997973f966045cb019c3f4b66/urllib3-2.3.0.tar.gz" - sha256 "f8c5449b3cf0861679ce7e0503c7b44b5ec981bec0d1d3795a07f1ba96f0204d" + url "https://files.pythonhosted.org/packages/8a/78/16493d9c386d8e60e442a35feac5e00f0913c0f4b7c217c11e8ec2ff53e0/urllib3-2.4.0.tar.gz" + sha256 "414bc6535b787febd7567804cc015fee39daab8ad86268f1310a9250697de466" end def install From a05d295e320f8887df279edafb1f06eea48c62ce Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 10:51:18 +0000 Subject: [PATCH 0246/1364] aliyun-cli 3.0.274 --- Formula/a/aliyun-cli.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/a/aliyun-cli.rb b/Formula/a/aliyun-cli.rb index dee13fd5ad908..b00f356ced40f 100644 --- a/Formula/a/aliyun-cli.rb +++ b/Formula/a/aliyun-cli.rb @@ -2,8 +2,8 @@ class AliyunCli < Formula desc "Universal Command-Line Interface for Alibaba Cloud" homepage "https://github.com/aliyun/aliyun-cli" url "https://github.com/aliyun/aliyun-cli.git", - tag: "v3.0.273", - revision: "85bad7f187c25b022389df407f09bcc1ad043368" + tag: "v3.0.274", + revision: "0349962a04f1ca936152be5f31b015d739e859d0" license "Apache-2.0" head "https://github.com/aliyun/aliyun-cli.git", branch: "master" From 4c3034daadf5984e6d52b54a29a4c87467cb23e5 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 10:52:09 +0000 Subject: [PATCH 0247/1364] aravis 0.8.35 --- Formula/a/aravis.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/a/aravis.rb b/Formula/a/aravis.rb index c69efc70f5de4..e8b899573d8c7 100644 --- a/Formula/a/aravis.rb +++ b/Formula/a/aravis.rb @@ -1,8 +1,8 @@ class Aravis < Formula desc "Vision library for genicam based cameras" homepage "https://github.com/AravisProject/aravis" - url "https://github.com/AravisProject/aravis/releases/download/0.8.34/aravis-0.8.34.tar.xz" - sha256 "2e43d0543088bfaa4a4493d3ebb83a14ec0597f4135a5ad45d2f90313fadf01a" + url "https://github.com/AravisProject/aravis/releases/download/0.8.35/aravis-0.8.35.tar.xz" + sha256 "8089af991fc3a2644ab04b2ddf82623cd663d80c7ebbdefa93ddbc17ea702ddb" license "LGPL-2.1-or-later" livecheck do From 46ba516e971782e559c6cc8ac23cce3b57ca7b9b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 10:53:33 +0000 Subject: [PATCH 0248/1364] aws-cdk 2.1014.0 --- Formula/a/aws-cdk.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/a/aws-cdk.rb b/Formula/a/aws-cdk.rb index b8158a684cac9..77f576126696f 100644 --- a/Formula/a/aws-cdk.rb +++ b/Formula/a/aws-cdk.rb @@ -1,8 +1,8 @@ class AwsCdk < Formula desc "AWS Cloud Development Kit - framework for defining AWS infra as code" homepage "https://github.com/aws/aws-cdk" - url "https://registry.npmjs.org/aws-cdk/-/aws-cdk-2.1013.0.tgz" - sha256 "7884ce13d21094736d573b51f64ac673a4d385e9be5e272431f0628af5e43c31" + url "https://registry.npmjs.org/aws-cdk/-/aws-cdk-2.1014.0.tgz" + sha256 "ee9d2144987a229d9a3cf7fc11e6bd9f5d24fed24ffde5821bcd04240d8245c6" license "Apache-2.0" bottle do From f750908d62b3c7cc248dae948d45ef464267e04a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 10:58:15 +0000 Subject: [PATCH 0249/1364] cloudflare-wrangler 4.14.4 --- Formula/c/cloudflare-wrangler.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/cloudflare-wrangler.rb b/Formula/c/cloudflare-wrangler.rb index 31414d53743e0..a0c9e2721310e 100644 --- a/Formula/c/cloudflare-wrangler.rb +++ b/Formula/c/cloudflare-wrangler.rb @@ -1,8 +1,8 @@ class CloudflareWrangler < Formula desc "CLI tool for Cloudflare Workers" homepage "https://github.com/cloudflare/workers-sdk" - url "https://registry.npmjs.org/wrangler/-/wrangler-4.14.3.tgz" - sha256 "69614607067fa46857cdca81cf38bf035cf5e78f0d10684a141522528691b962" + url "https://registry.npmjs.org/wrangler/-/wrangler-4.14.4.tgz" + sha256 "d5cfbfe958e486b0c18a51d534e53475953164cff74ebccde1231ff71284a36c" license any_of: ["Apache-2.0", "MIT"] bottle do From 7f0bf884b0039f3309ca57d3927047164e9b957c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 10:58:27 +0000 Subject: [PATCH 0250/1364] cloudquery 6.19.1 --- Formula/c/cloudquery.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/cloudquery.rb b/Formula/c/cloudquery.rb index e95408cfae365..277a23ec6cdd5 100644 --- a/Formula/c/cloudquery.rb +++ b/Formula/c/cloudquery.rb @@ -1,8 +1,8 @@ class Cloudquery < Formula desc "Data movement tool to sync data from any source to any destination" homepage "https://www.cloudquery.io" - url "https://github.com/cloudquery/cloudquery/archive/refs/tags/cli-v6.19.0.tar.gz" - sha256 "2c9d8b8e3e03404f4c403f6d5bc30f66cd183cd5b4ffeeb9dee140c65b6a9974" + url "https://github.com/cloudquery/cloudquery/archive/refs/tags/cli-v6.19.1.tar.gz" + sha256 "cc73e7b37e619d99417e54f7a498d2ad17b31601e6a1027b43fec9fe13ea2286" license "MPL-2.0" head "https://github.com/cloudquery/cloudquery.git", branch: "main" From dedfc52024710fa07e5d159a851f91355a81434a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 11:08:29 +0000 Subject: [PATCH 0251/1364] gosec 2.22.4 --- Formula/g/gosec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/g/gosec.rb b/Formula/g/gosec.rb index a98dc56a669e2..73396991ab886 100644 --- a/Formula/g/gosec.rb +++ b/Formula/g/gosec.rb @@ -1,8 +1,8 @@ class Gosec < Formula desc "Golang security checker" homepage "https://securego.io/" - url "https://github.com/securego/gosec/archive/refs/tags/v2.22.3.tar.gz" - sha256 "f9b9ac7e82e8bc66ea340d161ce4034575174dd8fd9688e0cde089f2f4e8b31d" + url "https://github.com/securego/gosec/archive/refs/tags/v2.22.4.tar.gz" + sha256 "042214e06f4a3ae7f0486ecb3f885cc24d44efece165ab7f7f96f6bcf3b2eff8" license "Apache-2.0" head "https://github.com/securego/gosec.git", branch: "master" From aca0642ea96fc9fb20065a99d86b38b8eb87feaa Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 11:11:42 +0000 Subject: [PATCH 0252/1364] istioctl 1.26.0 --- Formula/i/istioctl.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/i/istioctl.rb b/Formula/i/istioctl.rb index 404d5779b71a7..9bcd2c097c7e1 100644 --- a/Formula/i/istioctl.rb +++ b/Formula/i/istioctl.rb @@ -1,8 +1,8 @@ class Istioctl < Formula desc "Istio configuration command-line utility" homepage "https://istio.io/" - url "https://github.com/istio/istio/archive/refs/tags/1.25.2.tar.gz" - sha256 "a9eadb5bccf3de29caafd8f203d47c0c3d77faa940b2f025bdd49c626bdf9174" + url "https://github.com/istio/istio/archive/refs/tags/1.26.0.tar.gz" + sha256 "1498307624d9cb85d15f3e1892de6cf3d80fdfe888716b05ee4ff25f210c7663" license "Apache-2.0" head "https://github.com/istio/istio.git", branch: "master" From 7d41d05fa068fb5970cf8e0bdd380ec842ae42e0 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 11:19:12 +0000 Subject: [PATCH 0253/1364] manticoresearch 9.5.2 --- Formula/m/manticoresearch.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/m/manticoresearch.rb b/Formula/m/manticoresearch.rb index f05b4ce2abc04..32bb09e96171b 100644 --- a/Formula/m/manticoresearch.rb +++ b/Formula/m/manticoresearch.rb @@ -1,8 +1,8 @@ class Manticoresearch < Formula desc "Open source text search engine" homepage "https://manticoresearch.com" - url "https://github.com/manticoresoftware/manticoresearch/archive/refs/tags/9.5.0.tar.gz" - sha256 "b7bba0866aec76aba7c433e922dac2b797c8419bd37acac29c251408e810a6d4" + url "https://github.com/manticoresoftware/manticoresearch/archive/refs/tags/9.5.2.tar.gz" + sha256 "0b42383bcb6e08ad48440819a4ca5cb8553004b63d7ad265c9501e765ce94806" license all_of: [ "GPL-3.0-or-later", "GPL-2.0-only", # wsrep From 9911c69aa59e2da56a8c5f426172b03939af022d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 11:23:56 +0000 Subject: [PATCH 0254/1364] nuitka 2.7.1 --- Formula/n/nuitka.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/n/nuitka.rb b/Formula/n/nuitka.rb index 92e8279077082..68124dbe0fac1 100644 --- a/Formula/n/nuitka.rb +++ b/Formula/n/nuitka.rb @@ -3,8 +3,8 @@ class Nuitka < Formula desc "Python compiler written in Python" homepage "https://nuitka.net" - url "https://files.pythonhosted.org/packages/2d/c8/ff5f8ccdd112101d0026006887708083db587a02b9379ea726f8f9a93c03/Nuitka-2.7.tar.gz" - sha256 "b0d5ad394cbfe93820116cfe94605e50bb20f5707b6fb41e09c421a7c9a2c53d" + url "https://files.pythonhosted.org/packages/18/f7/f1d87901ab90be0bc1dd96d9f899a07f626f5f2bebe3b09e475fdc4b7fdb/Nuitka-2.7.1.tar.gz" + sha256 "1e7ff9208f8d8262302a6eee05d299650f30813dbecb4501d365a712c3169209" license "Apache-2.0" bottle do From cd50d838a79f19bf84c40ece34d4f860f10f3a30 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 11:27:29 +0000 Subject: [PATCH 0255/1364] pie 0.12.0 --- Formula/p/pie.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/p/pie.rb b/Formula/p/pie.rb index 2ddfca8513d71..869f247d5bde8 100644 --- a/Formula/p/pie.rb +++ b/Formula/p/pie.rb @@ -1,8 +1,8 @@ class Pie < Formula desc "PHP Installer for Extensions" homepage "https://github.com/php/pie" - url "https://github.com/php/pie/releases/download/0.11.0/pie.phar" - sha256 "5c37e6b4c244f1c6fec6ee066f2b5cba54d3c4d89a8df9ea97d3bf9708a5aee1" + url "https://github.com/php/pie/releases/download/0.12.0/pie.phar" + sha256 "6dc2e231640eac61d722d3752e4cc983490d7f24885eea1bbac24be58e042df9" license "BSD-3-Clause" bottle do From f56b4a24b29c07d9dca05d14af1333dbf1f88319 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 11:30:02 +0000 Subject: [PATCH 0256/1364] qcachegrind 25.04.1 --- Formula/q/qcachegrind.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/q/qcachegrind.rb b/Formula/q/qcachegrind.rb index a3004db2063a2..120d00ba6ed16 100644 --- a/Formula/q/qcachegrind.rb +++ b/Formula/q/qcachegrind.rb @@ -1,8 +1,8 @@ class Qcachegrind < Formula desc "Visualize data generated by Cachegrind and Calltree" homepage "https://apps.kde.org/kcachegrind/" - url "https://download.kde.org/stable/release-service/25.04.0/src/kcachegrind-25.04.0.tar.xz" - sha256 "9b5c8a1f97e8dd899f868fec0236e2bdd55d3e0064f1a7119d9b5481f2f58672" + url "https://download.kde.org/stable/release-service/25.04.1/src/kcachegrind-25.04.1.tar.xz" + sha256 "0b7349b84f5e90a9d9cb05b2642b2a79c27a629dacb85ba94e57b9528be1f975" license "GPL-2.0-or-later" head "https://invent.kde.org/sdk/kcachegrind.git", branch: "master" From 668b415d9b1f80202af353cda68fd2cea6b6be3d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 11:33:06 +0000 Subject: [PATCH 0257/1364] scrapy 2.13.0 --- Formula/s/scrapy.rb | 84 ++++++++++++++++++++++----------------------- 1 file changed, 42 insertions(+), 42 deletions(-) diff --git a/Formula/s/scrapy.rb b/Formula/s/scrapy.rb index 0f1e47ffc8cb4..03706e90dd6f5 100644 --- a/Formula/s/scrapy.rb +++ b/Formula/s/scrapy.rb @@ -3,8 +3,8 @@ class Scrapy < Formula desc "Web crawling & scraping framework" homepage "https://scrapy.org" - url "https://files.pythonhosted.org/packages/f8/52/b0f4ded03c5966e7e90c607bb9aa7e3c5b228cb1d7051325fde017c46987/scrapy-2.12.0.tar.gz" - sha256 "d66d6e76009b12447604196875a463b61d10721140032a8084a0a52df7f4788f" + url "https://files.pythonhosted.org/packages/8a/db/6acda5c8c407dbb1a210a7a9732f86ed7eacb22bd500b589a13716e634cb/scrapy-2.13.0.tar.gz" + sha256 "9661629805ff0e43054cc1306d9b13236c6bb9565d8d8e303a332c8da045d90f" license "BSD-3-Clause" head "https://github.com/scrapy/scrapy.git", branch: "master" @@ -26,18 +26,18 @@ class Scrapy < Formula uses_from_macos "libxslt" resource "attrs" do - url "https://files.pythonhosted.org/packages/fc/0f/aafca9af9315aee06a89ffde799a10a582fe8de76c563ee80bbcdc08b3fb/attrs-24.2.0.tar.gz" - sha256 "5cfb1b9148b5b086569baec03f20d7b6bf3bcacc9a42bebf87ffaaca362f6346" + url "https://files.pythonhosted.org/packages/5a/b0/1367933a8532ee6ff8d63537de4f1177af4bff9f3e829baf7331f595bb24/attrs-25.3.0.tar.gz" + sha256 "75d7cefc7fb576747b2c81b4442d4d4a1ce0900973527c011d1030fd3bf4af1b" end resource "automat" do - url "https://files.pythonhosted.org/packages/8d/2d/ede4ad7fc34ab4482389fa3369d304f2fa22e50770af706678f6a332fa82/automat-24.8.1.tar.gz" - sha256 "b34227cf63f6325b8ad2399ede780675083e439b20c323d376373d8ee6306d88" + url "https://files.pythonhosted.org/packages/e3/0f/d40bbe294bbf004d436a8bcbcfaadca8b5140d39ad0ad3d73d1a8ba15f14/automat-25.4.16.tar.gz" + sha256 "0017591a5477066e90d26b0e696ddc143baafd87b588cfac8100bc6be9634de0" end resource "charset-normalizer" do - url "https://files.pythonhosted.org/packages/f2/4f/e1808dc01273379acc506d18f1504eb2d299bd4131743b9fc54d7be4df1e/charset_normalizer-3.4.0.tar.gz" - sha256 "223217c3d4f82c3ac5e29032b3f1c2eb0fb591b72161f86d93f5719079dae93e" + url "https://files.pythonhosted.org/packages/e4/33/89c2ced2b67d1c2a61c19c6751aa8902d46ce3dacb23600a283619f5a12d/charset_normalizer-3.4.2.tar.gz" + sha256 "5baececa9ecba31eff645232d59845c07aa030f0c81ee70184a90d35099a0e63" end resource "constantly" do @@ -46,8 +46,8 @@ class Scrapy < Formula end resource "cssselect" do - url "https://files.pythonhosted.org/packages/d1/91/d51202cc41fbfca7fa332f43a5adac4b253962588c7cc5a54824b019081c/cssselect-1.2.0.tar.gz" - sha256 "666b19839cfaddb9ce9d36bfe4c969132c647b92fc9088c4e23f786b30f1b3dc" + url "https://files.pythonhosted.org/packages/72/0a/c3ea9573b1dc2e151abfe88c7fe0c26d1892fe6ed02d0cdb30f0d57029d5/cssselect-1.3.0.tar.gz" + sha256 "57f8a99424cfab289a1b6a816a43075a4b00948c86b4dcf3ef4ee7e15f7ab0c7" end resource "defusedxml" do @@ -56,8 +56,8 @@ class Scrapy < Formula end resource "filelock" do - url "https://files.pythonhosted.org/packages/9d/db/3ef5bb276dae18d6ec2124224403d1d67bccdbefc17af4cc8f553e341ab1/filelock-3.16.1.tar.gz" - sha256 "c249fbfcd5db47e5e2d6d62198e565475ee65e4831e2561c8e313fa7eb961435" + url "https://files.pythonhosted.org/packages/0a/10/c23352565a6544bdc5353e0b15fc1c563352101f30e24bf500207a54df9a/filelock-3.18.0.tar.gz" + sha256 "adbc88eabb99d2fec8c9c1b229b171f18afa655400173ddc653d5d01501fb9f2" end resource "hyperlink" do @@ -76,8 +76,8 @@ class Scrapy < Formula end resource "itemadapter" do - url "https://files.pythonhosted.org/packages/eb/60/a16c93c9d26e83c05bc6b3edc1a8013025b37ca82dee7eda6f89aec583d3/itemadapter-0.9.0.tar.gz" - sha256 "e4f958a6b6b6f5831fa207373010031a0bd7ed0429ddd09b51979c011475cafd" + url "https://files.pythonhosted.org/packages/3d/4a/3fac3054be284c160b142460d7337c56e89d7be094c7895b113b2b01c256/itemadapter-0.11.0.tar.gz" + sha256 "3b0f27f4c5e2e8ae415d83e3d60d33adb7ba09b98c30638bc606fb1dff2ecdd2" end resource "itemloaders" do @@ -91,23 +91,23 @@ class Scrapy < Formula end resource "lxml" do - url "https://files.pythonhosted.org/packages/e7/6b/20c3a4b24751377aaa6307eb230b66701024012c29dd374999cc92983269/lxml-5.3.0.tar.gz" - sha256 "4e109ca30d1edec1ac60cdbe341905dc3b8f55b16855e03a54aaf59e51ec8c6f" + url "https://files.pythonhosted.org/packages/76/3d/14e82fc7c8fb1b7761f7e748fd47e2ec8276d137b6acfe5a4bb73853e08f/lxml-5.4.0.tar.gz" + sha256 "d12832e1dbea4be280b22fd0ea7c9b87f0d8fc51ba06e92dc62d52f804f78ebd" end resource "packaging" do - url "https://files.pythonhosted.org/packages/d0/63/68dbb6eb2de9cb10ee4c9c14a0148804425e13c4fb20d61cce69f53106da/packaging-24.2.tar.gz" - sha256 "c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f" + url "https://files.pythonhosted.org/packages/a1/d4/1fc4078c65507b51b96ca8f8c3ba19e6a61c8253c72794544580a7b6c24d/packaging-25.0.tar.gz" + sha256 "d443872c98d677bf60f6a1f2f8c1cb748e8fe762d2bf9d3148b5599295b0fc4f" end resource "parsel" do - url "https://files.pythonhosted.org/packages/87/bd/b982085f091367ca25ccb61f2d127655a0daac1716ecfde014ab7c538116/parsel-1.9.1.tar.gz" - sha256 "14e00dc07731c9030db620c195fcae884b5b4848e9f9c523c6119f708ccfa9ac" + url "https://files.pythonhosted.org/packages/f6/df/acd504c154c0b9028b0d8491a77fdd5f86e9c06ee04f986abf85e36d9a5f/parsel-1.10.0.tar.gz" + sha256 "14f17db9559f51b43357b9dfe43cec870a8efb5ea4857abb624ec6ff80d8a080" end resource "protego" do - url "https://files.pythonhosted.org/packages/8a/12/cab9fa77ff4e9e444a5eb5480db4b4f872c03aa079145804aa054be377bc/Protego-0.3.1.tar.gz" - sha256 "e94430d0d25cbbf239bc849d86c5e544fbde531fcccfa059953c7da344a1712c" + url "https://files.pythonhosted.org/packages/4e/6b/84e878d0567dfc11538bad6ce2595cee7ae0c47cf6bf7293683c9ec78ef8/protego-0.4.0.tar.gz" + sha256 "93a5e662b61399a0e1f208a324f2c6ea95b23ee39e6cbf2c96246da4a656c2f6" end resource "pyasn1" do @@ -116,8 +116,8 @@ class Scrapy < Formula end resource "pyasn1-modules" do - url "https://files.pythonhosted.org/packages/1d/67/6afbf0d507f73c32d21084a79946bfcfca5fbc62a72057e9c23797a737c9/pyasn1_modules-0.4.1.tar.gz" - sha256 "c28e2dbf9c06ad61c71a075c7e0f9fd0f1b0bb2d2ad4377f240d33ac2ab60a7c" + url "https://files.pythonhosted.org/packages/e9/e6/78ebbb10a8c8e4b61a59249394a4a594c1a7af95593dc933a349c8d00964/pyasn1_modules-0.4.2.tar.gz" + sha256 "677091de870a80aae844b1ca6134f54652fa2c8c5a52aa396440ac3106e941e6" end resource "pydispatcher" do @@ -126,13 +126,13 @@ class Scrapy < Formula end resource "pyopenssl" do - url "https://files.pythonhosted.org/packages/5d/70/ff56a63248562e77c0c8ee4aefc3224258f1856977e0c1472672b62dadb8/pyopenssl-24.2.1.tar.gz" - sha256 "4247f0dbe3748d560dcbb2ff3ea01af0f9a1a001ef5f7c4c647956ed8cbf0e95" + url "https://files.pythonhosted.org/packages/9f/26/e25b4a374b4639e0c235527bbe31c0524f26eda701d79456a7e1877f4cc5/pyopenssl-25.0.0.tar.gz" + sha256 "cd2cef799efa3936bb08e8ccb9433a575722b9dd986023f1cabc4ae64e9dac16" end resource "queuelib" do - url "https://files.pythonhosted.org/packages/fb/a4/8af5d8ee3526c64a152549a1c7b42896be9fae9a2fda7712883dc09822ac/queuelib-1.7.0.tar.gz" - sha256 "2855162096cf0230510890b354379ea1c0ff19d105d3147d349d2433bb222b08" + url "https://files.pythonhosted.org/packages/4c/78/9ace6888cf6d390c9aec3ba93020838b08934959b544a7f10b15db815d29/queuelib-1.8.0.tar.gz" + sha256 "582bc65514481100b0539bd671da6b355b878869cfc77d92c63b75fcc9cf8e27" end resource "requests" do @@ -151,38 +151,38 @@ class Scrapy < Formula end resource "setuptools" do - url "https://files.pythonhosted.org/packages/c8/db/722a42ffdc226e950c4757b3da7b56ff5c090bb265dccd707f7b8a3c6fee/setuptools-75.5.0.tar.gz" - sha256 "5c4ccb41111392671f02bb5f8436dfc5a9a7185e80500531b133f5775c4163ef" + url "https://files.pythonhosted.org/packages/70/dc/3976b322de9d2e87ed0007cf04cc7553969b6c7b3f48a565d0333748fbcd/setuptools-80.3.1.tar.gz" + sha256 "31e2c58dbb67c99c289f51c16d899afedae292b978f8051efaf6262d8212f927" end resource "tldextract" do - url "https://files.pythonhosted.org/packages/4a/4f/eee4bebcbad25a798bf55601d3a4aee52003bebcf9e55fce08b91ca541a9/tldextract-5.1.3.tar.gz" - sha256 "d43c7284c23f5dc8a42fd0fee2abede2ff74cc622674e4cb07f514ab3330c338" + url "https://files.pythonhosted.org/packages/97/78/182641ea38e3cfd56e9c7b3c0d48a53d432eea755003aa544af96403d4ac/tldextract-5.3.0.tar.gz" + sha256 "b3d2b70a1594a0ecfa6967d57251527d58e00bb5a91a74387baa0d87a0678609" end resource "twisted" do - url "https://files.pythonhosted.org/packages/b2/0f/2d0b0dcd52a849db64ff63619aead94ae1091fe4d4d7e100371efe513585/twisted-24.10.0.tar.gz" - sha256 "02951299672595fea0f70fa2d5f7b5e3d56836157eda68859a6ad6492d36756e" + url "https://files.pythonhosted.org/packages/77/1c/e07af0df31229250ab58a943077e4adbd5e227d9f2ac826920416b3e5fa2/twisted-24.11.0.tar.gz" + sha256 "695d0556d5ec579dcc464d2856b634880ed1319f45b10d19043f2b57eb0115b5" end resource "typing-extensions" do - url "https://files.pythonhosted.org/packages/df/db/f35a00659bc03fec321ba8bce9420de607a1d37f8342eee1863174c69557/typing_extensions-4.12.2.tar.gz" - sha256 "1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8" + url "https://files.pythonhosted.org/packages/f6/37/23083fcd6e35492953e8d2aaaa68b860eb422b34627b13f2ce3eb6106061/typing_extensions-4.13.2.tar.gz" + sha256 "e6c81219bd689f51865d9e372991c540bda33a0379d5573cddb9a3a23f7caaef" end resource "urllib3" do - url "https://files.pythonhosted.org/packages/ed/63/22ba4ebfe7430b76388e7cd448d5478814d3032121827c12a2cc287e2260/urllib3-2.2.3.tar.gz" - sha256 "e7d814a81dad81e6caf2ec9fdedb284ecc9c73076b62654547cc64ccdcae26e9" + url "https://files.pythonhosted.org/packages/8a/78/16493d9c386d8e60e442a35feac5e00f0913c0f4b7c217c11e8ec2ff53e0/urllib3-2.4.0.tar.gz" + sha256 "414bc6535b787febd7567804cc015fee39daab8ad86268f1310a9250697de466" end resource "w3lib" do - url "https://files.pythonhosted.org/packages/cc/dd/8d080c3bf19f4e853433193e0ffd894d9f5c5a55c11d7283038ee822a0db/w3lib-2.2.1.tar.gz" - sha256 "756ff2d94c64e41c8d7c0c59fea12a5d0bc55e33a531c7988b4a163deb9b07dd" + url "https://files.pythonhosted.org/packages/bf/7d/1172cfaa1e29beb9bf938e484c122b3bdc82e8e37b17a4f753ba6d6e009f/w3lib-2.3.1.tar.gz" + sha256 "5c8ac02a3027576174c2b61eb9a2170ba1b197cae767080771b6f1febda249a4" end resource "zope-interface" do - url "https://files.pythonhosted.org/packages/3c/f5/1079cab32302359cc09bd1dca9656e680601e0e8af9397322ab0fe85f368/zope.interface-7.1.1.tar.gz" - sha256 "4284d664ef0ff7b709836d4de7b13d80873dc5faeffc073abdb280058bfac5e3" + url "https://files.pythonhosted.org/packages/30/93/9210e7606be57a2dfc6277ac97dcc864fd8d39f142ca194fdc186d596fda/zope.interface-7.2.tar.gz" + sha256 "8b49f1a3d1ee4cdaf5b32d2e738362c7f5e40ac8b46dd7d1a65e82a4872728fe" end def install From f8f650324379bd1eb9c6b2e4512b7448ba8e5fe9 Mon Sep 17 00:00:00 2001 From: Pulumi Bot <30351955+pulumi-bot@users.noreply.github.com> Date: Thu, 8 May 2025 11:59:27 +0000 Subject: [PATCH 0258/1364] pulumi --- Formula/p/pulumi.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/p/pulumi.rb b/Formula/p/pulumi.rb index 0b9001a4479f1..3925ba5bf32ee 100644 --- a/Formula/p/pulumi.rb +++ b/Formula/p/pulumi.rb @@ -2,8 +2,8 @@ class Pulumi < Formula desc "Cloud native development platform" homepage "https://pulumi.io/" url "https://github.com/pulumi/pulumi.git", - tag: "v3.168.0", - revision: "800c710a9366c3bcaa213f5765ee887ef17ef508" + tag: "v3.169.0", + revision: "a4bdc94d01aabb48287140823337d0115ee5790b" license "Apache-2.0" head "https://github.com/pulumi/pulumi.git", branch: "master" From 13061d656641716fe1347968a23268546779b1a8 Mon Sep 17 00:00:00 2001 From: Anthony Dodd <2380740+thedodd@users.noreply.github.com> Date: Thu, 8 May 2025 07:06:02 -0500 Subject: [PATCH 0259/1364] trunk 0.21.14 Created by https://github.com/mislav/bump-homebrew-formula-action --- Formula/t/trunk.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/t/trunk.rb b/Formula/t/trunk.rb index a7223615f0dbf..93a21a5085045 100644 --- a/Formula/t/trunk.rb +++ b/Formula/t/trunk.rb @@ -1,8 +1,8 @@ class Trunk < Formula desc "Build, bundle & ship your Rust WASM application to the web" homepage "https://trunkrs.dev/" - url "https://github.com/trunk-rs/trunk/archive/refs/tags/v0.21.13.tar.gz" - sha256 "4dda5470ab2e972041804f8a5028d784bb526dff3d5a0d574221979f20ed8ac3" + url "https://github.com/trunk-rs/trunk/archive/refs/tags/v0.21.14.tar.gz" + sha256 "8687bcf96bdc4decee88458745bbb760ad31dfd109e955cf455c2b64caeeae2f" license any_of: ["Apache-2.0", "MIT"] head "https://github.com/trunk-rs/trunk.git", branch: "main" From 8842d3be30be3649a45771d4629d9e78c7a8c35a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 12:48:51 +0000 Subject: [PATCH 0260/1364] manticoresearch: update 9.5.2 bottle. --- Formula/m/manticoresearch.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/m/manticoresearch.rb b/Formula/m/manticoresearch.rb index 32bb09e96171b..8c6fa1b147ae5 100644 --- a/Formula/m/manticoresearch.rb +++ b/Formula/m/manticoresearch.rb @@ -19,13 +19,13 @@ class Manticoresearch < Formula end bottle do - sha256 arm64_sequoia: "2a8a21da2497272b6931790d6430b9e8d6c5ade26ed8ecd1bf00fe7fe0a6e8dc" - sha256 arm64_sonoma: "92c2faa3a9fcd64f1f1c5a4a3f3fe6ad662807b16916fbb3ec5a25b8c8ef02da" - sha256 arm64_ventura: "da7aca79b68b941e01f64cd39e545d05fee114a4c6b47ac2727cc52b1dcaa1a2" - sha256 sonoma: "b647288508b5d5492d1a073408d7fa18675b5f1dbf099ce9c861143f99b7eda4" - sha256 ventura: "894e073184e5a717d23f4355c5fce2f634bcc6757ad11098f7fdd1e07f7bcdce" - sha256 arm64_linux: "eb9c2ca85a8ad4bab9bc2feea4f4a86251ab4947533c01af922725e09ecd0d60" - sha256 x86_64_linux: "c20f1824bd7ee86485e3737fd399aaafe1165e656214ab529e247885a1b71130" + sha256 arm64_sequoia: "15af592e970772cf211a97287a151b8ca1e1a2fa61efc3fb80a5f593a34a4964" + sha256 arm64_sonoma: "c5dbf217b196d58fa8a2dd9e9de4b991d831083ee71337838794e65f80c77ea5" + sha256 arm64_ventura: "c7468b96d4a43fbb2898068f4367f6e4b0347ec495d738311f17432eb0d0c430" + sha256 sonoma: "29e9993025c4c89f34c876cded0b663c602ab18fa6acdac719a7674fee148df1" + sha256 ventura: "b4f537809a29d54ea4fe014c6e25d45183431e7c701b7d3f6df978ce00fb1542" + sha256 arm64_linux: "8eafdcc12d27b63f884e80a0595185e1ab469513dd8942ff0628494f5a346f51" + sha256 x86_64_linux: "2f44a74d7b61852f0b10da5efa4f178b94d9315d2daa1ebf20722abed8c374bb" end depends_on "cmake" => :build From 35009da91b2d3b8d493207ee38cfa61d1ea8d939 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 12:49:17 +0000 Subject: [PATCH 0261/1364] nuitka: update 2.7.1 bottle. --- Formula/n/nuitka.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/n/nuitka.rb b/Formula/n/nuitka.rb index 68124dbe0fac1..9d9c1c1a4dbf6 100644 --- a/Formula/n/nuitka.rb +++ b/Formula/n/nuitka.rb @@ -8,13 +8,13 @@ class Nuitka < Formula license "Apache-2.0" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "c6e89f1130feee23517f07c32fa2913ac72e9ac96f2a75e65182dd58534f1934" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "e289f347006e30132d79b96cc0f53ed2fc812e90fb9e71878939d03a57e9d064" - sha256 cellar: :any_skip_relocation, arm64_ventura: "44dd100cd790769f129732d4e460f78d448fb0b23f0974c4972f13a469b3cb40" - sha256 cellar: :any_skip_relocation, sonoma: "f4883ef7569d2c214e3baa9ed8ce13030d6568a60678265ba61531a6e2c3445b" - sha256 cellar: :any_skip_relocation, ventura: "93b3e6e3c2f2faa36d23fd436eaf4c6c909977fb0265cedc8419f3573aad5bce" - sha256 cellar: :any_skip_relocation, arm64_linux: "d7257546f250957855f4e56acf3b3aa34d164bcf76121665789739d36dd07271" - sha256 cellar: :any_skip_relocation, x86_64_linux: "e2fcfa47bb58c8dcc58d3b04a3e5e3c5561c2bfba69b1111acb0658489291983" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "72cb5e538d3db3c7742a6155606f13350c4605b89e1962c49e90864622f4451e" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "b24a4aba716029a2e0ea32cab4c9b6d1aeeba8e0a5363064e477b9862c00ed73" + sha256 cellar: :any_skip_relocation, arm64_ventura: "7651b076627740a40ca57fc53ee6f61ec69c38b20a8f554ec86d9cae77bb0a3c" + sha256 cellar: :any_skip_relocation, sonoma: "ffd348002bd119192b90c706aa459975854fdae9ce9f93d60d49645fcce0655b" + sha256 cellar: :any_skip_relocation, ventura: "2932404b16d1ca103de4b8ae9b225c509804b732a7186485ade31a1a59fdaacf" + sha256 cellar: :any_skip_relocation, arm64_linux: "dfb03a6085a4e87d2d32dcea1da2469ee0a06b7a6397a03af2eb47c882201a37" + sha256 cellar: :any_skip_relocation, x86_64_linux: "eddd2eacca381fe1130c455c7fc1937c4ce7f38263c62651b8a84c2cac2ccac1" end depends_on "ccache" From b0ad3c6f134dd96775ecbed72220c2574dbaca7e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 12:49:36 +0000 Subject: [PATCH 0262/1364] istioctl: update 1.26.0 bottle. --- Formula/i/istioctl.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/i/istioctl.rb b/Formula/i/istioctl.rb index 9bcd2c097c7e1..975394d1bb852 100644 --- a/Formula/i/istioctl.rb +++ b/Formula/i/istioctl.rb @@ -12,13 +12,13 @@ class Istioctl < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "7ac210c1d47305390d3281da99f81469446b0e7883b4144743ea1177b7d9d900" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "47298a72fff36870fa97d893d50ee81b7d0cc9ffe9ad14ae78cadbc428fe1e75" - sha256 cellar: :any_skip_relocation, arm64_ventura: "812d6f58d8ab72c7ac68ce01d3dc9e0add2d0f1b5aaa742c4449a5172c3d4d15" - sha256 cellar: :any_skip_relocation, sonoma: "0b45ffac1f3af269b65b4969ca10c59a9475190dec3e619b7f7b51bc0fedb988" - sha256 cellar: :any_skip_relocation, ventura: "dc5b2ff4f88a7ad02a440420ffb98616d126413c38e4a72614be220b7bfd7343" - sha256 cellar: :any_skip_relocation, arm64_linux: "f95d831eb0dec3f3119cd8ab4b853fd9123691c4ace3c190bd4815afb905fdde" - sha256 cellar: :any_skip_relocation, x86_64_linux: "f9c70ed05a9e9d3d752f0f8bc4fe2e3511131ed9e71c5fbea92240ec4c369a27" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "b3b2cecdb78def06f1acf78e5556dcb681c9a14fb497fcd5dddb6e47f5280bcb" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "008e07b52404f9c4dcf2f59e2249c93f119bda704e2a8a39c65b54ec3c16ac22" + sha256 cellar: :any_skip_relocation, arm64_ventura: "4560f640418cc7890c39bbc6c76aa7d56f3122073069147696f5ecd055445d1b" + sha256 cellar: :any_skip_relocation, sonoma: "e2a74cb5635944bf2d2be59b4e39a70649973fd9f8f4ba9c62948b4245ce774b" + sha256 cellar: :any_skip_relocation, ventura: "918648eb2bd92dbd6293d491492686433f72b1b22ae276956b4970c010513769" + sha256 cellar: :any_skip_relocation, arm64_linux: "29e4307005a3061e32e9193962f7659c6cf500fcff92623cd998c734d08e28f0" + sha256 cellar: :any_skip_relocation, x86_64_linux: "4db14434c5c82f0165723aebf431aa3d9fd3ad10bd97b1e8f2e7d2f24a301e76" end depends_on "go" => :build From 95697172e947f75512a7cc1ff5aa37cc3d971f65 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 12:49:52 +0000 Subject: [PATCH 0263/1364] gosec: update 2.22.4 bottle. --- Formula/g/gosec.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/g/gosec.rb b/Formula/g/gosec.rb index 73396991ab886..4695d61a49d51 100644 --- a/Formula/g/gosec.rb +++ b/Formula/g/gosec.rb @@ -7,12 +7,12 @@ class Gosec < Formula head "https://github.com/securego/gosec.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "363a2b962e17892d4673747d460a4a5a977ebf26f79d6a1646069db58ce082c3" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "363a2b962e17892d4673747d460a4a5a977ebf26f79d6a1646069db58ce082c3" - sha256 cellar: :any_skip_relocation, arm64_ventura: "363a2b962e17892d4673747d460a4a5a977ebf26f79d6a1646069db58ce082c3" - sha256 cellar: :any_skip_relocation, sonoma: "5a466435b0ffcbecc32e01e5bf211f1a60d84da89c16b0a7c3d18cc51c1308d9" - sha256 cellar: :any_skip_relocation, ventura: "5a466435b0ffcbecc32e01e5bf211f1a60d84da89c16b0a7c3d18cc51c1308d9" - sha256 cellar: :any_skip_relocation, x86_64_linux: "5a3c391451f47ac8e992befdcc754908bafadf94db7987df80b027bbf7319738" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "da158987cfb96c51a3a6d417fdd5357f663d6166ead330e4bf479086076db925" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "da158987cfb96c51a3a6d417fdd5357f663d6166ead330e4bf479086076db925" + sha256 cellar: :any_skip_relocation, arm64_ventura: "da158987cfb96c51a3a6d417fdd5357f663d6166ead330e4bf479086076db925" + sha256 cellar: :any_skip_relocation, sonoma: "225f37120160af2ba727c827044c5c2a09531bb37c52b112fe1093e356831637" + sha256 cellar: :any_skip_relocation, ventura: "225f37120160af2ba727c827044c5c2a09531bb37c52b112fe1093e356831637" + sha256 cellar: :any_skip_relocation, x86_64_linux: "3bd30d4d1b574d5553f458dd940dd1ff2bef2f4486638af5b2d3fd1850be4e1f" end depends_on "go" From 47c4a07a4872bde9dd159c23620e730c0f8ab229 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 12:50:06 +0000 Subject: [PATCH 0264/1364] cloudquery: update 6.19.1 bottle. --- Formula/c/cloudquery.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/c/cloudquery.rb b/Formula/c/cloudquery.rb index 277a23ec6cdd5..451b2e52a1952 100644 --- a/Formula/c/cloudquery.rb +++ b/Formula/c/cloudquery.rb @@ -12,12 +12,12 @@ class Cloudquery < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "60783957e43efc71c9a67a9f6ea563ad0559279322e79e465eb987ea058fbc87" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "60783957e43efc71c9a67a9f6ea563ad0559279322e79e465eb987ea058fbc87" - sha256 cellar: :any_skip_relocation, arm64_ventura: "60783957e43efc71c9a67a9f6ea563ad0559279322e79e465eb987ea058fbc87" - sha256 cellar: :any_skip_relocation, sonoma: "066f5eda645456581bd0d5763709d35ed0a96c969a1cdcdf25f283d0952fa43b" - sha256 cellar: :any_skip_relocation, ventura: "066f5eda645456581bd0d5763709d35ed0a96c969a1cdcdf25f283d0952fa43b" - sha256 cellar: :any_skip_relocation, x86_64_linux: "4a3a2e816575e03669c205060f8104672d6fc213b785c4a1092ffd96bc67fc36" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "0271f46a028b0b6e0ba5e2410dd7f56fcc867d5aa57f3ad15e02c2ce6d2eced9" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "0271f46a028b0b6e0ba5e2410dd7f56fcc867d5aa57f3ad15e02c2ce6d2eced9" + sha256 cellar: :any_skip_relocation, arm64_ventura: "0271f46a028b0b6e0ba5e2410dd7f56fcc867d5aa57f3ad15e02c2ce6d2eced9" + sha256 cellar: :any_skip_relocation, sonoma: "5d696838b4b55ab58b3f07181bcce418e24757727bf20c4f68538b51a5efe4fd" + sha256 cellar: :any_skip_relocation, ventura: "5d696838b4b55ab58b3f07181bcce418e24757727bf20c4f68538b51a5efe4fd" + sha256 cellar: :any_skip_relocation, x86_64_linux: "f41375370f62558b97798e818c44a403a3390a6be245f84d1456f06f160bde45" end depends_on "go" => :build From f1907ccebd91c7b11528efdb049b578384194cea Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 12:50:56 +0000 Subject: [PATCH 0265/1364] aws-cdk: update 2.1014.0 bottle. --- Formula/a/aws-cdk.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/a/aws-cdk.rb b/Formula/a/aws-cdk.rb index 77f576126696f..28d11190d2a95 100644 --- a/Formula/a/aws-cdk.rb +++ b/Formula/a/aws-cdk.rb @@ -6,7 +6,7 @@ class AwsCdk < Formula license "Apache-2.0" bottle do - sha256 cellar: :any_skip_relocation, all: "de12da1a4802fb5b1e9efd9cc4d08b5dd62150291a649c577e817f94f0e8d3a2" + sha256 cellar: :any_skip_relocation, all: "6e1054ae9ad697a36933b0373319c6d95c95179dad8f33ec4950be358b4e685a" end depends_on "node" From 10a75acfd41092bded1a40eb2cfe8170636968eb Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 12:51:14 +0000 Subject: [PATCH 0266/1364] cloudflare-wrangler: update 4.14.4 bottle. --- Formula/c/cloudflare-wrangler.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/cloudflare-wrangler.rb b/Formula/c/cloudflare-wrangler.rb index a0c9e2721310e..3d162eb324bd5 100644 --- a/Formula/c/cloudflare-wrangler.rb +++ b/Formula/c/cloudflare-wrangler.rb @@ -6,13 +6,13 @@ class CloudflareWrangler < Formula license any_of: ["Apache-2.0", "MIT"] bottle do - sha256 cellar: :any, arm64_sequoia: "66bb24a9eb47e875f68f57c25e4f3189e7b6c9b20c8e622a0f448b1b13aff2ff" - sha256 cellar: :any, arm64_sonoma: "66bb24a9eb47e875f68f57c25e4f3189e7b6c9b20c8e622a0f448b1b13aff2ff" - sha256 cellar: :any, arm64_ventura: "66bb24a9eb47e875f68f57c25e4f3189e7b6c9b20c8e622a0f448b1b13aff2ff" - sha256 sonoma: "b322d9fb25521ee8362903b47ca980dc26354b61b120cd5ae25fc08995eb9dc4" - sha256 ventura: "b322d9fb25521ee8362903b47ca980dc26354b61b120cd5ae25fc08995eb9dc4" - sha256 cellar: :any_skip_relocation, arm64_linux: "080f315e669859c03033a846d16774fa5244a89dce483e686e09e8a26e99781e" - sha256 cellar: :any_skip_relocation, x86_64_linux: "d079bc64dc1430ecc17042fdbd56853495cbb19c80cc725dc6b4f9b537467bb8" + sha256 cellar: :any, arm64_sequoia: "1a844164b4e55c04e6bbf24cd274075969a65edfd2c3e7a0f53558ae09318573" + sha256 cellar: :any, arm64_sonoma: "1a844164b4e55c04e6bbf24cd274075969a65edfd2c3e7a0f53558ae09318573" + sha256 cellar: :any, arm64_ventura: "1a844164b4e55c04e6bbf24cd274075969a65edfd2c3e7a0f53558ae09318573" + sha256 sonoma: "08fc9980984266ef1ecbe7e023ce5675977f0765fbcb9d7bfc33b2f9e06b4a2a" + sha256 ventura: "08fc9980984266ef1ecbe7e023ce5675977f0765fbcb9d7bfc33b2f9e06b4a2a" + sha256 cellar: :any_skip_relocation, arm64_linux: "986c7917a335cd72a3cb386aba42f48aebccff6f6c380dadc90541ebe5a7dcea" + sha256 cellar: :any_skip_relocation, x86_64_linux: "867a665eb319df8c02b827c14f82ebdd07ded40d5de9a4352e179810fb9a9c9f" end depends_on "node" From ea3ba432ec7335c6ceceeab55ad0141a1d45ccef Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 12:51:26 +0000 Subject: [PATCH 0267/1364] aravis: update 0.8.35 bottle. --- Formula/a/aravis.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/a/aravis.rb b/Formula/a/aravis.rb index e8b899573d8c7..a8c708a771505 100644 --- a/Formula/a/aravis.rb +++ b/Formula/a/aravis.rb @@ -11,13 +11,13 @@ class Aravis < Formula end bottle do - sha256 arm64_sequoia: "9503760055d6fe1d56de6cb2813ae97ccb81a3d8782c8cc1094f340d22049bb2" - sha256 arm64_sonoma: "003c937f9c73506c6395108366897f44b8add2ca8008da7a21384e43bb5cbb52" - sha256 arm64_ventura: "0616473518e5f3803439912e0ed5f934729342aace2b4b9c6d41104a98396a08" - sha256 sonoma: "34be01100daa2aee86096d438473248c6874ed7e33cd70aa92a3193ceab1f3d2" - sha256 ventura: "b52ff39d38000c9c545ce5b182ee07371eecb39dc2e657f15084e6ea011c363c" - sha256 arm64_linux: "75495ecc6f59e629f6571ab02265a7f5e79934cf1f8e30253a2714f5b29498d0" - sha256 x86_64_linux: "c80a53885fdbd26fd1cf66bb5465d04c9e070b4d9da8eae1214d5bbf97b977af" + sha256 arm64_sequoia: "5dacbb067602cd6942321a0e548cdff50b237162f12819baf9f2ee34040aa3eb" + sha256 arm64_sonoma: "82e9c7e422b14826f80abac1b17a271ead738e5abf4fe862799d68aad848e803" + sha256 arm64_ventura: "27e3c92eb7b96f192bf0e4d73a358088ada319fb8a10dab041e678d43b8472d9" + sha256 sonoma: "e0eca377a1cf2abfa292ca80b36627376e0bd2f28237876ce5f07cbb97428947" + sha256 ventura: "f08e8cc521c459783db474b8cd887947018393f33cc7eafbe9a00ac908b70b5c" + sha256 arm64_linux: "086dca0e9de5c8780bf98bf202808565b73ec26419f02b5a99fc2c67040329e1" + sha256 x86_64_linux: "50d18122eca4c3b85d4eb4f5fa4fb31d129ade755a4ef3bfde377cc64710814d" end depends_on "gettext" => :build From 915e3b8335efa244e4b5032c7fbd729ea318f424 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 12:51:40 +0000 Subject: [PATCH 0268/1364] atuin: update 18.6.0 bottle. --- Formula/a/atuin.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/a/atuin.rb b/Formula/a/atuin.rb index 0d754135a65d6..469e7188acb6a 100644 --- a/Formula/a/atuin.rb +++ b/Formula/a/atuin.rb @@ -6,13 +6,13 @@ class Atuin < Formula license "MIT" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "0a8c1e89b23c3300ea6319e8c6c41553a0b1f5387351b43ac3a64360ad05fc7a" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "94caf9dd590adf5f35ecb4690e60b6ddee3fbf5eca62b963731d8299ad5c0986" - sha256 cellar: :any_skip_relocation, arm64_ventura: "0bd749df3479f8ab72b0b306b746f04fd9574ef6850e250282e73f3f6f52b92d" - sha256 cellar: :any_skip_relocation, sonoma: "bfbbbbaf4daf6423f5e79d8e0063eab95522b3531c3bc650a9872c40908e1425" - sha256 cellar: :any_skip_relocation, ventura: "d3f64a0548bf35660cea247be7aa64aa878d3f434d0f50f8a6ca37d82978fa2f" - sha256 cellar: :any_skip_relocation, arm64_linux: "a1ff3cf9ad4fd437c36e857003ea926436ee859b4ba8d3cf02ac8f0ef61c0934" - sha256 cellar: :any_skip_relocation, x86_64_linux: "4314a07c3072b17a499c6cda962bd27bf74caac45bddadc07b57666d79b1eae4" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "09e749e3348b80a6ac5bb0a1e67fba54b02b17e7f362a6a3743e34d01cb18e50" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "d77a0cbd93ef538aaeb82138cad91189e93cbf67f868c6279ee5101574311e64" + sha256 cellar: :any_skip_relocation, arm64_ventura: "5db9cc60dbd87c49e0930b6cd679028a0185a3c80445534cf10fe239ba65884f" + sha256 cellar: :any_skip_relocation, sonoma: "12b626af1ec661f36df37eb7710a07a7fad470a5c13941d6beabcceb89ba6a5e" + sha256 cellar: :any_skip_relocation, ventura: "6b05183b1153f7b582385d80c6ac861aadfa48c820a7eeb6722c7a100dad0521" + sha256 cellar: :any_skip_relocation, arm64_linux: "987ad3b247eef6fe9dc4030165d27bc366fc796c97555d13a5ad79039767a7b4" + sha256 cellar: :any_skip_relocation, x86_64_linux: "509d36e50161e9d9666e83b0dbce0ec1650b4ee07e6bf7c625447f43619455d0" end depends_on "protobuf" => :build From ce279464bb0db0b62efbe2aa36673cf3dba08ea7 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 12:52:00 +0000 Subject: [PATCH 0269/1364] aiven-client: update 4.7.1 bottle. --- Formula/a/aiven-client.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/a/aiven-client.rb b/Formula/a/aiven-client.rb index d3a0ccb9fbd90..75968afa5f119 100644 --- a/Formula/a/aiven-client.rb +++ b/Formula/a/aiven-client.rb @@ -9,7 +9,7 @@ class AivenClient < Formula head "https://github.com/aiven/aiven-client.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, all: "3adc321222d00816049fa1a67556ee0e8b6a3683da8708db087839dccfb60b54" + sha256 cellar: :any_skip_relocation, all: "d3773dd54f682aa0af8bbbd1668ac7a5d6b0a3331b8e58dcd2bebbdee623ea41" end depends_on "certifi" From a7cf3308410c1d40c0f7139595e0fbb7c60ad4ef Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 12:52:02 +0000 Subject: [PATCH 0270/1364] aliyun-cli: update 3.0.274 bottle. --- Formula/a/aliyun-cli.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/a/aliyun-cli.rb b/Formula/a/aliyun-cli.rb index b00f356ced40f..58e7a9f4c3e77 100644 --- a/Formula/a/aliyun-cli.rb +++ b/Formula/a/aliyun-cli.rb @@ -8,12 +8,12 @@ class AliyunCli < Formula head "https://github.com/aliyun/aliyun-cli.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "44d295a261b628d3f38a3d340fc45816b6515b9486f1be300e852a98beaa4094" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "44d295a261b628d3f38a3d340fc45816b6515b9486f1be300e852a98beaa4094" - sha256 cellar: :any_skip_relocation, arm64_ventura: "44d295a261b628d3f38a3d340fc45816b6515b9486f1be300e852a98beaa4094" - sha256 cellar: :any_skip_relocation, sonoma: "93ee79fe821b95c1f370067dd744d2e1e68f029f560873606447bc037999217c" - sha256 cellar: :any_skip_relocation, ventura: "93ee79fe821b95c1f370067dd744d2e1e68f029f560873606447bc037999217c" - sha256 cellar: :any_skip_relocation, x86_64_linux: "ddc239941857162ea6637364e3ade096376c1cb5911eb597330d7f38bcfa8fdb" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "ba9cdbe97d2e7ff6eb0dd152fb21da4076a7dfa22f2f9dfc4c538dee5a63dc8f" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "ba9cdbe97d2e7ff6eb0dd152fb21da4076a7dfa22f2f9dfc4c538dee5a63dc8f" + sha256 cellar: :any_skip_relocation, arm64_ventura: "ba9cdbe97d2e7ff6eb0dd152fb21da4076a7dfa22f2f9dfc4c538dee5a63dc8f" + sha256 cellar: :any_skip_relocation, sonoma: "abc555ddd57b87be8f8a7f5a47e8f67988ae1ff97e734742f1b0fef2ac821e29" + sha256 cellar: :any_skip_relocation, ventura: "abc555ddd57b87be8f8a7f5a47e8f67988ae1ff97e734742f1b0fef2ac821e29" + sha256 cellar: :any_skip_relocation, x86_64_linux: "fb97b8a852d66e81483d325674e3d757854961deeee4763ece4e2cda7239c58b" end depends_on "go" => :build From d91cd350bb3f36da6f0dbb5a3daca20c724a65fc Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 12:52:36 +0000 Subject: [PATCH 0271/1364] mesheryctl: update 0.8.76 bottle. --- Formula/m/mesheryctl.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/m/mesheryctl.rb b/Formula/m/mesheryctl.rb index 1e1d2c0c75b4f..91b6be736a739 100644 --- a/Formula/m/mesheryctl.rb +++ b/Formula/m/mesheryctl.rb @@ -10,13 +10,13 @@ class Mesheryctl < Formula no_autobump! because: :bumped_by_upstream bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "50c8d9ede27905878df946e8effcefff91c6a9518372d8ad89450dbc0fd4d368" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "50c8d9ede27905878df946e8effcefff91c6a9518372d8ad89450dbc0fd4d368" - sha256 cellar: :any_skip_relocation, arm64_ventura: "50c8d9ede27905878df946e8effcefff91c6a9518372d8ad89450dbc0fd4d368" - sha256 cellar: :any_skip_relocation, sonoma: "9039e89c33e9efa6edec5058b4fea29b7b1a2140c3e14f541acf6ab84da8c864" - sha256 cellar: :any_skip_relocation, ventura: "9039e89c33e9efa6edec5058b4fea29b7b1a2140c3e14f541acf6ab84da8c864" - sha256 cellar: :any_skip_relocation, arm64_linux: "3fdd0c29dfa8b8ac49f84d6f5fd7d2eed03dbe5cac885e919b3be644e18ae397" - sha256 cellar: :any_skip_relocation, x86_64_linux: "61bfb44dfc446d23480dcc85d14692cf0b7f9ffe9f058141af6fcf7fdb949142" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "fe15e492d71199ac2523df810a2e144792f83aafc56274beeaabf9933767e970" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "fe15e492d71199ac2523df810a2e144792f83aafc56274beeaabf9933767e970" + sha256 cellar: :any_skip_relocation, arm64_ventura: "fe15e492d71199ac2523df810a2e144792f83aafc56274beeaabf9933767e970" + sha256 cellar: :any_skip_relocation, sonoma: "fa00aae4f1d3be816f07a2231a3c0d7b494fa1e4c0f943ff54ba72a78c787af7" + sha256 cellar: :any_skip_relocation, ventura: "fa00aae4f1d3be816f07a2231a3c0d7b494fa1e4c0f943ff54ba72a78c787af7" + sha256 cellar: :any_skip_relocation, arm64_linux: "de1751923dee046da4a77b782186480ade32542cc8854c5823fe033908cd416b" + sha256 cellar: :any_skip_relocation, x86_64_linux: "a783d1584cb9182bd60766a8590e895b915d331b58e91c4fae48d7c6817d9012" end depends_on "go" => :build From 6f640eb9a915a54bc483246cfa91c7fefd068a33 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 12:55:31 +0000 Subject: [PATCH 0272/1364] trunk: update 0.21.14 bottle. --- Formula/t/trunk.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/t/trunk.rb b/Formula/t/trunk.rb index 93a21a5085045..fae2e62edc50e 100644 --- a/Formula/t/trunk.rb +++ b/Formula/t/trunk.rb @@ -7,13 +7,13 @@ class Trunk < Formula head "https://github.com/trunk-rs/trunk.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "b2a226efd21def510134c43735d5fadcc293766ef80f06bffc382f4e6be3c26d" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "a98a988a4d9148013532b3e0ea81b35e9ebfff33a821158b511557d7ad462345" - sha256 cellar: :any_skip_relocation, arm64_ventura: "efcbfb98571c2b77909fa02250caa52c818b71015e74bc753c2c8973441870cb" - sha256 cellar: :any_skip_relocation, sonoma: "a0359ea6d7a606d9275cbe0615ef627a2bf50773509426549b7fbedf8008f675" - sha256 cellar: :any_skip_relocation, ventura: "dff27d25af94d36a884664c332098036fec3a1ece878fec25dd87c6ccf208717" - sha256 cellar: :any_skip_relocation, arm64_linux: "d6a02fb451ca85699a0431d8a722b82bd4f626bb80f04f0ae21970d532df51d0" - sha256 cellar: :any_skip_relocation, x86_64_linux: "39456d7ea40391b5d796841f9001a7f115bf13d0051003ccf68fcf5113a5acf2" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "f29f737a25367f9d601004ab3c69d5af49388d105dbbf4de4342e9b26bb19235" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "6e353a529700001a2d583d8b5c7b64fd33437b62cb06df847d87be200750a7d1" + sha256 cellar: :any_skip_relocation, arm64_ventura: "f527d08ece51ec56bc8f5cab717340954024b412c948739ae4dba0f5aa5c203e" + sha256 cellar: :any_skip_relocation, sonoma: "327a4675ef5bbe597bb701f9bf8fae1f5c0a5158a9b6e6b995e0beadd480adf6" + sha256 cellar: :any_skip_relocation, ventura: "1a95cdffa128c65c96942b7d28b0037c230ee87f89c426253665068717bfed7e" + sha256 cellar: :any_skip_relocation, arm64_linux: "4f03d00804c927fda2616c5ac7ad5a145bf84e361d6b36369a6fc4383562006d" + sha256 cellar: :any_skip_relocation, x86_64_linux: "75d36fb9a7d305547ce7580004d3da051ddd6089a8338fff63e2a033efb17578" end depends_on "pkgconf" => :build From f8d131f6ff8cd778e7e0d8823fcc40daa226df8b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 12:55:49 +0000 Subject: [PATCH 0273/1364] pie: update 0.12.0 bottle. --- Formula/p/pie.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/p/pie.rb b/Formula/p/pie.rb index 869f247d5bde8..acc0334628c5d 100644 --- a/Formula/p/pie.rb +++ b/Formula/p/pie.rb @@ -6,13 +6,13 @@ class Pie < Formula license "BSD-3-Clause" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "bcd9167ccf9227949d1289ed0a5d6c781dc0623facedfb3c795dbe57a46b8e4f" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "bcd9167ccf9227949d1289ed0a5d6c781dc0623facedfb3c795dbe57a46b8e4f" - sha256 cellar: :any_skip_relocation, arm64_ventura: "bcd9167ccf9227949d1289ed0a5d6c781dc0623facedfb3c795dbe57a46b8e4f" - sha256 cellar: :any_skip_relocation, sonoma: "ee61b13abb26574ec7385dde6ab76ee8b03e1e06674542b2441aa35493fdd366" - sha256 cellar: :any_skip_relocation, ventura: "ee61b13abb26574ec7385dde6ab76ee8b03e1e06674542b2441aa35493fdd366" - sha256 cellar: :any_skip_relocation, arm64_linux: "a4845da91b6b6c3c45a13e67b6751339326aae80c869ee40fb677c11694cb09e" - sha256 cellar: :any_skip_relocation, x86_64_linux: "a4845da91b6b6c3c45a13e67b6751339326aae80c869ee40fb677c11694cb09e" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "924e81ed22bf6031807fff34bb58ae2d6f85b105dcd5d9f2c2d0c285009f0582" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "924e81ed22bf6031807fff34bb58ae2d6f85b105dcd5d9f2c2d0c285009f0582" + sha256 cellar: :any_skip_relocation, arm64_ventura: "924e81ed22bf6031807fff34bb58ae2d6f85b105dcd5d9f2c2d0c285009f0582" + sha256 cellar: :any_skip_relocation, sonoma: "967cf150edcd369fb961412df340fbbcccff93a8b3495d094aee5688c3d73a30" + sha256 cellar: :any_skip_relocation, ventura: "967cf150edcd369fb961412df340fbbcccff93a8b3495d094aee5688c3d73a30" + sha256 cellar: :any_skip_relocation, arm64_linux: "34b866e5613091e039a57b839a5a92a7e96f8acc9985e8941fd8ead85021ea61" + sha256 cellar: :any_skip_relocation, x86_64_linux: "34b866e5613091e039a57b839a5a92a7e96f8acc9985e8941fd8ead85021ea61" end depends_on "php" From 07fd55d8b176b6a99f2eb15fd7cda770c0698e25 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 12:56:05 +0000 Subject: [PATCH 0274/1364] scrapy: update 2.13.0 bottle. --- Formula/s/scrapy.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/s/scrapy.rb b/Formula/s/scrapy.rb index 03706e90dd6f5..d1a9942ba8b33 100644 --- a/Formula/s/scrapy.rb +++ b/Formula/s/scrapy.rb @@ -9,13 +9,13 @@ class Scrapy < Formula head "https://github.com/scrapy/scrapy.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "231c6afa4bef26d97d561573d84122881cd2ce96fbcc34eb90792a6705accd88" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "7c1bb8ce306e11de49a28958192119069730a31e14c7867306374fbb19eb208a" - sha256 cellar: :any_skip_relocation, arm64_ventura: "a7c85c0d9ecbe6936e12e4248a5c4b62639b74d97cb4155c12be0e1ee602c657" - sha256 cellar: :any_skip_relocation, sonoma: "b68c6b19a86e4ad012d97f0ff4a3b703c8f4ac2a9f5ae2fa8e5efa8123fd1a67" - sha256 cellar: :any_skip_relocation, ventura: "a908c2d0534d43aece879fb1d6b1293c03dc6915bb489033732bbc869c31cc2b" - sha256 cellar: :any_skip_relocation, arm64_linux: "99937cfcdacaa63054c1b5cc166c688dfa62e13ca607ad5a2c222ade45f8c210" - sha256 cellar: :any_skip_relocation, x86_64_linux: "a7bc8b42c8d0ee6555dd55392f08c6dbc5a1407dd8184ba5484a53ed4326f2a0" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "25defebb119a5871425b507cb20c177de0a71a10b5fe71f1aab2586eb926c880" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "fb183278491aa21d398ed826047c7e017b114f071aca33b85ac4121cdddd6c56" + sha256 cellar: :any_skip_relocation, arm64_ventura: "132bef755d1cecd7337bdfc08768cb5ef47f0b8d71709a3e1faff98c9b9bcb8a" + sha256 cellar: :any_skip_relocation, sonoma: "526526f3d4432db8f598c0c28d7ef90457d7bf76e60a65742a4d09dd7ba88f3c" + sha256 cellar: :any_skip_relocation, ventura: "71f308ec9fc68eb4edd8f2a5d12a3a9c8865befce7f99ec3ef7f3d0afdfaa359" + sha256 cellar: :any_skip_relocation, arm64_linux: "bb7c6c7f2b42c5007376ee87ee08f6e02c6f8a673d597ee6565b64acf7c38e35" + sha256 cellar: :any_skip_relocation, x86_64_linux: "4acb935a8569e94f71e6cc3e6079e45001c4e7154742c7f3b2d27b03b1def370" end depends_on "certifi" From 8d13bdaccd59aec5659d5b79d0b4b522a75175bc Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 12:56:06 +0000 Subject: [PATCH 0275/1364] qcachegrind: update 25.04.1 bottle. --- Formula/q/qcachegrind.rb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Formula/q/qcachegrind.rb b/Formula/q/qcachegrind.rb index 120d00ba6ed16..5ff30cfba3e5b 100644 --- a/Formula/q/qcachegrind.rb +++ b/Formula/q/qcachegrind.rb @@ -14,11 +14,11 @@ class Qcachegrind < Formula end bottle do - sha256 cellar: :any, arm64_sonoma: "8b68e4e0ed9fb11ff6d3da6028ab3a9066bbaee5d0f84df6ab14f65541084656" - sha256 cellar: :any, arm64_ventura: "aec4835581d0ccd7346190708be81196e539a7c4b0dab75b7101725e55487029" - sha256 cellar: :any, sonoma: "dc707a83ce2a8baaddeb8257623e68edb5e76e5b37fb4c65d70d4c59254e2a40" - sha256 cellar: :any, ventura: "b733edd92621a9c5fc5d519c690d57c344306db5c0fcd61bbc3bed9809f65d09" - sha256 cellar: :any_skip_relocation, x86_64_linux: "9aaf6fc73f0d425bf6e468d93202ab7f05fd61500c06701a7a023f6e9891bcee" + sha256 cellar: :any, arm64_sonoma: "51cb12d4d28aba1779e55a2abf0ded2e924f24f67427ebe8aba30831e7c1869b" + sha256 cellar: :any, arm64_ventura: "0b0d9cd39dd7f200f5d33c992ffba32a58ba28d3ff4d11944ee961739f9d2261" + sha256 cellar: :any, sonoma: "e0fc44aac494bba334a51586681b8158f21b73df7bd8d35d5d99caee99c23fb2" + sha256 cellar: :any, ventura: "914e283c91088f2dbf0df3378277116f401a083563f7dadda7c85f5307063365" + sha256 cellar: :any_skip_relocation, x86_64_linux: "4f478ae21aa1fa2b484124a399d5a47f82a0474484e9f6ca3843eaf9ed06801d" end depends_on "graphviz" From dcc25cfdb0eff1e47260f3e5722a8d0dd6d73de6 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 12:56:16 +0000 Subject: [PATCH 0276/1364] pulumi: update 3.169.0 bottle. --- Formula/p/pulumi.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/p/pulumi.rb b/Formula/p/pulumi.rb index 3925ba5bf32ee..00b8cfcbae468 100644 --- a/Formula/p/pulumi.rb +++ b/Formula/p/pulumi.rb @@ -10,12 +10,12 @@ class Pulumi < Formula no_autobump! because: :bumped_by_upstream bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "08fbbe5280c121730067626ef3efe6274154431cf1d73fef5b6ea898eab42238" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "e947c9999b25799dea45637f1618ed536b12e20e99f37a49abc1d5fcbd0aa325" - sha256 cellar: :any_skip_relocation, arm64_ventura: "2f2de40b037247f50d656d9f0118793354867d21cf5036333ec474f4d40d624a" - sha256 cellar: :any_skip_relocation, sonoma: "0197786250ce1fd6ec10a0f0e83aa50eff3a51b719dfab977560b7a374b6d8ed" - sha256 cellar: :any_skip_relocation, ventura: "bc1d1cc5f0a008bbf6f88a0b5536ddcd7ba2499d0f447f55263fcf43ec0f2a3f" - sha256 cellar: :any_skip_relocation, x86_64_linux: "e25046643bbcf33cafe051abe898e70e43aeeb915b7b94754ebef36715a72223" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "259f16c6ef8312e984189c2e55b212170439749d02ec55f427da90188a27f440" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "b3ac56a560d51452196938d459d03a6ad99f6d981107356e6db15a76371fcdf5" + sha256 cellar: :any_skip_relocation, arm64_ventura: "f53a3ece913d97ff809c12a7f0399f0fd9085b344abc89df8a7fa62745806b49" + sha256 cellar: :any_skip_relocation, sonoma: "786d36c6680d785b8b2b2e9a244b8460169387871d62dc4e097faafe91952372" + sha256 cellar: :any_skip_relocation, ventura: "9cc760e6a2a028d85f2b616b3fe0c7348ce8a277eebded84d9f069fb47695cfa" + sha256 cellar: :any_skip_relocation, x86_64_linux: "1bddfcb11658e8a3d8fc06ffb24ea3304e41bea451c57948937b984697e0baa1" end depends_on "go" => :build From fca79c00fc5fa1e82b506afe3b2c22a011e9237d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 13:48:54 +0000 Subject: [PATCH 0277/1364] aliyun-cli 3.0.275 --- Formula/a/aliyun-cli.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/a/aliyun-cli.rb b/Formula/a/aliyun-cli.rb index 58e7a9f4c3e77..48d9a71f6e547 100644 --- a/Formula/a/aliyun-cli.rb +++ b/Formula/a/aliyun-cli.rb @@ -2,8 +2,8 @@ class AliyunCli < Formula desc "Universal Command-Line Interface for Alibaba Cloud" homepage "https://github.com/aliyun/aliyun-cli" url "https://github.com/aliyun/aliyun-cli.git", - tag: "v3.0.274", - revision: "0349962a04f1ca936152be5f31b015d739e859d0" + tag: "v3.0.275", + revision: "0f9028dda248e71fb889ab9550a0a3a34a69ad90" license "Apache-2.0" head "https://github.com/aliyun/aliyun-cli.git", branch: "master" From 6043424335330044e355c95bfecc21d99a6db7ee Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 13:53:41 +0000 Subject: [PATCH 0278/1364] cargo-shear 1.2.7 --- Formula/c/cargo-shear.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/cargo-shear.rb b/Formula/c/cargo-shear.rb index b86588db040b7..d13b2f77196d8 100644 --- a/Formula/c/cargo-shear.rb +++ b/Formula/c/cargo-shear.rb @@ -1,8 +1,8 @@ class CargoShear < Formula desc "Detect and remove unused dependencies from `Cargo.toml` in Rust projects" homepage "https://github.com/Boshen/cargo-shear" - url "https://github.com/Boshen/cargo-shear/archive/refs/tags/v1.2.6.tar.gz" - sha256 "ae097e6a9c59834d37568bbd94b0a38af6771bec8c837624411e4214458e7ab1" + url "https://github.com/Boshen/cargo-shear/archive/refs/tags/v1.2.7.tar.gz" + sha256 "2abab1cba4ce8dfec5b25a2bf04d4767ab3e70a8445e0b20cf8542c400c7d566" license "MIT" head "https://github.com/Boshen/cargo-shear.git", branch: "main" From 6da05be2fb16a9a10a12a0e3e2c08a33cea0f74b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 13:59:27 +0000 Subject: [PATCH 0279/1364] docker-gen 0.14.7 --- Formula/d/docker-gen.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/d/docker-gen.rb b/Formula/d/docker-gen.rb index af7aafdbdac45..eeb90728de349 100644 --- a/Formula/d/docker-gen.rb +++ b/Formula/d/docker-gen.rb @@ -1,8 +1,8 @@ class DockerGen < Formula desc "Generate files from docker container metadata" homepage "https://github.com/nginx-proxy/docker-gen" - url "https://github.com/nginx-proxy/docker-gen/archive/refs/tags/0.14.6.tar.gz" - sha256 "bebdebef78196a5af2c49471116bca007117015d457d9279bff4d5f8fc95417d" + url "https://github.com/nginx-proxy/docker-gen/archive/refs/tags/0.14.7.tar.gz" + sha256 "a00a5bf583e1f4be77be35c2adb1d0377ae51ecb1fd8b00951f443237edf94f4" license "MIT" head "https://github.com/nginx-proxy/docker-gen.git", branch: "main" From a0b3cea18becef8b60729f5dcb9488daf987daf9 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 14:01:18 +0000 Subject: [PATCH 0280/1364] erlang 27.3.4 --- Formula/e/erlang.rb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Formula/e/erlang.rb b/Formula/e/erlang.rb index 250ab67997f93..a418ca11dbef0 100644 --- a/Formula/e/erlang.rb +++ b/Formula/e/erlang.rb @@ -3,8 +3,8 @@ class Erlang < Formula homepage "https://www.erlang.org/" # Download tarball from GitHub; it is served faster than the official tarball. # Don't forget to update the documentation resource along with the url! - url "https://github.com/erlang/otp/releases/download/OTP-27.3.3/otp_src_27.3.3.tar.gz" - sha256 "5c5c69c7816c97e33f7f8efaab44b4465dc62365f5a60a7fb2a132f6e116748e" + url "https://github.com/erlang/otp/releases/download/OTP-27.3.4/otp_src_27.3.4.tar.gz" + sha256 "c3a0a0b51df08f877eed88378f3d2da7026a75b8559803bd78071bb47cd4783b" license "Apache-2.0" livecheck do @@ -42,9 +42,9 @@ class Erlang < Formula end resource "html" do - url "https://github.com/erlang/otp/releases/download/OTP-27.3.3/otp_doc_html_27.3.3.tar.gz" - mirror "https://fossies.org/linux/misc/otp_doc_html_27.3.3.tar.gz" - sha256 "f30a439bde62fffc7cd195fed68a0563262f0472773552b055b0cc542c0f126b" + url "https://github.com/erlang/otp/releases/download/OTP-27.3.4/otp_doc_html_27.3.4.tar.gz" + mirror "https://fossies.org/linux/misc/otp_doc_html_27.3.4.tar.gz" + sha256 "58e0110a4fbcd8ad5ae4bace64a8082135e4ed19ac88d5fe9763bee6244c84d1" livecheck do formula :parent From 918d60a25d104be9ed0ea779ddbd85e6c419fea6 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 14:04:13 +0000 Subject: [PATCH 0281/1364] fuse-overlayfs 1.15 --- Formula/f/fuse-overlayfs.rb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Formula/f/fuse-overlayfs.rb b/Formula/f/fuse-overlayfs.rb index 48e16b6bfb29f..faa9bd8cc784a 100644 --- a/Formula/f/fuse-overlayfs.rb +++ b/Formula/f/fuse-overlayfs.rb @@ -1,10 +1,9 @@ class FuseOverlayfs < Formula desc "FUSE implementation for overlayfs" homepage "https://github.com/containers/fuse-overlayfs" - url "https://github.com/containers/fuse-overlayfs/archive/refs/tags/v1.14.tar.gz" - sha256 "0779d1ee8fbb6adb48df40e54efa9c608e1d7bbd844800a4c32c110d5fcbe9f2" + url "https://github.com/containers/fuse-overlayfs/archive/refs/tags/v1.15.tar.gz" + sha256 "e4fbbdacbeffb560715e6c74c128aee07a7053a1fec78dc904bcc0a88e2efd67" license "GPL-2.0-or-later" - revision 1 bottle do sha256 cellar: :any_skip_relocation, arm64_linux: "a7f8cf5e1be7d7fd77a0035c39dc2b58df1119e5c6c8f9918e02b6384c0c6833" From bdb328220613273d3e0af6b5fc86680b256e5918 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 14:16:28 +0000 Subject: [PATCH 0282/1364] llama.cpp 5310 --- Formula/l/llama.cpp.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/l/llama.cpp.rb b/Formula/l/llama.cpp.rb index 6618561eeaea3..9fdb74c1c4f79 100644 --- a/Formula/l/llama.cpp.rb +++ b/Formula/l/llama.cpp.rb @@ -3,8 +3,8 @@ class LlamaCpp < Formula homepage "https://github.com/ggerganov/llama.cpp" # CMake uses Git to generate version information. url "https://github.com/ggerganov/llama.cpp.git", - tag: "b5300", - revision: "4773d7a02ffdb05ba9e673ff21ce95351836e33a" + tag: "b5310", + revision: "70a6991edf1b60e7afa8962f830320583f3babb0" license "MIT" head "https://github.com/ggerganov/llama.cpp.git", branch: "master" From 108af32192fc118e15af0a959abdbaf775fd2b2d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 14:18:33 +0000 Subject: [PATCH 0283/1364] fuse-overlayfs: update 1.15 bottle. --- Formula/f/fuse-overlayfs.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/f/fuse-overlayfs.rb b/Formula/f/fuse-overlayfs.rb index faa9bd8cc784a..2e1d2a8851971 100644 --- a/Formula/f/fuse-overlayfs.rb +++ b/Formula/f/fuse-overlayfs.rb @@ -6,8 +6,8 @@ class FuseOverlayfs < Formula license "GPL-2.0-or-later" bottle do - sha256 cellar: :any_skip_relocation, arm64_linux: "a7f8cf5e1be7d7fd77a0035c39dc2b58df1119e5c6c8f9918e02b6384c0c6833" - sha256 cellar: :any_skip_relocation, x86_64_linux: "67b15525a3dff8d4db1bbd933ad061aa07ce3818ba310e52cdad0bc01748deea" + sha256 cellar: :any_skip_relocation, arm64_linux: "07710fa26509b5b790b02265ad10b1f935af43311fa1b6cde75a0cde2a5332fc" + sha256 cellar: :any_skip_relocation, x86_64_linux: "7ac8205f9e27961ae6fbe7508bd805fdb49e04d2f7f7f8c731137c2a33c671c8" end depends_on "autoconf" => :build From 7166855b7fc508e58650e44990a2998b52ced5fe Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 14:19:02 +0000 Subject: [PATCH 0284/1364] aliyun-cli: update 3.0.275 bottle. --- Formula/a/aliyun-cli.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/a/aliyun-cli.rb b/Formula/a/aliyun-cli.rb index 48d9a71f6e547..f3057015071f2 100644 --- a/Formula/a/aliyun-cli.rb +++ b/Formula/a/aliyun-cli.rb @@ -8,12 +8,12 @@ class AliyunCli < Formula head "https://github.com/aliyun/aliyun-cli.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "ba9cdbe97d2e7ff6eb0dd152fb21da4076a7dfa22f2f9dfc4c538dee5a63dc8f" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "ba9cdbe97d2e7ff6eb0dd152fb21da4076a7dfa22f2f9dfc4c538dee5a63dc8f" - sha256 cellar: :any_skip_relocation, arm64_ventura: "ba9cdbe97d2e7ff6eb0dd152fb21da4076a7dfa22f2f9dfc4c538dee5a63dc8f" - sha256 cellar: :any_skip_relocation, sonoma: "abc555ddd57b87be8f8a7f5a47e8f67988ae1ff97e734742f1b0fef2ac821e29" - sha256 cellar: :any_skip_relocation, ventura: "abc555ddd57b87be8f8a7f5a47e8f67988ae1ff97e734742f1b0fef2ac821e29" - sha256 cellar: :any_skip_relocation, x86_64_linux: "fb97b8a852d66e81483d325674e3d757854961deeee4763ece4e2cda7239c58b" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "fd55d30c12683674bf7ce1bc2e8e3777ce3fc5f8e704aacd431bea141096f3ba" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "fd55d30c12683674bf7ce1bc2e8e3777ce3fc5f8e704aacd431bea141096f3ba" + sha256 cellar: :any_skip_relocation, arm64_ventura: "fd55d30c12683674bf7ce1bc2e8e3777ce3fc5f8e704aacd431bea141096f3ba" + sha256 cellar: :any_skip_relocation, sonoma: "88806f64c7ef80d2dd69ade72e90e832fc25f22893cae77ca380bbd9a6bfd314" + sha256 cellar: :any_skip_relocation, ventura: "88806f64c7ef80d2dd69ade72e90e832fc25f22893cae77ca380bbd9a6bfd314" + sha256 cellar: :any_skip_relocation, x86_64_linux: "96bc56c7bcb68166a620464847edd14c526c67a89eee40315c096b6aa8f2fb68" end depends_on "go" => :build From 13660b32a41e17a927d0e4f98756dcbee501bb5c Mon Sep 17 00:00:00 2001 From: Yurii Kolesnykov Date: Wed, 16 Apr 2025 22:18:54 +0100 Subject: [PATCH 0285/1364] mesa 25.1.0 Signed-off-by: Yurii Kolesnykov --- Formula/m/mesa.rb | 34 +++++++++++++++++++++++++--------- 1 file changed, 25 insertions(+), 9 deletions(-) diff --git a/Formula/m/mesa.rb b/Formula/m/mesa.rb index d90f38bedd691..81698a5c31ea3 100644 --- a/Formula/m/mesa.rb +++ b/Formula/m/mesa.rb @@ -3,8 +3,8 @@ class Mesa < Formula desc "Graphics Library" homepage "https://www.mesa3d.org/" - url "https://archive.mesa3d.org/mesa-25.0.5.tar.xz" - sha256 "c0d245dea0aa4b49f74b3d474b16542e4a8799791cd33d676c69f650ad4378d0" + url "https://archive.mesa3d.org/mesa-25.1.0.tar.xz" + sha256 "b1c45888969ee5df997e2542654f735ab1b772924b442f3016d2293414c99c14" license all_of: [ "MIT", "Apache-2.0", # include/{EGL,GLES*,vk_video,vulkan}, src/egl/generate/egl.xml, src/mapi/glapi/registry/gl.xml @@ -61,6 +61,10 @@ class Mesa < Formula uses_from_macos "expat" uses_from_macos "zlib" + on_macos do + depends_on "molten-vk" + end + on_linux do depends_on "directx-headers" => :build depends_on "gzip" => :build @@ -134,23 +138,24 @@ def install args = %w[ -Db_ndebug=true -Dopengl=true - -Dosmesa=true -Dstrip=true -Dllvm=enabled - -Dgallium-drivers=auto + -Dvideo-codecs=all - -Dgallium-opencl=icd -Dgallium-rusticl=true ] args += if OS.mac? - %w[ + %W[ + -Dgallium-drivers=llvmpipe,zink -Dvulkan-drivers=swrast -Dvulkan-layers=intel-nullhw,overlay,screenshot - -Dtools=etnaviv,glsl,nir,nouveau,asahi,imagination,dlclose-skip + -Dtools=etnaviv,glsl,nir,nouveau,imagination,dlclose-skip + -Dmoltenvk-dir=#{Formula["molten-vk"].prefix} ] else %w[ -Degl=enabled + -Dgallium-drivers=auto -Dgallium-extra-hud=true -Dgallium-nine=true -Dgallium-va=enabled @@ -181,12 +186,23 @@ def install inreplace lib/"pkgconfig/dri.pc" do |s| s.change_make_var! "dridriverdir", HOMEBREW_PREFIX/"lib/dri" end + + # https://gitlab.freedesktop.org/mesa/mesa/-/issues/13119 + if OS.mac? + inreplace %W[ + #{prefix}/etc/OpenCL/vendors/rusticl.icd + #{share}/vulkan/explicit_layer.d/VkLayer_MESA_overlay.json + #{share}/vulkan/explicit_layer.d/VkLayer_MESA_screenshot.json + ] do |s| + s.gsub! ".so", ".dylib" + end + end end test do resource "glxgears.c" do - url "https://gitlab.freedesktop.org/mesa/demos/-/raw/878cd7fb84b7712d29e5d1b38355ed9c5899a403/src/xdemos/glxgears.c" - sha256 "af7927d14bd9cc989347ad0c874b35c4bfbbe9f408956868b1c5564391e21eed" + url "https://gitlab.freedesktop.org/mesa/demos/-/raw/8ecad14b04ccb3d4f7084122ff278b5032afd59a/src/xdemos/glxgears.c" + sha256 "cbb5a797cf3d2d8b3fce01cfaf01643d6162ca2b0e97d760cc2e5aec8d707601" end resource "gl_wrap.h" do From c470b057928ae9326cfc5853a376f091bf79126a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 14:19:28 +0000 Subject: [PATCH 0286/1364] docker-gen: update 0.14.7 bottle. --- Formula/d/docker-gen.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/d/docker-gen.rb b/Formula/d/docker-gen.rb index eeb90728de349..ed451f7d40cc6 100644 --- a/Formula/d/docker-gen.rb +++ b/Formula/d/docker-gen.rb @@ -7,12 +7,12 @@ class DockerGen < Formula head "https://github.com/nginx-proxy/docker-gen.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "4183b4b5a4f1fbc43e956a0bdc1b4fc71291868bf81428472e5f750676e1108f" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "4183b4b5a4f1fbc43e956a0bdc1b4fc71291868bf81428472e5f750676e1108f" - sha256 cellar: :any_skip_relocation, arm64_ventura: "4183b4b5a4f1fbc43e956a0bdc1b4fc71291868bf81428472e5f750676e1108f" - sha256 cellar: :any_skip_relocation, sonoma: "7164022bfe91ad2fffd538b2aa9e424a362b4d4f8b9e7f452ac056ae7caa0f80" - sha256 cellar: :any_skip_relocation, ventura: "7164022bfe91ad2fffd538b2aa9e424a362b4d4f8b9e7f452ac056ae7caa0f80" - sha256 cellar: :any_skip_relocation, x86_64_linux: "4e57fd8919d74380af3a18eb89802405aa772f8284aafe338f6d3faa378f2532" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "5fda1495e6af67b21c960c2e689e47f77219c6106fe129b01c3a9b58e48b4811" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "5fda1495e6af67b21c960c2e689e47f77219c6106fe129b01c3a9b58e48b4811" + sha256 cellar: :any_skip_relocation, arm64_ventura: "5fda1495e6af67b21c960c2e689e47f77219c6106fe129b01c3a9b58e48b4811" + sha256 cellar: :any_skip_relocation, sonoma: "6ab4366ef34f75854784bb508508836a01fc3e39588e41113dedbce72f7ee69e" + sha256 cellar: :any_skip_relocation, ventura: "6ab4366ef34f75854784bb508508836a01fc3e39588e41113dedbce72f7ee69e" + sha256 cellar: :any_skip_relocation, x86_64_linux: "a576590ce72f482fb6dddaddb5a0c823a9c57baeed9c67e96f0d421dcfbe1862" end depends_on "go" => :build From 8f90b5992f28f9ca37072ec17653aa0b061be44b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 14:20:25 +0000 Subject: [PATCH 0287/1364] cargo-shear: update 1.2.7 bottle. --- Formula/c/cargo-shear.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/cargo-shear.rb b/Formula/c/cargo-shear.rb index d13b2f77196d8..1f785d165de98 100644 --- a/Formula/c/cargo-shear.rb +++ b/Formula/c/cargo-shear.rb @@ -7,13 +7,13 @@ class CargoShear < Formula head "https://github.com/Boshen/cargo-shear.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "db5c76d9069d9f616b1140dc846d2217f382a841e7ce9507877002aba99ec631" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "6d5b35fb81f84bf6f2c9ef396ec271fb7eb6cd7a2c32cc04689472e0fd242814" - sha256 cellar: :any_skip_relocation, arm64_ventura: "2e920a7a087d08eb4d6ca2cac31d76cd6fb58c80963ab57122ad8d52ada50297" - sha256 cellar: :any_skip_relocation, sonoma: "14ad40cd3b56694a0d5c7e92f36845181e72b441eb74b5a9c45f9e866ce9d23b" - sha256 cellar: :any_skip_relocation, ventura: "ab69afdf569117b275de57d64ca9868e0bc3936cd63c27c41a2ed5d56b1c48c4" - sha256 cellar: :any_skip_relocation, arm64_linux: "2866c338b0bb74bda24fc2cf8f2d13e08206ea7774170034f6550cbfbd78b60b" - sha256 cellar: :any_skip_relocation, x86_64_linux: "08b04c023900e3b4c0ffe803f235ec36767df42df04e7298be959c09eb720efd" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "e0d75f921272eacd38d46c1699ab884958beb17cfd347c78e9cc0d9549c2ba0b" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "7d6c282c6318f06660cd1de6182d8d3c8467777f56264bc8d97eacac986b7dd3" + sha256 cellar: :any_skip_relocation, arm64_ventura: "a75d0b029b5406f364ebe59a34a7ab64f635c6090ef9db0134ad118f20708a67" + sha256 cellar: :any_skip_relocation, sonoma: "04608c7f42bd44ce0fa54da28fc4793d9fd1593ca806a7f4f02d56b740cfc988" + sha256 cellar: :any_skip_relocation, ventura: "3e0e298d5d55ca409c0b36838436e18baf6b9144823845b3a3fd71a2b3e69624" + sha256 cellar: :any_skip_relocation, arm64_linux: "53992fa491f6a7a582beeb66944db7057e7a338c59857b55e0f7e895fb52d44c" + sha256 cellar: :any_skip_relocation, x86_64_linux: "390dc990b4f6fdc4c4989cfb10093c8054902f47fc9521b7b9da127ac8ac1217" end depends_on "rust" => :build From 4b7e87d99ed426c09fab84a1c0b595eaed287095 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 14:22:08 +0000 Subject: [PATCH 0288/1364] nuclei 3.4.3 --- Formula/n/nuclei.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/n/nuclei.rb b/Formula/n/nuclei.rb index 663b33de30080..1ac868a2e6230 100644 --- a/Formula/n/nuclei.rb +++ b/Formula/n/nuclei.rb @@ -1,8 +1,8 @@ class Nuclei < Formula desc "HTTP/DNS scanner configurable via YAML templates" homepage "https://docs.projectdiscovery.io/tools/nuclei/overview" - url "https://github.com/projectdiscovery/nuclei/archive/refs/tags/v3.4.2.tar.gz" - sha256 "9c7188baa161430942a751f2c95fa1c557d1afa0846110a8dcc08167c97c8399" + url "https://github.com/projectdiscovery/nuclei/archive/refs/tags/v3.4.3.tar.gz" + sha256 "3db79d91ab3bf7df021224e193e36a32442232c2a861326bb50492893f3f4276" license "MIT" head "https://github.com/projectdiscovery/nuclei.git", branch: "master" From 23fce786c1465255cdf383db9e87cde6261c6ee7 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 14:22:54 +0000 Subject: [PATCH 0289/1364] oh-my-posh 25.21.1 --- Formula/o/oh-my-posh.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/o/oh-my-posh.rb b/Formula/o/oh-my-posh.rb index 69f0f65ef570b..52bad864fefbe 100644 --- a/Formula/o/oh-my-posh.rb +++ b/Formula/o/oh-my-posh.rb @@ -1,8 +1,8 @@ class OhMyPosh < Formula desc "Prompt theme engine for any shell" homepage "https://ohmyposh.dev" - url "https://github.com/JanDeDobbeleer/oh-my-posh/archive/refs/tags/v25.21.0.tar.gz" - sha256 "d0823a1f954805f2837a816792822758075782572f659c65da6f3c4b4e74064d" + url "https://github.com/JanDeDobbeleer/oh-my-posh/archive/refs/tags/v25.21.1.tar.gz" + sha256 "460e343b332747b7a5c258b3a787d522db4adfa9994fdc2c572fd9f74b3c2745" license "MIT" head "https://github.com/JanDeDobbeleer/oh-my-posh.git", branch: "main" From 63e594e2321684cabc102722189e83b81c5ce4f7 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 14:27:21 +0000 Subject: [PATCH 0290/1364] postgresql@14 14.18 --- Formula/p/postgresql@14.rb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Formula/p/postgresql@14.rb b/Formula/p/postgresql@14.rb index 19522314ae274..4b8ecdc5a6820 100644 --- a/Formula/p/postgresql@14.rb +++ b/Formula/p/postgresql@14.rb @@ -1,10 +1,9 @@ class PostgresqlAT14 < Formula desc "Object-relational database system" homepage "https://www.postgresql.org/" - url "https://ftp.postgresql.org/pub/source/v14.17/postgresql-14.17.tar.bz2" - sha256 "6ce0ccd6403bf7f0f2eddd333e2ee9ba02edfa977c66660ed9b4b1057e7630a1" + url "https://ftp.postgresql.org/pub/source/v14.18/postgresql-14.18.tar.bz2" + sha256 "83ab29d6bfc3dc58b2ed3c664114fdfbeb6a0450c4b8d7fa69aee91e3ca14f8e" license "PostgreSQL" - revision 1 livecheck do url "https://ftp.postgresql.org/pub/source/" From abc4fa48abc742c635d7de3092b214a97bf52ef7 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 14:27:33 +0000 Subject: [PATCH 0291/1364] postgresql@15 15.13 --- Formula/p/postgresql@15.rb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Formula/p/postgresql@15.rb b/Formula/p/postgresql@15.rb index f461a1fdfa39c..341133ab73b04 100644 --- a/Formula/p/postgresql@15.rb +++ b/Formula/p/postgresql@15.rb @@ -1,10 +1,9 @@ class PostgresqlAT15 < Formula desc "Object-relational database system" homepage "https://www.postgresql.org/" - url "https://ftp.postgresql.org/pub/source/v15.12/postgresql-15.12.tar.bz2" - sha256 "3bc8462a38ca0857270cc88b949a3f6659f0d5c44c029c482355835b61a0f6f7" + url "https://ftp.postgresql.org/pub/source/v15.13/postgresql-15.13.tar.bz2" + sha256 "4f62e133d22ea08a0401b0840920e26698644d01a80c34341fb732dd0a90ca5d" license "PostgreSQL" - revision 1 livecheck do url "https://ftp.postgresql.org/pub/source/" From 5b2a30e47edf8534e438135acaa9313f99618e89 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 14:27:44 +0000 Subject: [PATCH 0292/1364] postgresql@16 16.9 --- Formula/p/postgresql@16.rb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Formula/p/postgresql@16.rb b/Formula/p/postgresql@16.rb index 3cd9d4b741b33..73fe0e35943ec 100644 --- a/Formula/p/postgresql@16.rb +++ b/Formula/p/postgresql@16.rb @@ -1,10 +1,9 @@ class PostgresqlAT16 < Formula desc "Object-relational database system" homepage "https://www.postgresql.org/" - url "https://ftp.postgresql.org/pub/source/v16.8/postgresql-16.8.tar.bz2" - sha256 "9468083a56ce0ee7d294601b74dad3dd9fc69d87aff61f0a9fb63c813ff7efd8" + url "https://ftp.postgresql.org/pub/source/v16.9/postgresql-16.9.tar.bz2" + sha256 "07c00fb824df0a0c295f249f44691b86e3266753b380c96f633c3311e10bd005" license "PostgreSQL" - revision 1 livecheck do url "https://ftp.postgresql.org/pub/source/" From bc9e395b3c7642e206ca59fc8bfc36845ad86230 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 14:27:52 +0000 Subject: [PATCH 0293/1364] firebase-cli: update 14.3.0 bottle. --- Formula/f/firebase-cli.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/f/firebase-cli.rb b/Formula/f/firebase-cli.rb index 3e651bdd8f069..32aa8e834e7ae 100644 --- a/Formula/f/firebase-cli.rb +++ b/Formula/f/firebase-cli.rb @@ -7,13 +7,13 @@ class FirebaseCli < Formula head "https://github.com/firebase/firebase-tools.git", branch: "master" bottle do - sha256 arm64_sequoia: "2a3f2219175bc0e40c3367892ee6689baa50a83037fdf0c9e99d6665610442b6" - sha256 arm64_sonoma: "bf203d3ea282162ba10533e05554334a5bf13f93a8f0e58902f62c45555d4d23" - sha256 arm64_ventura: "bdf15eb630c5de33ec975eeb9964bf7c8d7c5562916c8bcf452de30d291d69ba" - sha256 sonoma: "6edf9ff456ff4e4d63ccadd25843672027dc1ef5dfaab04a5620a0c362944993" - sha256 ventura: "ee34b5a915c5da280365e7a7f362978c9f2dcf79f2f86af17cfd82d77c467c3d" - sha256 cellar: :any_skip_relocation, arm64_linux: "edfd1abb96c1cb8975a1600cc6fbb1df34f090f9a0b42d3071ff6197f99fd00f" - sha256 cellar: :any_skip_relocation, x86_64_linux: "1b3ebf7d3c0623c6a48acd17a5ed4516dfcdd2c3feb836f5a5011205355dd542" + sha256 arm64_sequoia: "b8e10a5cef55a5b20007fbdc422d550875019963d3d6569287663cc3a49e43a8" + sha256 arm64_sonoma: "aa21ef230938e420270e4b449a17f71966b8615c74c4d5a62313578e468839e6" + sha256 arm64_ventura: "f5c7d104c845c9440c5acfcc006657fb77058d967c365f1c62701cc76a2ee803" + sha256 sonoma: "c6d9f2791f44a17e2234bce88bd5dd01614427d6785952d971d77cda08e17966" + sha256 ventura: "1c2227460600cf490578210b00e03b71d3f25f96805943edbf675a1233d19ed7" + sha256 cellar: :any_skip_relocation, arm64_linux: "79b2cc3ba9cc58859597f43c6c0106d50bde5ecbbf716e522f3cd6c118d392aa" + sha256 cellar: :any_skip_relocation, x86_64_linux: "c2875e4edd3d8271e85d0c5c6920886b8e0b3e7365a9e761b0839113baa17066" end depends_on "node" From 4d29566632d7aead2444259acc3ed2eebfc5c81b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 14:29:12 +0000 Subject: [PATCH 0294/1364] pyenv 2.5.6 --- Formula/p/pyenv.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/p/pyenv.rb b/Formula/p/pyenv.rb index 6ba427584646d..b38997009a881 100644 --- a/Formula/p/pyenv.rb +++ b/Formula/p/pyenv.rb @@ -1,8 +1,8 @@ class Pyenv < Formula desc "Python version management" homepage "https://github.com/pyenv/pyenv" - url "https://github.com/pyenv/pyenv/archive/refs/tags/v2.5.5.tar.gz" - sha256 "f1992bb226b4b258ff1ce3168c0470f87a1affa5f796d820f5dfc3d20bd82008" + url "https://github.com/pyenv/pyenv/archive/refs/tags/v2.5.6.tar.gz" + sha256 "4844d4cf66aed4243201fc19680888d7e8b6d63bffa4f924665f5b5926370bb6" license "MIT" version_scheme 1 head "https://github.com/pyenv/pyenv.git", branch: "master" From 7a7bfeff180d488092806679d024a3ec9c77f49a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 14:33:09 +0000 Subject: [PATCH 0295/1364] scala@3.3 3.3.6 --- Formula/s/scala@3.3.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/s/scala@3.3.rb b/Formula/s/scala@3.3.rb index c2c1fe847dfc5..1c7a323c37185 100644 --- a/Formula/s/scala@3.3.rb +++ b/Formula/s/scala@3.3.rb @@ -1,8 +1,8 @@ class ScalaAT33 < Formula desc "JVM-based programming language" homepage "https://www.scala-lang.org/" - url "https://github.com/lampepfl/dotty/releases/download/3.3.5/scala3-3.3.5.tar.gz" - sha256 "255406d7a2f4ff745b6a125cf850f3ea96b34f26f9be7c6a3f8dbbda5d136a52" + url "https://github.com/lampepfl/dotty/releases/download/3.3.6/scala3-3.3.6.tar.gz" + sha256 "7267524240ee289976fed1b8bc08c0045d5d290d3faee07c6b7137a4252b5b97" license "Apache-2.0" livecheck do From 76a461f946fa5f1a83bc297384159dfac76f4d1c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 14:34:07 +0000 Subject: [PATCH 0296/1364] sentry-cli 2.45.0 --- Formula/s/sentry-cli.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/s/sentry-cli.rb b/Formula/s/sentry-cli.rb index 9613dedab164f..99a2dbaf5403b 100644 --- a/Formula/s/sentry-cli.rb +++ b/Formula/s/sentry-cli.rb @@ -1,8 +1,8 @@ class SentryCli < Formula desc "Command-line utility to interact with Sentry" homepage "https://docs.sentry.io/cli/" - url "https://github.com/getsentry/sentry-cli/archive/refs/tags/2.44.0.tar.gz" - sha256 "c671816898cde99ddbb9d09a47681b98d26f8adbe5cec63695edadcef4cd6b65" + url "https://github.com/getsentry/sentry-cli/archive/refs/tags/2.45.0.tar.gz" + sha256 "c83b42079e38d1a1fc9696adac278d36bc604c41d5fd5c2c1f7692729022ca51" license "BSD-3-Clause" head "https://github.com/getsentry/sentry-cli.git", branch: "master" From 9fbdf24d8091a1e8c80c9682d9b21b1d6081cb23 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 14:37:20 +0000 Subject: [PATCH 0297/1364] oh-my-posh: update 25.21.1 bottle. --- Formula/o/oh-my-posh.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/o/oh-my-posh.rb b/Formula/o/oh-my-posh.rb index 52bad864fefbe..f3974a0aca7ed 100644 --- a/Formula/o/oh-my-posh.rb +++ b/Formula/o/oh-my-posh.rb @@ -15,12 +15,12 @@ class OhMyPosh < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "0bd82a313d5245dc59687f4b5d97fdb07ada8c6a138a3a729168715f13ed8728" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "43823fcbb30e442fa79b1dfa30022499f616d1d38891fba9c0aa384553941f90" - sha256 cellar: :any_skip_relocation, arm64_ventura: "41cff0c873d8fd3a1363075e3fc9d39e80fc124211499aedab826187b2ee4d43" - sha256 cellar: :any_skip_relocation, sonoma: "f56fd37fd8c72815c2c1cb6109f6c768199140ef5bb02b3d982e9012b8bf93c5" - sha256 cellar: :any_skip_relocation, ventura: "11c4b02017383d9cc6f7067aeb82e275b1096bd9ecfdb0a15d9447f7d5645720" - sha256 cellar: :any_skip_relocation, x86_64_linux: "409cffe444dd54c1583812935e3d80293d998ed26cd6750bdc923886d81b2cc8" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "4c2b03a5bbcd392e78798507330ea9e1a878c8e910b813ac6baa5594eb3b6a30" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "5b0354f7491a0f979b1d4ab37068b7118021c071ab19b243a1954a262ea6e80c" + sha256 cellar: :any_skip_relocation, arm64_ventura: "d95d72d01a41bb25800d849bfd1ec7c2898ab023c2042028ee1f8eb476c3bc58" + sha256 cellar: :any_skip_relocation, sonoma: "d0303501a1da3996bcf78d3f76c286ebc40ef05eba2db88bf258efe411c746d0" + sha256 cellar: :any_skip_relocation, ventura: "c9df44aee0b0ab934a9bdb9a091ee4b8276e365dd6a5b0913df9aafdde7990b4" + sha256 cellar: :any_skip_relocation, x86_64_linux: "7c5624556a84edc845944d21d26e1129e7775e99414db16ea217d67c32599559" end depends_on "go" => :build From 2d7d7d1e1dcb0bb830d9733131df05ea4b536582 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 14:39:36 +0000 Subject: [PATCH 0298/1364] testkube 2.1.149 --- Formula/t/testkube.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/t/testkube.rb b/Formula/t/testkube.rb index c674ef6d0767c..055dfb3492dc0 100644 --- a/Formula/t/testkube.rb +++ b/Formula/t/testkube.rb @@ -1,8 +1,8 @@ class Testkube < Formula desc "Kubernetes-native framework for test definition and execution" homepage "https://testkube.io" - url "https://github.com/kubeshop/testkube/archive/refs/tags/v2.1.148.tar.gz" - sha256 "bdd1b73f914dfcd76e7bcd5c9e5103b3b8aec39da24f9c35b1b439b88dd1ba5f" + url "https://github.com/kubeshop/testkube/archive/refs/tags/v2.1.149.tar.gz" + sha256 "77f15cd228a75124601f5fd79c57177c647cf24fc1d084575a9a7da95b2e2b56" license "MIT" head "https://github.com/kubeshop/testkube.git", branch: "main" From 9d89c1d43e8af2f4aa9033fc613da36192d52573 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 14:40:18 +0000 Subject: [PATCH 0299/1364] llama.cpp: update 5310 bottle. --- Formula/l/llama.cpp.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/l/llama.cpp.rb b/Formula/l/llama.cpp.rb index 9fdb74c1c4f79..ab467b317b269 100644 --- a/Formula/l/llama.cpp.rb +++ b/Formula/l/llama.cpp.rb @@ -19,13 +19,13 @@ class LlamaCpp < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "7368c4e8b52d3270f47e8fc17888867f00b048dc827f8e09bfaa53283fed0328" - sha256 cellar: :any, arm64_sonoma: "20417d6945cf4c888666534e705a6faa1f31c703c45ed23423142b43425808b1" - sha256 cellar: :any, arm64_ventura: "b65b9e0bae0b7e07648cb87a609340fa391f4e62605858f953570ed6a73829ca" - sha256 cellar: :any, sonoma: "4db897edb1dc97f82eabc2beddcb230a5cc829f78a3077846a19c9ef242f7d90" - sha256 cellar: :any, ventura: "0f4560406a2e15bb81352257ef9702051a8c45ac0812cea619fc9d59a21e44c5" - sha256 cellar: :any_skip_relocation, arm64_linux: "dfee5f43a6e51fcf5543462560b7e29d8606260e09247a1ebef369ebec4ad7f0" - sha256 cellar: :any_skip_relocation, x86_64_linux: "16ae4d5c6499e0b1e0a2cf6098aa01c92a2a7bfa27cc0b7684c0419b18468ad5" + sha256 cellar: :any, arm64_sequoia: "7aa55b9a36d917a1f404a14b189dd66a23a0ad34060fa167654d5535cf992473" + sha256 cellar: :any, arm64_sonoma: "b71185dd3ca6a9f7819dfe94fecf591dc77813603d7145bae513e086d17ee001" + sha256 cellar: :any, arm64_ventura: "58d411d0a866073243a9cbec0c09a2c3f13edd1de775631a65948c26e65646b8" + sha256 cellar: :any, sonoma: "66400e7c354932ebd925781c04256d32d6c1927546ffc9fddb060800f847be91" + sha256 cellar: :any, ventura: "65eb29d108f7ba83df13563e1e1d3dbdd407cdd54ebb072995f8884dde7bd7e0" + sha256 cellar: :any_skip_relocation, arm64_linux: "e86717c62e9e564f3fc6f12f9238b7325a4e012053b6d1d950f0bc9b0e397f68" + sha256 cellar: :any_skip_relocation, x86_64_linux: "5fea6fe827d863cb9e42fc55b08aa6cba1473ad2a40338d81de6c91930511711" end depends_on "cmake" => :build From 324c0305e0ce2496c374ef657715b036513f145a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 14:40:43 +0000 Subject: [PATCH 0300/1364] nuclei: update 3.4.3 bottle. --- Formula/n/nuclei.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/n/nuclei.rb b/Formula/n/nuclei.rb index 1ac868a2e6230..9a6e64b6fb957 100644 --- a/Formula/n/nuclei.rb +++ b/Formula/n/nuclei.rb @@ -7,13 +7,13 @@ class Nuclei < Formula head "https://github.com/projectdiscovery/nuclei.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "9120748348497172bb5cd2f7f48ad3d57636d2065c1a0ffedf04d7d9e2224e69" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "4f9787db478e149a2da92bc8a59b89cb0294b00c3a235b45e7cc1f49a445b690" - sha256 cellar: :any_skip_relocation, arm64_ventura: "dc3c9d5f756f9779902851bf6289c48bb8d28cf75405bd232ba2af2fe80bb04e" - sha256 cellar: :any_skip_relocation, sonoma: "57e0be39abb3fa8be9aa0f63bb066a7dfb0478be7d601d35fe3a6b73a7f74f94" - sha256 cellar: :any_skip_relocation, ventura: "34bbefb9a45c131476c25162c22e32d304ba4602f4a56c1ee825dd88354b5bfc" - sha256 cellar: :any_skip_relocation, arm64_linux: "3e34ece3e574ab390912522e0b84d4f49570135ff61e719fe24c5bc3e50f5fb7" - sha256 cellar: :any_skip_relocation, x86_64_linux: "2cfffb8f5268e217f1f213835965e55d599962394390c0b18ea8a2af9e80c60c" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "5cf625e411928040cfe6e0d126911999d36f769e457e9e23c509386951555c46" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "b3b156c51f194b28785087cb77036ae78d4c23204cc83886e1e245ce69ebb659" + sha256 cellar: :any_skip_relocation, arm64_ventura: "4089527d55eda54f02d44d534639d09a8a01c5e1f73e059dfca3894691b3891a" + sha256 cellar: :any_skip_relocation, sonoma: "52448e747ba8fd12215fd8efcc4c927a4be08a821781f7e7aa923459f16f017d" + sha256 cellar: :any_skip_relocation, ventura: "736ae50afe2e7a953e6274536504d48a36ae64299a40da1b1f563088661c9cb8" + sha256 cellar: :any_skip_relocation, arm64_linux: "75427b9b57cff5d419b2924d92f3f930c0c5abeaf3e8838185e66b40a05e1f9c" + sha256 cellar: :any_skip_relocation, x86_64_linux: "a3b7ecd0307a71fcb4f43609e417b2d79a3c64444c82249cf49be5112b4b2be7" end depends_on "go" => :build From ec0dc4cb5b96ef8f89d74da333f6aa5f8457b933 Mon Sep 17 00:00:00 2001 From: Val V Date: Thu, 8 May 2025 15:06:17 +0000 Subject: [PATCH 0301/1364] hellwal 1.0.4 (new formula) --- .github/autobump.txt | 1 + Formula/h/hellwal.rb | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 Formula/h/hellwal.rb diff --git a/.github/autobump.txt b/.github/autobump.txt index df8c622fef60b..92793d6c1b423 100644 --- a/.github/autobump.txt +++ b/.github/autobump.txt @@ -1486,6 +1486,7 @@ hcxtools heartbeat hebcal helix +hellwal helm helm-docs helm-ls diff --git a/Formula/h/hellwal.rb b/Formula/h/hellwal.rb new file mode 100644 index 0000000000000..9cfa33f236f78 --- /dev/null +++ b/Formula/h/hellwal.rb @@ -0,0 +1,19 @@ +class Hellwal < Formula + desc "Fast, extensible color palette generator" + homepage "https://github.com/danihek/hellwal" + url "https://github.com/danihek/hellwal/archive/refs/tags/v1.0.4.tar.gz" + sha256 "a33d1c5257fe4b42e92cac7f055c6ed1a3e857fe52ab435924b316947d55e200" + license "MIT" + + def install + system "make", "install", "DESTDIR=#{bin}" + end + + test do + assert_match version.to_s, shell_output("#{bin}/hellwal --version") + + (testpath/"hw.theme").write "%% color0 = #282828 %%" + output = shell_output("#{bin}/hellwal --skip-term-colors -j -t hw.theme 2>&1", 1) + assert_match "Not enough colors were specified in color palette", output + end +end From b0e2d8d6e449e42422987dc30247d71706bab2a9 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 15:11:00 +0000 Subject: [PATCH 0302/1364] erlang: update 27.3.4 bottle. --- Formula/e/erlang.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/e/erlang.rb b/Formula/e/erlang.rb index a418ca11dbef0..2b77f15d1aeed 100644 --- a/Formula/e/erlang.rb +++ b/Formula/e/erlang.rb @@ -13,13 +13,13 @@ class Erlang < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "8bd70b0a9328fcb5b15add479433bb8deaab5b1a0d29ebd79365dbb6e853acd7" - sha256 cellar: :any, arm64_sonoma: "ba4c421908a83e6495580a35bbd7c1371769269c65b662fe6f6fa66b2c9a920c" - sha256 cellar: :any, arm64_ventura: "6edf286d236b89d4bd7b7fa17fc0b4bb976ab6680c4c42782441dcda7acface1" - sha256 cellar: :any, sonoma: "b3311193b014e793ee58557442199d09a241e9b474e95db57f9977884deed409" - sha256 cellar: :any, ventura: "31a107654fe8e21a23c8f5490b1d776f15e78b8c46713bbdbfee1d68d7ade916" - sha256 cellar: :any_skip_relocation, arm64_linux: "f502ae0c0b6890794b5931f6fbd93f46d77560a4348bd8e3461e0faa8acd8aa7" - sha256 cellar: :any_skip_relocation, x86_64_linux: "baa7bec4bd151269421a97f5bbc4fbd4e611cbeb6d04c3ec4267b73920761684" + sha256 cellar: :any, arm64_sequoia: "c282b2acb33d8ef35a1f7322f8c3cf374738cd43d8bd7b904137ed1b2ee2795a" + sha256 cellar: :any, arm64_sonoma: "0a35240133dcb957040563c3342615194b99a855ee96ee33b0b7544022c07d0f" + sha256 cellar: :any, arm64_ventura: "c5aa037e0a59f509217623181a6f57929d72efd97c4288183c7dc666833be29f" + sha256 cellar: :any, sonoma: "1b71512f81c9f847ec79c36b3cce8e15565f31eaf4cecd13aa83d27f491e81c5" + sha256 cellar: :any, ventura: "2270ebd56e665f7143efba419006863d41ee8da244c76804862d63b7fd6980ae" + sha256 cellar: :any_skip_relocation, arm64_linux: "55c9911fdf98df5f98dc5e2fc8e3dd0e6fa0f7cc10e040b0ee7cdec378984b44" + sha256 cellar: :any_skip_relocation, x86_64_linux: "084f695234e7baee4820a8b3d266fbbd29322be2368f52329c42939ebd3685ea" end head do From 45cd320c59c62472197e00cbd6dfd458be8466ff Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 15:17:46 +0000 Subject: [PATCH 0303/1364] pyenv: update 2.5.6 bottle. --- Formula/p/pyenv.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/p/pyenv.rb b/Formula/p/pyenv.rb index b38997009a881..7b79fdc1194fd 100644 --- a/Formula/p/pyenv.rb +++ b/Formula/p/pyenv.rb @@ -13,13 +13,13 @@ class Pyenv < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "a7e0676e9cba74afb89a5a889d04bc1c7ac53d483fda0c6425bbc509a14f70bd" - sha256 cellar: :any, arm64_sonoma: "b598fb34c36d9fb94907368058356bae7245d8520e4c9d71e49bd0c74ba50901" - sha256 cellar: :any, arm64_ventura: "04dc2b1d21bc276c449aa35a1dbc1bf5c11886739ccadb81859a667eea3c65c5" - sha256 cellar: :any, sonoma: "376a9629e0f43c99a75c0b9d2fb9485a3c1db5351a763cba1426db578fefbcb4" - sha256 cellar: :any, ventura: "f3b5db4266807afa0607a543adacfdbb2fd59193d756e3ac95d56518509a8a68" - sha256 cellar: :any_skip_relocation, arm64_linux: "fe33cc0c55d76d8b3b2b0af72839bc58421d5faaa6b49eb3fe83a1022c248332" - sha256 cellar: :any_skip_relocation, x86_64_linux: "b2ed6149d8940136492e34c4485bb687665607415d9c8b17b5f42f4721741511" + sha256 cellar: :any, arm64_sequoia: "1d654b3cfe26e5355d1f6cd547e26fcd567f9c035245a1c5066d9ff04ff12e47" + sha256 cellar: :any, arm64_sonoma: "378dc091255b9d589c79a217111d6d0a2c922284cbe8e7d81575b3add8129c55" + sha256 cellar: :any, arm64_ventura: "339619826129d8d04000eca3174c86ef1038db73f8edf4d3786a70e2ca3eb1f8" + sha256 cellar: :any, sonoma: "d092f48b7c0a0200c79c4e714ed3d3e50bb3503e7ab580136efc251c21a94c6a" + sha256 cellar: :any, ventura: "3977be932f4445e8d98d49f02d4cfe011b922dee3d62be84a924ed65eaed7530" + sha256 cellar: :any_skip_relocation, arm64_linux: "219c2c65107fe21e552390d777dfb0fec71855d66d4157aea0c63a155a1d91ef" + sha256 cellar: :any_skip_relocation, x86_64_linux: "ccc0042833ca4535475369ef88deccd35938ef876a8ad9668c8368dc0b8d4b81" end depends_on "autoconf" From dd254d1a82eb1dfbc19194f81e6f5347537c7d4b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 15:50:55 +0000 Subject: [PATCH 0304/1364] testkube: update 2.1.149 bottle. --- Formula/t/testkube.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/t/testkube.rb b/Formula/t/testkube.rb index 055dfb3492dc0..e839a92111d49 100644 --- a/Formula/t/testkube.rb +++ b/Formula/t/testkube.rb @@ -12,12 +12,12 @@ class Testkube < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "73839a7d72e0f0afc907793d6663ed3f3f36bf78485cc32272c995285a18f0f3" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "73839a7d72e0f0afc907793d6663ed3f3f36bf78485cc32272c995285a18f0f3" - sha256 cellar: :any_skip_relocation, arm64_ventura: "73839a7d72e0f0afc907793d6663ed3f3f36bf78485cc32272c995285a18f0f3" - sha256 cellar: :any_skip_relocation, sonoma: "88d460d0ab6091e89139b156f5e6c18f831058b6088a2fa21e8fc4b1d7716e41" - sha256 cellar: :any_skip_relocation, ventura: "88d460d0ab6091e89139b156f5e6c18f831058b6088a2fa21e8fc4b1d7716e41" - sha256 cellar: :any_skip_relocation, x86_64_linux: "f0e2e1e96a0b2a9ba324f806bf78f0898e9b3a91a198670d47a0c7c044ae42e9" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "0077f52b60be881eb5541f59ea22867feefd6ae3ad47d005f59e791bfdfbe250" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "0077f52b60be881eb5541f59ea22867feefd6ae3ad47d005f59e791bfdfbe250" + sha256 cellar: :any_skip_relocation, arm64_ventura: "0077f52b60be881eb5541f59ea22867feefd6ae3ad47d005f59e791bfdfbe250" + sha256 cellar: :any_skip_relocation, sonoma: "e8e1f9016062cc6c232d57ebd729703c4d613bad8f4c0b60a5af7fcea94f5e3a" + sha256 cellar: :any_skip_relocation, ventura: "e8e1f9016062cc6c232d57ebd729703c4d613bad8f4c0b60a5af7fcea94f5e3a" + sha256 cellar: :any_skip_relocation, x86_64_linux: "fd2eebc78497dbbb95df762aae5c02a63ffa5c14efd4f669892342a83cd5bda2" end depends_on "go" => :build From a6e4f4cfcc65ab2b651819d73ee6490f2eefa637 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 15:53:40 +0000 Subject: [PATCH 0305/1364] scala@3.3: update 3.3.6 bottle. --- Formula/s/scala@3.3.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/s/scala@3.3.rb b/Formula/s/scala@3.3.rb index 1c7a323c37185..76dd9a03fc88f 100644 --- a/Formula/s/scala@3.3.rb +++ b/Formula/s/scala@3.3.rb @@ -11,7 +11,7 @@ class ScalaAT33 < Formula end bottle do - sha256 cellar: :any_skip_relocation, all: "1a2e4b2b9fdb9230c5edc96c299874d294aa1bef01c2bc959c5f78d14b2b6866" + sha256 cellar: :any_skip_relocation, all: "c6ef17066454d96317b625b45b1dd2c61423f9a9f598469e157261f77e3f6c26" end keg_only :versioned_formula From 780999466df5dbab4e4d075de4cc96b5c44d56f4 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 16:03:06 +0000 Subject: [PATCH 0306/1364] sentry-cli: update 2.45.0 bottle. --- Formula/s/sentry-cli.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/s/sentry-cli.rb b/Formula/s/sentry-cli.rb index 99a2dbaf5403b..cdfa6599b2dce 100644 --- a/Formula/s/sentry-cli.rb +++ b/Formula/s/sentry-cli.rb @@ -7,13 +7,13 @@ class SentryCli < Formula head "https://github.com/getsentry/sentry-cli.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "341ef69b584b9bc77c50e668792ba3455a40856c427a7f7e137caa66b59f5230" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "83fe8b6d7f50cb3a67c2ebb8011afd2794206f8a5a91e519c0648d95bad0487e" - sha256 cellar: :any_skip_relocation, arm64_ventura: "e78000396606f226f6c5ca7e5373261120cedc0feca3050ba4786b4abdcc3339" - sha256 cellar: :any_skip_relocation, sonoma: "b38015f0681213a4ecbb0cea2d917a7b8595dc3561fe07aaa903a174d53dc069" - sha256 cellar: :any_skip_relocation, ventura: "a23b35f4dc5c6af6ecbcecccab576885220b69e23065c73f00bf4b270f49b9fa" - sha256 cellar: :any_skip_relocation, arm64_linux: "cc6c86bf38c9b646865ccaaaa368c02dbffc70c92e1dbeca814bf2c94fa664ff" - sha256 cellar: :any_skip_relocation, x86_64_linux: "c5ce3f6c9b38abe32707af36fb492e8f9359ee65ff3a274892bc99b738dbeea4" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "d0531da10742174f8fe4f361683388014af1cb3f385143cccceffed404c0624e" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "386f184952454934a6632022dc2be024b3421a6574ed8d1243441e2d5de884df" + sha256 cellar: :any_skip_relocation, arm64_ventura: "03192423b4aaf5243a965a85be32ddb7620bd94a04d4495296a10742a2aa6c77" + sha256 cellar: :any_skip_relocation, sonoma: "6e64b1cb0e39a166935fb012a15837a509894a3b493b518a84c320faab982437" + sha256 cellar: :any_skip_relocation, ventura: "def424a22fb4be0212fab93ae3f5e326b3277b4c1c6a51a5603bfcce7c083f0d" + sha256 cellar: :any_skip_relocation, arm64_linux: "ce2ab090c71ad89c209e98e5b997e1e43080219dec97aaa98322f445bc411813" + sha256 cellar: :any_skip_relocation, x86_64_linux: "16fe9a34b877aed1d123e4f750711312314019b61520da134ec4ef0e32a4efe8" end depends_on "pkgconf" => :build From 756f5b5a4a43b98e83242a8e5e82ef13489e4728 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 16:03:56 +0000 Subject: [PATCH 0307/1364] postgresql@16: update 16.9 bottle. --- Formula/p/postgresql@16.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/p/postgresql@16.rb b/Formula/p/postgresql@16.rb index 73fe0e35943ec..01097150268bf 100644 --- a/Formula/p/postgresql@16.rb +++ b/Formula/p/postgresql@16.rb @@ -11,13 +11,13 @@ class PostgresqlAT16 < Formula end bottle do - sha256 arm64_sequoia: "118c4647b3b1bd8a1c7db80afe105e6f86816031ca911d64157487e0b260c7e7" - sha256 arm64_sonoma: "91be6e232f5fd53345f69fd3882c648be85b0633b7a98b00982ae71220c78772" - sha256 arm64_ventura: "04a20a5b7ddf6b78991ff0845d3539a32de4480251f89a2c7b8dddf6db3b4c76" - sha256 sonoma: "c2c48dcce111d410a11410fc7235b400203d6ff08bc538e8b55cf084b5dee3a3" - sha256 ventura: "328699564084bf858fefb12d0748553b1da7ded27b9d99441f80a029ef495ddd" - sha256 arm64_linux: "8d33b672d518a04727a7e0a32fe806f49cbac3de05c061e4984363884ebb7fef" - sha256 x86_64_linux: "c8c0a6778b9786c1f8d3af09f49a368df4c77c8808dad64e2cd72b28c805f941" + sha256 arm64_sequoia: "8e883e6e9e7231d49b90965f42ebc53981efb02e6ed7fdcbd1ebfdc2bfb5959a" + sha256 arm64_sonoma: "1cb655cb347c5395da0b1b8de82e16dfd20f18f9833c1f9195b2f43a50f53908" + sha256 arm64_ventura: "6b979f6f6f69d679edead92cce444a040698dead47ce11042f032c4ed0f99bf5" + sha256 sonoma: "93db108d959400a8f55a1161c0b0ca78face7370e4e44c374c9d1819f8335487" + sha256 ventura: "4082217252ea7be1c2cb20851ce039e72a7c0a6835d7bdc5ad88650bdbc8b113" + sha256 arm64_linux: "f5192ae99aa883cb0a1f5806af14ac45c0d10d3592c455c2e1e820244d02bcc7" + sha256 x86_64_linux: "0f3b5ffbb0a01071af4e4e565de8125894c621d8087781cc63442f3fa3f7902e" end keg_only :versioned_formula From 629f231e65306bc4a3d5b0f1065a9be14287f0a5 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 16:04:46 +0000 Subject: [PATCH 0308/1364] postgresql@15: update 15.13 bottle. --- Formula/p/postgresql@15.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/p/postgresql@15.rb b/Formula/p/postgresql@15.rb index 341133ab73b04..4e1bf33b120b1 100644 --- a/Formula/p/postgresql@15.rb +++ b/Formula/p/postgresql@15.rb @@ -11,13 +11,13 @@ class PostgresqlAT15 < Formula end bottle do - sha256 arm64_sequoia: "ddc34ce1bf206be1c5947710b07d02e8f5fc2f56ee2a90eba8949762e2a3ef62" - sha256 arm64_sonoma: "efb87d4ec805b61bcdf2ad0c015bf92239f60236c2e91e39228ceed8e7ca92cc" - sha256 arm64_ventura: "30d50e41a5801ac72e86b05a855e41c98fb9dfa5461915bf4aa75c618607db8a" - sha256 sonoma: "22f838d3307a505a92f5ae33dfc8e0734e6634578d5ab5842f3304d555255a1a" - sha256 ventura: "f3486550704b545e65acdfc13e0cdae3a84040ccebc27029a95b956c1ba5be93" - sha256 arm64_linux: "21c50e8f8adc48fbb9638cbb8fc75cd052491d36f5e903496fa39180137444bc" - sha256 x86_64_linux: "6c544d13cbeb1af0332c5c078f6e030b8b2f2035ee470912f32280a99eb362bc" + sha256 arm64_sequoia: "ddd77e338e6b7f83158fe3ec5d4686d8b78842f296d69be34d1dc3d4bac7fa00" + sha256 arm64_sonoma: "db6b10d1c052bc1e3e82ec85ba946e01377aa4196498d7693b8464f3db2270c3" + sha256 arm64_ventura: "efc10abdc19b004468c6b44bc77e19a8ecc1510f46dcd15aad79cf3cea2353f9" + sha256 sonoma: "c86e24f88411a288fe9f44ab54d97542de4a9ca4c959adec7feb7c4422e1aa87" + sha256 ventura: "04cae6d17b914018b6bd0435b51fcb8d3dbe4dd4d47107de196a0cf1ac6a092f" + sha256 arm64_linux: "1f0e609f516fa3824cfc2e4f7e2834e2c3c96ce13b19f67842580b9364f30ef5" + sha256 x86_64_linux: "fcb0a5332f255ed90bcd91338914a42e560689260427bd993e0ad8674a04e02b" end keg_only :versioned_formula From 7d0b9901fe4511fdb78959a44f3fa75e8a36db35 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 16:05:10 +0000 Subject: [PATCH 0309/1364] postgresql@14: update 14.18 bottle. --- Formula/p/postgresql@14.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/p/postgresql@14.rb b/Formula/p/postgresql@14.rb index 4b8ecdc5a6820..218a967f298d4 100644 --- a/Formula/p/postgresql@14.rb +++ b/Formula/p/postgresql@14.rb @@ -11,13 +11,13 @@ class PostgresqlAT14 < Formula end bottle do - sha256 arm64_sequoia: "88d837ae15b1d87e93770700c1616dcaf98ada1547f5d877bd701a9ba3632dfb" - sha256 arm64_sonoma: "2a70ffcb5f8d18aa61c7c5974db741fdbb6c099feff27098e575c6c8953e9186" - sha256 arm64_ventura: "46fe2d7204221525795de6c47429f5faf6c4afb53633918e7e407e563f186a3b" - sha256 sonoma: "a44badaa8944f58f4e2637e011af7247a18f4dd056e1c6b057f97b2d23ff3ad6" - sha256 ventura: "590ce4ed9f348abc6ab012dd636f59041e472afb110ee5e64e99c68f680d5029" - sha256 arm64_linux: "a2be9241e00df2b9c24f751007cc31e919a40e766ce9c8b1902b10123d26cdcb" - sha256 x86_64_linux: "3debb0cd234c156ed0fd93695cdc54ee87041b8a10bd26f80502e661e27a76ed" + sha256 arm64_sequoia: "9cdd37849beb706374d3ab14ebbbe24faae4d1a5d522e003b1404c705b7e0ffd" + sha256 arm64_sonoma: "40b6d7576b8833748a3664fb43d67d8c0bffe68f21a5cdbb219109b20e111115" + sha256 arm64_ventura: "34aba0f06f3d43762f477927a514d372459f88c2175a7c0e740b3e1baf621247" + sha256 sonoma: "fae9107044e20a44a7169eedf090cc6482cb01f262aee7cd574ce4ee62039fc9" + sha256 ventura: "3422679db5af8c0495cc7ac5e4378f62190b7531d48962d7b9708210fda41889" + sha256 arm64_linux: "3ae3bef2cf0f72b4e8b46bc59515df03a322a746cd067d69a745b3aee8589cc3" + sha256 x86_64_linux: "9e83804e685fafcacecb289b580985ead1996e08db17bb7c6838cf9176bb8cdb" end # https://www.postgresql.org/support/versioning/ From 1ab8e7f29a57daf43f776918ce7b17fcf18626f5 Mon Sep 17 00:00:00 2001 From: Daeho Ro <40587651+daeho-ro@users.noreply.github.com> Date: Thu, 8 May 2025 16:22:43 +0000 Subject: [PATCH 0310/1364] abseil: update 20240722.1 bottle. --- Formula/a/abseil.rb | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Formula/a/abseil.rb b/Formula/a/abseil.rb index 852b485a24721..fd73e5ab7c7f9 100644 --- a/Formula/a/abseil.rb +++ b/Formula/a/abseil.rb @@ -7,13 +7,14 @@ class Abseil < Formula head "https://github.com/abseil/abseil-cpp.git", branch: "master" bottle do - sha256 cellar: :any, arm64_sequoia: "be7b3373c56a0e1ee2c0c2e85ee4d17e2105ac1d9d6d63011da28d636fec7424" - sha256 cellar: :any, arm64_sonoma: "595c40777cd92592402192786840521dc52fd5fdf45696faafb1147e30faa70a" - sha256 cellar: :any, arm64_ventura: "ab5bb6d11867d0aa667462da453032971ce38ce880c4922cd879adda2de37bda" - sha256 cellar: :any, sonoma: "6e47e3012f074e9248dd0dcea675108c13cb7f2e5a179cec7ae53a9e4fbbcd15" - sha256 cellar: :any, ventura: "cccbbd0ba628e1207d30ec33a24f93a3326b01770c5187725a90602c6ce97f34" - sha256 cellar: :any_skip_relocation, arm64_linux: "de8a488dfc0e7b19dd651de54b5646731d80141120c3c29267d1402e65a50ade" - sha256 cellar: :any_skip_relocation, x86_64_linux: "17fc2037e8cc64c28b77e0a03546ac1c80ae7cc6fd6748386d60cd61e117cca2" + rebuild 1 + sha256 arm64_sequoia: "7e5a0a8ef391c005cb154d461e76ee997ad0d3c0176f09757d85027c01a14392" + sha256 arm64_sonoma: "77fe46423b43ca37df6acc3867c4c1206b2afd28ff511aab7a3d70515ce70856" + sha256 arm64_ventura: "bdcb35636c6cd1c570a15a15dedf77e2e671945d55e28fcba50e2c62bf67a410" + sha256 cellar: :any, sonoma: "f59d69e8c777caaa48de0e78bd35d7437c3848be3c85952684075bfb6df10312" + sha256 cellar: :any, ventura: "a534872a681524cd15c94713f9f2fa3ee48d71e585cdb1cb7b11c677607c62b8" + sha256 cellar: :any_skip_relocation, arm64_linux: "700f81a3eb4942d1f8e87feabb6cbb5655d07fcc86efea65e514cc9d2865eb47" + sha256 cellar: :any_skip_relocation, x86_64_linux: "4ffaa8c163b9b3ee6de502d076c148e0f64395f4d30e3eccbb0bb4d6f3c44400" end depends_on "cmake" => [:build, :test] From 488e92b8bce1283a8683580faadbe4a5235d9611 Mon Sep 17 00:00:00 2001 From: Daeho Ro <40587651+daeho-ro@users.noreply.github.com> Date: Thu, 8 May 2025 16:23:27 +0000 Subject: [PATCH 0311/1364] c-ares: update 1.34.5 bottle. --- Formula/c/c-ares.rb | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Formula/c/c-ares.rb b/Formula/c/c-ares.rb index b5e1b26d7e041..bbc86eb5adbb6 100644 --- a/Formula/c/c-ares.rb +++ b/Formula/c/c-ares.rb @@ -12,13 +12,14 @@ class CAres < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "d56159131f89594ce18c3ec3c265c35781e7e516386dbc09cc19a670605b2eba" - sha256 cellar: :any, arm64_sonoma: "c818b5a4764a180d560d9a2779d47d62b670e260c6ce5ccb4ee64adad5d390b7" - sha256 cellar: :any, arm64_ventura: "c4dbf7885c5777eab9778525bfa89d3b986f271d8a3dccdd36ff984f7d8a7419" - sha256 cellar: :any, sonoma: "69b294fd3ab99c2aa60d1ba250c31f2333e387c64c78ba121a38c0650270724f" - sha256 cellar: :any, ventura: "f2696223ed541d7ace19e23eb481cb82f780673c9af55335a6848ec69a9f2031" - sha256 cellar: :any_skip_relocation, arm64_linux: "35861d964b56f5e2d8174d62f6a051e9e6a503edb9b9560b390a6ade6b8e4f60" - sha256 cellar: :any_skip_relocation, x86_64_linux: "715fad4abf9f1202a1f5da39a69e73adb2bdd994101b84c16e060651340aaab4" + rebuild 1 + sha256 cellar: :any, arm64_sequoia: "76858a7f6dd6df68f7e9d13aca30a299d5947b5b6d6ce979ee660dd4ecca2bb6" + sha256 cellar: :any, arm64_sonoma: "5bc958432063e6dc18633d06f1ef2a6939c60bfc60d3d9162183c71556e21198" + sha256 cellar: :any, arm64_ventura: "60dcb45f4148187db1aa35a2ea1fd195126448b0c013fb04ec2412788c09156a" + sha256 cellar: :any, sonoma: "c152939c8cbf3784c07d1c335fa4d8a279926613ef8a63fd8b86ce0c9fc2c1ce" + sha256 cellar: :any, ventura: "ec24a40eb0839a531fefd518d459d9096594c8d5f99073cb14dd90818aac1443" + sha256 cellar: :any_skip_relocation, arm64_linux: "7edb30f8604f12af709a3edd142cd1e4e0fa6d6ac9592ccd81687dac5344400a" + sha256 cellar: :any_skip_relocation, x86_64_linux: "222c77a232de91b511238cf81f3290b5e5f7d788f7011a447ad92ae38089fa72" end depends_on "cmake" => :build From 79617da1e252bb7742f81a32cc5f7b4e45a1f408 Mon Sep 17 00:00:00 2001 From: Daeho Ro Date: Fri, 9 May 2025 01:25:03 +0900 Subject: [PATCH 0312/1364] subversion: revision bump (perl 5.40.2) --- Formula/s/subversion.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/s/subversion.rb b/Formula/s/subversion.rb index 1a83d95fc6803..776247bfa16e2 100644 --- a/Formula/s/subversion.rb +++ b/Formula/s/subversion.rb @@ -2,7 +2,7 @@ class Subversion < Formula desc "Version control system designed to be a better CVS" homepage "https://subversion.apache.org/" license "Apache-2.0" - revision 1 + revision 2 stable do url "https://www.apache.org/dyn/closer.lua?path=subversion/subversion-1.14.5.tar.bz2" From 2013e467e7a93517466099ff77e63c522a1984bb Mon Sep 17 00:00:00 2001 From: Daeho Ro Date: Fri, 9 May 2025 01:51:52 +0900 Subject: [PATCH 0313/1364] git-svn: revision bump (perl 5.40.2) --- Formula/g/git-svn.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/g/git-svn.rb b/Formula/g/git-svn.rb index 37d7d81216861..0393b73e19246 100644 --- a/Formula/g/git-svn.rb +++ b/Formula/g/git-svn.rb @@ -4,6 +4,7 @@ class GitSvn < Formula url "https://mirrors.edge.kernel.org/pub/software/scm/git/git-2.49.0.tar.xz" sha256 "618190cf590b7e9f6c11f91f23b1d267cd98c3ab33b850416d8758f8b5a85628" license "GPL-2.0-only" + revision 1 head "https://github.com/git/git.git", branch: "master" livecheck do From c82713c9d5085ea07cc9e735cab529aaeae418e5 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 16:58:29 +0000 Subject: [PATCH 0314/1364] circleci 0.1.31687 --- Formula/c/circleci.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/circleci.rb b/Formula/c/circleci.rb index e8bfc9430ec50..2318ee0575265 100644 --- a/Formula/c/circleci.rb +++ b/Formula/c/circleci.rb @@ -3,8 +3,8 @@ class Circleci < Formula homepage "https://circleci.com/docs/2.0/local-cli/" # Updates should be pushed no more frequently than once per week. url "https://github.com/CircleCI-Public/circleci-cli.git", - tag: "v0.1.31632", - revision: "d2e8a9679630e47ab673a36d62946e4204e5ae4c" + tag: "v0.1.31687", + revision: "83b96d30cb8e66c3c57539b7cbaf4ae6fe6d6760" license "MIT" head "https://github.com/CircleCI-Public/circleci-cli.git", branch: "main" From 37dd28099cc3975ddc4b0083815e715506b4155c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 16:58:52 +0000 Subject: [PATCH 0315/1364] clickhouse-sql-parser 0.4.9 --- Formula/c/clickhouse-sql-parser.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/clickhouse-sql-parser.rb b/Formula/c/clickhouse-sql-parser.rb index 99f693eb1a25e..9d19a8dea5e14 100644 --- a/Formula/c/clickhouse-sql-parser.rb +++ b/Formula/c/clickhouse-sql-parser.rb @@ -1,8 +1,8 @@ class ClickhouseSqlParser < Formula desc "Writing clickhouse sql parser in pure Go" homepage "https://github.com/AfterShip/clickhouse-sql-parser" - url "https://github.com/AfterShip/clickhouse-sql-parser/archive/refs/tags/v0.4.8.tar.gz" - sha256 "227b6f461fe23105bb34c4408808cf92f9706d814b06e2943c0840c04ca3e36f" + url "https://github.com/AfterShip/clickhouse-sql-parser/archive/refs/tags/v0.4.9.tar.gz" + sha256 "4432b7d415c21249df05909c5f682dc503233aff78550c83c0ce64ccd0ae9afd" license "MIT" head "https://github.com/AfterShip/clickhouse-sql-parser.git", branch: "master" From 775069d3076771d8149dd5e9151d7619ed5594cf Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 16:59:45 +0000 Subject: [PATCH 0316/1364] codesnap 0.12.4 --- Formula/c/codesnap.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/codesnap.rb b/Formula/c/codesnap.rb index 7efa09e2fbc45..bf9f2d0b65ffa 100644 --- a/Formula/c/codesnap.rb +++ b/Formula/c/codesnap.rb @@ -1,8 +1,8 @@ class Codesnap < Formula desc "Generates code snapshots in various formats" homepage "https://github.com/codesnap-rs/codesnap" - url "https://github.com/codesnap-rs/codesnap/archive/refs/tags/v0.12.3.tar.gz" - sha256 "4f0fb830cea43c197530f82896908646b389d2b9d5a6cdab8a344241ca6a79e7" + url "https://github.com/codesnap-rs/codesnap/archive/refs/tags/v0.12.4.tar.gz" + sha256 "33ef4168ce1aa589b6f1454242fa079bb8f69fabc7baf58313064c6554608438" license "MIT" head "https://github.com/codesnap-rs/codesnap.git", branch: "main" From 21b143da6e680bfcf0b204a976e6eeddbf392fd3 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 17:00:50 +0000 Subject: [PATCH 0317/1364] cromwell 89 --- Formula/c/cromwell.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Formula/c/cromwell.rb b/Formula/c/cromwell.rb index 0605338950aa6..cc707e08861b6 100644 --- a/Formula/c/cromwell.rb +++ b/Formula/c/cromwell.rb @@ -1,8 +1,8 @@ class Cromwell < Formula desc "Workflow Execution Engine using Workflow Description Language" homepage "https://github.com/broadinstitute/cromwell" - url "https://github.com/broadinstitute/cromwell/releases/download/88/cromwell-88.jar" - sha256 "858439cb824753ff25b547acf245f13f5392d39644eddcc05994859002515da7" + url "https://github.com/broadinstitute/cromwell/releases/download/89/cromwell-89.jar" + sha256 "afc761fc05b31a63a1157d112c64db77222aa2397dfd2f6c974dc44db689090d" license "BSD-3-Clause" bottle do @@ -17,8 +17,8 @@ class Cromwell < Formula depends_on "openjdk" resource "womtool" do - url "https://github.com/broadinstitute/cromwell/releases/download/88/womtool-88.jar" - sha256 "c5a077b5b6106f641606caf6c6bcf78b2f8ec89159bf557ff57030aa70fb0b1f" + url "https://github.com/broadinstitute/cromwell/releases/download/89/womtool-89.jar" + sha256 "beece815cbc7ddb48c49ef4511e1e794d6d2f3cb933f29265708a5c61c87fb4e" livecheck do formula :parent From e4b6342eabe9dbad97fdce907c69b9049e66ea11 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 17:05:06 +0000 Subject: [PATCH 0318/1364] erlang@25 25.3.2.21 --- Formula/e/erlang@25.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Formula/e/erlang@25.rb b/Formula/e/erlang@25.rb index e368177a9e320..5a5ec53bc369d 100644 --- a/Formula/e/erlang@25.rb +++ b/Formula/e/erlang@25.rb @@ -2,8 +2,8 @@ class ErlangAT25 < Formula desc "Programming language for highly scalable real-time systems" homepage "https://www.erlang.org/" # Download tarball from GitHub; it is served faster than the official tarball. - url "https://github.com/erlang/otp/releases/download/OTP-25.3.2.20/otp_src_25.3.2.20.tar.gz" - sha256 "9dda848291428c02d8373f32da5dabf7c1a1478d9cba268fa85475eb26371fe7" + url "https://github.com/erlang/otp/releases/download/OTP-25.3.2.21/otp_src_25.3.2.21.tar.gz" + sha256 "99296fcd97a2053c5fcde7dc0ded2ba261a3baf1491c745fca71bd9804d51443" license "Apache-2.0" livecheck do @@ -36,8 +36,8 @@ class ErlangAT25 < Formula end resource "html" do - url "https://github.com/erlang/otp/releases/download/OTP-25.3.2.20/otp_doc_html_25.3.2.20.tar.gz" - sha256 "8ff5f2159fed059fbc7addce7b18f83b5e43d77f4a74b4dbb1f0f9c26a5c4ccc" + url "https://github.com/erlang/otp/releases/download/OTP-25.3.2.21/otp_doc_html_25.3.2.21.tar.gz" + sha256 "686fde552fec0cac7a4a100320a1dc82b15e57c663c3c726b3f292f2abfd7e18" livecheck do formula :parent From 874ab165d5b74c3e1dbc76caa63b6f966555ea8e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 17:05:19 +0000 Subject: [PATCH 0319/1364] erlang@26 26.2.5.12 --- Formula/e/erlang@26.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Formula/e/erlang@26.rb b/Formula/e/erlang@26.rb index b0259213e20c6..d071316ff2df8 100644 --- a/Formula/e/erlang@26.rb +++ b/Formula/e/erlang@26.rb @@ -3,8 +3,8 @@ class ErlangAT26 < Formula homepage "https://www.erlang.org/" # Download tarball from GitHub; it is served faster than the official tarball. # Don't forget to update the documentation resource along with the url! - url "https://github.com/erlang/otp/releases/download/OTP-26.2.5.11/otp_src_26.2.5.11.tar.gz" - sha256 "69cf6c2cc4e54e8d0bab8f9893f0b61dee10bff575c3535d47b6057a468751b1" + url "https://github.com/erlang/otp/releases/download/OTP-26.2.5.12/otp_src_26.2.5.12.tar.gz" + sha256 "5738e05890777716d3f38863aab391988f62529bba7a6299f39d14bc45410412" license "Apache-2.0" livecheck do @@ -37,8 +37,8 @@ class ErlangAT26 < Formula end resource "html" do - url "https://github.com/erlang/otp/releases/download/OTP-26.2.5.11/otp_doc_html_26.2.5.11.tar.gz" - sha256 "b84425b7ad8e33a99f17d17a123eefd34b2407bd024f5600c1c7da0bbb7223d9" + url "https://github.com/erlang/otp/releases/download/OTP-26.2.5.12/otp_doc_html_26.2.5.12.tar.gz" + sha256 "880ea28f0c257c214ed5dc43fc436917c54eebbf09ecabd0aa8735e5e1b63431" livecheck do formula :parent From a3d41653e66b010340d2bfbf2504fa29d7abc29c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 17:06:29 +0000 Subject: [PATCH 0320/1364] fern-api 0.60.22 --- Formula/f/fern-api.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/f/fern-api.rb b/Formula/f/fern-api.rb index 066f306939728..7eba5c25eb06f 100644 --- a/Formula/f/fern-api.rb +++ b/Formula/f/fern-api.rb @@ -1,8 +1,8 @@ class FernApi < Formula desc "Stripe-level SDKs and Docs for your API" homepage "https://buildwithfern.com/" - url "https://registry.npmjs.org/fern-api/-/fern-api-0.60.21.tgz" - sha256 "953cc6c35cf899f9b76b8928a9667a6da64d7d97f427af962c1186a2097c2035" + url "https://registry.npmjs.org/fern-api/-/fern-api-0.60.22.tgz" + sha256 "febf95d1a40d9335505f7db3b67d0d669a4f1394b73843b2b5fc7097fa5b1fb7" license "Apache-2.0" head "https://github.com/fern-api/fern.git", branch: "main" From 51081c5d7c91943743fb2ee1f2ad70e012ee68f7 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 17:15:33 +0000 Subject: [PATCH 0321/1364] kin 2.1.14 --- Formula/k/kin.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/k/kin.rb b/Formula/k/kin.rb index 5450000e689f2..7853d7bd2e0b6 100644 --- a/Formula/k/kin.rb +++ b/Formula/k/kin.rb @@ -3,8 +3,8 @@ class Kin < Formula desc "Sane PBXProj files" homepage "https://github.com/Serchinastico/Kin" - url "https://files.pythonhosted.org/packages/ad/d4/4013f41b82c183d720f9083994c9f341236f790343f6bc8d879ec6d8921c/kin-2.1.13.tar.gz" - sha256 "89f3af51edd19a7d3c30dc179974446b714895d99bef2c8d0645eb946ec35570" + url "https://files.pythonhosted.org/packages/71/8c/f3916cf3cbc3785ebca47506d50e3b586516f58331832682035a4e23f18c/kin-2.1.14.tar.gz" + sha256 "de2c22863a2a5e6eedbe88dc351b913b7666b16528020e6178a72f1e85e1b2d9" license "Apache-2.0" head "https://github.com/Serchinastico/Kin.git", branch: "main" From 7b7ab1e98a22a5971f020404a8218baa79996547 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 17:19:20 +0000 Subject: [PATCH 0322/1364] libpq 17.5 --- Formula/lib/libpq.rb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Formula/lib/libpq.rb b/Formula/lib/libpq.rb index 7cd6d1bac0903..254eaaaf2275e 100644 --- a/Formula/lib/libpq.rb +++ b/Formula/lib/libpq.rb @@ -1,10 +1,9 @@ class Libpq < Formula desc "Postgres C API library" homepage "https://www.postgresql.org/docs/current/libpq.html" - url "https://ftp.postgresql.org/pub/source/v17.4/postgresql-17.4.tar.bz2" - sha256 "c4605b73fea11963406699f949b966e5d173a7ee0ccaef8938dec0ca8a995fe7" + url "https://ftp.postgresql.org/pub/source/v17.5/postgresql-17.5.tar.bz2" + sha256 "fcb7ab38e23b264d1902cb25e6adafb4525a6ebcbd015434aeef9eda80f528d8" license "PostgreSQL" - revision 1 livecheck do url "https://ftp.postgresql.org/pub/source/" From 1cd9752ca084c1d8a9619faebc5a57e7ecc3d11d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 17:20:59 +0000 Subject: [PATCH 0323/1364] linode-cli 5.57.1 --- Formula/l/linode-cli.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Formula/l/linode-cli.rb b/Formula/l/linode-cli.rb index c4bdd071b227f..4c06e996e6b37 100644 --- a/Formula/l/linode-cli.rb +++ b/Formula/l/linode-cli.rb @@ -3,8 +3,8 @@ class LinodeCli < Formula desc "CLI for the Linode API" homepage "https://github.com/linode/linode-cli" - url "https://files.pythonhosted.org/packages/b8/36/48895e350da98605a6364a4b15d8ab3796399f1d203dcc40c008d4cc6e25/linode_cli-5.57.0.tar.gz" - sha256 "f086867b54b3310ae90cd160912456d7f07e4800a3a57f58592148ced271ed33" + url "https://files.pythonhosted.org/packages/4c/b8/f65c0d0c578fc5c7e0fa85aa62c5da6fb60ecc661d54672b72c01602df26/linode_cli-5.57.1.tar.gz" + sha256 "ed5a338ca8c1a0db36710d04f169d6563f3359d6f728796c70852d71ce0fbe8e" license "BSD-3-Clause" head "https://github.com/linode/linode-cli.git", branch: "main" @@ -28,8 +28,8 @@ class LinodeCli < Formula end resource "charset-normalizer" do - url "https://files.pythonhosted.org/packages/16/b0/572805e227f01586461c80e0fd25d65a2115599cc9dad142fee4b747c357/charset_normalizer-3.4.1.tar.gz" - sha256 "44251f18cd68a75b56585dd00dae26183e102cd5e0f9f1466e6df5da2ed64ea3" + url "https://files.pythonhosted.org/packages/e4/33/89c2ced2b67d1c2a61c19c6751aa8902d46ce3dacb23600a283619f5a12d/charset_normalizer-3.4.2.tar.gz" + sha256 "5baececa9ecba31eff645232d59845c07aa030f0c81ee70184a90d35099a0e63" end resource "h11" do From 70466e32c665838391e62f8c388137cc6bc7fea7 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 17:23:55 +0000 Subject: [PATCH 0324/1364] monit 5.35.2 --- Formula/m/monit.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/m/monit.rb b/Formula/m/monit.rb index 620567343b9ee..cdbe746d8ed5b 100644 --- a/Formula/m/monit.rb +++ b/Formula/m/monit.rb @@ -1,8 +1,8 @@ class Monit < Formula desc "Manage and monitor processes, files, directories, and devices" homepage "https://mmonit.com/monit/" - url "https://mmonit.com/monit/dist/monit-5.35.1.tar.gz" - sha256 "77a4c023ee06aeed48536dfeb49d96a868a9eb8106c3e2e88cab537bbc72951b" + url "https://mmonit.com/monit/dist/monit-5.35.2.tar.gz" + sha256 "4dfef54329e63d9772a9e1c36ac99bc41173b79963dc0d8235f2c32f4b9e078f" license "AGPL-3.0-or-later" livecheck do From 90f9bd8a62f82bdc092831154a0d41cdb86dc019 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 17:25:31 +0000 Subject: [PATCH 0325/1364] netdata 2.5.1 --- Formula/n/netdata.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/n/netdata.rb b/Formula/n/netdata.rb index 33434e99db02d..9304954ce1c52 100644 --- a/Formula/n/netdata.rb +++ b/Formula/n/netdata.rb @@ -1,8 +1,8 @@ class Netdata < Formula desc "Diagnose infrastructure problems with metrics, visualizations & alarms" homepage "https://www.netdata.cloud/" - url "https://github.com/netdata/netdata/releases/download/v2.5.0/netdata-v2.5.0.tar.gz" - sha256 "eb98dfe1aad6a97b48976c1888ec07adb5a26eb316e2e12d0d0efb928a801340" + url "https://github.com/netdata/netdata/releases/download/v2.5.1/netdata-v2.5.1.tar.gz" + sha256 "d61f641433e60b2046ba1b25b1f789637d4e763bef2d1644dfb1aa38b962ef8e" license "GPL-3.0-or-later" livecheck do From 8dcf3402900c9ed0b8bd45526fcd2f9b89c7bd64 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 17:29:44 +0000 Subject: [PATCH 0326/1364] php 8.4.7 --- Formula/p/php.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Formula/p/php.rb b/Formula/p/php.rb index 1c03e16a99d5b..d15827e4bd70f 100644 --- a/Formula/p/php.rb +++ b/Formula/p/php.rb @@ -2,9 +2,9 @@ class Php < Formula desc "General-purpose scripting language" homepage "https://www.php.net/" # Should only be updated if the new version is announced on the homepage, https://www.php.net/ - url "https://www.php.net/distributions/php-8.4.6.tar.xz" - mirror "https://fossies.org/linux/www/php-8.4.6.tar.xz" - sha256 "089b08a5efef02313483325f3bacd8c4fe311cf1e1e56749d5cc7d059e225631" + url "https://www.php.net/distributions/php-8.4.7.tar.xz" + mirror "https://fossies.org/linux/www/php-8.4.7.tar.xz" + sha256 "e29f4c23be2816ed005aa3f06bbb8eae0f22cc133863862e893515fc841e65e3" license "PHP-3.01" livecheck do From eccb10e88eed4fd8f7ce30d623eb7a79944a422b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 17:30:27 +0000 Subject: [PATCH 0327/1364] pluto 5.21.6 --- Formula/p/pluto.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/p/pluto.rb b/Formula/p/pluto.rb index 394ae264ffef1..d0e7c84435c6d 100644 --- a/Formula/p/pluto.rb +++ b/Formula/p/pluto.rb @@ -1,8 +1,8 @@ class Pluto < Formula desc "CLI tool to help discover deprecated apiVersions in Kubernetes" homepage "https://fairwinds.com" - url "https://github.com/FairwindsOps/pluto/archive/refs/tags/v5.21.5.tar.gz" - sha256 "f179fc10c0055d88de5f9dd31ed47e3911fdb5cec05a5b6fd1ff2acaaf7d768e" + url "https://github.com/FairwindsOps/pluto/archive/refs/tags/v5.21.6.tar.gz" + sha256 "a924d9e37b5d60564d06b7bf11feb78e9fec4a6c4261681583f1a8c42613598d" license "Apache-2.0" head "https://github.com/FairwindsOps/pluto.git", branch: "master" From f41d6466968994b345e628a2ea2539d1978574c2 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 17:30:58 +0000 Subject: [PATCH 0328/1364] postgresql@13 13.21 --- Formula/p/postgresql@13.rb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Formula/p/postgresql@13.rb b/Formula/p/postgresql@13.rb index 06381fb22488a..bfcf1541a9f6d 100644 --- a/Formula/p/postgresql@13.rb +++ b/Formula/p/postgresql@13.rb @@ -1,10 +1,9 @@ class PostgresqlAT13 < Formula desc "Object-relational database system" homepage "https://www.postgresql.org/" - url "https://ftp.postgresql.org/pub/source/v13.20/postgresql-13.20.tar.bz2" - sha256 "8134b685724d15e60d93bea206fbe0f14c8295e84f1cc91d5a3928163e4fb288" + url "https://ftp.postgresql.org/pub/source/v13.21/postgresql-13.21.tar.bz2" + sha256 "dcda1294df45f033b0656cf7a8e4afbbc624c25e1b144aec79530f74d7ef4ab4" license "PostgreSQL" - revision 1 livecheck do url "https://ftp.postgresql.org/pub/source/" From b0a02922fab2fa6d83a9b47ac2601624e50bec50 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 17:31:08 +0000 Subject: [PATCH 0329/1364] postgresql@17 17.5 --- Formula/p/postgresql@17.rb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Formula/p/postgresql@17.rb b/Formula/p/postgresql@17.rb index acef650d61e52..c4859a7eee63d 100644 --- a/Formula/p/postgresql@17.rb +++ b/Formula/p/postgresql@17.rb @@ -1,10 +1,9 @@ class PostgresqlAT17 < Formula desc "Object-relational database system" homepage "https://www.postgresql.org/" - url "https://ftp.postgresql.org/pub/source/v17.4/postgresql-17.4.tar.bz2" - sha256 "c4605b73fea11963406699f949b966e5d173a7ee0ccaef8938dec0ca8a995fe7" + url "https://ftp.postgresql.org/pub/source/v17.5/postgresql-17.5.tar.bz2" + sha256 "fcb7ab38e23b264d1902cb25e6adafb4525a6ebcbd015434aeef9eda80f528d8" license "PostgreSQL" - revision 1 livecheck do url "https://ftp.postgresql.org/pub/source/" From 4f9b03f6be5c42f89498bc3dcc80d4ce2797f78f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 17:35:58 +0000 Subject: [PATCH 0330/1364] scipy 1.15.3 --- Formula/s/scipy.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/s/scipy.rb b/Formula/s/scipy.rb index e20d014f0075e..a309530657049 100644 --- a/Formula/s/scipy.rb +++ b/Formula/s/scipy.rb @@ -1,8 +1,8 @@ class Scipy < Formula desc "Software for mathematics, science, and engineering" homepage "https://www.scipy.org" - url "https://files.pythonhosted.org/packages/b7/b9/31ba9cd990e626574baf93fbc1ac61cf9ed54faafd04c479117517661637/scipy-1.15.2.tar.gz" - sha256 "cd58a314d92838f7e6f755c8a2167ead4f27e1fd5c1251fd54289569ef3495ec" + url "https://files.pythonhosted.org/packages/0f/37/6964b830433e654ec7485e45a00fc9a27cf868d622838f6b6d9c5ec0d532/scipy-1.15.3.tar.gz" + sha256 "eae3cf522bc7df64b42cad3925c876e1b0b6c35c1337c93e12c0f366f55b0eaf" license "BSD-3-Clause" head "https://github.com/scipy/scipy.git", branch: "main" From d3c7d847c7bd737bda5a849d0834f9ed581c185c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 17:41:23 +0000 Subject: [PATCH 0331/1364] tile38 1.34.4 --- Formula/t/tile38.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/t/tile38.rb b/Formula/t/tile38.rb index c14e81f881dc9..27e024780effd 100644 --- a/Formula/t/tile38.rb +++ b/Formula/t/tile38.rb @@ -2,8 +2,8 @@ class Tile38 < Formula desc "In-memory geolocation data store, spatial index, and realtime geofence" homepage "https://tile38.com/" url "https://github.com/tidwall/tile38.git", - tag: "1.34.3", - revision: "0794ad766835eff2c0f7ef3d6e549763063af475" + tag: "1.34.4", + revision: "fbf767a62ce3222925ade0d1bacec05f684f792a" license "MIT" head "https://github.com/tidwall/tile38.git", branch: "master" From 91d9c6afd58f1e5b2585c0be727c93f3e594220d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 17:42:53 +0000 Subject: [PATCH 0332/1364] circleci: update 0.1.31687 bottle. --- Formula/c/circleci.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/c/circleci.rb b/Formula/c/circleci.rb index 2318ee0575265..8b48d872f7758 100644 --- a/Formula/c/circleci.rb +++ b/Formula/c/circleci.rb @@ -9,12 +9,12 @@ class Circleci < Formula head "https://github.com/CircleCI-Public/circleci-cli.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "87969ea9401db86c73bdcc6e2d9fadcc1af7f99112c2c2c81d41f86a28854e26" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "87969ea9401db86c73bdcc6e2d9fadcc1af7f99112c2c2c81d41f86a28854e26" - sha256 cellar: :any_skip_relocation, arm64_ventura: "87969ea9401db86c73bdcc6e2d9fadcc1af7f99112c2c2c81d41f86a28854e26" - sha256 cellar: :any_skip_relocation, sonoma: "2244f3ddb9d492dc7fef3d77c00bc7f955d66a635589c2778a05a77b86b60fd7" - sha256 cellar: :any_skip_relocation, ventura: "2244f3ddb9d492dc7fef3d77c00bc7f955d66a635589c2778a05a77b86b60fd7" - sha256 cellar: :any_skip_relocation, x86_64_linux: "d770e014766ec1603ea5f59a5a3bf717f3dae054861fa12690724125b7276877" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "32c3b5fe4cfa643bd67cde6f535e24dec8a10cf99ead1498e783b7a538090e7f" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "32c3b5fe4cfa643bd67cde6f535e24dec8a10cf99ead1498e783b7a538090e7f" + sha256 cellar: :any_skip_relocation, arm64_ventura: "32c3b5fe4cfa643bd67cde6f535e24dec8a10cf99ead1498e783b7a538090e7f" + sha256 cellar: :any_skip_relocation, sonoma: "30972352c3cb9a8e65d5e92be5b001216ba18d800c19cf6a8bae94419c7379aa" + sha256 cellar: :any_skip_relocation, ventura: "30972352c3cb9a8e65d5e92be5b001216ba18d800c19cf6a8bae94419c7379aa" + sha256 cellar: :any_skip_relocation, x86_64_linux: "3f1416f2b5e761d20fa5792ed5c8d91dfbd536ab81d939153fa6490e46e3422f" end depends_on "go" => :build From 519c35c8f036ba2422c4feba536e9af4c2ddb711 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 17:43:55 +0000 Subject: [PATCH 0333/1364] victorialogs 1.22.0 --- Formula/v/victorialogs.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/v/victorialogs.rb b/Formula/v/victorialogs.rb index 38519a52c1a6c..918559980b776 100644 --- a/Formula/v/victorialogs.rb +++ b/Formula/v/victorialogs.rb @@ -1,8 +1,8 @@ class Victorialogs < Formula desc "Open source user-friendly database for logs from VictoriaMetrics" homepage "https://docs.victoriametrics.com/victorialogs/" - url "https://github.com/VictoriaMetrics/VictoriaMetrics/archive/refs/tags/v1.21.0-victorialogs.tar.gz" - sha256 "8ab8acc45f722fde1009b0d0fa068560f9b915cd25721b9c54df5b909420db74" + url "https://github.com/VictoriaMetrics/VictoriaMetrics/archive/refs/tags/v1.22.0-victorialogs.tar.gz" + sha256 "53091ba141368382edb7a6daacee88b5cdf5025214800f2e0dc323041f8362dd" license "Apache-2.0" # There are tags like `pmm-6401-v1.89.1` in the upstream repo. They don't From 3de315a5b00b1809556d399dbf2439ddb9e31754 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 17:46:22 +0000 Subject: [PATCH 0334/1364] xrootd 5.8.2 --- Formula/x/xrootd.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Formula/x/xrootd.rb b/Formula/x/xrootd.rb index 0b52ca618284f..823d29bec9cc8 100644 --- a/Formula/x/xrootd.rb +++ b/Formula/x/xrootd.rb @@ -1,9 +1,9 @@ class Xrootd < Formula desc "High performance, scalable, fault-tolerant access to data" homepage "https://xrootd.slac.stanford.edu/" - url "https://github.com/xrootd/xrootd/releases/download/v5.8.1/xrootd-5.8.1.tar.gz" - mirror "https://xrootd.slac.stanford.edu/download/v5.8.1/xrootd-5.8.1.tar.gz" - sha256 "d4878b01f82982005da50789051901fabdffe3a44404e889ebbd7138f58f9699" + url "https://github.com/xrootd/xrootd/releases/download/v5.8.2/xrootd-5.8.2.tar.gz" + mirror "https://xrootd.slac.stanford.edu/download/v5.8.2/xrootd-5.8.2.tar.gz" + sha256 "738111dabdf6c06094ae5d4ccac9471617a3d2a7b4c0dbe15c3717153c3a9564" license "LGPL-3.0-or-later" head "https://github.com/xrootd/xrootd.git", branch: "master" From 8b35e84e9362dd89472354b48ba551f9d9b00bc6 Mon Sep 17 00:00:00 2001 From: Joe Karow <58997957+JoeKarow@users.noreply.github.com> Date: Thu, 8 May 2025 14:17:04 -0400 Subject: [PATCH 0335/1364] mise 2025.5.2 --- Formula/m/mise.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/m/mise.rb b/Formula/m/mise.rb index 95181c57a236f..645f6c628419f 100644 --- a/Formula/m/mise.rb +++ b/Formula/m/mise.rb @@ -1,8 +1,8 @@ class Mise < Formula desc "Polyglot runtime manager (asdf rust clone)" homepage "https://mise.jdx.dev/" - url "https://github.com/jdx/mise/archive/refs/tags/v2025.5.1.tar.gz" - sha256 "b6584c19918e1fc821f7cce10f0d58ccfe55fe4f525050ac5f249565e7b25bad" + url "https://github.com/jdx/mise/archive/refs/tags/v2025.5.2.tar.gz" + sha256 "7f25802b23c229a1bc0c5d63723fb8acd7a3781c888cbd81e04e0ea3d3476f9c" license "MIT" head "https://github.com/jdx/mise.git", branch: "main" From 54c3dfe1e185dbd23deee410d9e1ae1f96c4fa5e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 18:29:01 +0000 Subject: [PATCH 0336/1364] clickhouse-sql-parser: update 0.4.9 bottle. --- Formula/c/clickhouse-sql-parser.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/clickhouse-sql-parser.rb b/Formula/c/clickhouse-sql-parser.rb index 9d19a8dea5e14..67bf106ed2e38 100644 --- a/Formula/c/clickhouse-sql-parser.rb +++ b/Formula/c/clickhouse-sql-parser.rb @@ -7,13 +7,13 @@ class ClickhouseSqlParser < Formula head "https://github.com/AfterShip/clickhouse-sql-parser.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "0489478f1a7f6b18053f924450986c550e938b4c2da979beb57c9ba7c202ed0f" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "0489478f1a7f6b18053f924450986c550e938b4c2da979beb57c9ba7c202ed0f" - sha256 cellar: :any_skip_relocation, arm64_ventura: "0489478f1a7f6b18053f924450986c550e938b4c2da979beb57c9ba7c202ed0f" - sha256 cellar: :any_skip_relocation, sonoma: "faa7fa2fec86178cf2c617de780dcf3427894bc9b2d6675ac6e913e7d4e04056" - sha256 cellar: :any_skip_relocation, ventura: "faa7fa2fec86178cf2c617de780dcf3427894bc9b2d6675ac6e913e7d4e04056" - sha256 cellar: :any_skip_relocation, arm64_linux: "7780067b08e1c7136bc0bd0c04c3863a8d25e9e615a01508ecb80a440362cbb0" - sha256 cellar: :any_skip_relocation, x86_64_linux: "63afe8b89177dcf36d986fdff490d00cd2bba98c275e3f6f7cd1a24e8bce6981" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "386b26d4f173d87aca01be01e3617f35175c4f472e86b1dd4a7b473ef7dcb9f4" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "386b26d4f173d87aca01be01e3617f35175c4f472e86b1dd4a7b473ef7dcb9f4" + sha256 cellar: :any_skip_relocation, arm64_ventura: "386b26d4f173d87aca01be01e3617f35175c4f472e86b1dd4a7b473ef7dcb9f4" + sha256 cellar: :any_skip_relocation, sonoma: "ed0cf23a7e7c2cd45a050ded92753696ebb39b27276206332a2605b641ef6d3e" + sha256 cellar: :any_skip_relocation, ventura: "ed0cf23a7e7c2cd45a050ded92753696ebb39b27276206332a2605b641ef6d3e" + sha256 cellar: :any_skip_relocation, arm64_linux: "e218b79aedd7ba522b563d75497b4607c4e0d30800aa4d5f56fc948c91afee6c" + sha256 cellar: :any_skip_relocation, x86_64_linux: "2f2309430e4831e8674411a759386f8f9da146b2eda4872f22186163ffa8697b" end depends_on "go" => :build From 1d9962f56c8e32c2aafb2fa30067eb49d0140cc7 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 18:29:16 +0000 Subject: [PATCH 0337/1364] kin: update 2.1.14 bottle. --- Formula/k/kin.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/k/kin.rb b/Formula/k/kin.rb index 7853d7bd2e0b6..64de956f4cd4e 100644 --- a/Formula/k/kin.rb +++ b/Formula/k/kin.rb @@ -9,7 +9,7 @@ class Kin < Formula head "https://github.com/Serchinastico/Kin.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, all: "d562acaad85e1c1326f82806f1785ddca89d396821bc2f5da3fb2aca3039608d" + sha256 cellar: :any_skip_relocation, all: "0c894495b31a506a8c1b6a3340733708be4fd0f86825b788e421156ad604984e" end depends_on "python@3.13" From 8302730260c47d9301764fc07f53adebca088aa0 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 18:29:21 +0000 Subject: [PATCH 0338/1364] codesnap: update 0.12.4 bottle. --- Formula/c/codesnap.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/codesnap.rb b/Formula/c/codesnap.rb index bf9f2d0b65ffa..8981d86f21581 100644 --- a/Formula/c/codesnap.rb +++ b/Formula/c/codesnap.rb @@ -7,13 +7,13 @@ class Codesnap < Formula head "https://github.com/codesnap-rs/codesnap.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "fa1c2b995faae52597b835dc4110e415b09e9962cb8c5f2420b768700bd9271d" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "fa05440c837a5fb916c55fcc23fbebe494d8d42d4bcbaeafa15de0bc1678d849" - sha256 cellar: :any_skip_relocation, arm64_ventura: "3b5501bcffcbf376117cd17e49b4880863c47df0a909e75673b9ca128e660b3f" - sha256 cellar: :any_skip_relocation, sonoma: "6755a7d529df1b10104ff6d80c4932ca3bfe44490bae9b8080db20d9cdb0ed78" - sha256 cellar: :any_skip_relocation, ventura: "a0a20b587d2ee163df60afd5c76401ed112d1ac61128ec923064773d55869a5e" - sha256 cellar: :any_skip_relocation, arm64_linux: "fc3a633e4742c10a0e3be34860585907e64271ae2b799c685c8e894cb653603b" - sha256 cellar: :any_skip_relocation, x86_64_linux: "9ead9ea80f15498ed088c8b99bced2998e2320ab6d3b717bdf2d343075208c39" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "7f8bc31a0f0679316140653209b7cca185135949c5e8ada455c8104da4020be6" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "7240fcf2a191496282de4d306d0e3b12a3775a55655d05617a69ea4b7ff4f0a2" + sha256 cellar: :any_skip_relocation, arm64_ventura: "63784447a6eb54b3b2f6d4a0dd1fc6cbd63a7f274c98d7795f85366b0db391fb" + sha256 cellar: :any_skip_relocation, sonoma: "eb27002943f155d83f71c0abe3468f7a986f3487e6dee80a9f2beaa470ae5e92" + sha256 cellar: :any_skip_relocation, ventura: "eb73ec874cd1908a5a6d0760c4919d22f3e8d8b80cbb03fffd8e67df2458a71c" + sha256 cellar: :any_skip_relocation, arm64_linux: "82e4e6dbd4152640ab4a714358fb2c54027c06bd9217f98f4f0482603ba45f17" + sha256 cellar: :any_skip_relocation, x86_64_linux: "5749a3735d20ea7d7156f19ad545e1d45cb374f698942e642fe384ca2c279510" end depends_on "pkgconf" => :build From ce13979872c20c7efbfdb283d65dcee79e1cb4ea Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 18:29:32 +0000 Subject: [PATCH 0339/1364] fern-api: update 0.60.22 bottle. --- Formula/f/fern-api.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/f/fern-api.rb b/Formula/f/fern-api.rb index 7eba5c25eb06f..f903f59f93723 100644 --- a/Formula/f/fern-api.rb +++ b/Formula/f/fern-api.rb @@ -7,7 +7,7 @@ class FernApi < Formula head "https://github.com/fern-api/fern.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, all: "eef2c176f8a0bfaa4a55366642aa0ab7960c9aa46b96a3a7e3adde79c205acd1" + sha256 cellar: :any_skip_relocation, all: "d6084ab274241dc6720d2635a4d2d255df709ef4cdba3a54fe15cfa07312f6fb" end depends_on "node" From 63d4e1da316a8859f3b7cd8a68e0fc6b919d44bc Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 18:29:41 +0000 Subject: [PATCH 0340/1364] linode-cli: update 5.57.1 bottle. --- Formula/l/linode-cli.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/l/linode-cli.rb b/Formula/l/linode-cli.rb index 4c06e996e6b37..e79b995461b84 100644 --- a/Formula/l/linode-cli.rb +++ b/Formula/l/linode-cli.rb @@ -9,13 +9,13 @@ class LinodeCli < Formula head "https://github.com/linode/linode-cli.git", branch: "main" bottle do - sha256 cellar: :any, arm64_sequoia: "00f8dd9a4c6a07e8b8ecf9aacc6312e79ca84891c37bc743b68c8c96fde5334e" - sha256 cellar: :any, arm64_sonoma: "199844168e02aed787eef941b17e3e8a0f7fd4d65bdd8e7cef75cf0eee714017" - sha256 cellar: :any, arm64_ventura: "9124fb7547641e5937ef4ae6b68e43373bfa13a96086be4a01c13d810b11c5c0" - sha256 cellar: :any, sonoma: "31f9f80efd4028da6620e0de22caf4d28e26d531a9a3d743cad5fcc04435b970" - sha256 cellar: :any, ventura: "456980792c5866bb8069615d54fa7be8d5c1ba3a0ba8c3f2d0e173e7d852da37" - sha256 cellar: :any_skip_relocation, arm64_linux: "b1acd70e23139aff917832b0c58ee44d9163b1b3bf8e36e627e5e616425b0eb5" - sha256 cellar: :any_skip_relocation, x86_64_linux: "5ee42dc27be661fa9d604339ecf13acc9d22a91a2210bbf11cde2bba44b80521" + sha256 cellar: :any, arm64_sequoia: "f26ad5d56e16125ef42b100ebe11411d7bd806b6a8b23762fd88dc9cf1976908" + sha256 cellar: :any, arm64_sonoma: "d9aa4b0ac9912b19e8452c28607052ae037a793b51d5b8b0489b8f441bcbc332" + sha256 cellar: :any, arm64_ventura: "c921d403bc8f5557c880664f56f105b2299bbfbd6e00d043a1a9686acc51f692" + sha256 cellar: :any, sonoma: "0a17b48c1719e7c080dc68909d3a42a4e0df3c3718361213ab213cde919661de" + sha256 cellar: :any, ventura: "422e4cccdb44913f39e0ae6b593a90ac74bb6eb1cee6c4e25bb01aba45732168" + sha256 cellar: :any_skip_relocation, arm64_linux: "aa09fcb2501cb07798d264d83fd93939c8bb21fee84402c73d13030a7b45e50d" + sha256 cellar: :any_skip_relocation, x86_64_linux: "37ddec4541b30490a9263cc443a558705ba5ab164256b3543630e62af7ad48c9" end depends_on "certifi" From fdabf6acc43d75c0890bdf3fdedea20c5bc64719 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 18:29:58 +0000 Subject: [PATCH 0341/1364] pluto: update 5.21.6 bottle. --- Formula/p/pluto.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/p/pluto.rb b/Formula/p/pluto.rb index d0e7c84435c6d..114f940ca058c 100644 --- a/Formula/p/pluto.rb +++ b/Formula/p/pluto.rb @@ -7,12 +7,12 @@ class Pluto < Formula head "https://github.com/FairwindsOps/pluto.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "ca5fc3001cd67ae628be3e6fdc68544ba40f44413583b328d673f533316cb4cc" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "ca5fc3001cd67ae628be3e6fdc68544ba40f44413583b328d673f533316cb4cc" - sha256 cellar: :any_skip_relocation, arm64_ventura: "ca5fc3001cd67ae628be3e6fdc68544ba40f44413583b328d673f533316cb4cc" - sha256 cellar: :any_skip_relocation, sonoma: "54b7c95daa40d280869a01137da22b60bbd7fe55cbfa4aa191bb9ed36b4cb94f" - sha256 cellar: :any_skip_relocation, ventura: "54b7c95daa40d280869a01137da22b60bbd7fe55cbfa4aa191bb9ed36b4cb94f" - sha256 cellar: :any_skip_relocation, x86_64_linux: "3171647f28a46a652d95c638d36de606685586da3e37eb07e2b305cbecc867cf" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "8e67107a7d805fa5b9d3634e575a349b2e9b8354339b596a1534ecea846032e9" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "8e67107a7d805fa5b9d3634e575a349b2e9b8354339b596a1534ecea846032e9" + sha256 cellar: :any_skip_relocation, arm64_ventura: "8e67107a7d805fa5b9d3634e575a349b2e9b8354339b596a1534ecea846032e9" + sha256 cellar: :any_skip_relocation, sonoma: "86c69bdcf5d472f64e30949ce06b6fe313216a9eb0323aeb62a922e04f16befa" + sha256 cellar: :any_skip_relocation, ventura: "86c69bdcf5d472f64e30949ce06b6fe313216a9eb0323aeb62a922e04f16befa" + sha256 cellar: :any_skip_relocation, x86_64_linux: "c5c27f26c7ed7515650b3f0bc058fad12e916abe60eeaceccc84b7261019e0ae" end depends_on "go" => :build From e63258283e861de32971c92b2393e460763a23d3 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 18:29:58 +0000 Subject: [PATCH 0342/1364] monit: update 5.35.2 bottle. --- Formula/m/monit.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/m/monit.rb b/Formula/m/monit.rb index cdbe746d8ed5b..729ff41d82d34 100644 --- a/Formula/m/monit.rb +++ b/Formula/m/monit.rb @@ -11,13 +11,13 @@ class Monit < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "267d802f49e409571e2c3f4dcea3f80ae0ff0b8ca1cb0434b3eef3019d2d21e0" - sha256 cellar: :any, arm64_sonoma: "cdd44f47ce9a6eec587db269e145f2d84b02ccf09775d10e7b19d8400c739c5c" - sha256 cellar: :any, arm64_ventura: "a6f6f1030d61dbafec5ad9ef03860a4f3c94c572a108d65bca4fa5b0ceab85fb" - sha256 cellar: :any, sonoma: "08b92db5cbc402ddbf0a4dfd43433fe0642856fc4549f71ae18d57e0f9712243" - sha256 cellar: :any, ventura: "81ec35e09d7bf59fdc26330bc4364fadc4e0c8f718e41b6177718a544b54f0f0" - sha256 cellar: :any_skip_relocation, arm64_linux: "931204ad21f2cc42ab0dce03b2b4ce2a1cfef74ab5e30dc4536a657389d0270f" - sha256 cellar: :any_skip_relocation, x86_64_linux: "071eabbcc839d19fd3d4b4f69cb98b9af4b2a696c65021a8b7d43b984aaafba4" + sha256 cellar: :any, arm64_sequoia: "5f8ae5d9b7905575c6a521cd10ec05c2b8c44c83ca7525a045404196a1b6d0b6" + sha256 cellar: :any, arm64_sonoma: "fc482b423f6a54a5fd3d654ec2047d6f57390fc54778317021ab1ec319a72f5c" + sha256 cellar: :any, arm64_ventura: "725215581b9ee73ed26819ae29282310bbc1d737285325c54af1bd3523af6837" + sha256 cellar: :any, sonoma: "0330014e721c9cbff3b5f610bf9b328fe23c5788ccab3a728d89ac9dad79eb52" + sha256 cellar: :any, ventura: "c18bf4f5bf096b868c6b5016c50e065870305a9477bab6bd3c7635790de7c61a" + sha256 cellar: :any_skip_relocation, arm64_linux: "785a1c67205c69e345698ba258e55247e3b5c147a0910d02ab27fe3638c00630" + sha256 cellar: :any_skip_relocation, x86_64_linux: "24a6151e67eca2312abdba53b643dd791ef72ad31e9c376190e96aef37f1e8c6" end depends_on "openssl@3" From 40e60fbf92766a3b8d4d35b013b21d84308681e3 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 18:31:47 +0000 Subject: [PATCH 0343/1364] cromwell: update 89 bottle. --- Formula/c/cromwell.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/c/cromwell.rb b/Formula/c/cromwell.rb index cc707e08861b6..f3560cbe083bb 100644 --- a/Formula/c/cromwell.rb +++ b/Formula/c/cromwell.rb @@ -6,7 +6,7 @@ class Cromwell < Formula license "BSD-3-Clause" bottle do - sha256 cellar: :any_skip_relocation, all: "70925ac844d645a54e5e197bec516db6b7f0c3e80b07fb3cf9dae68b35642b76" + sha256 cellar: :any_skip_relocation, all: "d86293d84e263cb004ecd0240d4818ff8ca7d8a4219377d506e68cf9ba2b81d9" end head do From 9a340c18147e7f531184d25a7579645684e890ff Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Thu, 8 May 2025 18:32:32 +0000 Subject: [PATCH 0344/1364] gettext: update 0.25 bottle. --- Formula/g/gettext.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/g/gettext.rb b/Formula/g/gettext.rb index 810b81f015d5c..c41fb8f8795a6 100644 --- a/Formula/g/gettext.rb +++ b/Formula/g/gettext.rb @@ -8,13 +8,13 @@ class Gettext < Formula license "GPL-3.0-or-later" bottle do - sha256 arm64_sequoia: "9b68ab2699f7d84774dec9f6940ad2fa1d318b908d0e3a426c22eba2c7618585" - sha256 arm64_sonoma: "3da16d62499cd1188ff24bac157c87b127a006f280f1f007f0f43504b0578ee2" - sha256 arm64_ventura: "9787f37d392f6c5d9295ff993575924c1a840c4d949b9bb23643b30ec328dab7" - sha256 sonoma: "ed640edbc9fe2444c4d178a182fdff0f318aae9c9f05b0e6945801cf94ec7605" - sha256 ventura: "b80f024564436b534a6aa65d01efbb977441a9238196d767dc858068d66fd7e8" - sha256 arm64_linux: "4eec5148f1938085006d6dde7cfd22bffbfc288aaf4dba4dd874219619a65d42" - sha256 x86_64_linux: "f4218be546b32da338235b35633cbedbb4e315ef83b2222d345fb85f74fa4cb7" + sha256 arm64_sequoia: "8dba9424a9409d3ba085acccfd8c88c196e31e31944c32c1d811cfdd6aae8280" + sha256 arm64_sonoma: "19c917a48a53614a6f6a611c018cc2884466268638d0aabb4c2f596684b94e9f" + sha256 arm64_ventura: "af2c9962b3d92649642157dc7630672b18825a462b0c9d4f7285df58b7c2efa8" + sha256 sonoma: "6da9896ebaea0fd919d220f661cf8b68397ac038d0c3139ab4132a285496cdf9" + sha256 ventura: "cd17c1763a6784e768d976615ecb13cfe3282b9677a954198385539eb2f99944" + sha256 arm64_linux: "cb8b6b07dc9e7f191cc8bcfe0a2ef7f4ef6c2a7e60914375dee6a1b61f7b2fb4" + sha256 x86_64_linux: "8e4b8222d6c3a550ac7601d6f092807b2c41c11d35dd4680cba11d54dee8c449" end depends_on "libunistring" From 59a4bac214f3017113f09192fa5d0a5256545ccd Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 18:34:19 +0000 Subject: [PATCH 0345/1364] netdata: update 2.5.1 bottle. --- Formula/n/netdata.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/n/netdata.rb b/Formula/n/netdata.rb index 9304954ce1c52..7cc6359ff013b 100644 --- a/Formula/n/netdata.rb +++ b/Formula/n/netdata.rb @@ -12,12 +12,12 @@ class Netdata < Formula end bottle do - sha256 arm64_sequoia: "3dd852ad855928a1efefa6acd7dba57d5f82baec20cdaafadf6382ffed8bd3ce" - sha256 arm64_sonoma: "d9fcfb438c4f9b7d2c77bac12ff9c9d7630b863ae9c75968235b897e9ecb7e92" - sha256 arm64_ventura: "8e602f35b2f98b93c4e1fd74c398ea35b535dd38834ab259bf040289026c79ab" - sha256 sonoma: "317f89b6e54789012d0db26b6b19fedcf1f3c01033bf809080920fd8202787c6" - sha256 ventura: "9e36fa4488255ef6518f8bd873764f88d72697ce9b50e5f3a8b638e31839e4c3" - sha256 x86_64_linux: "afbe44f18e7884efd52ffc60cae0255814b55e9e6d0dd0dd4e6726813b3d8a29" + sha256 arm64_sequoia: "01487e74f848eb9fa5282d42ce827f5927b344627a68e9864c226de24001602a" + sha256 arm64_sonoma: "484cd8954181bef1cb77255572b93cda5fb5df321eb4dd6b7409ac0edf1a0a8c" + sha256 arm64_ventura: "f99fa3beb234a37afae94f96796e22a42b849ff450629ef92b333477685c3e22" + sha256 sonoma: "46cfad6207388f9e81769a56280c6c86196db7e07234dd3796a436f76ebb570a" + sha256 ventura: "61bacc8956878fc7710486be7a48f21d160031298fa4c567e861d6c3c0b6f1b6" + sha256 x86_64_linux: "d6ec4dc2eee29a30f240962d696832168a556953d934fad82e0f25703af1712f" end depends_on "cmake" => :build From 063be9174bff482a8b5093d68d33be7cbaf883c2 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 18:39:03 +0000 Subject: [PATCH 0346/1364] postgresql@13: update 13.21 bottle. --- Formula/p/postgresql@13.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/p/postgresql@13.rb b/Formula/p/postgresql@13.rb index bfcf1541a9f6d..d4d23c390abd4 100644 --- a/Formula/p/postgresql@13.rb +++ b/Formula/p/postgresql@13.rb @@ -11,13 +11,13 @@ class PostgresqlAT13 < Formula end bottle do - sha256 arm64_sequoia: "1b104f7872cfcd3a5df93db21418c4532864f4e157e0845272fb1c40d789909f" - sha256 arm64_sonoma: "6f9b713016e53bbd281a6bf423ac8bfa2bdc8db5e3899f7d5281f416b52c938d" - sha256 arm64_ventura: "6a3099c77f6d89172bf0b146d36098d7ea2ab55bc4ee98e08b05d80bac32dd07" - sha256 sonoma: "bd67cbb1340b8eb0f4ce5d6ecfcf2c18384debc8afde679924118d198c710f17" - sha256 ventura: "9fa897b5dec76e891d9610ab7527dea50cf3a2e505220e14553d0305813b2bfa" - sha256 arm64_linux: "816a5e4034e5bd2bacf7a5bcbcf43d4248d3826ca24422323c9493c26fd2a24f" - sha256 x86_64_linux: "6025805ea0e07ada6b57940029984f9574d191b3753fb3ea1e3aed8ff6621190" + sha256 arm64_sequoia: "1980c3a1f68d4bd9aa0c329377c021274193e428ca6ba1197596e9784b2358ba" + sha256 arm64_sonoma: "a3486347b6ec66ec75d9fb2cac42c37657d34876c5cde406e3534d5241455a51" + sha256 arm64_ventura: "30ab5734a6e187838ffc311461dcda32c9d1690c9e04cccf06592998cd5913b7" + sha256 sonoma: "465e489a5a3797a997ecaf56f3e08a5b242203e9a6734779eebe720486b729d0" + sha256 ventura: "a9f7551558b0ba8b55ee7c7764b550952f0e281d5633d80e6acc47808dec7bd6" + sha256 arm64_linux: "00c713e2f487fcdfbb7f58864576511ed6e3e7c4da0be4fa0a0adac747db6c56" + sha256 x86_64_linux: "7c9e4641b785c0659b855c0c8c729f06d26e640a0846c24e940947860a44e79f" end keg_only :versioned_formula From 3cec11bcfbf170047efb2239396ba36b1cc9924f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 18:44:43 +0000 Subject: [PATCH 0347/1364] tile38: update 1.34.4 bottle. --- Formula/t/tile38.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/t/tile38.rb b/Formula/t/tile38.rb index 27e024780effd..ea523d102119d 100644 --- a/Formula/t/tile38.rb +++ b/Formula/t/tile38.rb @@ -8,12 +8,12 @@ class Tile38 < Formula head "https://github.com/tidwall/tile38.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "9ee63c0da1934219deb28427bf003d7f0101c4e2d7e1c5c160fb45b3e4a7492a" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "9ee63c0da1934219deb28427bf003d7f0101c4e2d7e1c5c160fb45b3e4a7492a" - sha256 cellar: :any_skip_relocation, arm64_ventura: "9ee63c0da1934219deb28427bf003d7f0101c4e2d7e1c5c160fb45b3e4a7492a" - sha256 cellar: :any_skip_relocation, sonoma: "6d80bad2dcfc1d33e11d28b98076416f5fd244b1373a712c3ae4f3f6d05cea6d" - sha256 cellar: :any_skip_relocation, ventura: "6d80bad2dcfc1d33e11d28b98076416f5fd244b1373a712c3ae4f3f6d05cea6d" - sha256 cellar: :any_skip_relocation, x86_64_linux: "30e95f8162bcdede2d7bc495fc46b0805015ebd587b4300031c0a326e3207d54" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "961556ed4004e9f02e15aecc09e33deefb6b639e65f7b2231e11741cf98b3fb8" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "961556ed4004e9f02e15aecc09e33deefb6b639e65f7b2231e11741cf98b3fb8" + sha256 cellar: :any_skip_relocation, arm64_ventura: "961556ed4004e9f02e15aecc09e33deefb6b639e65f7b2231e11741cf98b3fb8" + sha256 cellar: :any_skip_relocation, sonoma: "846a788b22cb3535efb981f1c29512b46305697390fd4f471b1f80396d27aa33" + sha256 cellar: :any_skip_relocation, ventura: "846a788b22cb3535efb981f1c29512b46305697390fd4f471b1f80396d27aa33" + sha256 cellar: :any_skip_relocation, x86_64_linux: "1f58df25a9c8e1ebe2781ed94d098a34540810de08baee3eb9776b04fb9594bd" end depends_on "go" => :build From 7570db5014036404f0ea8afc3410b4897b39310f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 18:45:18 +0000 Subject: [PATCH 0348/1364] victorialogs: update 1.22.0 bottle. --- Formula/v/victorialogs.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/v/victorialogs.rb b/Formula/v/victorialogs.rb index 918559980b776..0d31d72aa7609 100644 --- a/Formula/v/victorialogs.rb +++ b/Formula/v/victorialogs.rb @@ -14,13 +14,13 @@ class Victorialogs < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "e5bdb5133c193663ab871da1ce57d34c21c6e3b8890d786f92fce757c1cfac9c" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "a1e3ea84b0e6ee2dfc9f97baf4b9d8c871f71d934c60d01281c015d62e87324b" - sha256 cellar: :any_skip_relocation, arm64_ventura: "3172f946a12fbd4642cc9d394accb687189f4ed2366a24c0ab915d31f5e14548" - sha256 cellar: :any_skip_relocation, sonoma: "973be06ac89303640acd466a757acb09aa7d44cd81c8a10821450155de118639" - sha256 cellar: :any_skip_relocation, ventura: "a026930b7d5ad54fea7147e83124bc78d84f21ea6e2e8d0362c242a8b227444c" - sha256 cellar: :any_skip_relocation, arm64_linux: "3076dd6841e1a3868f57a15289944774384aa9be6a74e80a386fa59148339f64" - sha256 cellar: :any_skip_relocation, x86_64_linux: "632debfab63013a65686df974de450429dc5273f3b96a225507696682ffaf6a2" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "3060e406c55ba9370bf7ea9d58b58129c96a4334ba1e386af3ef398e7419a44b" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "5b8052fc019fcd725a3967a3cff955ea134e01387e1bd4462ad6273ed08775f0" + sha256 cellar: :any_skip_relocation, arm64_ventura: "d3516d87ed1ae0987c634c18c39be8a6f6037bd509254cd0163f57057cae35cf" + sha256 cellar: :any_skip_relocation, sonoma: "b319212821c17f8c73b21852a8374c376456a52c70a439ef939c3eeeb2712d70" + sha256 cellar: :any_skip_relocation, ventura: "48a9f74a1c1df3bc40394cf4f563bfb6076580cb7030dfa772e201ab7260ac59" + sha256 cellar: :any_skip_relocation, arm64_linux: "a0f20cb8c3b3a0ec2f437639dab54795cfd149adeef887bc4896ae5bbe593ffe" + sha256 cellar: :any_skip_relocation, x86_64_linux: "bace3e5742c05d3271daa9888db202b1ae501dbdfbe99d4fc3dc22a85ff4774f" end depends_on "go" => :build From aa165218c87b4c80faa157ba29c2efccd3a61954 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 18:50:52 +0000 Subject: [PATCH 0349/1364] erlang@26: update 26.2.5.12 bottle. --- Formula/e/erlang@26.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/e/erlang@26.rb b/Formula/e/erlang@26.rb index d071316ff2df8..692bee11bf88b 100644 --- a/Formula/e/erlang@26.rb +++ b/Formula/e/erlang@26.rb @@ -13,13 +13,13 @@ class ErlangAT26 < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "f5be22f8fb7e8cd8f18bfbb9cefdc9e3cc97b6aa85ff3e315adcab8ce1fb893d" - sha256 cellar: :any, arm64_sonoma: "63618142e88afeb2a61cc64494ebcaa6f3f6b3a0508630ec62f906800d1709e2" - sha256 cellar: :any, arm64_ventura: "2535535a0539653b621c507f1c218c5fa910ae27514e296b006625a8a93e0c0d" - sha256 cellar: :any, sonoma: "0fdacc0bda3c1aac318ccb8081291c08524c06d250e5594e187ac7e9b8d0a5d2" - sha256 cellar: :any, ventura: "1ff45071d476e1324a1c0a9c09c773f4e590297dbb33e5c26d2c44c204db7ba0" - sha256 cellar: :any_skip_relocation, arm64_linux: "0a91ad704a5fcacde934ca12015a7010d56f86b05bcde71572b858b5d507f09f" - sha256 cellar: :any_skip_relocation, x86_64_linux: "f224047bd25bc8e4b4e61901d83b58fa739b83e7579de04e958fb821e708eb2d" + sha256 cellar: :any, arm64_sequoia: "7e14b035b9f8c3d676af14eab460a4733dd40eba4c07e739d9b0a3df1724ba29" + sha256 cellar: :any, arm64_sonoma: "482cd82dc43037d4491c9a3af077a6d05ea6cf62a73fe1bb576d6437c689e2f6" + sha256 cellar: :any, arm64_ventura: "a604df239fb9732319fe632a6038aea6d84dd6d0ba64ac2e3e3d50488f0701df" + sha256 cellar: :any, sonoma: "ecf619a1d428b4d78072d74a0d85489b828b123e9cea34cc8cbc5ff47a95c269" + sha256 cellar: :any, ventura: "bdc90d05915d0403ab90d072a15566cb791dff4c9bc31565773909ee5acbae38" + sha256 cellar: :any_skip_relocation, arm64_linux: "0b8510909bd4271db7744061c48418da2e63eeeadc6d35ec4d47e0e41f2275f9" + sha256 cellar: :any_skip_relocation, x86_64_linux: "5796c692d625bfaf01266a6fd0d551b1cfd0b681909c366ab1ff1393d9929027" end keg_only :versioned_formula From a6bc0f1f04493e18a55dbedd52e11120b28bf894 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 18:58:42 +0000 Subject: [PATCH 0350/1364] erlang@25: update 25.3.2.21 bottle. --- Formula/e/erlang@25.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/e/erlang@25.rb b/Formula/e/erlang@25.rb index 5a5ec53bc369d..d1170fab2160d 100644 --- a/Formula/e/erlang@25.rb +++ b/Formula/e/erlang@25.rb @@ -12,13 +12,13 @@ class ErlangAT25 < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "d753dc65e9103dc8a07627199638fe7de5f15b70798cc44d3bef25ac8dc2d8d3" - sha256 cellar: :any, arm64_sonoma: "2af990d56abc88f6cc2673f81ec3ee40bce29dc47cfa744eba9ba64e929ff127" - sha256 cellar: :any, arm64_ventura: "71ad0cd098a67f5c7c69aa04481bbb70a97396cbb890c619b02542bd1fc8b969" - sha256 cellar: :any, sonoma: "79985c4956312221cd46f8a5611dc8d3641e3ad3e3f1134521e1f78f622b3091" - sha256 cellar: :any, ventura: "286a6eea3e9f7db995f19f49ce5d3e96fe2c41eb100a49de5288b90d1f69562f" - sha256 cellar: :any_skip_relocation, arm64_linux: "edd2d6bff91bb6f435ddb548f06c3a429d09d3b38c8c266196c9d8a1b78ef03c" - sha256 cellar: :any_skip_relocation, x86_64_linux: "433bab3850a4c33bd19514fcd4557d24444a7973a7f7e19328adee014fc4e550" + sha256 cellar: :any, arm64_sequoia: "65fde55b66db90156d6709104d43a2b599c79fba2c9f3cfd39baedefeb3e3d3d" + sha256 cellar: :any, arm64_sonoma: "e120e61ccdbd483edfef22a3829794350da15a96dd71389d5478a33ac496a7ca" + sha256 cellar: :any, arm64_ventura: "12280e821f8d50701ed2ce4bf23011fd5199d7ce716a7da6a97384573c019976" + sha256 cellar: :any, sonoma: "ec11109a563a4d97aa616bf896297de7cb2973ea2e02979b44eaa4d5f2949863" + sha256 cellar: :any, ventura: "458d3a1961ba7dfa73cd953deb1ec4726e4926b85d94f5536322bb2be9fb54cd" + sha256 cellar: :any_skip_relocation, arm64_linux: "bf9cbe47cc7192af68089444a4b92203355ef1f0b963ea3568a9acdca8a77813" + sha256 cellar: :any_skip_relocation, x86_64_linux: "0c8d50b3f4b3cf6413965b73065c4b512cf2b8461e0a6752501854f6518d8a09" end keg_only :versioned_formula From 0806b3734584c69c2f83ed3147c53e7fc017a03e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 19:12:12 +0000 Subject: [PATCH 0351/1364] mise: update 2025.5.2 bottle. --- Formula/m/mise.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/m/mise.rb b/Formula/m/mise.rb index 645f6c628419f..8f8c97f4e966f 100644 --- a/Formula/m/mise.rb +++ b/Formula/m/mise.rb @@ -14,13 +14,13 @@ class Mise < Formula no_autobump! because: :bumped_by_upstream bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "4128d4efd5bda5d17402d6f16b5568848ff01bf684510c56e67d4be705937dba" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "406ed8f937d33d29d44ebed1dff977fd1f2ffb4a53079f3a40193ba9c9b31396" - sha256 cellar: :any_skip_relocation, arm64_ventura: "192ad5b05cd5a931bf73084fc515d028258eff87ed82459016974669a26f9438" - sha256 cellar: :any_skip_relocation, sonoma: "45c91db63bddf28e88dc4c076048b47e22958d1e531949a5ca9274232bf47b2e" - sha256 cellar: :any_skip_relocation, ventura: "6604e6039a4867c9906017611f978b8154095d28159e32e3e165013b2d7c9672" - sha256 cellar: :any_skip_relocation, arm64_linux: "a9be9b52642757eb2031844c57daafd2bc759d35d28ec3359b1fe322ded8eefb" - sha256 cellar: :any_skip_relocation, x86_64_linux: "f561d9d7a44e90d4989b0fa7bfcdfdf5d655bb02f2683136e5b6e1bd0579fd85" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "e7808861ea94a0198da796d79e4d49f1dba7a2ca0d0967a22e33755501aec41b" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "0258e28d246558a8bba2f66cbf9d793288c58e5865b5def91c8ec706a58a6911" + sha256 cellar: :any_skip_relocation, arm64_ventura: "4d31c366b75090b2dddf6d8e6580c0208c9620571bed2c58274c4f282d9d4173" + sha256 cellar: :any_skip_relocation, sonoma: "3fe6b3c4137754bb452608f08f16b01919c1b080311e3bab97100a69c9113727" + sha256 cellar: :any_skip_relocation, ventura: "84896f0bf24b2c501e9d24357ac2405d9e0a2f03e8c14cf8ca018b80ccb23f54" + sha256 cellar: :any_skip_relocation, arm64_linux: "42d4c3b69f9c89a8186f452b8353c60f1c2ba525e8d4621739d03b418db058b7" + sha256 cellar: :any_skip_relocation, x86_64_linux: "a0c52dc2f73720be27cdab24a22f9a0f4dae04319355b13620f1d31ccf482314" end depends_on "pkgconf" => :build From 8d9c37d9f07ec415ce91967b6619509989f61f2b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 19:22:58 +0000 Subject: [PATCH 0352/1364] xrootd: update 5.8.2 bottle. --- Formula/x/xrootd.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/x/xrootd.rb b/Formula/x/xrootd.rb index 823d29bec9cc8..869a61cc3cec2 100644 --- a/Formula/x/xrootd.rb +++ b/Formula/x/xrootd.rb @@ -8,13 +8,13 @@ class Xrootd < Formula head "https://github.com/xrootd/xrootd.git", branch: "master" bottle do - sha256 cellar: :any, arm64_sequoia: "a43553c33e58fc52e0287bf349bab140d088436dc5acd9d7bda2c40d3e878368" - sha256 cellar: :any, arm64_sonoma: "04d7c459b853b69c8b116f5ee1f395e066c7496b8bf94f7586bb258054d2e794" - sha256 cellar: :any, arm64_ventura: "c8889bcd086f58100c2c09f10a8c609dc2ad204dce281feea3d46df5ca3fa0d5" - sha256 cellar: :any, sonoma: "78ba380d5097c54aca42f32886ffedb32a44b5b1528fc4c7b313e35da7365ceb" - sha256 cellar: :any, ventura: "c97163aa0557c783fc5eaa2fe57a6d35b0253c680f6ccc603e3694d7d8ff0bc4" - sha256 cellar: :any_skip_relocation, arm64_linux: "2fad9f9381aefe6341a1fb717c63ade1bc6e73075345f665f7c8087d6c1f44e9" - sha256 cellar: :any_skip_relocation, x86_64_linux: "72be23cd83f9509f17d50a8e455d32db30651a9750cfc55e36725953d0abc061" + sha256 cellar: :any, arm64_sequoia: "e54094b1df55be63dd93f862b02b08c48896d3f8de6ff02b8260f161c0a38c30" + sha256 cellar: :any, arm64_sonoma: "f5415634da71a8168e51d807f096bff10b4ce952760208ce750159c6bb9098ef" + sha256 cellar: :any, arm64_ventura: "83e1067519177995e01ec2a940f62a7159f4ef536185a3b67b31a69206bbcd07" + sha256 cellar: :any, sonoma: "acbc9d8b3dbf654f4b832adf98f5e92cb108140a4a9512340e37569498411e43" + sha256 cellar: :any, ventura: "e21dc1d127195ee77dd96299223d4bf17935b9726f3a31360d9372ac71f4d13a" + sha256 cellar: :any_skip_relocation, arm64_linux: "e92d7aa019e95964c7425471f7a0f1605f539f59c489425d456908db2ba7c5f6" + sha256 cellar: :any_skip_relocation, x86_64_linux: "d788622ed26804020885123cbe99c815cf99982b16c2891c4dae7d9d80bc8aa4" end depends_on "cmake" => :build From 69e0d7ed8dfa395bd992d5ac026baea26978b8ab Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 19:31:29 +0000 Subject: [PATCH 0353/1364] php: update 8.4.7 bottle. --- Formula/p/php.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/p/php.rb b/Formula/p/php.rb index d15827e4bd70f..5b31ff93bfb2b 100644 --- a/Formula/p/php.rb +++ b/Formula/p/php.rb @@ -13,13 +13,13 @@ class Php < Formula end bottle do - sha256 arm64_sequoia: "8baaceb480c4abacdb0359c734713d26478ef83e70476030d03775aafc45ab8b" - sha256 arm64_sonoma: "972b8c1a0f921bd445a02834e76067714b8387a4bb1a2d6b3161fa6232e3f58e" - sha256 arm64_ventura: "701e73927aec490d2f8676028885718a7042e82799bc13d90e9af62577f0295d" - sha256 sonoma: "63f0b6098823fbb9d50843c47d1f86e83d8b8fa2e85b8705d6a503bbf4bf76a3" - sha256 ventura: "ad50884c88b0ef1f78fabba599194f983e15c17ae637cb1be68bee2a0ba713ed" - sha256 arm64_linux: "3cee83f4832f3d480138a7d8d09dec3ff03f97afc2de63cc9adabf7e24533a3c" - sha256 x86_64_linux: "34232319d3471a2c97d1cf0e756269e6b9638f56f4222eecea21083cf2ed776a" + sha256 arm64_sequoia: "1273b93a27dce41ba12ba51d9c2b078cf114b46fed5abe138d68c4eb0206cf92" + sha256 arm64_sonoma: "309eeb21bf084b3219f69843c6db9bc3184b37704069d25eb3cf30ac8f23cc9a" + sha256 arm64_ventura: "be3ba74801eb3eb2c2e1ca076e7502f935ad9819b68cbc4ce950576e0a2ffc81" + sha256 sonoma: "af954145a05d8c3efe5fb809ef0508dbfb6df5502d8e1cb196c17bc0a295742a" + sha256 ventura: "172bb53f19902688da91c29f2e9f7a3a65bf7c902bae6639219f964f89ecea8f" + sha256 arm64_linux: "bc289c45f821fe8f0b1c873f61a0f6740e245596a76f31e53e601d3470a40872" + sha256 x86_64_linux: "263664826438a7252cd55580b6fa7d79b15447929fdeb3d38aaa12b04d26c386" end head do From ecfb082f1ffa84177dc09b2c976998d29ec902c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=9B=A7=E5=9B=A7?= Date: Thu, 8 May 2025 15:32:05 -0400 Subject: [PATCH 0354/1364] kuzu 0.10.0 --- Formula/k/kuzu.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/k/kuzu.rb b/Formula/k/kuzu.rb index 8f5e31c6f3028..45a4f27050b5a 100644 --- a/Formula/k/kuzu.rb +++ b/Formula/k/kuzu.rb @@ -1,8 +1,8 @@ class Kuzu < Formula desc "Embeddable graph database management system built for query speed & scalability" homepage "https://kuzudb.com/" - url "https://github.com/kuzudb/kuzu/archive/refs/tags/v0.9.0.tar.gz" - sha256 "b4b687ad9c901584ccb2142f5c2f2d3b8a99c272c09b119c5412c06d7d230668" + url "https://github.com/kuzudb/kuzu/archive/refs/tags/v0.10.0.tar.gz" + sha256 "df185b2688ccbfebfddf11520532caf2965300fd91c0c2b9d096da59c925228f" license "MIT" head "https://github.com/kuzudb/kuzu.git", branch: "master" From c26b6a48e4695754b27b0c2b7ce5d2cfce1a53bb Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 19:35:59 +0000 Subject: [PATCH 0355/1364] postgresql@17: update 17.5 bottle. --- Formula/p/postgresql@17.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/p/postgresql@17.rb b/Formula/p/postgresql@17.rb index c4859a7eee63d..078f9f5ba6b33 100644 --- a/Formula/p/postgresql@17.rb +++ b/Formula/p/postgresql@17.rb @@ -11,13 +11,13 @@ class PostgresqlAT17 < Formula end bottle do - sha256 arm64_sequoia: "2cc5709304fefd422705948c46fe27b3873fc24565793ecf54245033f48993ac" - sha256 arm64_sonoma: "7cdcbc02c7ab5f4ebfdf0f1796935b0f8c98264fd96239bd30fd4324efbe8f51" - sha256 arm64_ventura: "03283666af400133c1c1a564a25663977a87ce5d8eeafcb8e161f5a2a0c59ed3" - sha256 sonoma: "b220e193c00e3a5bb58f026c6d547b47575989f2c1c27178a759ca02e460f94c" - sha256 ventura: "d0dace103e6589103925f268375c330b707f6e91ef0979718fdc10e013435a56" - sha256 arm64_linux: "c4f01a279bf88a205267c02a7ae0ca8253c5778c8ffdea3ed30184660edfc112" - sha256 x86_64_linux: "c987b51b282243e67f1c529007b170fea0455bf6eb94e277870497baa0af7e94" + sha256 arm64_sequoia: "2c9bea8ba80e55662401b8fdb3895162395c552980bf06b0ccad2262f6188b01" + sha256 arm64_sonoma: "1a820991a1607aa5fd67806a0349aaabed4dd4fb38c6cc5b95bbb4d76fe7ca83" + sha256 arm64_ventura: "e43f4917861c6e80d4bb440405ceb51c1a2a59e00cb43a2f3518cebec298efa1" + sha256 sonoma: "767044a8d803b861e1c7c58a652f063916b275b5f48ca2f7391ee11c79384488" + sha256 ventura: "7548c817fbb5b4d7867b5df02b393e07d2565e2b97b83a0f67024be475de8112" + sha256 arm64_linux: "6dbe6c54d311e8d0c69a838ce7ffdad494369efe754ef257a591264cbc01eff0" + sha256 x86_64_linux: "6b2b1227c7b121dbdc93d15f9c716502c605f64247867e266844bcdad5f5ee6b" end keg_only :versioned_formula From 90bc3f0e100cacf235960c6c47d7fa2b859bf218 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 19:50:45 +0000 Subject: [PATCH 0356/1364] mesa: update 25.1.0 bottle. --- Formula/m/mesa.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/m/mesa.rb b/Formula/m/mesa.rb index 81698a5c31ea3..e0be492409a52 100644 --- a/Formula/m/mesa.rb +++ b/Formula/m/mesa.rb @@ -23,13 +23,13 @@ class Mesa < Formula head "https://gitlab.freedesktop.org/mesa/mesa.git", branch: "main" bottle do - sha256 arm64_sequoia: "2867eb2778bc67627995096a265dc435d21eece20f370d5e6d85b781008afed0" - sha256 arm64_sonoma: "2b8c3763c3c6b6cd4c76945aa90d69e4bd6bd1d98aa7f1f10c13bd6ab9b4d786" - sha256 arm64_ventura: "67d89edf1f12dd211dedddc1983ffb151177cd7a0ba7a5ed2ec8e6aa20e99dbe" - sha256 sonoma: "c208d4f3630893d1215bfba2b0e074355284e2b6b4df5cef76a7939e8ed89e8e" - sha256 ventura: "6830da7a40476886209d74b767ac6076738ad05b012de0a70901935b15767009" - sha256 arm64_linux: "ebe7316df6a0134c8327461d8c596ffb4f53df36828f22df3a3cfc7d8d0eb1a8" - sha256 x86_64_linux: "9008ed3854010698606aae09655af916c5b9064f4cf77a69d0da8bb1cff56131" + sha256 arm64_sequoia: "777b9fa0f6f9e1ad1186791fb48c6d9bcbe0475f590a7e38e914b45dbfe7183d" + sha256 arm64_sonoma: "663e5837a6ac2f580981461c38c1a483f4cb4df8df7dddb0256eac219a8da4e2" + sha256 arm64_ventura: "2a15734c4aeeb7f038fa62f458cba3d8eed0dda744cc456e8899a673bf98b9f5" + sha256 sonoma: "972527f4df7484e478ec9514bd4ccc27c2b3b73f8ddacea2eae4fef41130119e" + sha256 ventura: "2a98d20998b8be10e9b5bce8208a2c2653f7e0959ee193c2a7dfa93832deb8b7" + sha256 arm64_linux: "dcc6fbe4c3cd1ce989abe5198430b94e974335969dd61de3c5c7dfa65aebfb1b" + sha256 x86_64_linux: "72521490ca2c248dccc81d6c2b930661633361af44d6087ab6765934322639b4" end depends_on "bindgen" => :build From d0139f4f892dc81a86603f4f5005dcc432e95a92 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 19:50:48 +0000 Subject: [PATCH 0357/1364] aws-c-http 0.10.1 --- Formula/a/aws-c-http.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/a/aws-c-http.rb b/Formula/a/aws-c-http.rb index 1cd70f6d62257..54977ff5a808b 100644 --- a/Formula/a/aws-c-http.rb +++ b/Formula/a/aws-c-http.rb @@ -1,8 +1,8 @@ class AwsCHttp < Formula desc "C99 implementation of the HTTP/1.1 and HTTP/2 specifications" homepage "https://github.com/awslabs/aws-c-http" - url "https://github.com/awslabs/aws-c-http/archive/refs/tags/v0.10.0.tar.gz" - sha256 "f7881e2f9af1a2e114b4147be80d70480f06af2b9cd195e8448afb750c74b1ae" + url "https://github.com/awslabs/aws-c-http/archive/refs/tags/v0.10.1.tar.gz" + sha256 "1550f7bf9666bb8f86514db9e623f07249e3c53e868d2f36ff69b83bd3eadfec" license "Apache-2.0" bottle do From d6918a46e8d249932c2856890974f3814954dbf9 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 19:51:14 +0000 Subject: [PATCH 0358/1364] awscli 2.27.11 --- Formula/a/awscli.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/a/awscli.rb b/Formula/a/awscli.rb index c4e5a64d08744..cd86f30075685 100644 --- a/Formula/a/awscli.rb +++ b/Formula/a/awscli.rb @@ -3,8 +3,8 @@ class Awscli < Formula desc "Official Amazon AWS command-line interface" homepage "https://aws.amazon.com/cli/" - url "https://github.com/aws/aws-cli/archive/refs/tags/2.27.10.tar.gz" - sha256 "9ca30a1f8b6b416319eb3306beaac2f543de691d0f30862d851be78808d740b3" + url "https://github.com/aws/aws-cli/archive/refs/tags/2.27.11.tar.gz" + sha256 "aa8b95a0887f6a6ff02e03be7e54219d97ccd634dfdff3107a10fc7b66892b7c" license "Apache-2.0" head "https://github.com/aws/aws-cli.git", branch: "v2" From a60b0c9cc68b8859080ea6c74fc5edcef6dcb87b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 19:55:16 +0000 Subject: [PATCH 0359/1364] cfn-lint 1.35.1 --- Formula/c/cfn-lint.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/c/cfn-lint.rb b/Formula/c/cfn-lint.rb index 0f850d0368bc6..f365247874d59 100644 --- a/Formula/c/cfn-lint.rb +++ b/Formula/c/cfn-lint.rb @@ -3,8 +3,8 @@ class CfnLint < Formula desc "Validate CloudFormation templates against the CloudFormation spec" homepage "https://github.com/aws-cloudformation/cfn-lint/" - url "https://files.pythonhosted.org/packages/75/6f/3c944f28de02ed6f6c9043fd671e2e3e7c7db57e12c2b5f9600f53075a2e/cfn_lint-1.35.0.tar.gz" - sha256 "110795daa7d34a93ca411b22406d2278a224a66702a4b32be3871cfd786af28f" + url "https://files.pythonhosted.org/packages/e5/11/d52bf891ec937b75a640996d84ba34abf55a59c80857968ccc5b51491957/cfn_lint-1.35.1.tar.gz" + sha256 "0a564819088c95ba88c5dca23ba1fb3c6cdb86b2f6a40219f1abf2134c5b47d7" license "MIT-0" bottle do @@ -37,13 +37,13 @@ class CfnLint < Formula end resource "boto3" do - url "https://files.pythonhosted.org/packages/5f/26/c4a2f1c64efb5ae6b47b94cb543282ab5770aa2c4562aba6934af628cf76/boto3-1.38.10.tar.gz" - sha256 "af4c78a3faa1a56cbaeb9e06cd5580772138be519fc6e740b81db586d5d1910c" + url "https://files.pythonhosted.org/packages/c8/73/14f9b57b764d9a8d998a4127bdc1f35adfb9d625f0cbe8814eb0d6bd6ff2/boto3-1.38.12.tar.gz" + sha256 "ca06315fdb20821fc1084a7b08557556eed97cb917a30ff19d8524b495383889" end resource "botocore" do - url "https://files.pythonhosted.org/packages/c0/18/c03b763c831e269d76a7c0fcba53802f99bf68f8d4530af672ae96a6d343/botocore-1.38.10.tar.gz" - sha256 "c531c13803e0fad5b395c5ccab4c11ac88acfccde71c9b998df6fa841392a8fc" + url "https://files.pythonhosted.org/packages/41/5a/37274d8510d4ad86bc8349e716d62c6b95c20e48403de3b34bc53cd7708c/botocore-1.38.12.tar.gz" + sha256 "86c459de3e39b418f4eb81e88c23fba02995496141db73816e7f65cb8b04408b" end resource "jmespath" do From 3310ed7f24d3454f64ba30d6429532bdfb14751a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 19:56:46 +0000 Subject: [PATCH 0360/1364] code-cli 1.100.0 --- Formula/c/code-cli.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/code-cli.rb b/Formula/c/code-cli.rb index 05d98d31c3112..5befae75ccf03 100644 --- a/Formula/c/code-cli.rb +++ b/Formula/c/code-cli.rb @@ -1,8 +1,8 @@ class CodeCli < Formula desc "Command-line interface built-in Visual Studio Code" homepage "https://github.com/microsoft/vscode" - url "https://github.com/microsoft/vscode/archive/refs/tags/1.99.3.tar.gz" - sha256 "81659cfc11d5c3a9a2ab46cd7e9a4d4ce4d4389a9e36cb8d1070503fc4e4ad3e" + url "https://github.com/microsoft/vscode/archive/refs/tags/1.100.0.tar.gz" + sha256 "b47bb68595466c9182fa5cdcc1d3298486e5f914fd9892cd11ce1a5eb254cea7" license "MIT" head "https://github.com/microsoft/vscode.git", branch: "main" From 4682d9412321164a7601620f2469871c25b0e9f4 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 19:58:16 +0000 Subject: [PATCH 0361/1364] cubejs-cli 1.3.12 --- Formula/c/cubejs-cli.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/cubejs-cli.rb b/Formula/c/cubejs-cli.rb index c3380aaa6c91c..4d15d8bf42eaa 100644 --- a/Formula/c/cubejs-cli.rb +++ b/Formula/c/cubejs-cli.rb @@ -1,8 +1,8 @@ class CubejsCli < Formula desc "Cube.js command-line interface" homepage "https://cube.dev/" - url "https://registry.npmjs.org/cubejs-cli/-/cubejs-cli-1.3.11.tgz" - sha256 "25ae37122812bf8fcad3b439de15ccafae86daf6481b1be2be85e4e22eccd3f8" + url "https://registry.npmjs.org/cubejs-cli/-/cubejs-cli-1.3.12.tgz" + sha256 "68edb800176fd15f610d73a69473a803cd599dff49ee29a637d5dccdb1fcb4f1" license "Apache-2.0" bottle do From 42d7acf35d097d2953105f6388a5c10cc9011426 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 20:02:58 +0000 Subject: [PATCH 0362/1364] fern-api 0.60.25 --- Formula/f/fern-api.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/f/fern-api.rb b/Formula/f/fern-api.rb index f903f59f93723..ab4a35f746751 100644 --- a/Formula/f/fern-api.rb +++ b/Formula/f/fern-api.rb @@ -1,8 +1,8 @@ class FernApi < Formula desc "Stripe-level SDKs and Docs for your API" homepage "https://buildwithfern.com/" - url "https://registry.npmjs.org/fern-api/-/fern-api-0.60.22.tgz" - sha256 "febf95d1a40d9335505f7db3b67d0d669a4f1394b73843b2b5fc7097fa5b1fb7" + url "https://registry.npmjs.org/fern-api/-/fern-api-0.60.25.tgz" + sha256 "4099e7c63f2f958d7a0c09e35270863ee9058a8d913f686d9a7a3b0301265263" license "Apache-2.0" head "https://github.com/fern-api/fern.git", branch: "main" From 20ab76ee180e39a6e5897460b6b05bc73be10831 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 20:04:25 +0000 Subject: [PATCH 0363/1364] flyctl 0.3.118 --- Formula/f/flyctl.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/f/flyctl.rb b/Formula/f/flyctl.rb index 6ac2d9fe1715e..5e2e21ca10691 100644 --- a/Formula/f/flyctl.rb +++ b/Formula/f/flyctl.rb @@ -2,8 +2,8 @@ class Flyctl < Formula desc "Command-line tools for fly.io services" homepage "https://fly.io" url "https://github.com/superfly/flyctl.git", - tag: "v0.3.117", - revision: "13cce8e9a1a4a3f5c0fa4e1b5573576a188b30ed" + tag: "v0.3.118", + revision: "e964b2acefccba21f3ebe5ee857d1b4c0d726861" license "Apache-2.0" head "https://github.com/superfly/flyctl.git", branch: "master" From 73f359f174907747566e08a3abbc717352c54882 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 20:06:21 +0000 Subject: [PATCH 0364/1364] git-town 20.1.0 --- Formula/g/git-town.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/g/git-town.rb b/Formula/g/git-town.rb index b5833a3dc2205..7af7497179222 100644 --- a/Formula/g/git-town.rb +++ b/Formula/g/git-town.rb @@ -1,8 +1,8 @@ class GitTown < Formula desc "High-level command-line interface for Git" homepage "https://www.git-town.com/" - url "https://github.com/git-town/git-town/archive/refs/tags/v20.0.0.tar.gz" - sha256 "82b08a44f2cbde4b96aff0f77c3758b2e10534e5b017548bac9387f5b3d7bfa9" + url "https://github.com/git-town/git-town/archive/refs/tags/v20.1.0.tar.gz" + sha256 "a2e3ffcc2b69d1279ad07da08fdf780103bae1bd7cc3cfa38f97898abf8515a0" license "MIT" head "https://github.com/git-town/git-town.git", branch: "main" From 2592254a4a5fab53458aab278f79b8580bbca34c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 20:08:29 +0000 Subject: [PATCH 0365/1364] harper 0.34.0 --- Formula/h/harper.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/h/harper.rb b/Formula/h/harper.rb index f403185063478..a1484fd5a1a31 100644 --- a/Formula/h/harper.rb +++ b/Formula/h/harper.rb @@ -1,8 +1,8 @@ class Harper < Formula desc "Grammar Checker for Developers" homepage "https://writewithharper.com/" - url "https://github.com/Automattic/harper/archive/refs/tags/v0.33.0.tar.gz" - sha256 "6abc9d0ae180da80b1862a980ab6258cea85daa21c2ac35b5fc65e44b4d2a10e" + url "https://github.com/Automattic/harper/archive/refs/tags/v0.34.0.tar.gz" + sha256 "81759aa513435ff0c92c12ddb3b0d2fac84e0e982696b3446547256aa290653c" license "Apache-2.0" head "https://github.com/Automattic/harper.git", branch: "master" From 7719f12aa02d7acc8017deb30ea85b77287d2828 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 20:08:54 +0000 Subject: [PATCH 0366/1364] scipy: update 1.15.3 bottle. --- Formula/s/scipy.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/s/scipy.rb b/Formula/s/scipy.rb index a309530657049..d6908f02c57db 100644 --- a/Formula/s/scipy.rb +++ b/Formula/s/scipy.rb @@ -7,13 +7,13 @@ class Scipy < Formula head "https://github.com/scipy/scipy.git", branch: "main" bottle do - sha256 cellar: :any, arm64_sequoia: "6e721be4b8e3634837e8f61737a7904247a34da62b1a8ca77cb7145ad9a0b17e" - sha256 cellar: :any, arm64_sonoma: "fa67300140d1d149b36483bd680b7d0036cba6d45db7714bbe8af73001e50079" - sha256 cellar: :any, arm64_ventura: "b74d9fcaef8750bb473bd4c21bc93c8fa57ad0fe2cc8f6087565744ca99a1586" - sha256 cellar: :any, sonoma: "a40acc90b9484b6e321af4333440db6d1aeb8c758b5c85018d6a1eca43a43cee" - sha256 cellar: :any, ventura: "273f1a5bb4735e7c1f62d323c7314e5a66ac7bed7440f6c3736dfff5d14259c8" - sha256 cellar: :any_skip_relocation, arm64_linux: "a92f71a9aac723e2ef2d283b60c903fc5ed179c03958f9426a0f81ecc1fc9fe8" - sha256 cellar: :any_skip_relocation, x86_64_linux: "12f9c5331e4c7ece19e2338b34a13ce87e0e6c1d9c1b838e0a3047ec82f4c370" + sha256 cellar: :any, arm64_sequoia: "40cea0dc46f7aa2d88fc5a140f1fe386b55455de1cd09cefca45b8b45776a614" + sha256 cellar: :any, arm64_sonoma: "f7c9fe1a35de9df3a6d1a92511d2d4d8e5f7c1896c1110a7c54c79276bd2c55a" + sha256 cellar: :any, arm64_ventura: "961e2fa1986097233fdc3103e7acd39816be4a22ca5cd4fd326abf47827dd7f5" + sha256 cellar: :any, sonoma: "61704bc83e517fe3032a787f08cab4beb81fe4e48ad5aa9aa774183ba885f519" + sha256 cellar: :any, ventura: "4e20878042bf0982ce80c571507b33c3c654092c5679d24564c954e6cf943741" + sha256 cellar: :any_skip_relocation, arm64_linux: "ff04634fffe1e28ed408efbd1a9902c9eb74d279ce6e1202b87637763d439313" + sha256 cellar: :any_skip_relocation, x86_64_linux: "3897bebc7e283cee35014239d82102cb0ddc96fe987c3ecf98e9ccc08c5c6a9f" end depends_on "meson" => :build From fdc9d274b0cd728c20a3c8631735c508c96db10f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 20:08:54 +0000 Subject: [PATCH 0367/1364] heroku 10.7.0 --- Formula/h/heroku.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/h/heroku.rb b/Formula/h/heroku.rb index cf4befe279175..a319e70fcf62d 100644 --- a/Formula/h/heroku.rb +++ b/Formula/h/heroku.rb @@ -1,8 +1,8 @@ class Heroku < Formula desc "CLI for Heroku" homepage "https://www.npmjs.com/package/heroku/" - url "https://registry.npmjs.org/heroku/-/heroku-10.6.1.tgz" - sha256 "1f8b90343ff6299d14a6e7983a97176fb9a22ffb32ee4f3e732cecfee32cf311" + url "https://registry.npmjs.org/heroku/-/heroku-10.7.0.tgz" + sha256 "518e73915bd2134e68ccd04741a0f790f35847dc39951b3edc27cd634e37550f" license "ISC" bottle do From 1e0608453a837ec7ce22179b159c501f79fc74fd Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 20:09:44 +0000 Subject: [PATCH 0368/1364] hy 1.1.0 --- Formula/h/hy.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/h/hy.rb b/Formula/h/hy.rb index 32aeb8ff60fa1..b9b6419e0499f 100644 --- a/Formula/h/hy.rb +++ b/Formula/h/hy.rb @@ -3,8 +3,8 @@ class Hy < Formula desc "Dialect of Lisp that's embedded in Python" homepage "https://github.com/hylang/hy" - url "https://files.pythonhosted.org/packages/ab/7f/f8061ae737f6a564c3d4f80287bd5ff46afc1f606617a9cb5c797e6a974a/hy-1.0.0.tar.gz" - sha256 "3a00013e075ff5ce8f5d475ca2be47e4c871f09184ba3533787cb544d32d1f9e" + url "https://files.pythonhosted.org/packages/eb/4e/30dbda9961e5eec63606c8d2fd08ece12f28244111df05a79adac2b02f37/hy-1.1.0.tar.gz" + sha256 "c8943ce306341b4b3edab4142f2c7ca55b43415b0ebf6c0e7969290a6eed2948" license "MIT" bottle do From 54e6f951930b140f1630b96cebe7735c21530101 Mon Sep 17 00:00:00 2001 From: IT Service Account <117774934+IT-Flow-Service-Account@users.noreply.github.com> Date: Thu, 8 May 2025 13:11:13 -0700 Subject: [PATCH 0369/1364] flow-cli 2.2.14 Created by https://github.com/mislav/bump-homebrew-formula-action --- Formula/f/flow-cli.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/f/flow-cli.rb b/Formula/f/flow-cli.rb index 7d6557d8daa96..421038168b4a4 100644 --- a/Formula/f/flow-cli.rb +++ b/Formula/f/flow-cli.rb @@ -1,8 +1,8 @@ class FlowCli < Formula desc "Command-line interface that provides utilities for building Flow applications" homepage "https://onflow.org" - url "https://github.com/onflow/flow-cli/archive/refs/tags/v2.2.13.tar.gz" - sha256 "bd84caa459bd8e5de4ce762f9ebc923fde67a10c95c5328c809d9ce897b6b397" + url "https://github.com/onflow/flow-cli/archive/refs/tags/v2.2.14.tar.gz" + sha256 "c56bcca9336538e7475c25e7f9a3a5b7525d2e18b841eae714a5a3eea1cd93d4" license "Apache-2.0" head "https://github.com/onflow/flow-cli.git", branch: "master" From 5a43d7ca18de349729eca6cf788c6a2211d21760 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 20:21:42 +0000 Subject: [PATCH 0370/1364] netlify-cli 21.2.1 --- Formula/n/netlify-cli.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/n/netlify-cli.rb b/Formula/n/netlify-cli.rb index ecca26e47e8ed..20b46d3e347e5 100644 --- a/Formula/n/netlify-cli.rb +++ b/Formula/n/netlify-cli.rb @@ -1,8 +1,8 @@ class NetlifyCli < Formula desc "Netlify command-line tool" homepage "https://www.netlify.com/docs/cli" - url "https://registry.npmjs.org/netlify-cli/-/netlify-cli-21.2.0.tgz" - sha256 "9a237e7f6fca419dfc7cc42ed34d15927d82a8a0970ceaa165ffac34c46f0608" + url "https://registry.npmjs.org/netlify-cli/-/netlify-cli-21.2.1.tgz" + sha256 "b557b2fccc5005fc9775c5800e314c5975c40343556292513265c8b170c0c9a7" license "MIT" head "https://github.com/netlify/cli.git", branch: "main" From 48f2bc7bbca1a35d567b592fa6fa397c151617e5 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 20:21:51 +0000 Subject: [PATCH 0371/1364] code-cli: update 1.100.0 bottle. --- Formula/c/code-cli.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/code-cli.rb b/Formula/c/code-cli.rb index 5befae75ccf03..5a5d836766230 100644 --- a/Formula/c/code-cli.rb +++ b/Formula/c/code-cli.rb @@ -12,13 +12,13 @@ class CodeCli < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "a1361cd13fb647ee4a8197e0be26d88bac23db87d1ca603e87d9112cc0873744" - sha256 cellar: :any, arm64_sonoma: "c3d22103681387fb781c6e46a16ab560285e144f7078dd8358f490ca8497403b" - sha256 cellar: :any, arm64_ventura: "13d5afde756f30bcc791b02e037a5606f34c7cb539087afa84666f61b4c7a398" - sha256 cellar: :any, sonoma: "21d972ed35b82eeee327f65c9c74e1f4ec29ffce8e9dffd50c5f98d4cdf65c93" - sha256 cellar: :any, ventura: "b4bc9809b4b60030cb41f674375e6ed6a69a3ae36f0b8be31c323ae670b7e5eb" - sha256 cellar: :any_skip_relocation, arm64_linux: "2a439e257208f43576077bc52e2daf1de72931db24f40e6b0a66b4772a7369cb" - sha256 cellar: :any_skip_relocation, x86_64_linux: "d63bf0568786cc3a21c5dc7f1304e7946ebb761a8af38a7a3d49cec0559063e3" + sha256 cellar: :any, arm64_sequoia: "355728f3d3379f1534014b67e1ba47ab496ace391dff6c65020892fc86c78094" + sha256 cellar: :any, arm64_sonoma: "cbbed511508b65c761cfc12528799b009b5def747f4944a2dfc317fbe7fa18ec" + sha256 cellar: :any, arm64_ventura: "bc0416e85118eb7b717a32e6a5ecc77aae41a437f5ec6a8c8dccc92b271c4237" + sha256 cellar: :any, sonoma: "a961e0e1a5be991520bd04cc415c4fa143f306637f070a8175203897567312f0" + sha256 cellar: :any, ventura: "7ec64ccc1057679b9fe6f6f6f67da7d93dffe61baf27e499ac28595593ad7db6" + sha256 cellar: :any_skip_relocation, arm64_linux: "9a75053b6d3e4f9e9a91a9bb5289222c0433231465d40d5b4a2ffdd16ada7a02" + sha256 cellar: :any_skip_relocation, x86_64_linux: "0c1293e84cfc4b199a3972ebab27f3ef70e21c19b69b9050218ab46c42e0a97d" end depends_on "rust" => :build From b78ba4d982f8274d5840418bcfdccdea7b374801 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 20:23:24 +0000 Subject: [PATCH 0372/1364] oh-my-posh 25.22.0 --- Formula/o/oh-my-posh.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/o/oh-my-posh.rb b/Formula/o/oh-my-posh.rb index f3974a0aca7ed..3318a9298cfd1 100644 --- a/Formula/o/oh-my-posh.rb +++ b/Formula/o/oh-my-posh.rb @@ -1,8 +1,8 @@ class OhMyPosh < Formula desc "Prompt theme engine for any shell" homepage "https://ohmyposh.dev" - url "https://github.com/JanDeDobbeleer/oh-my-posh/archive/refs/tags/v25.21.1.tar.gz" - sha256 "460e343b332747b7a5c258b3a787d522db4adfa9994fdc2c572fd9f74b3c2745" + url "https://github.com/JanDeDobbeleer/oh-my-posh/archive/refs/tags/v25.22.0.tar.gz" + sha256 "9d17fcbe8cfdd923ab1ddd9901599b4880c5c86dd12e1882e95b8643d07d1a1d" license "MIT" head "https://github.com/JanDeDobbeleer/oh-my-posh.git", branch: "main" From a41be5723e20324deb9213d07771f57ff00ede7c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 20:23:41 +0000 Subject: [PATCH 0373/1364] fern-api: update 0.60.25 bottle. --- Formula/f/fern-api.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/f/fern-api.rb b/Formula/f/fern-api.rb index ab4a35f746751..4ccc843a2fc1e 100644 --- a/Formula/f/fern-api.rb +++ b/Formula/f/fern-api.rb @@ -7,7 +7,7 @@ class FernApi < Formula head "https://github.com/fern-api/fern.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, all: "d6084ab274241dc6720d2635a4d2d255df709ef4cdba3a54fe15cfa07312f6fb" + sha256 cellar: :any_skip_relocation, all: "9816f2895876841d7720afad5a81f31875ba1995335a91c47289b746cbe2569c" end depends_on "node" From dc488a2c2884ff4a2428a0f3ce31566be0bb52b6 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 20:25:40 +0000 Subject: [PATCH 0374/1364] kuzu: update 0.10.0 bottle. --- Formula/k/kuzu.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/k/kuzu.rb b/Formula/k/kuzu.rb index 45a4f27050b5a..bdf87f7f1ffdf 100644 --- a/Formula/k/kuzu.rb +++ b/Formula/k/kuzu.rb @@ -7,13 +7,13 @@ class Kuzu < Formula head "https://github.com/kuzudb/kuzu.git", branch: "master" bottle do - sha256 cellar: :any, arm64_sequoia: "f618fb4bddb81e14c2efbad684057b88f615156e6bbf5f148584e083950f7b67" - sha256 cellar: :any, arm64_sonoma: "2afded37cf67ff4b4fe9918b1308666e237f3397bfc464fb84514c24b0f3eae5" - sha256 cellar: :any, arm64_ventura: "6e62c52cd42fda209d5455329210870bbe76be57b9e586160b2fef606fb2fa94" - sha256 cellar: :any, sonoma: "567dbb9cc6b796f8e172786caa95c907853edb39a41b4a5db942abe161e12be3" - sha256 cellar: :any, ventura: "cb35733f74d030f7a636d17f35f9cb8be5967189f079b49125fd8a92d7ac1efe" - sha256 cellar: :any_skip_relocation, arm64_linux: "3cc1701c3f3ea2a95ff9d350b208f95f095d8d47143761fcf08b10ed56d2dc22" - sha256 cellar: :any_skip_relocation, x86_64_linux: "de67eceae5e106351a704b539a9db3cffa4e0fd5df4ff75501a5304f08118d69" + sha256 cellar: :any, arm64_sequoia: "bb7aa1820a91f16e0bdeb5f7c53712283bd554ae81620d1ba88fe42659ba463d" + sha256 cellar: :any, arm64_sonoma: "98c6ea68a10e431295b2462087c3708c9d2bc20f0692183cd6a20afd742a3e87" + sha256 cellar: :any, arm64_ventura: "e08626d3676a27d8bb7982947ef08ff583c1a85bbb2d6d41354ca367b2b25dd2" + sha256 cellar: :any, sonoma: "8eb48a39122afdeb15918d77e0e9ffc0317d439ca31e417bc9cc1fd45b8d4c62" + sha256 cellar: :any, ventura: "2d313770379129941835d3af9c31b8b3c4b2681330179ef30b1fee40ddf14374" + sha256 cellar: :any_skip_relocation, arm64_linux: "b79e4eb188a959d8a693738357983cbffab94b17219276bc57692b7bc76f323d" + sha256 cellar: :any_skip_relocation, x86_64_linux: "56c16f0f1a7ee33ad239617882f1282a04a62606ded34fbbfdb7de79e0e9427c" end depends_on "cmake" => :build From d86c68a9719d2b8b7b11bc044fac38fe7e75aa22 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 20:27:34 +0000 Subject: [PATCH 0375/1364] promptfoo 0.112.4 --- Formula/p/promptfoo.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/p/promptfoo.rb b/Formula/p/promptfoo.rb index 18ca4b79c8de8..9a2a0dcf2edc0 100644 --- a/Formula/p/promptfoo.rb +++ b/Formula/p/promptfoo.rb @@ -1,8 +1,8 @@ class Promptfoo < Formula desc "Test your LLM app locally" homepage "https://promptfoo.dev/" - url "https://registry.npmjs.org/promptfoo/-/promptfoo-0.112.3.tgz" - sha256 "355a03076a796e3c11d8cfb58e714e6670d427b54d381b44341131e51c51a241" + url "https://registry.npmjs.org/promptfoo/-/promptfoo-0.112.4.tgz" + sha256 "b5cb767c9d55c31d33e4ab46380a9d69a8228fb5cd1ad896edd819a976b61db9" license "MIT" bottle do From e5b2d32071bc240f2c40183629e82f006f3f7e7f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 20:27:51 +0000 Subject: [PATCH 0376/1364] cubejs-cli: update 1.3.12 bottle. --- Formula/c/cubejs-cli.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/cubejs-cli.rb b/Formula/c/cubejs-cli.rb index 4d15d8bf42eaa..997fc79af4888 100644 --- a/Formula/c/cubejs-cli.rb +++ b/Formula/c/cubejs-cli.rb @@ -6,13 +6,13 @@ class CubejsCli < Formula license "Apache-2.0" bottle do - sha256 cellar: :any, arm64_sequoia: "23373ce71312a177bc30fae1d5441befa117657d615689e586855a57c768517c" - sha256 cellar: :any, arm64_sonoma: "23373ce71312a177bc30fae1d5441befa117657d615689e586855a57c768517c" - sha256 cellar: :any, arm64_ventura: "23373ce71312a177bc30fae1d5441befa117657d615689e586855a57c768517c" - sha256 cellar: :any, sonoma: "9053398f20d8f611a821581ede0f36dba35347f69b72344a810db2d44453fa4e" - sha256 cellar: :any, ventura: "9053398f20d8f611a821581ede0f36dba35347f69b72344a810db2d44453fa4e" - sha256 cellar: :any_skip_relocation, arm64_linux: "051fa23d3302690e49bc79acb03debea10fd75262d5530450f07a870dd52d3ca" - sha256 cellar: :any_skip_relocation, x86_64_linux: "347571b4258f79a4dcfc3c788b0b175983f1692b08de37199ea01557f5d225ed" + sha256 cellar: :any, arm64_sequoia: "4c2ef2e8fe58f1e9196f333e499f3612d7805cd385c9e3437ac30ff2d634e87b" + sha256 cellar: :any, arm64_sonoma: "4c2ef2e8fe58f1e9196f333e499f3612d7805cd385c9e3437ac30ff2d634e87b" + sha256 cellar: :any, arm64_ventura: "4c2ef2e8fe58f1e9196f333e499f3612d7805cd385c9e3437ac30ff2d634e87b" + sha256 cellar: :any, sonoma: "3626ae92b4c29f47a93bad21ad0b1b72a8ed845a87cb5a65903e742cc64dfeec" + sha256 cellar: :any, ventura: "3626ae92b4c29f47a93bad21ad0b1b72a8ed845a87cb5a65903e742cc64dfeec" + sha256 cellar: :any_skip_relocation, arm64_linux: "78316ba73442ccf50afdd044aa4c69048a1346acccca432e71180999b665f5bb" + sha256 cellar: :any_skip_relocation, x86_64_linux: "6af1cd4592408e4d66119119cccdf57ed29cfc8af9406310645ea95b702ba96d" end depends_on "node" From 9d25479fa3c4bbc9de270f2b9fcb37e75b82741d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 20:28:52 +0000 Subject: [PATCH 0377/1364] python-matplotlib 3.10.3 --- Formula/p/python-matplotlib.rb | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/Formula/p/python-matplotlib.rb b/Formula/p/python-matplotlib.rb index 7d904f540f2be..8a70209a178ab 100644 --- a/Formula/p/python-matplotlib.rb +++ b/Formula/p/python-matplotlib.rb @@ -3,8 +3,8 @@ class PythonMatplotlib < Formula desc "Python library for creating static, animated, and interactive visualizations" homepage "https://matplotlib.org/" - url "https://files.pythonhosted.org/packages/2f/08/b89867ecea2e305f408fbb417139a8dd941ecf7b23a2e02157c36da546f0/matplotlib-3.10.1.tar.gz" - sha256 "e8d2d0e3881b129268585bf4765ad3ee73a4591d77b9a18c214ac7e3a79fb2ba" + url "https://files.pythonhosted.org/packages/26/91/d49359a21893183ed2a5b6c76bec40e0b1dcbf8ca148f864d134897cfc75/matplotlib-3.10.3.tar.gz" + sha256 "2f82d2c5bb7ae93aaaa4cd42aca65d76ce6376f83304fa3a630b569aca274df0" license "PSF-2.0" bottle do @@ -31,8 +31,8 @@ class PythonMatplotlib < Formula end resource "contourpy" do - url "https://files.pythonhosted.org/packages/25/c2/fc7193cc5383637ff390a712e88e4ded0452c9fbcf84abe3de5ea3df1866/contourpy-1.3.1.tar.gz" - sha256 "dfd97abd83335045a913e3bcc4a09c0ceadbe66580cf573fe961f4a825efa699" + url "https://files.pythonhosted.org/packages/66/54/eb9bfc647b19f2009dd5c7f5ec51c4e6ca831725f1aea7a993034f483147/contourpy-1.3.2.tar.gz" + sha256 "b6945942715a034c671b7fc54f9588126b0b8bf23db2696e3ca8328f3ff0ab54" end resource "cycler" do @@ -41,8 +41,8 @@ class PythonMatplotlib < Formula end resource "fonttools" do - url "https://files.pythonhosted.org/packages/1c/8c/9ffa2a555af0e5e5d0e2ed7fdd8c9bef474ed676995bb4c57c9cd0014248/fonttools-4.56.0.tar.gz" - sha256 "a114d1567e1a1586b7e9e7fc2ff686ca542a82769a296cef131e4c4af51e58f4" + url "https://files.pythonhosted.org/packages/03/2d/a9a0b6e3a0cf6bd502e64fc16d894269011930cabfc89aee20d1635b1441/fonttools-4.57.0.tar.gz" + sha256 "727ece10e065be2f9dd239d15dd5d60a66e17eac11aea47d447f9f03fdbc42de" end resource "kiwisolver" do @@ -51,13 +51,13 @@ class PythonMatplotlib < Formula end resource "packaging" do - url "https://files.pythonhosted.org/packages/d0/63/68dbb6eb2de9cb10ee4c9c14a0148804425e13c4fb20d61cce69f53106da/packaging-24.2.tar.gz" - sha256 "c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f" + url "https://files.pythonhosted.org/packages/a1/d4/1fc4078c65507b51b96ca8f8c3ba19e6a61c8253c72794544580a7b6c24d/packaging-25.0.tar.gz" + sha256 "d443872c98d677bf60f6a1f2f8c1cb748e8fe762d2bf9d3148b5599295b0fc4f" end resource "pyparsing" do - url "https://files.pythonhosted.org/packages/8b/1a/3544f4f299a47911c2ab3710f534e52fea62a633c96806995da5d25be4b2/pyparsing-3.2.1.tar.gz" - sha256 "61980854fd66de3a90028d679a954d5f2623e83144b5afe5ee86f43d762e5f0a" + url "https://files.pythonhosted.org/packages/bb/22/f1129e69d94ffff626bdb5c835506b3a5b4f3d070f17ea295e12c2c6f60f/pyparsing-3.2.3.tar.gz" + sha256 "b9c13f1ab8b3b542f72e28f634bad4de758ab3ce4546e4301970ad6fa77c38be" end resource "python-dateutil" do From 040276aefe69ca6dbc91f92d501b0cb205878e8c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 20:34:05 +0000 Subject: [PATCH 0378/1364] flyctl: update 0.3.118 bottle. --- Formula/f/flyctl.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/f/flyctl.rb b/Formula/f/flyctl.rb index 5e2e21ca10691..acaaacaae34b6 100644 --- a/Formula/f/flyctl.rb +++ b/Formula/f/flyctl.rb @@ -18,13 +18,13 @@ class Flyctl < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "0338ac76f9bcaa04e50b8bf80cdf16cbb0143923dceddb09eab0cfd6de5e30ea" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "0338ac76f9bcaa04e50b8bf80cdf16cbb0143923dceddb09eab0cfd6de5e30ea" - sha256 cellar: :any_skip_relocation, arm64_ventura: "0338ac76f9bcaa04e50b8bf80cdf16cbb0143923dceddb09eab0cfd6de5e30ea" - sha256 cellar: :any_skip_relocation, sonoma: "3c77fb25265e91ab4cfe199abb79dfc32a8c4656378c03a69cba7ddbfafb9803" - sha256 cellar: :any_skip_relocation, ventura: "3c77fb25265e91ab4cfe199abb79dfc32a8c4656378c03a69cba7ddbfafb9803" - sha256 cellar: :any_skip_relocation, arm64_linux: "3f09bb249e47ce1e8137caa2921f1dcc0d076522f3d7e73d1f48b056b1a428c9" - sha256 cellar: :any_skip_relocation, x86_64_linux: "0f16cc0d12579d26d7442d10f3db6e80e7dd37937cff618cc9f13a93ec68dfc2" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "2b5b12722e9e1e643c9923e558181d0d511f74cf08d7a700aa170d973068d55a" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "2b5b12722e9e1e643c9923e558181d0d511f74cf08d7a700aa170d973068d55a" + sha256 cellar: :any_skip_relocation, arm64_ventura: "2b5b12722e9e1e643c9923e558181d0d511f74cf08d7a700aa170d973068d55a" + sha256 cellar: :any_skip_relocation, sonoma: "9fdc53e01c0bc037ef1ffb11d0bafc3b6e4fd6646c5e4d0aad3ac6f9cfcfe810" + sha256 cellar: :any_skip_relocation, ventura: "9fdc53e01c0bc037ef1ffb11d0bafc3b6e4fd6646c5e4d0aad3ac6f9cfcfe810" + sha256 cellar: :any_skip_relocation, arm64_linux: "a712de98090367ec973539f347e642f77bcee8e4cea1247f14367e17bc87aa39" + sha256 cellar: :any_skip_relocation, x86_64_linux: "05115e9f3c57bc2cd6987a62791d25b114fcd92a779532518b82a76c936bf6e4" end depends_on "go" => :build From 924dddc5def2a8ee20ab9eb37bfdc75bc551c1ab Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 20:34:14 +0000 Subject: [PATCH 0379/1364] git-town: update 20.1.0 bottle. --- Formula/g/git-town.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/g/git-town.rb b/Formula/g/git-town.rb index 7af7497179222..6fd9a386dbc5b 100644 --- a/Formula/g/git-town.rb +++ b/Formula/g/git-town.rb @@ -7,12 +7,12 @@ class GitTown < Formula head "https://github.com/git-town/git-town.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "96deffa4780f459d7333ede5a4a031043d1f8175f3f66c2600e17736f9c1f9a9" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "96deffa4780f459d7333ede5a4a031043d1f8175f3f66c2600e17736f9c1f9a9" - sha256 cellar: :any_skip_relocation, arm64_ventura: "96deffa4780f459d7333ede5a4a031043d1f8175f3f66c2600e17736f9c1f9a9" - sha256 cellar: :any_skip_relocation, sonoma: "998c79b056c1b39c4108a1aa79b191a9c037a712b7eb41d9a9ad5e0b1b4688d6" - sha256 cellar: :any_skip_relocation, ventura: "998c79b056c1b39c4108a1aa79b191a9c037a712b7eb41d9a9ad5e0b1b4688d6" - sha256 cellar: :any_skip_relocation, x86_64_linux: "61fd4019f9c0ffc61f182135da0b7d20cac908a8a2e2c4974417c7674bfc5c27" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "5d6a0bcbc8dca29ce3a22847c9d910db936c58ca1cbdc3bdd4bbf97fb873f151" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "5d6a0bcbc8dca29ce3a22847c9d910db936c58ca1cbdc3bdd4bbf97fb873f151" + sha256 cellar: :any_skip_relocation, arm64_ventura: "5d6a0bcbc8dca29ce3a22847c9d910db936c58ca1cbdc3bdd4bbf97fb873f151" + sha256 cellar: :any_skip_relocation, sonoma: "56ad14c0a9b0b4c0a9f0578fa87ce4747cf143b0b03e87a5137f0f284ba11203" + sha256 cellar: :any_skip_relocation, ventura: "56ad14c0a9b0b4c0a9f0578fa87ce4747cf143b0b03e87a5137f0f284ba11203" + sha256 cellar: :any_skip_relocation, x86_64_linux: "a38c69a1d44f517fec7377a3d500fe391ae90d663a97b47612631b676873d328" end depends_on "go" => :build From 8dcf17ef28359f8761943d0bae1fdfa40b40d93e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 20:35:46 +0000 Subject: [PATCH 0380/1364] sui 1.48.1 --- Formula/s/sui.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/s/sui.rb b/Formula/s/sui.rb index e55b044d36793..5706528741f61 100644 --- a/Formula/s/sui.rb +++ b/Formula/s/sui.rb @@ -1,8 +1,8 @@ class Sui < Formula desc "Next-generation smart contract platform powered by the Move programming language" homepage "https://sui.io" - url "https://github.com/MystenLabs/sui/archive/refs/tags/testnet-v1.48.0.tar.gz" - sha256 "a50f3453e177e30bc045c7491c005690f4682e839f0bd0260c0d394a428fda99" + url "https://github.com/MystenLabs/sui/archive/refs/tags/testnet-v1.48.1.tar.gz" + sha256 "d2b67fddea8205389efb8bbeae22b0aab982d372d9b3e912501bcc19b509919a" license "Apache-2.0" livecheck do From ee07074ae7ad5831d9b9b5ec582f6751e9abbb0d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 20:38:00 +0000 Subject: [PATCH 0381/1364] trufflehog 3.88.29 --- Formula/t/trufflehog.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/t/trufflehog.rb b/Formula/t/trufflehog.rb index c906bc677413a..d42ebf313f961 100644 --- a/Formula/t/trufflehog.rb +++ b/Formula/t/trufflehog.rb @@ -1,8 +1,8 @@ class Trufflehog < Formula desc "Find and verify credentials" homepage "https://trufflesecurity.com/" - url "https://github.com/trufflesecurity/trufflehog/archive/refs/tags/v3.88.28.tar.gz" - sha256 "b3d6d0d49d9145743b50c56cad7376192e94e9d4a523aa5decb0c84c13faa3bb" + url "https://github.com/trufflesecurity/trufflehog/archive/refs/tags/v3.88.29.tar.gz" + sha256 "ffe9be634161bd72582f29f67357b608c290060f7f00a717fe5d5f2508758864" # upstream license ask, https://github.com/trufflesecurity/trufflehog/issues/1446 license "AGPL-3.0-only" head "https://github.com/trufflesecurity/trufflehog.git", branch: "main" From 2aa6ffe7b61532153921ec4b0551cf26017cb35e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 20:39:43 +0000 Subject: [PATCH 0382/1364] virtualenv 20.31.2 --- Formula/v/virtualenv.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Formula/v/virtualenv.rb b/Formula/v/virtualenv.rb index be4dc3c42f55c..f71722841ca39 100644 --- a/Formula/v/virtualenv.rb +++ b/Formula/v/virtualenv.rb @@ -3,8 +3,8 @@ class Virtualenv < Formula desc "Tool for creating isolated virtual python environments" homepage "https://virtualenv.pypa.io/" - url "https://files.pythonhosted.org/packages/53/07/655f4fb9592967f49197b00015bb5538d3ed1f8f96621a10bebc3bb822e2/virtualenv-20.31.1.tar.gz" - sha256 "65442939608aeebb9284cd30baca5865fcd9f12b58bb740a24b220030df46d26" + url "https://files.pythonhosted.org/packages/56/2c/444f465fb2c65f40c3a104fd0c495184c4f2336d65baf398e3c75d72ea94/virtualenv-20.31.2.tar.gz" + sha256 "e10c0a9d02835e592521be48b332b6caee6887f332c111aa79a09b9e79efc2af" license "MIT" head "https://github.com/pypa/virtualenv.git", branch: "main" @@ -31,8 +31,8 @@ class Virtualenv < Formula end resource "platformdirs" do - url "https://files.pythonhosted.org/packages/b6/2d/7d512a3913d60623e7eb945c6d1b4f0bddf1d0b7ada5225274c87e5b53d1/platformdirs-4.3.7.tar.gz" - sha256 "eb437d586b6a0986388f0d6f74aa0cde27b48d0e3d66843640bfb6bdcdb6e351" + url "https://files.pythonhosted.org/packages/fe/8b/3c73abc9c759ecd3f1f7ceff6685840859e8070c4d947c93fae71f6a0bf2/platformdirs-4.3.8.tar.gz" + sha256 "3d512d96e16bcb959a814c9f348431070822a6496326a4be0911c40b5a74c2bc" end def install From d97bac1bdf00eab53f42eeca9ba11e9b3c945b7d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 20:43:22 +0000 Subject: [PATCH 0383/1364] cfn-lint: update 1.35.1 bottle. --- Formula/c/cfn-lint.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/cfn-lint.rb b/Formula/c/cfn-lint.rb index f365247874d59..c2d0ccb40580a 100644 --- a/Formula/c/cfn-lint.rb +++ b/Formula/c/cfn-lint.rb @@ -8,13 +8,13 @@ class CfnLint < Formula license "MIT-0" bottle do - sha256 cellar: :any, arm64_sequoia: "817523c2aab17d240bd6e12994c47804b85753a838187035804f03b83fb0a05a" - sha256 cellar: :any, arm64_sonoma: "2835f36c6532b0c24a8d5c680c6014c2bbaba77c34a23ce5f8c1a213136ad4b5" - sha256 cellar: :any, arm64_ventura: "98733992aaff72e1cf06541dd0edc0f2c1029bcac713c686b0cf7711ef6193bc" - sha256 cellar: :any, sonoma: "1f60bccd11d151885dbb98884d1c1b0ff3cf3ee3198a068711381d240480316c" - sha256 cellar: :any, ventura: "876b602122de375528585fd887eb3d48b6905e2e201411f6a5e3eb08720c42cb" - sha256 cellar: :any_skip_relocation, arm64_linux: "986e76b968984e17c7460eab49047d6b093731a98de0da6660a63497a338fb6d" - sha256 cellar: :any_skip_relocation, x86_64_linux: "c5d6ab88beb9c9849796aeb5958176980665bd9c454b00ea7eb155ba88a44c3d" + sha256 cellar: :any, arm64_sequoia: "9b7e1fe164de4647b1bcac6785a8fb460a19376f4134fd759c11e3173672eb30" + sha256 cellar: :any, arm64_sonoma: "3438786655e8c0a651ae865e9534f0f81b3fdcbaf973dc0ba45931038976398e" + sha256 cellar: :any, arm64_ventura: "ea32a3ee21feeb4c5a4d1ad4736f1eb33fa9f7f1242f6775a3181b9b93f6b05e" + sha256 cellar: :any, sonoma: "db5a9d505b5d9fe358dba805ec621e87ae6db0b59df029a9d2137aef2b00ad9d" + sha256 cellar: :any, ventura: "9195bb7d4b53908e82cd2b4aaa2fa5debcd338ffa7049b3f6e160fd360579f4b" + sha256 cellar: :any_skip_relocation, arm64_linux: "e89a35b9eb20b3c9bfcb28767697614703d8450c084fcd3a17eeb9e7bcb02615" + sha256 cellar: :any_skip_relocation, x86_64_linux: "3ddc9e3ccd167f28194fc8f54f98affd7bd8dc8041e058b4192d973b2515972f" end depends_on "rust" => :build From 76ace8c8b347274c4d33c8b698c58c8a8e3ecce0 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 20:44:47 +0000 Subject: [PATCH 0384/1364] harper: update 0.34.0 bottle. --- Formula/h/harper.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/h/harper.rb b/Formula/h/harper.rb index a1484fd5a1a31..b46fc6fc684fd 100644 --- a/Formula/h/harper.rb +++ b/Formula/h/harper.rb @@ -12,13 +12,13 @@ class Harper < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "ad26b0d31afc1eb923d9e4e8b273ca3cb4ac4264d0d02482c57ff45cc1009dcf" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "63308eeeebadfbd021dd2e458f045c8fa3843a903d1321c987f3e594293e0137" - sha256 cellar: :any_skip_relocation, arm64_ventura: "23904d34d8bad88fc3703a944f6c217822673980e77c6819acdfa88ef3af2cc3" - sha256 cellar: :any_skip_relocation, sonoma: "0d0d25be7d6d0a3aea17dcee768a378c0f836a1c5bd89a7c8e79f6c881fa7d36" - sha256 cellar: :any_skip_relocation, ventura: "bdfd494775a5a1a160330e1884ceb73d38d4d61782b8b3550e33ae156b96f64d" - sha256 cellar: :any_skip_relocation, arm64_linux: "f0f0d152cd7b6f8f35386e4dce79b87c316e446ab170288c7ee2bf8c079cdb0f" - sha256 cellar: :any_skip_relocation, x86_64_linux: "eb733fdf412ffdbe11994fda7c6b99f4940851b7d81d887231dc81219ad5801d" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "766977016cd03322a0a355ca838585858ffae6533b54821134f077e08e3cc98c" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "874c27777c7c695874ea876ed8730108a7b628a56cd890254d50d711e31f0c6a" + sha256 cellar: :any_skip_relocation, arm64_ventura: "a673f40b3de830cc0cd85eaaeb2028c344643dbae14992a058dcb8113f93ae3b" + sha256 cellar: :any_skip_relocation, sonoma: "4391efd83f263b7015ca598d2488d1c8e7c7379e9b5d5798bd3256bd361a3384" + sha256 cellar: :any_skip_relocation, ventura: "ff2b5c26387dd345dc64035b0b453390e98127eefe062d593c4ed1e957137830" + sha256 cellar: :any_skip_relocation, arm64_linux: "a58f03d149faaa06f092810af9e2ad6e54ac6b4d80129b07a327a2242169aac6" + sha256 cellar: :any_skip_relocation, x86_64_linux: "bc275879acaeca994648d01dfc7509f032c5967c720eca41e6de16cdaccd2b4c" end depends_on "rust" => :build From 5da74f28d4b22c856e20859c85c7e409cda9ad38 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 20:46:10 +0000 Subject: [PATCH 0385/1364] awscli: update 2.27.11 bottle. --- Formula/a/awscli.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/a/awscli.rb b/Formula/a/awscli.rb index cd86f30075685..aa67d74e9e612 100644 --- a/Formula/a/awscli.rb +++ b/Formula/a/awscli.rb @@ -9,13 +9,13 @@ class Awscli < Formula head "https://github.com/aws/aws-cli.git", branch: "v2" bottle do - sha256 cellar: :any, arm64_sequoia: "2b70af19bdcb9126d3d9ae1e348e23e3c3c967b9b0c40b0c92ee121fee36431c" - sha256 cellar: :any, arm64_sonoma: "4884d8c72e74cbf83d3a08810a2d7aa8f671970b632de94f7a191d44246a703d" - sha256 cellar: :any, arm64_ventura: "2b85be88faac67995b9c92ae7fac861d5623664984e472cafb98e2371da8c87d" - sha256 cellar: :any, sonoma: "9ede8c3f5ba289c05747b1808cb73e22a3dd84b057995b5d648ac5613c69e250" - sha256 cellar: :any, ventura: "f55c8daf43d1d434d8902ee0fc3fa72e23d3aa71a5196a1bc561c553c0886978" - sha256 cellar: :any_skip_relocation, arm64_linux: "79c77a0f12b7c7ae839013b5ee200bf14af697b02fa8692f095103529f31575f" - sha256 cellar: :any_skip_relocation, x86_64_linux: "058d710485f37ed6536f249e4779bfb81cc03ab614537f74d157a1aaa5090a17" + sha256 cellar: :any, arm64_sequoia: "58b654c2e798d93113f97ce4befbbd57ad61bf55e35d5b60f122b4ad586763ac" + sha256 cellar: :any, arm64_sonoma: "499c95974f604883ed451d80981d38a29ba2574fe68cf63f94c526a2c602f6b2" + sha256 cellar: :any, arm64_ventura: "54716fda963548ee9e4eb2926a6786637f691e4552a934bf9962e391872235d1" + sha256 cellar: :any, sonoma: "26807a753e974a316797c106a66198bf1d67ac7788c3ffa4362c1236b026557e" + sha256 cellar: :any, ventura: "138f183fa3a2421031b273d355858ea066402cd24c55d3fe7196548cf7d2384f" + sha256 cellar: :any_skip_relocation, arm64_linux: "23a026b5b1536d1e4767d4cba4d0dcf84567777ac43afeb7b61e28265aa378d7" + sha256 cellar: :any_skip_relocation, x86_64_linux: "fa7f26fcbdcd7e1ab187a01a4e22aaf1446cdf66504762c560123a8588c7d261" end depends_on "cmake" => :build From eedfcda6ecff0b2be8912036c0f3d98dd9737e90 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 20:47:27 +0000 Subject: [PATCH 0386/1364] hy: update 1.1.0 bottle. --- Formula/h/hy.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Formula/h/hy.rb b/Formula/h/hy.rb index b9b6419e0499f..f92ab61b05265 100644 --- a/Formula/h/hy.rb +++ b/Formula/h/hy.rb @@ -8,8 +8,7 @@ class Hy < Formula license "MIT" bottle do - rebuild 1 - sha256 cellar: :any_skip_relocation, all: "42597ff82da7cdb389a796c62a21df69df5e342fbe8d52de5cb58cb26fa09de0" + sha256 cellar: :any_skip_relocation, all: "06373055a6ecfc7909dbc3ac76d49381920669abd8e375bc1c96317f0f05dba5" end depends_on "python@3.13" From 1303978f0b79dab1f786b768e7d793a0d54ed660 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 20:52:16 +0000 Subject: [PATCH 0387/1364] heroku: update 10.7.0 bottle. --- Formula/h/heroku.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/h/heroku.rb b/Formula/h/heroku.rb index a319e70fcf62d..1f8985c81c9c8 100644 --- a/Formula/h/heroku.rb +++ b/Formula/h/heroku.rb @@ -6,13 +6,13 @@ class Heroku < Formula license "ISC" bottle do - sha256 arm64_sequoia: "06c478068a973870d3e76f87a54b7ebf0987ad7cda37aab3756c8fb2df6f5a12" - sha256 arm64_sonoma: "cabafb851bb5a4aeb9607284c44d3228106fa6065e741e4fe42592b691d6ff7c" - sha256 arm64_ventura: "9a8f4d892bcdbd918d623721063ec8ff1695f90a51c0adc2c2c9804b92f70e72" - sha256 sonoma: "ec1418eb293c34814673b8ee8aa65ff2e5e64beab502b4300a8fb7f4f5dd98c4" - sha256 ventura: "438abf83aac0eb456d2b931ffccf3ca61878ebeaddfb92431f01b0feff1afe0b" - sha256 cellar: :any_skip_relocation, arm64_linux: "e05f6f0b76b8b6b6a953ee31100135d15b78a85c251b49a042d5f5770160c989" - sha256 cellar: :any_skip_relocation, x86_64_linux: "08e37a3d64be7aedcd17933cd3a1c16ee2e261cb74c331eee35a01b4c9a60788" + sha256 arm64_sequoia: "ba167e543e9529e78ce6c7106c32678f24ad0d59b5f9af0bd959db047f99b0e3" + sha256 arm64_sonoma: "dafe1bae56a7f0a43f512032b794a04d4d96ec64b824d4d1e7f5405cc5d0c4ab" + sha256 arm64_ventura: "53bd059bf3d2a323e4b5c2e63b7d3d621a1f9d5b64a486b2aba33f18460547f3" + sha256 sonoma: "48041780138edd9a4868f848838fd7642b695c8d4ba63a58b580169c8596fa6b" + sha256 ventura: "ed5b029b88e298d35add4198f4086cb7dfe1676ff1ce188976a1370126a45c88" + sha256 cellar: :any_skip_relocation, arm64_linux: "d4b8f063121a6735395a5d0dbd3d42fb56c569daa993dee84cb0a80cd1eade73" + sha256 cellar: :any_skip_relocation, x86_64_linux: "d8dd0f9a00e54e78e28a19f3b38f53fe255a769c853ba50b99f35c5966b5c64b" end depends_on "node" From e845e7f168cd1f388a38ad9700195af5d38b7898 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 20:55:33 +0000 Subject: [PATCH 0388/1364] oh-my-posh: update 25.22.0 bottle. --- Formula/o/oh-my-posh.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/o/oh-my-posh.rb b/Formula/o/oh-my-posh.rb index 3318a9298cfd1..68301ed31cb69 100644 --- a/Formula/o/oh-my-posh.rb +++ b/Formula/o/oh-my-posh.rb @@ -15,12 +15,12 @@ class OhMyPosh < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "4c2b03a5bbcd392e78798507330ea9e1a878c8e910b813ac6baa5594eb3b6a30" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "5b0354f7491a0f979b1d4ab37068b7118021c071ab19b243a1954a262ea6e80c" - sha256 cellar: :any_skip_relocation, arm64_ventura: "d95d72d01a41bb25800d849bfd1ec7c2898ab023c2042028ee1f8eb476c3bc58" - sha256 cellar: :any_skip_relocation, sonoma: "d0303501a1da3996bcf78d3f76c286ebc40ef05eba2db88bf258efe411c746d0" - sha256 cellar: :any_skip_relocation, ventura: "c9df44aee0b0ab934a9bdb9a091ee4b8276e365dd6a5b0913df9aafdde7990b4" - sha256 cellar: :any_skip_relocation, x86_64_linux: "7c5624556a84edc845944d21d26e1129e7775e99414db16ea217d67c32599559" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "4dc03b4e14fbd0fdc3691044279686c7ebed993fd8863aa0e1e91820fec4f96c" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "b9675a61e3d3ea872cc0921347da90165c081499a9fcb38313e1726f817efc28" + sha256 cellar: :any_skip_relocation, arm64_ventura: "e8b79acb6d6e2ba0df5892ba1c317047cad7406e2d1ca91e406227e4c952e08a" + sha256 cellar: :any_skip_relocation, sonoma: "15cd2db111ca5745194d3b7a292c1d3efd0f9b8a9f28c7d24a5971eeff074c6e" + sha256 cellar: :any_skip_relocation, ventura: "b6af655b0b5ccad6444bcc0e6d26b8c1623e11bac466617054c5d32a897ac803" + sha256 cellar: :any_skip_relocation, x86_64_linux: "b9cef3e8886bb16b713c44873a59857ce84dd6b9054692f598a53648fe95fe4b" end depends_on "go" => :build From a28372672e741ffd094ccde222fcea7a7dea1a96 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 20:58:43 +0000 Subject: [PATCH 0389/1364] flow-cli: update 2.2.14 bottle. --- Formula/f/flow-cli.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/f/flow-cli.rb b/Formula/f/flow-cli.rb index 421038168b4a4..fe8df48ecc8af 100644 --- a/Formula/f/flow-cli.rb +++ b/Formula/f/flow-cli.rb @@ -12,13 +12,13 @@ class FlowCli < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "f0b533f6468495bfe2ce0c4027e220b47474c37a721882d878fab34c1d4aa2fc" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "be2b6b0c61ca81ca017e9fec0d7efb3b37437cc64507cf6b7d7e1f78e2fecfc8" - sha256 cellar: :any_skip_relocation, arm64_ventura: "9c378904e0ebd11b8975cc25592396188b90ecbf0049d8faa82fb1682782bcc8" - sha256 cellar: :any_skip_relocation, sonoma: "6ed19d894f0d0d5b7c617830103a1b0050b8f3abd4173b5dbf129581169c8169" - sha256 cellar: :any_skip_relocation, ventura: "346febb02f537405c6dae7f70caabe1c46b2ff03e0387c84debc3bdb72bf35ce" - sha256 cellar: :any_skip_relocation, arm64_linux: "6c00d61be263375d7be29c643f23135e8a794c0d10c79dce620175e90ee129bb" - sha256 cellar: :any_skip_relocation, x86_64_linux: "c8a080da468f50926d4ae50d2aedeec2a0132e4473115949a25ebe3b23988257" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "d5053b8a74502ebe8e780d22066a97f4a9ace616e0f9944ca6da10e66dd09f54" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "ea4b3d131ecf2e363d0493f324fca45cf77d400635461e5d7b292099f57e694d" + sha256 cellar: :any_skip_relocation, arm64_ventura: "00ff5bbf48d6683b7143a9ea8cc95382c689482124558e8a7c60c3364fe71d17" + sha256 cellar: :any_skip_relocation, sonoma: "d80cd37cf388057aeec56984da88b7db14cd083dd054f45e6f4823a22730976b" + sha256 cellar: :any_skip_relocation, ventura: "46e1a1c3d87985fab95fc7be2682b97f0411dbf903502ff9a5196a4cb99a1702" + sha256 cellar: :any_skip_relocation, arm64_linux: "9e123d04caf9178813dc61c61ed70dd681a95edc1fcf9817abfb623ec22106fd" + sha256 cellar: :any_skip_relocation, x86_64_linux: "2723a7ef6bcbd0a2a6f9b0d888863039e74e6e09801e6bd475123caa4de760ce" end depends_on "go" => :build From 8849668055f7ff47edddd198f7878256553eb381 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 21:11:11 +0000 Subject: [PATCH 0390/1364] virtualenv: update 20.31.2 bottle. --- Formula/v/virtualenv.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/v/virtualenv.rb b/Formula/v/virtualenv.rb index f71722841ca39..8b11c0611920e 100644 --- a/Formula/v/virtualenv.rb +++ b/Formula/v/virtualenv.rb @@ -9,13 +9,13 @@ class Virtualenv < Formula head "https://github.com/pypa/virtualenv.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "39dc60f988c83f7b9b4defa4b7c510f10abaf87f30a2c500712bc84d6ed7ce82" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "39dc60f988c83f7b9b4defa4b7c510f10abaf87f30a2c500712bc84d6ed7ce82" - sha256 cellar: :any_skip_relocation, arm64_ventura: "39dc60f988c83f7b9b4defa4b7c510f10abaf87f30a2c500712bc84d6ed7ce82" - sha256 cellar: :any_skip_relocation, sonoma: "dad824493ec52e3f8596c27adc4e52f25838857a9f739e092e74babdcda66aa3" - sha256 cellar: :any_skip_relocation, ventura: "dad824493ec52e3f8596c27adc4e52f25838857a9f739e092e74babdcda66aa3" - sha256 cellar: :any_skip_relocation, arm64_linux: "e17c4e98380071898785ff50b96a130af2d6e72ad0327ae631c22adac39740b5" - sha256 cellar: :any_skip_relocation, x86_64_linux: "e17c4e98380071898785ff50b96a130af2d6e72ad0327ae631c22adac39740b5" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "1d8d2567e3809e40e530c2fcf928bcc1e7e6affa708bb6fafa7a360038dae0f2" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "1d8d2567e3809e40e530c2fcf928bcc1e7e6affa708bb6fafa7a360038dae0f2" + sha256 cellar: :any_skip_relocation, arm64_ventura: "1d8d2567e3809e40e530c2fcf928bcc1e7e6affa708bb6fafa7a360038dae0f2" + sha256 cellar: :any_skip_relocation, sonoma: "0d853a4d494f78b89bbf20ba800b47f53014c5aa66aad3b897e611ebbc2da388" + sha256 cellar: :any_skip_relocation, ventura: "0d853a4d494f78b89bbf20ba800b47f53014c5aa66aad3b897e611ebbc2da388" + sha256 cellar: :any_skip_relocation, arm64_linux: "062b68ff2df6b0a13e7186a81cb9d3e411d82f70d8c4ec0378d6acc0334285c2" + sha256 cellar: :any_skip_relocation, x86_64_linux: "062b68ff2df6b0a13e7186a81cb9d3e411d82f70d8c4ec0378d6acc0334285c2" end depends_on "python@3.13" From 69c1cae3845fd808b9d5fd78ea5a03403fd78e18 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Thu, 8 May 2025 17:16:16 -0400 Subject: [PATCH 0391/1364] basedpyright: remove `head` build Signed-off-by: Rui Chen --- Formula/b/basedpyright.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/Formula/b/basedpyright.rb b/Formula/b/basedpyright.rb index 68c2296755cdf..a40d4e0f04d6e 100644 --- a/Formula/b/basedpyright.rb +++ b/Formula/b/basedpyright.rb @@ -4,7 +4,6 @@ class Basedpyright < Formula url "https://registry.npmjs.org/basedpyright/-/basedpyright-1.29.1.tgz" sha256 "97859fe21af1d8601fe5f1cbd7d68f0db156524e4b3bc8306730ab22533cec81" license "MIT" - head "https://github.com/detachhead/basedpyright.git", branch: "main" bottle do sha256 cellar: :any_skip_relocation, arm64_sequoia: "c08d5edd65107b8429513c225383d3296711b7834ac54ec7c643c6ff35c57af9" From c51953a817df77b7c5bb6db557bf8863a7fe5745 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Thu, 8 May 2025 17:16:17 -0400 Subject: [PATCH 0392/1364] cdk8s: remove `head` build Signed-off-by: Rui Chen --- Formula/c/cdk8s.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/Formula/c/cdk8s.rb b/Formula/c/cdk8s.rb index 079b4ce1afb79..fc63786f4fcc6 100644 --- a/Formula/c/cdk8s.rb +++ b/Formula/c/cdk8s.rb @@ -4,7 +4,6 @@ class Cdk8s < Formula url "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.200.64.tgz" sha256 "9ca3fc24103218fc6d2bf0e2e698a65db6ae9813659948bf8c24272965649508" license "Apache-2.0" - head "https://github.com/cdk8s-team/cdk8s-cli.git", branch: "2.x" bottle do sha256 cellar: :any_skip_relocation, arm64_sequoia: "d7674735ad35dca33f679601370c04bcf1334563ddf9514b78faf5c917514d90" From 9b36b22f948091d4601c52a22aa2341641e15812 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Thu, 8 May 2025 17:16:17 -0400 Subject: [PATCH 0393/1364] commitlint: remove `head` build Signed-off-by: Rui Chen --- Formula/c/commitlint.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/Formula/c/commitlint.rb b/Formula/c/commitlint.rb index 3b693244bead6..fd2158ff67e92 100644 --- a/Formula/c/commitlint.rb +++ b/Formula/c/commitlint.rb @@ -4,7 +4,6 @@ class Commitlint < Formula url "https://registry.npmjs.org/commitlint/-/commitlint-19.8.1.tgz" sha256 "b87082a3113be1c2929db63d727d3765b92f89e103b966996e7cfc560315ef68" license "MIT" - head "https://github.com/conventional-changelog/commitlint.git", branch: "master" bottle do sha256 cellar: :any_skip_relocation, arm64_sequoia: "a5060996ad29bdfaed43cc556cd7f361c3fb3fb4240fe0f8ed9b3e2634963ec9" From dc81f5571fb014cf5adde029cd1cdc2aa028ca74 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Thu, 8 May 2025 17:16:17 -0400 Subject: [PATCH 0394/1364] contentful-cli: remove `head` build Signed-off-by: Rui Chen --- Formula/c/contentful-cli.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/Formula/c/contentful-cli.rb b/Formula/c/contentful-cli.rb index 8db388eba23c8..455898004a7f0 100644 --- a/Formula/c/contentful-cli.rb +++ b/Formula/c/contentful-cli.rb @@ -4,7 +4,6 @@ class ContentfulCli < Formula url "https://registry.npmjs.org/contentful-cli/-/contentful-cli-3.8.8.tgz" sha256 "de28b9aaaea30c79543d867ac1f55f3638ecdf51ecef6a79d9c7ba3ed1cf6fdc" license "MIT" - head "https://github.com/contentful/contentful-cli.git", branch: "master" bottle do sha256 cellar: :any_skip_relocation, arm64_sequoia: "545f40ea5afd8b629a75d67e809e0db92c0e70daa6e1e8a7b4427839dad47597" From afcaa6a503a492be02922e82d7f08f3f4c0aa2a0 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 21:18:05 +0000 Subject: [PATCH 0395/1364] trufflehog: update 3.88.29 bottle. --- Formula/t/trufflehog.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/t/trufflehog.rb b/Formula/t/trufflehog.rb index d42ebf313f961..2edfb4b1d190d 100644 --- a/Formula/t/trufflehog.rb +++ b/Formula/t/trufflehog.rb @@ -8,13 +8,13 @@ class Trufflehog < Formula head "https://github.com/trufflesecurity/trufflehog.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "7216a3749eb0b7f89958981fc72f2892afe743e58d36c1193b441d24ceff13d1" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "89369f52f0b833147b9a06b49f2a7f372b0627d1f7ae72c29c5bb320e41d23f2" - sha256 cellar: :any_skip_relocation, arm64_ventura: "e81976b50f2945b90fae4418266449fceb6fc8f47ee3397f48db78d07558444c" - sha256 cellar: :any_skip_relocation, sonoma: "008855b7ef83a653e888e18ac785da6966ad518dc51ba0dc3ec562f2e723e905" - sha256 cellar: :any_skip_relocation, ventura: "9b9d2852220ac51123adab0663e0601b1a3f348f2bc3e50416893ff034f65116" - sha256 cellar: :any_skip_relocation, arm64_linux: "2fd9c3c90443b7b5fdbecab633089bad640c5b1d16667981d1f2e11f20e40344" - sha256 cellar: :any_skip_relocation, x86_64_linux: "441bbfc73f7287253a6413c05ccea5fd65d445e89ee45f16982df2876cce7ab8" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "0abf4926fa7ab1a656e7bdcf62d3a290c274fd75d7c5e9f6b6597dbfbad9417d" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "552d4265b5719f067d9f392ab72220de9155fda24f92ed008e19c424b6432594" + sha256 cellar: :any_skip_relocation, arm64_ventura: "6ae9fbf41ef112f6521365356690f5a2a71d3c6d1c6d400a3016b2639fdbcd9f" + sha256 cellar: :any_skip_relocation, sonoma: "bc85f232374c6f7800d1ad1ca5855c753162829efa0978df043b14b0ac68b224" + sha256 cellar: :any_skip_relocation, ventura: "a532d62c12462a7833b42c571e7028d55b7a2ecdc22e5d1072816deceef2b2d6" + sha256 cellar: :any_skip_relocation, arm64_linux: "aa11bd5a30f3a40d4e5bc40059b440c97151c74b30b36a244ad2249148627682" + sha256 cellar: :any_skip_relocation, x86_64_linux: "fe46f53c30fc8ac379f541430d2715434bfd49080dbf8a2d9475ad59c95a6d50" end depends_on "go" => :build From 54a8f30e40440fd1dd5b8373170a6fc45a0cce2e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 21:18:31 +0000 Subject: [PATCH 0396/1364] aws-c-http: update 0.10.1 bottle. --- Formula/a/aws-c-http.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/a/aws-c-http.rb b/Formula/a/aws-c-http.rb index 54977ff5a808b..aba789244d12c 100644 --- a/Formula/a/aws-c-http.rb +++ b/Formula/a/aws-c-http.rb @@ -6,13 +6,13 @@ class AwsCHttp < Formula license "Apache-2.0" bottle do - sha256 cellar: :any, arm64_sequoia: "7b158af0924aef33bf85deb6cd7d6c74de111815a23b62bf8dcee66b52dc012e" - sha256 cellar: :any, arm64_sonoma: "2878db242f2c1d32394d23c1ec764a56226d888440244594bf62bce7a5b2427d" - sha256 cellar: :any, arm64_ventura: "001bab5baca234a80df781ac27cceb4e2c48ef744666daf395249c34059dbfa6" - sha256 cellar: :any, sonoma: "6523663297d0cd6072b4927bcd4c46ce89ca4624b3153dbfec802a259b9f6d0d" - sha256 cellar: :any, ventura: "921f388ff5995ec8945264f5b352a5c1b66a55adb0a4a8b726876d8124842243" - sha256 cellar: :any_skip_relocation, arm64_linux: "09153c82d411d8cc6afc6c03963e8cd30b57690cb31df9f9c46ef3c13432e0e9" - sha256 cellar: :any_skip_relocation, x86_64_linux: "b0dab760e10b37c622eaf171361e52a86f8d709ab23e9a1a9f24f8333225b98a" + sha256 cellar: :any, arm64_sequoia: "9c62bac1870464c899f51ea35594c42b899c984ca0ef024ff8b940accd47208a" + sha256 cellar: :any, arm64_sonoma: "3ef352a205052d81964cb755837485467b4d38f7919f3311e540002fbb8749b7" + sha256 cellar: :any, arm64_ventura: "94fffcd8914b2d240343ec248aa2570d67616a5da55410f7db9db5bf2f18112f" + sha256 cellar: :any, sonoma: "583fd37b1b5d315e0762cf09d6d7c7914497fc689bf18871e91d30615b33e871" + sha256 cellar: :any, ventura: "3f63fd6f3350754cecf0b8b49c29163ff6b15cebc1c7faab73b6ff5bb14d94e2" + sha256 cellar: :any_skip_relocation, arm64_linux: "1fcd2423f617f91732e80d125bbed04c661a655fcd3676f515d509c63c83ead7" + sha256 cellar: :any_skip_relocation, x86_64_linux: "6fad1d2a8092a5ce2edf330aceba0be19fe4005f439db68f683e2089f4ad50de" end depends_on "cmake" => :build From a5de4d6a7d1c2d1ccea2885ef012f3a2d755c542 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 21:19:10 +0000 Subject: [PATCH 0397/1364] python-matplotlib: update 3.10.3 bottle. --- Formula/p/python-matplotlib.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/p/python-matplotlib.rb b/Formula/p/python-matplotlib.rb index 8a70209a178ab..5016641a76d77 100644 --- a/Formula/p/python-matplotlib.rb +++ b/Formula/p/python-matplotlib.rb @@ -8,13 +8,13 @@ class PythonMatplotlib < Formula license "PSF-2.0" bottle do - sha256 cellar: :any, arm64_sequoia: "ae956b6cd20e3cc6c688f4fce6535388031094defce31d386b11ed72b6f324b3" - sha256 cellar: :any, arm64_sonoma: "7b0888381011dd4bf9bbf1a97d1da9073dacd2caa58c4ee8187a2c4570b8afc2" - sha256 cellar: :any, arm64_ventura: "4ff6be1170f9cf8b98b00fd5c6cfafc3568fecc7653654325c59ff7d75b9d4cd" - sha256 cellar: :any, sonoma: "ee30d38099c69d5af1a4497d7c7f2c1083f0b1bc82210cee083876b528073610" - sha256 cellar: :any, ventura: "20621f8a097a2fc0494247dbfd95d73fa62de6913248789840003a6a72b342cf" - sha256 cellar: :any_skip_relocation, arm64_linux: "a67a9d0810890fe0a9aaa751bf4206bf93c780228c1ad88f48a10200fe30f455" - sha256 cellar: :any_skip_relocation, x86_64_linux: "27df9c06741398d7839af0f32907e9031744e48affee21cc5d875d3adb4c79ec" + sha256 cellar: :any, arm64_sequoia: "f846f0a1c9d5d48422448f07e15a9dcd0daebefac582812edfb8ebd6cf2b7943" + sha256 cellar: :any, arm64_sonoma: "0e570ef8a32efdcbba04f783a18f2b7c30323c69858d5800b824c116ac25b290" + sha256 cellar: :any, arm64_ventura: "7faf623e8955a64ef19a948d333fdbe837c7d83d49c35117e3b880380a4bee21" + sha256 cellar: :any, sonoma: "fc4ebc05b8a4a9ea3c54a9bc1d085ba379c3531fab651d45c6e0d2de76ef682e" + sha256 cellar: :any, ventura: "8c4e8ef8163b0a475e15c64c9ae1130088ea44dae426cab338f1e367d9b3323d" + sha256 cellar: :any_skip_relocation, arm64_linux: "33e103e653c5f859d61c6894c5e30634ceeb86fd6f2983061d237ad5d00d3fff" + sha256 cellar: :any_skip_relocation, x86_64_linux: "4bd3e43699f52a0b9efa651e983d63cfff9520461647886c2807ef4e13ccc7dc" end depends_on "meson" => :build From f2c0b87e5374ec1d960787390004bdc193a7e3ff Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 21:19:19 +0000 Subject: [PATCH 0398/1364] netlify-cli: update 21.2.1 bottle. --- Formula/n/netlify-cli.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/n/netlify-cli.rb b/Formula/n/netlify-cli.rb index 20b46d3e347e5..50cf7cd95bc82 100644 --- a/Formula/n/netlify-cli.rb +++ b/Formula/n/netlify-cli.rb @@ -7,13 +7,13 @@ class NetlifyCli < Formula head "https://github.com/netlify/cli.git", branch: "main" bottle do - sha256 arm64_sequoia: "2308423d95f0a4a9e7a0104d632b8ef7c72038f7289235a1a689bbf9beb93f1a" - sha256 arm64_sonoma: "8b8ac1e591db37fdc6d9071c56492a8ceca5882808dfb75b6ab04db1cb8c583e" - sha256 arm64_ventura: "42f90b1c18c524ffdb52239bdd3e8b853b63fabefb19597980866acc6e7c407c" - sha256 sonoma: "f9c2bc6e7e3b45ccf7d98d2594669f3a417dfec33310cf8c70a2fe020fd7b6c3" - sha256 ventura: "ea9fe66b51f6bae259d99b332c5a86ab59ce57a8f7bae2666688582f503fa8e2" - sha256 cellar: :any_skip_relocation, arm64_linux: "72f97a34bd0c6469c954245a6f2863e03a5c6fa988061968ccc4e91670c2df51" - sha256 cellar: :any_skip_relocation, x86_64_linux: "5250f698335c03018e8643fc82d00f0d969d92b8cff740e23ae5a383d11a255b" + sha256 arm64_sequoia: "6e5676e52a6fe801ad3017e0010477a48261176e93810672b5b397b037b23139" + sha256 arm64_sonoma: "dae5359f9cc59300b49a360be3a2f592024ac2759623600a3d0b29e14fe6115c" + sha256 arm64_ventura: "d11a7f00fe3057c69c53007b33fd6ca4ffd63757720b901d0f29ea1929d7f98b" + sha256 sonoma: "d94b5f5f17fb7cd957fc915f1ce457ee59759acd7f3c235ac2da666e201f7b52" + sha256 ventura: "27aac5f72c52b82948fe87edb705461474a76ac9fa8d55a0ae9ff9c07af9504d" + sha256 cellar: :any_skip_relocation, arm64_linux: "767e969577e2b870531fa29249ee5955c996a5a92665f0f59c18f6ed9ed35245" + sha256 cellar: :any_skip_relocation, x86_64_linux: "41741aa6f263b25b8891642e1639441cc42ae0d7e7c40330ec9b2ffcfb29099a" end depends_on "node" From 61e6f37b7a68f30baf8b525ba87e1e57e7614446 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 21:24:41 +0000 Subject: [PATCH 0399/1364] promptfoo: update 0.112.4 bottle. --- Formula/p/promptfoo.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/p/promptfoo.rb b/Formula/p/promptfoo.rb index 9a2a0dcf2edc0..42822ee8c8316 100644 --- a/Formula/p/promptfoo.rb +++ b/Formula/p/promptfoo.rb @@ -6,13 +6,13 @@ class Promptfoo < Formula license "MIT" bottle do - sha256 cellar: :any, arm64_sequoia: "d19e994971aaa0cccd8ceeb4915ad55f5b577474222feded4d060ea09b3a7a99" - sha256 cellar: :any, arm64_sonoma: "4eb7369e8992b3c97db4fe4a0b118695aec37ac29ffa6154664a1686957095d4" - sha256 cellar: :any, arm64_ventura: "9c84eed6c5e3bdeab021e96a4263be26f41622450deccf5a40891f4e6f499b73" - sha256 sonoma: "7b8002637dc201e992bb149c5274c9da827b1552959ac544d2a15d5363297779" - sha256 ventura: "8c34a642b9b67e15ac6477dee849ac2c6531b8c6e8780d6fda9dc1b9cbbcfb77" - sha256 cellar: :any_skip_relocation, arm64_linux: "4568a08eb6fe69e6399f9e890a3a528513c36df0720a9d69630a05dcaa6435a4" - sha256 cellar: :any_skip_relocation, x86_64_linux: "8b099010865093355d20b378d1fdd72068da4a2ba5c66abcd9c512eed34d3587" + sha256 cellar: :any, arm64_sequoia: "c5973f79a221c378423268dfcd1651b197dda077b0f8f70ca85e0f1512baf7e8" + sha256 cellar: :any, arm64_sonoma: "8cb52501c748772db15845372dad9645f1e32bb1a44b794ebe587dbede8f78f4" + sha256 cellar: :any, arm64_ventura: "8d6479e3ac3cd82daa345d607ec2b766e92d9783114cb27bfef429830bc1dcca" + sha256 sonoma: "61b2bdbf4aab3252938d3b0a3c9e10e984bfac89c577dad2da67a3541747601c" + sha256 ventura: "e43851e22564d6346b3eefd28a3c4467de7cefa565963a00919f7488c23827e4" + sha256 cellar: :any_skip_relocation, arm64_linux: "be7d4fa9f4b581aeaaa39ac517e425edc85613149f36cf108bcb75270e6ef580" + sha256 cellar: :any_skip_relocation, x86_64_linux: "0413776a9edb9482fd4ddd807304e86518263831be22f618f4a463320cf52b8a" end depends_on "node" From fe7bca82a4f2425344ec162fe57ded3b51b356b9 Mon Sep 17 00:00:00 2001 From: Nick Sieger Date: Thu, 8 May 2025 16:46:36 -0500 Subject: [PATCH 0400/1364] brew-gem 1.2.1 --- Formula/b/brew-gem.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/b/brew-gem.rb b/Formula/b/brew-gem.rb index aa5054d154cf7..3405ebc9fc13b 100644 --- a/Formula/b/brew-gem.rb +++ b/Formula/b/brew-gem.rb @@ -1,8 +1,8 @@ class BrewGem < Formula desc "Install RubyGems as Homebrew formulae" homepage "https://github.com/sportngin/brew-gem" - url "https://github.com/sportngin/brew-gem/archive/refs/tags/v1.2.0.tar.gz" - sha256 "70af3a1850490a5aa8835f3cfe23a56863d89e84e1990c8029416fad1795b313" + url "https://github.com/sportngin/brew-gem/archive/refs/tags/v1.2.1.tar.gz" + sha256 "522e6db649f67950e78850a371c53fb974aee1636bc21da4310905b2b28cc122" license "MIT" head "https://github.com/sportngin/brew-gem.git", branch: "master" From 20565161c5c78014f7969d3d3b7a81d01e8cc0c4 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 21:49:43 +0000 Subject: [PATCH 0401/1364] git-svn: update 2.49.0_1 bottle. --- Formula/g/git-svn.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/g/git-svn.rb b/Formula/g/git-svn.rb index 0393b73e19246..516b4f51f4b30 100644 --- a/Formula/g/git-svn.rb +++ b/Formula/g/git-svn.rb @@ -12,13 +12,13 @@ class GitSvn < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "a26e08911223593a443a3af16bf8506974fcb88ef713b9b9ef0d8bc4e9bddd06" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "a26e08911223593a443a3af16bf8506974fcb88ef713b9b9ef0d8bc4e9bddd06" - sha256 cellar: :any_skip_relocation, arm64_ventura: "ddb297076f639d70c1d52091677d909bff3ff64c6ef3b658f0204ddc384d7727" - sha256 cellar: :any_skip_relocation, sonoma: "a26e08911223593a443a3af16bf8506974fcb88ef713b9b9ef0d8bc4e9bddd06" - sha256 cellar: :any_skip_relocation, ventura: "ddb297076f639d70c1d52091677d909bff3ff64c6ef3b658f0204ddc384d7727" - sha256 cellar: :any_skip_relocation, arm64_linux: "1fae941338d50ea4de806b79ad273416818957109e7b5a690da78d25d7ebe3c6" - sha256 cellar: :any_skip_relocation, x86_64_linux: "a55f72b59419f5fc4c24daed700570caad867925fa1c8a26ad3db7db101bee14" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "f312449a9465a70cf2e7035595d0fb32b3a9e157422686bc1fbf78bc51e8414a" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "f312449a9465a70cf2e7035595d0fb32b3a9e157422686bc1fbf78bc51e8414a" + sha256 cellar: :any_skip_relocation, arm64_ventura: "5f0b46ef5545624e251e43c5df1c137baead54d150040b7a5926ab38b33de01e" + sha256 cellar: :any_skip_relocation, sonoma: "f312449a9465a70cf2e7035595d0fb32b3a9e157422686bc1fbf78bc51e8414a" + sha256 cellar: :any_skip_relocation, ventura: "5f0b46ef5545624e251e43c5df1c137baead54d150040b7a5926ab38b33de01e" + sha256 cellar: :any_skip_relocation, arm64_linux: "72c0d54ed05e10e00efbfab2034f6d763caaa444cf299889458bd40a58486f66" + sha256 cellar: :any_skip_relocation, x86_64_linux: "4171242e63d0d72ffcccf80596cd38b3fe8858083382504099cf81538378e0da" end depends_on "git" From d6e5086a2cc71db60b1bd6a5e4d65954e8d57d40 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 21:49:44 +0000 Subject: [PATCH 0402/1364] subversion: update 1.14.5_2 bottle. --- Formula/s/subversion.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/s/subversion.rb b/Formula/s/subversion.rb index 776247bfa16e2..2ea0c63264c61 100644 --- a/Formula/s/subversion.rb +++ b/Formula/s/subversion.rb @@ -17,13 +17,13 @@ class Subversion < Formula end bottle do - sha256 arm64_sequoia: "001933961ab5da61702e5b1ee456efc4258368fdd079e49548b8821d81354dc6" - sha256 arm64_sonoma: "1d749bdae7926fb1c47ef3900bd57559cfb883f581449023df6c5164a678a8b2" - sha256 arm64_ventura: "ea1a61b0c5c25d1053a1a41061a82d2611f28475f7278610a82699bb1919c190" - sha256 sonoma: "f1b2ec64059aacc68c3b618d4c871b92973e28a95e04a11792118a1eddb6a5a8" - sha256 ventura: "ab34501e3c630acbecd6499590dc28485df7be01fb0cdf6db638b7a78ba875b6" - sha256 arm64_linux: "81afd3ff0e756f6959ce8dd5c5347f56a2becd2d6ff5e32cc5feb9355947beb3" - sha256 x86_64_linux: "c2f8294bce32e5125d71edb0d2b532334603eed92a6d9538685e4e3bd0b85662" + sha256 arm64_sequoia: "dfd28a5fbb1065e271418d833393b6506c38517b8e1035271291cf32c0fbb09d" + sha256 arm64_sonoma: "868351aba4efe60c49f906c85d312d845796566347983b65dd99c8181f84a77f" + sha256 arm64_ventura: "21091b526648e54c2925f039e602bde901534dec8bdba8492b7d7ba249b7d664" + sha256 sonoma: "ab78f975d20697547a90ece32b942d1cc6f293409e03f9697125475fcd8f3369" + sha256 ventura: "1769f8d068953dc7565a6258e35c1a8d04473dcb76a3d47e3ad5c9016cf13968" + sha256 arm64_linux: "b72fd0fe9d755c3af711869c33ed08674c0d8c93716156cbd68c345107aab22f" + sha256 x86_64_linux: "ae18ae190c2e2331dfad6c352068449cf677587692a9580ba3b9f7afa6469545" end head do From 918bd0b2a0877382e3d5001693280fb62485c44b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 21:56:34 +0000 Subject: [PATCH 0403/1364] sui: update 1.48.1 bottle. --- Formula/s/sui.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/s/sui.rb b/Formula/s/sui.rb index 5706528741f61..edca492ced06d 100644 --- a/Formula/s/sui.rb +++ b/Formula/s/sui.rb @@ -11,13 +11,13 @@ class Sui < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "7224c57f45246d1760aba26157ff07053fdf8d2d107bf278150eabd0bc97feda" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "8eef83225c071f0ba266a3e0175d10e104516b099e1aeeefa0c97d9bb5f80d37" - sha256 cellar: :any_skip_relocation, arm64_ventura: "9b4619bcc780ed6f6cb359159a001cdd00687edbebe2ae9b04a717f6e142e8df" - sha256 cellar: :any_skip_relocation, sonoma: "a5b3b56d2e16e6856b7384b6a4120a710118ab8455c3cb66acdfd13c71b154a7" - sha256 cellar: :any_skip_relocation, ventura: "687aa906070da044054e4ce372b648c4902f2ed9fe39fcac9d3ff19a772f8d23" - sha256 cellar: :any_skip_relocation, arm64_linux: "7c3a6579e62e29fbba7830fcb447bf30038aafbc76dd09faa06ac0add3571a44" - sha256 cellar: :any_skip_relocation, x86_64_linux: "f393d8bb6995d187fc39352305868028c2dc32fa48c5e14d00c5de54c21ffe70" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "e5caf392a0d700c55a36dc8534dbc5b9c14e6fadb433b240963dfff4d7e5d562" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "619a9010bde5eaa02c19e2f4f529881d50e9a70fe0d25b01bea2c656594ee25d" + sha256 cellar: :any_skip_relocation, arm64_ventura: "ad37b1d600245c42953343bb7a20e9fba6d42682f409184dda90e206582f9580" + sha256 cellar: :any_skip_relocation, sonoma: "68d7e2d195663ee65f048406a2f178940ff2e354f9d5a411d3dfcb5b6ae5bf71" + sha256 cellar: :any_skip_relocation, ventura: "fd2652aab665b40e46250a92e49dad9eb5844dd8fce098ddfeb7962d6c46ee5e" + sha256 cellar: :any_skip_relocation, arm64_linux: "ab2d45fad24a581014274dfde1ee2a98b377f7c1cbf666df602c5eefeba4edd6" + sha256 cellar: :any_skip_relocation, x86_64_linux: "18cf24c9bcb085cce2f015f16c61615fadebabf56c29efddb1880714e760884b" end depends_on "cmake" => :build From c205f4879c62427dd808bff479084afe7a246dc0 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 22:50:08 +0000 Subject: [PATCH 0404/1364] apko 0.27.4 --- Formula/a/apko.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/a/apko.rb b/Formula/a/apko.rb index 8bfdc7436b812..fa941d4381055 100644 --- a/Formula/a/apko.rb +++ b/Formula/a/apko.rb @@ -1,8 +1,8 @@ class Apko < Formula desc "Build OCI images from APK packages directly without Dockerfile" homepage "https://github.com/chainguard-dev/apko" - url "https://github.com/chainguard-dev/apko/archive/refs/tags/v0.27.3.tar.gz" - sha256 "aec5480a1006ccf3ce9c6e100d64d4b4dbffafaa4f2b9c1005762fb1a88a687e" + url "https://github.com/chainguard-dev/apko/archive/refs/tags/v0.27.4.tar.gz" + sha256 "51b5d54425a28e07d69af2cf7fff7126c9b864f711e1950f217e421fb041231f" license "Apache-2.0" head "https://github.com/chainguard-dev/apko.git", branch: "main" From 999f1d3759832f6e9bde60f7c89f05d877efef9e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 22:53:29 +0000 Subject: [PATCH 0405/1364] block-goose-cli 1.0.23 --- Formula/b/block-goose-cli.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/b/block-goose-cli.rb b/Formula/b/block-goose-cli.rb index 70ad6d82b0486..871b4fdecb0fc 100644 --- a/Formula/b/block-goose-cli.rb +++ b/Formula/b/block-goose-cli.rb @@ -1,8 +1,8 @@ class BlockGooseCli < Formula desc "Open source, extensible AI agent that goes beyond code suggestions" homepage "https://block.github.io/goose/" - url "https://github.com/block/goose/archive/refs/tags/v1.0.22.tar.gz" - sha256 "b728068904ba43f32efadaa7957044c3d9603648e125566ed11daa50c677f89a" + url "https://github.com/block/goose/archive/refs/tags/v1.0.23.tar.gz" + sha256 "cc5d5d52a78ea794b5bb992786fb13fdd8dfe3e14e3747c952c095bcea1dec4e" license "Apache-2.0" head "https://github.com/block/goose.git", branch: "main" From b9b844edd5cdf9986abedf5585b43ce6f8d2a5b9 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 22:54:21 +0000 Subject: [PATCH 0406/1364] brev 0.6.309 --- Formula/b/brev.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/b/brev.rb b/Formula/b/brev.rb index 405b84d57d4b3..f7a4c725397d5 100644 --- a/Formula/b/brev.rb +++ b/Formula/b/brev.rb @@ -1,8 +1,8 @@ class Brev < Formula desc "CLI tool for managing workspaces provided by brev.dev" homepage "https://developer.nvidia.com/brev" - url "https://github.com/brevdev/brev-cli/archive/refs/tags/v0.6.308.tar.gz" - sha256 "129badf38e3a66e9ca0f8f7f518ff9d8d06bb88a7a6a38c2acf7a729cd421ba7" + url "https://github.com/brevdev/brev-cli/archive/refs/tags/v0.6.309.tar.gz" + sha256 "6244a5c211764810e36f2d7b4e529dc2ea9f5183d4405dff1f330b9196528ba9" license "MIT" head "https://github.com/brevdev/brev-cli.git", branch: "main" From 7a118cf0f952fb3e5ec246b4cc7bd5b017ae98e1 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 22:56:09 +0000 Subject: [PATCH 0407/1364] chainloop-cli 1.1.0 --- Formula/c/chainloop-cli.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/chainloop-cli.rb b/Formula/c/chainloop-cli.rb index a95c997fc675f..2cfadfbae265a 100644 --- a/Formula/c/chainloop-cli.rb +++ b/Formula/c/chainloop-cli.rb @@ -1,8 +1,8 @@ class ChainloopCli < Formula desc "CLI for interacting with Chainloop" homepage "https://docs.chainloop.dev" - url "https://github.com/chainloop-dev/chainloop/archive/refs/tags/v1.0.0.tar.gz" - sha256 "9ef7837833f79b8af19f7119d63c853bfd4050267165359be7f0c7d220a3b4cf" + url "https://github.com/chainloop-dev/chainloop/archive/refs/tags/v1.1.0.tar.gz" + sha256 "a23597a7f69524b652d2cbde7ae3f166f3580bb3c2bd9027daf92147646f46d2" license "Apache-2.0" head "https://github.com/chainloop-dev/chainloop.git", branch: "main" From 0394f35d874f5afbc73b824dd96702ed5e917fa5 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 22:59:52 +0000 Subject: [PATCH 0408/1364] cython 3.1.0 --- Formula/c/cython.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/cython.rb b/Formula/c/cython.rb index 19dba891e6529..9330e21ff6190 100644 --- a/Formula/c/cython.rb +++ b/Formula/c/cython.rb @@ -1,8 +1,8 @@ class Cython < Formula desc "Compiler for writing C extensions for the Python language" homepage "https://cython.org/" - url "https://files.pythonhosted.org/packages/5a/25/886e197c97a4b8e254173002cdc141441e878ff29aaa7d9ba560cd6e4866/cython-3.0.12.tar.gz" - sha256 "b988bb297ce76c671e28c97d017b95411010f7c77fa6623dd0bb47eed1aee1bc" + url "https://files.pythonhosted.org/packages/cf/f7/db37a613aec5abcd51c8000a386a701ac32e94659aa03fa69c3e5c19b149/cython-3.1.0.tar.gz" + sha256 "1097dd60d43ad0fff614a57524bfd531b35c13a907d13bee2cc2ec152e6bf4a1" license "Apache-2.0" bottle do From 4deb4248b6f561f18d9cdee7253055da0baf354a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 23:01:53 +0000 Subject: [PATCH 0409/1364] dolt 1.53.1 --- Formula/d/dolt.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/d/dolt.rb b/Formula/d/dolt.rb index ba37a809fd441..afa4247d0c692 100644 --- a/Formula/d/dolt.rb +++ b/Formula/d/dolt.rb @@ -1,8 +1,8 @@ class Dolt < Formula desc "Git for Data" homepage "https://github.com/dolthub/dolt" - url "https://github.com/dolthub/dolt/archive/refs/tags/v1.53.0.tar.gz" - sha256 "1e4fa8fbe7ef443346e47ea843afa2e6e4698cd8e5f8f73f276ea606932b6bea" + url "https://github.com/dolthub/dolt/archive/refs/tags/v1.53.1.tar.gz" + sha256 "7f1ef19a183aaf33bd09f5014d38d7b66803019ac60cec4597b3728d7c3bc160" license "Apache-2.0" head "https://github.com/dolthub/dolt.git", branch: "main" From bd34cc447be24f8837f97c14022068bea9f22269 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 23:04:46 +0000 Subject: [PATCH 0410/1364] fern-api 0.60.26 --- Formula/f/fern-api.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/f/fern-api.rb b/Formula/f/fern-api.rb index 4ccc843a2fc1e..a443009cf0b65 100644 --- a/Formula/f/fern-api.rb +++ b/Formula/f/fern-api.rb @@ -1,8 +1,8 @@ class FernApi < Formula desc "Stripe-level SDKs and Docs for your API" homepage "https://buildwithfern.com/" - url "https://registry.npmjs.org/fern-api/-/fern-api-0.60.25.tgz" - sha256 "4099e7c63f2f958d7a0c09e35270863ee9058a8d913f686d9a7a3b0301265263" + url "https://registry.npmjs.org/fern-api/-/fern-api-0.60.26.tgz" + sha256 "5c92639ffc1b32d1e2eb5b6e943613b52b712d7ed75675ce5bb7e216a91d0b3c" license "Apache-2.0" head "https://github.com/fern-api/fern.git", branch: "main" From ee10b14c8235dbdad267ff60b6745649c5b1033a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 23:06:24 +0000 Subject: [PATCH 0411/1364] freeciv 3.1.5 --- Formula/f/freeciv.rb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Formula/f/freeciv.rb b/Formula/f/freeciv.rb index 527941de2690c..177b18837676f 100644 --- a/Formula/f/freeciv.rb +++ b/Formula/f/freeciv.rb @@ -1,10 +1,9 @@ class Freeciv < Formula desc "Free and Open Source empire-building strategy game" homepage "https://freeciv.org/" - url "https://downloads.sourceforge.net/project/freeciv/Freeciv%203.1/3.1.4/freeciv-3.1.4.tar.xz" - sha256 "14999bb903c4507cc287d5a8dd1b89eee623bb41b4e01e0836567fb5f13296e4" + url "https://downloads.sourceforge.net/project/freeciv/Freeciv%203.1/3.1.5/freeciv-3.1.5.tar.xz" + sha256 "0d9f687ff950a77a9fa0af66108a7f67da717fd40c3a0ca4c0a4f4a3f0214b33" license "GPL-2.0-or-later" - revision 1 livecheck do url :stable From c2c5af30e4786c0daccdceeac029b86988786b98 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 23:10:17 +0000 Subject: [PATCH 0412/1364] harper 0.34.1 --- Formula/h/harper.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/h/harper.rb b/Formula/h/harper.rb index b46fc6fc684fd..c7dab5096d220 100644 --- a/Formula/h/harper.rb +++ b/Formula/h/harper.rb @@ -1,8 +1,8 @@ class Harper < Formula desc "Grammar Checker for Developers" homepage "https://writewithharper.com/" - url "https://github.com/Automattic/harper/archive/refs/tags/v0.34.0.tar.gz" - sha256 "81759aa513435ff0c92c12ddb3b0d2fac84e0e982696b3446547256aa290653c" + url "https://github.com/Automattic/harper/archive/refs/tags/v0.34.1.tar.gz" + sha256 "bfc20385a67a1094221d2c34dd6895f9517e5037b814cc8749771d04be51f68e" license "Apache-2.0" head "https://github.com/Automattic/harper.git", branch: "master" From dc0d8e4ee493ffdb962c6b8b15cc6dfbc0d1cabc Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 23:14:49 +0000 Subject: [PATCH 0413/1364] kubergrunt 0.17.3 --- Formula/k/kubergrunt.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/k/kubergrunt.rb b/Formula/k/kubergrunt.rb index d4167a663959f..2ce98c931e344 100644 --- a/Formula/k/kubergrunt.rb +++ b/Formula/k/kubergrunt.rb @@ -1,8 +1,8 @@ class Kubergrunt < Formula desc "Collection of commands to fill in the gaps between Terraform, Helm, and Kubectl" homepage "https://github.com/gruntwork-io/kubergrunt" - url "https://github.com/gruntwork-io/kubergrunt/archive/refs/tags/v0.17.2.tar.gz" - sha256 "6f8c2130687eb0d54bc5fdf33bb6f639fa888f73a03bafa54e67d1f7f3af6d68" + url "https://github.com/gruntwork-io/kubergrunt/archive/refs/tags/v0.17.3.tar.gz" + sha256 "5945d96546464061503cfe4033f12b23140c50fa01f696fdfb2e26c634dbdb37" license "Apache-2.0" head "https://github.com/gruntwork-io/kubergrunt.git", branch: "main" From f59738892fde4d6397ab04c5c83a2e561138636e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 23:21:15 +0000 Subject: [PATCH 0414/1364] mavsdk 3.3.3 --- Formula/m/mavsdk.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/m/mavsdk.rb b/Formula/m/mavsdk.rb index 4aa8633e6b2a2..9755ef3a90886 100644 --- a/Formula/m/mavsdk.rb +++ b/Formula/m/mavsdk.rb @@ -2,8 +2,8 @@ class Mavsdk < Formula desc "API and library for MAVLink compatible systems written in C++17" homepage "https://mavsdk.mavlink.io" url "https://github.com/mavlink/MAVSDK.git", - tag: "v3.3.2", - revision: "7f82f17fdb929ed111427d04527f47598f4380b9" + tag: "v3.3.3", + revision: "70f24548bef3347bf3ce36f77400b9a91ca34ed8" license "BSD-3-Clause" livecheck do From cd44fd4817311bcbfff4b2bbb8e99e61c5156277 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 23:25:06 +0000 Subject: [PATCH 0415/1364] noseyparker 0.24.0 --- Formula/n/noseyparker.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/n/noseyparker.rb b/Formula/n/noseyparker.rb index 993864b3f1843..e56479640dfae 100644 --- a/Formula/n/noseyparker.rb +++ b/Formula/n/noseyparker.rb @@ -1,8 +1,8 @@ class Noseyparker < Formula desc "Finds secrets and sensitive information in textual data and Git history" homepage "https://github.com/praetorian-inc/noseyparker" - url "https://github.com/praetorian-inc/noseyparker/archive/refs/tags/v0.23.0.tar.gz" - sha256 "4de92335bdf68eaa8378b1f232b7082943cefc850df0bd2519d9d281247f1a5f" + url "https://github.com/praetorian-inc/noseyparker/archive/refs/tags/v0.24.0.tar.gz" + sha256 "df31128ec64c0bdb7e8c6917ad68a0c69fe4fe1bd4355332b94938ed08edc2ce" license "Apache-2.0" head "https://github.com/praetorian-inc/noseyparker.git", branch: "main" From afe01f1b42da72c3d6ba5a87b90b83d446750575 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 23:28:55 +0000 Subject: [PATCH 0416/1364] php@8.3 8.3.21 --- Formula/p/php@8.3.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Formula/p/php@8.3.rb b/Formula/p/php@8.3.rb index 2ed5bc4609c04..e15156cddd45e 100644 --- a/Formula/p/php@8.3.rb +++ b/Formula/p/php@8.3.rb @@ -2,9 +2,9 @@ class PhpAT83 < Formula desc "General-purpose scripting language" homepage "https://www.php.net/" # Should only be updated if the new version is announced on the homepage, https://www.php.net/ - url "https://www.php.net/distributions/php-8.3.20.tar.xz" - mirror "https://fossies.org/linux/www/php-8.3.20.tar.xz" - sha256 "f15914e071b5bddaf1475b5f2ba68107e8b8846655f9e89690fb7cd410b0db6c" + url "https://www.php.net/distributions/php-8.3.21.tar.xz" + mirror "https://fossies.org/linux/www/php-8.3.21.tar.xz" + sha256 "4dfb329f209a552c3716394fc123bb62e80a468b55ce27fc8cb0fd5f30b9dcd6" license "PHP-3.01" livecheck do From 89928e7b1e70b1c26cf5f822938b7c5f1764a244 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 23:29:03 +0000 Subject: [PATCH 0417/1364] dolt: update 1.53.1 bottle. --- Formula/d/dolt.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/d/dolt.rb b/Formula/d/dolt.rb index afa4247d0c692..1f055cda5f361 100644 --- a/Formula/d/dolt.rb +++ b/Formula/d/dolt.rb @@ -12,13 +12,13 @@ class Dolt < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "ee4e1f7718dd4fa64468e010f82201a5c6c1d4b13130b61be21300b3d36001f3" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "1f8f9280a2ad1b4f9a1674907244210193f93fdd7e3b6b8a831c9b13cc73cccb" - sha256 cellar: :any_skip_relocation, arm64_ventura: "6b87d55cf3d84fd06acd1d8c08a529598a637a1aab03c86ff40351ff6472deb4" - sha256 cellar: :any_skip_relocation, sonoma: "7dbb9dd1928beca15403daed7f206d71ba88e6fdb0e20752bc026362a0225a7e" - sha256 cellar: :any_skip_relocation, ventura: "232bc30389b7f50a64b8d0a39d8b22fd89e891459124cb7bacc5db0858747540" - sha256 cellar: :any_skip_relocation, arm64_linux: "edf22c17607d50d3c2f681f34be72df76ce563aec3d442644735416201647cf3" - sha256 cellar: :any_skip_relocation, x86_64_linux: "58392b77ea662a2ae09bbd7bc5a2cf2f073c77ae2a372b34a41bb787bba560c6" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "89865cd9d040533bb6cef6078023c84cea20737a82aeb4d61288dd4333edd91e" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "24de1f2f61172a493948d78bde1b52ebb1a7961e6199fe9ae117197d25898170" + sha256 cellar: :any_skip_relocation, arm64_ventura: "fbf02bb849f067edb1877ec7859f10347fd82b5f2f0329d21dfbb8d4629c8fa1" + sha256 cellar: :any_skip_relocation, sonoma: "78d367bab0729b4a2283bffe251e2816c472b7c098968b7bf6f51c79099f9187" + sha256 cellar: :any_skip_relocation, ventura: "8de1c04430e4095f69f92cc96f64627686e19797e183b311d40245f3f73351a1" + sha256 cellar: :any_skip_relocation, arm64_linux: "4c813ff3849f6a5f50d1534b1aeaf094101fd7a8a16b19881df1ce68e7bb04c3" + sha256 cellar: :any_skip_relocation, x86_64_linux: "c83699b0807942a3c7353a66e738e6e52de59673fc89dd41aed08fc5b0358b3b" end depends_on "go" => :build From 35e3cf75f0ec6d9691f6543e326e110464adce5f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 23:29:35 +0000 Subject: [PATCH 0418/1364] fern-api: update 0.60.26 bottle. --- Formula/f/fern-api.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/f/fern-api.rb b/Formula/f/fern-api.rb index a443009cf0b65..7559718470e3e 100644 --- a/Formula/f/fern-api.rb +++ b/Formula/f/fern-api.rb @@ -7,7 +7,7 @@ class FernApi < Formula head "https://github.com/fern-api/fern.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, all: "9816f2895876841d7720afad5a81f31875ba1995335a91c47289b746cbe2569c" + sha256 cellar: :any_skip_relocation, all: "29eb6e62acdd72caa2cc46eb0efceedc855ac9e5399ee9835028bb9cbcbd9bf5" end depends_on "node" From dec972c3bfdef4353ca4d3325c9fe9568032a6e8 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 23:30:01 +0000 Subject: [PATCH 0419/1364] postgrest 13.0.0 --- Formula/p/postgrest.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/p/postgrest.rb b/Formula/p/postgrest.rb index 02ebffd1d1469..2519df9aa9528 100644 --- a/Formula/p/postgrest.rb +++ b/Formula/p/postgrest.rb @@ -1,8 +1,8 @@ class Postgrest < Formula desc "Serves a fully RESTful API from any existing PostgreSQL database" homepage "https://github.com/PostgREST/postgrest" - url "https://github.com/PostgREST/postgrest/archive/refs/tags/v12.2.12.tar.gz" - sha256 "d748a81a3127691d46e7e2546a5eb0e77308b20190c2315267b6785e66dee0fc" + url "https://github.com/PostgREST/postgrest/archive/refs/tags/v13.0.0.tar.gz" + sha256 "61273ba81af1c84965695f35ff058da576d968b70a781ea6445701cb75929b97" license "MIT" head "https://github.com/PostgREST/postgrest.git", branch: "main" From 7632263802d5f1b14dc8b414662d8df59b1e9a62 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 23:30:05 +0000 Subject: [PATCH 0420/1364] apko: update 0.27.4 bottle. --- Formula/a/apko.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/a/apko.rb b/Formula/a/apko.rb index fa941d4381055..6b7f1a08fe772 100644 --- a/Formula/a/apko.rb +++ b/Formula/a/apko.rb @@ -15,12 +15,12 @@ class Apko < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "7c570f84adc1c972fe4ec3e29400923b79c986a315a333b62faea6e6dbe07f2f" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "7c570f84adc1c972fe4ec3e29400923b79c986a315a333b62faea6e6dbe07f2f" - sha256 cellar: :any_skip_relocation, arm64_ventura: "7c570f84adc1c972fe4ec3e29400923b79c986a315a333b62faea6e6dbe07f2f" - sha256 cellar: :any_skip_relocation, sonoma: "1a1057e72dd1105c133b026e241db0e4ef11dda1d618786340923b17bc8db24e" - sha256 cellar: :any_skip_relocation, ventura: "1a1057e72dd1105c133b026e241db0e4ef11dda1d618786340923b17bc8db24e" - sha256 cellar: :any_skip_relocation, x86_64_linux: "46d7247afa0fd4ae630c87588c8313d13b929e3fedd3b1150148ef787d98bbe2" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "6ee79239f3ee66db172a2e01034f6f6e55d6108a4fdec649852aa852d26badf8" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "6ee79239f3ee66db172a2e01034f6f6e55d6108a4fdec649852aa852d26badf8" + sha256 cellar: :any_skip_relocation, arm64_ventura: "6ee79239f3ee66db172a2e01034f6f6e55d6108a4fdec649852aa852d26badf8" + sha256 cellar: :any_skip_relocation, sonoma: "d3b10e25ea1931a3247826c60f1ad51add2bac0026cf77e426a011c36c40f967" + sha256 cellar: :any_skip_relocation, ventura: "d3b10e25ea1931a3247826c60f1ad51add2bac0026cf77e426a011c36c40f967" + sha256 cellar: :any_skip_relocation, x86_64_linux: "9edb821e5ba896bd35f1f4e4ff5fd03acf4cbbd91aebeb5a9d327b6b05d6f8ce" end depends_on "go" => :build From 7b74d0a7a864036965591ce79091cc3176d7b66f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 23:30:39 +0000 Subject: [PATCH 0421/1364] chainloop-cli: update 1.1.0 bottle. --- Formula/c/chainloop-cli.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/c/chainloop-cli.rb b/Formula/c/chainloop-cli.rb index 2cfadfbae265a..37e5ff060afa2 100644 --- a/Formula/c/chainloop-cli.rb +++ b/Formula/c/chainloop-cli.rb @@ -7,12 +7,12 @@ class ChainloopCli < Formula head "https://github.com/chainloop-dev/chainloop.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "d04a9f32b1baa7a882b58d6ba939cbf739b92606aa0b45a1e16a0f7f7a7f6bfe" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "d04a9f32b1baa7a882b58d6ba939cbf739b92606aa0b45a1e16a0f7f7a7f6bfe" - sha256 cellar: :any_skip_relocation, arm64_ventura: "d04a9f32b1baa7a882b58d6ba939cbf739b92606aa0b45a1e16a0f7f7a7f6bfe" - sha256 cellar: :any_skip_relocation, sonoma: "3e269527784f7f9be9bec59e7d0cbafbb76da857f3b3efc0d8a722101781e28b" - sha256 cellar: :any_skip_relocation, ventura: "6837c2be925c648c2c487deccc21483ca9c2f7090707d0086803e2f318f6bc6d" - sha256 cellar: :any_skip_relocation, x86_64_linux: "fc9062baf5d0535ce753b34e3e9f098677e7b37ad9fe91781f5e3464e9889f45" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "23bbdf30c04523a8510dbcb7335f47d432e60ee5900a2eab755df7bb05d74265" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "5790700ea663d6ddfebeff798fdd45774b7dac0e3e96712d1908ab028858b7c4" + sha256 cellar: :any_skip_relocation, arm64_ventura: "92cad91ce4a6e4c402522b88d500c6b39d68a8fc0d13fffd41f27d5dd80b34ef" + sha256 cellar: :any_skip_relocation, sonoma: "a7e56dce78e20adb59f521679472786b1db7d347d483a306624fda9947a62e3f" + sha256 cellar: :any_skip_relocation, ventura: "bbba81f3d73075c9d8c07435e229a3ae69c8795496923e91c47ede3b54251eab" + sha256 cellar: :any_skip_relocation, x86_64_linux: "a1c178d9973fb7df4c2e7c4a0e4ac02a089bf3ed3bb84288bd41fbcfa5f77ff0" end depends_on "go" => :build From 34c284c6bdc37cdd87f4deb8d471b2ccd3f2e1bf Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 23:31:16 +0000 Subject: [PATCH 0422/1364] brev: update 0.6.309 bottle. --- Formula/b/brev.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/b/brev.rb b/Formula/b/brev.rb index f7a4c725397d5..23f3eb19634a4 100644 --- a/Formula/b/brev.rb +++ b/Formula/b/brev.rb @@ -15,12 +15,12 @@ class Brev < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "13463c4142ee0116c444901995d1cc1289ce018a485cdc1053b7bc80ec6fb5c2" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "13463c4142ee0116c444901995d1cc1289ce018a485cdc1053b7bc80ec6fb5c2" - sha256 cellar: :any_skip_relocation, arm64_ventura: "13463c4142ee0116c444901995d1cc1289ce018a485cdc1053b7bc80ec6fb5c2" - sha256 cellar: :any_skip_relocation, sonoma: "dc1633e3374b1dfd4bcbbdd8170eae7ac094732f991c2adf2de1f657bf5aadd4" - sha256 cellar: :any_skip_relocation, ventura: "dc1633e3374b1dfd4bcbbdd8170eae7ac094732f991c2adf2de1f657bf5aadd4" - sha256 cellar: :any_skip_relocation, x86_64_linux: "c5c8d8e9b835fc47fdc5605a1c9792b1408d7c369a185ab850ac4256caf9ae44" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "62d93163e5ca4ec4f149adf1715899cafaae3ec7bf9204818ed7829b84a13092" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "62d93163e5ca4ec4f149adf1715899cafaae3ec7bf9204818ed7829b84a13092" + sha256 cellar: :any_skip_relocation, arm64_ventura: "62d93163e5ca4ec4f149adf1715899cafaae3ec7bf9204818ed7829b84a13092" + sha256 cellar: :any_skip_relocation, sonoma: "68130acae5a92481a3e9b89a4159702cd59c8b22d0f614429a5aea8277dbb25e" + sha256 cellar: :any_skip_relocation, ventura: "68130acae5a92481a3e9b89a4159702cd59c8b22d0f614429a5aea8277dbb25e" + sha256 cellar: :any_skip_relocation, x86_64_linux: "f4cad3838c487f692d8fd0d79a48c32509c7e9663a704c36bedb3b752a6a7570" end depends_on "go" => :build From c325f60e8b87c9ee4e1a4e150939a504809de07f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 23:31:25 +0000 Subject: [PATCH 0423/1364] pyenv 2.5.7 --- Formula/p/pyenv.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/p/pyenv.rb b/Formula/p/pyenv.rb index 7b79fdc1194fd..f2ae08ced6f13 100644 --- a/Formula/p/pyenv.rb +++ b/Formula/p/pyenv.rb @@ -1,8 +1,8 @@ class Pyenv < Formula desc "Python version management" homepage "https://github.com/pyenv/pyenv" - url "https://github.com/pyenv/pyenv/archive/refs/tags/v2.5.6.tar.gz" - sha256 "4844d4cf66aed4243201fc19680888d7e8b6d63bffa4f924665f5b5926370bb6" + url "https://github.com/pyenv/pyenv/archive/refs/tags/v2.5.7.tar.gz" + sha256 "8f8a9269e8ac676001b57291a002e08c85c1921185bcfb517d2db569b4fdb158" license "MIT" version_scheme 1 head "https://github.com/pyenv/pyenv.git", branch: "master" From 20a8603b1ad76cd689d06dbec1bd622d55e082be Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 23:32:31 +0000 Subject: [PATCH 0424/1364] kubergrunt: update 0.17.3 bottle. --- Formula/k/kubergrunt.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/k/kubergrunt.rb b/Formula/k/kubergrunt.rb index 2ce98c931e344..2c6696884511c 100644 --- a/Formula/k/kubergrunt.rb +++ b/Formula/k/kubergrunt.rb @@ -15,12 +15,12 @@ class Kubergrunt < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "3b68cb058c9194b0a68f660488e279ab3fe49de3b40a2de0eb3a3d36a9f5e3f8" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "3b68cb058c9194b0a68f660488e279ab3fe49de3b40a2de0eb3a3d36a9f5e3f8" - sha256 cellar: :any_skip_relocation, arm64_ventura: "3b68cb058c9194b0a68f660488e279ab3fe49de3b40a2de0eb3a3d36a9f5e3f8" - sha256 cellar: :any_skip_relocation, sonoma: "6019901c4d70272f2bf5434321d205f26392197e6d903a638f3fa597352f742a" - sha256 cellar: :any_skip_relocation, ventura: "6019901c4d70272f2bf5434321d205f26392197e6d903a638f3fa597352f742a" - sha256 cellar: :any_skip_relocation, x86_64_linux: "0b5791805883370a0ac1015f2a277d318f479ebf32050222a16e718a18dd352a" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "81891380ce3a7234b8de9560a87351bd83944484669c95eec8216d038a0f6210" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "81891380ce3a7234b8de9560a87351bd83944484669c95eec8216d038a0f6210" + sha256 cellar: :any_skip_relocation, arm64_ventura: "81891380ce3a7234b8de9560a87351bd83944484669c95eec8216d038a0f6210" + sha256 cellar: :any_skip_relocation, sonoma: "d1142ebf81f673bc9e0c55cfa8c86c4b4a9232ff0a7e12b1b02ec097fcf75940" + sha256 cellar: :any_skip_relocation, ventura: "d1142ebf81f673bc9e0c55cfa8c86c4b4a9232ff0a7e12b1b02ec097fcf75940" + sha256 cellar: :any_skip_relocation, x86_64_linux: "87686a336af3a417ff05ed4c12cfd1ffac42e3e657750897d29e05f7ea785e3e" end depends_on "go" => :build From 8d74152220c95d6f7441a05885d70f204e31a47f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 23:32:54 +0000 Subject: [PATCH 0425/1364] ratchet 0.11.3 --- Formula/r/ratchet.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/r/ratchet.rb b/Formula/r/ratchet.rb index 34dcccfab2954..74adb3daf8fed 100644 --- a/Formula/r/ratchet.rb +++ b/Formula/r/ratchet.rb @@ -1,8 +1,8 @@ class Ratchet < Formula desc "Tool for securing CI/CD workflows with version pinning" homepage "https://github.com/sethvargo/ratchet" - url "https://github.com/sethvargo/ratchet/archive/refs/tags/v0.11.2.tar.gz" - sha256 "13a3d3cfa3bdaf18da337b9fdff9d40faad0a28bdae4f75f560be1de3684d026" + url "https://github.com/sethvargo/ratchet/archive/refs/tags/v0.11.3.tar.gz" + sha256 "46a9bb0a7f284699fc438713612bf9b619d480254a6c78525103dbf45f1d6ce5" license "Apache-2.0" head "https://github.com/sethvargo/ratchet.git", branch: "main" From eb296c4026405bb374a9b88bcd05ef4f5c8cbf5b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 23:33:25 +0000 Subject: [PATCH 0426/1364] block-goose-cli: update 1.0.23 bottle. --- Formula/b/block-goose-cli.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/b/block-goose-cli.rb b/Formula/b/block-goose-cli.rb index 871b4fdecb0fc..c42ec4516f47e 100644 --- a/Formula/b/block-goose-cli.rb +++ b/Formula/b/block-goose-cli.rb @@ -12,13 +12,13 @@ class BlockGooseCli < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "ae3a75e773c901fd0b10b25d39e8af14f2ddeded6d7285496457bd5d5f9a700d" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "2dca0464557c380f7041730c8584a9b91d795e2b11e07bc71afdbb74ed2cf80d" - sha256 cellar: :any_skip_relocation, arm64_ventura: "28a8b94581a636e211b3b535667a860e590c608484d0dbfc9e3cf3118ee3d2fb" - sha256 cellar: :any_skip_relocation, sonoma: "d2210c348658c0dd9ce7c74693a7508823ea674b6a844d2e5c89ce212c4566c3" - sha256 cellar: :any_skip_relocation, ventura: "3f9907cfae0c94f2435cf549090978d12602da2302f9a4a2a11d4fac3fbe61e3" - sha256 cellar: :any_skip_relocation, arm64_linux: "45e8825157f2f65b1a5d5988ffdcfcd0480a7aaf3ad8b3d95a49c3d1795f1492" - sha256 cellar: :any_skip_relocation, x86_64_linux: "d1b8f38d21c50ebedf9b74be0483ea506eefc56d6e434363a8c76692dd0a2084" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "93d1f69b039c28409c0e20a81ccf4a8d1a01383feff8dc5bfae45c4f323aa7f8" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "b72a5b72b8f70a80894d7c5c36be297682daae44f973915bf21467d3ff69c07a" + sha256 cellar: :any_skip_relocation, arm64_ventura: "161f5da57c3065262da9eb28ccfb13dd12dce1dbbcc7c25f5eb4cf97adf99d08" + sha256 cellar: :any_skip_relocation, sonoma: "4e0cf2bdc311fc37aadc3df6053b35d344d15af10ce04b3e87cbb0b7217d4711" + sha256 cellar: :any_skip_relocation, ventura: "77af89ed5aeb3c6ba964b63b3f9e26617ba599a1f6fc89fd546e1f1a24b00360" + sha256 cellar: :any_skip_relocation, arm64_linux: "a233a3729a77223651d57e740676df2dc5c9ae6eea227bc0ea76892564e91da1" + sha256 cellar: :any_skip_relocation, x86_64_linux: "5c628c1a6b9682b35a226ebb0ec90daf825ae1ad208bbf1e2abebf12fbdf1e64" end depends_on "pkgconf" => :build From 9dda1fee4e3d76786c903fbd0a10bcf184e03b8f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 23:33:46 +0000 Subject: [PATCH 0427/1364] brew-gem: update 1.2.1 bottle. --- Formula/b/brew-gem.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Formula/b/brew-gem.rb b/Formula/b/brew-gem.rb index 3405ebc9fc13b..8a5c79b260271 100644 --- a/Formula/b/brew-gem.rb +++ b/Formula/b/brew-gem.rb @@ -15,8 +15,7 @@ class BrewGem < Formula end bottle do - rebuild 1 - sha256 cellar: :any_skip_relocation, all: "8725b10550f4284125bd582c7c7e79cc732eaae73d5bf8e4475cf776030ea037" + sha256 cellar: :any_skip_relocation, all: "e11e8436e3bc9f8580b2e29da9b07e023ab594b1c928bf600fac5274a35e543d" end uses_from_macos "ruby" From 9ba744a726d9c2babe32566bb1363273843a3b70 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 23:33:59 +0000 Subject: [PATCH 0428/1364] rio 0.2.15 --- Formula/r/rio.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/r/rio.rb b/Formula/r/rio.rb index 77c1b3a9b2384..edbb861906f63 100644 --- a/Formula/r/rio.rb +++ b/Formula/r/rio.rb @@ -1,8 +1,8 @@ class Rio < Formula desc "Hardware-accelerated GPU terminal emulator powered by WebGPU" homepage "https://raphamorim.io/rio/" - url "https://github.com/raphamorim/rio/archive/refs/tags/v0.2.14.tar.gz" - sha256 "b0c9d72a08e4bbb8b3274f5ea6ee84936ab2f45025b14f4b790f5aa90d169c5f" + url "https://github.com/raphamorim/rio/archive/refs/tags/v0.2.15.tar.gz" + sha256 "cd5f32e546b8b49554d6a341421a445e431ff3e347648aea2c4120d9c81dd82d" license "MIT" head "https://github.com/raphamorim/rio.git", branch: "main" From 36cb19fa3f3430ed579445f0c6a8c90990e3d37e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 23:34:33 +0000 Subject: [PATCH 0429/1364] harper: update 0.34.1 bottle. --- Formula/h/harper.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/h/harper.rb b/Formula/h/harper.rb index c7dab5096d220..616da460c3187 100644 --- a/Formula/h/harper.rb +++ b/Formula/h/harper.rb @@ -12,13 +12,13 @@ class Harper < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "766977016cd03322a0a355ca838585858ffae6533b54821134f077e08e3cc98c" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "874c27777c7c695874ea876ed8730108a7b628a56cd890254d50d711e31f0c6a" - sha256 cellar: :any_skip_relocation, arm64_ventura: "a673f40b3de830cc0cd85eaaeb2028c344643dbae14992a058dcb8113f93ae3b" - sha256 cellar: :any_skip_relocation, sonoma: "4391efd83f263b7015ca598d2488d1c8e7c7379e9b5d5798bd3256bd361a3384" - sha256 cellar: :any_skip_relocation, ventura: "ff2b5c26387dd345dc64035b0b453390e98127eefe062d593c4ed1e957137830" - sha256 cellar: :any_skip_relocation, arm64_linux: "a58f03d149faaa06f092810af9e2ad6e54ac6b4d80129b07a327a2242169aac6" - sha256 cellar: :any_skip_relocation, x86_64_linux: "bc275879acaeca994648d01dfc7509f032c5967c720eca41e6de16cdaccd2b4c" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "077aea987a8db3b6457f585840bbc3f6aefcf6b553290bca38f87523da0980c4" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "1d99eeaf1eadd98a7d7ce97cbd4aff879503f1fc8bfff4d25e451c6ff623d585" + sha256 cellar: :any_skip_relocation, arm64_ventura: "f6a416759eb35bb386268272f6a2c0a83d76e49cf5463b5018862b3ff1c76236" + sha256 cellar: :any_skip_relocation, sonoma: "69457cc27245fbdfa15d9f12c7bc7796f8dcff1270b041cb55035e6dc6c1eb48" + sha256 cellar: :any_skip_relocation, ventura: "39016ee7ddb7fc163e6958787b8142c52cef807b658fda51675cbd7c10d202e8" + sha256 cellar: :any_skip_relocation, arm64_linux: "6ff19faa932484d7b2c677a44c716104d77b56d5d6b35f75ba836227d46036cd" + sha256 cellar: :any_skip_relocation, x86_64_linux: "6805e7c999e72f6cf4147784f14967662a2532dcb8b3b263516163a2de28294a" end depends_on "rust" => :build From f473801ac1218c073a30ea33713c4ea2f6c2a153 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 23:36:59 +0000 Subject: [PATCH 0430/1364] silk 3.23.4 --- Formula/s/silk.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/s/silk.rb b/Formula/s/silk.rb index 055844874bb4f..fa668ee0f7fe1 100644 --- a/Formula/s/silk.rb +++ b/Formula/s/silk.rb @@ -1,8 +1,8 @@ class Silk < Formula desc "Collection of traffic analysis tools" homepage "https://tools.netsa.cert.org/silk/" - url "https://tools.netsa.cert.org/releases/silk-3.23.3.tar.gz" - sha256 "7f918626031f9543bd7ca7762f12ec56ba3ec2bf3298d319a15437b4ea1369c7" + url "https://tools.netsa.cert.org/releases/silk-3.23.4.tar.gz" + sha256 "b627af58880cd92532eea396ecc26c69f502452c8d37aacf93309bcdb370acb7" license all_of: ["GPL-2.0-or-later", "LGPL-2.1-or-later"] livecheck do From adf15690fb24e391e55e4c80fa86ab3797178f64 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 23:38:18 +0000 Subject: [PATCH 0431/1364] freeciv: update 3.1.5 bottle. --- Formula/f/freeciv.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/f/freeciv.rb b/Formula/f/freeciv.rb index 177b18837676f..0fdfafb0f9b38 100644 --- a/Formula/f/freeciv.rb +++ b/Formula/f/freeciv.rb @@ -11,13 +11,13 @@ class Freeciv < Formula end bottle do - sha256 arm64_sequoia: "bb24fc0fadc8f16b3c9518544e0bbf108dee3c75bdb2265125614f762967d8ed" - sha256 arm64_sonoma: "f8ade62bfbddee03015e60be7469b934c68ac117060227b64f093de2e9005cd5" - sha256 arm64_ventura: "751d5859aafda7a2f22f47e5aa83f8e7740aae1fc72310d67ee2d0efa2fb8351" - sha256 sonoma: "46928f3bc95629d3149e3ee1a44071ede46d2a7dc1e3c7d3d5ddbb672899f97f" - sha256 ventura: "c984ccc6dfd5d44d4cc24f834ddc7409f8fb7453084d5ca1296f6aebe0c2ebdc" - sha256 arm64_linux: "163e31e82cf0fbb9b2bbecf83d3965275db2aa1efcced265c0c60549f9b36e5a" - sha256 x86_64_linux: "8c414f76445e8eb8bcdaf130941e9d6a39c41e6a51c29d00da4dd439a06b9eac" + sha256 arm64_sequoia: "41b72392d0c7bda4ef87ebb4c3cb23a75437d47589e67947bc62429e53e86faa" + sha256 arm64_sonoma: "d7d140af12010c0adc38d54cfdd9750803799a99ce5411a69d1c6e355c54a4e6" + sha256 arm64_ventura: "2694d772632c1c690fcb8398888753b44d06156ad79dd3c7dbccc1a63a6214e9" + sha256 sonoma: "14192305f9802303a698451bef2b3985888ff2929b30754d1a4b4f4a90699db7" + sha256 ventura: "5ea34567361cbccb36c9421ba3b8a10ce14579e25dc059181f4316d0760619ef" + sha256 arm64_linux: "2bc1f434418b08b9fe66ef1c3b3d924559e4a99b7ffb4d9e6c68b709a2153b1c" + sha256 x86_64_linux: "0da80ceb53a0bd7e464cab9b9a5806a57c3cdde7c408fdc6becd8b405822f0b4" end head do From 31113f1740f16b30bc2351cbcbf7456f6b1e8c6b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 23:44:14 +0000 Subject: [PATCH 0432/1364] victorialogs 1.22.1 --- Formula/v/victorialogs.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/v/victorialogs.rb b/Formula/v/victorialogs.rb index 0d31d72aa7609..052b8e9815b08 100644 --- a/Formula/v/victorialogs.rb +++ b/Formula/v/victorialogs.rb @@ -1,8 +1,8 @@ class Victorialogs < Formula desc "Open source user-friendly database for logs from VictoriaMetrics" homepage "https://docs.victoriametrics.com/victorialogs/" - url "https://github.com/VictoriaMetrics/VictoriaMetrics/archive/refs/tags/v1.22.0-victorialogs.tar.gz" - sha256 "53091ba141368382edb7a6daacee88b5cdf5025214800f2e0dc323041f8362dd" + url "https://github.com/VictoriaMetrics/VictoriaMetrics/archive/refs/tags/v1.22.1-victorialogs.tar.gz" + sha256 "f4ecd43d942490370b437d709712159a1c6f7228dcd66c143f8034f75be0a84c" license "Apache-2.0" # There are tags like `pmm-6401-v1.89.1` in the upstream repo. They don't From aeb7c0c7284d13550350e592883281d8d1fddba5 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 23:58:41 +0000 Subject: [PATCH 0433/1364] noseyparker: update 0.24.0 bottle. --- Formula/n/noseyparker.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/n/noseyparker.rb b/Formula/n/noseyparker.rb index e56479640dfae..3bc949edcf6fb 100644 --- a/Formula/n/noseyparker.rb +++ b/Formula/n/noseyparker.rb @@ -7,13 +7,13 @@ class Noseyparker < Formula head "https://github.com/praetorian-inc/noseyparker.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "6ce37940acdde39b749116c996dd7593423b7c702c05a3dcb69c3d69715d123c" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "cb57f1fce63e93ff03a5bcdf688d4097d69a526021889d747ead2bc0233bc3f0" - sha256 cellar: :any_skip_relocation, arm64_ventura: "e29c106856a44d68686292217771f114fb9975f0cd13c0aa6f22003dc63baf29" - sha256 cellar: :any_skip_relocation, sonoma: "dd07b2fbb4a8652eb3209a98e69860166bf0966e1eb279c993472b272dfdc596" - sha256 cellar: :any_skip_relocation, ventura: "9a9f02b384542990d19d29d9f4ab0a86dabdd02da032caaa100c0b099f554dc6" - sha256 cellar: :any_skip_relocation, arm64_linux: "96c637d35682a70aeb0d4b4bdb6c0b79b738b3240a0857688cd5e061e1ec9d7d" - sha256 cellar: :any_skip_relocation, x86_64_linux: "43d9f57dbf2601ff3c088caf989bc9338a2dc6ef1aac096582cc4d98919c4438" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "b3d50cf968e60eff8c5e51bf937bfd8528a7d7cb89d5df6ad8467b50b6cc7893" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "17369ef3f870c5a18489e7baed30d33fb571fadcade62ec1091f6d54f00abe86" + sha256 cellar: :any_skip_relocation, arm64_ventura: "6ab5f7973f25bc569e1a79c7d978739a9428ce3954b4775efa76e20718e8e0d4" + sha256 cellar: :any_skip_relocation, sonoma: "2aa6a8b34c8484d0fc36febad3e465ac48f53b71ff4f596490dfee97688ee008" + sha256 cellar: :any_skip_relocation, ventura: "7be747e4d857c18ec1b1f4345d5f4745c65c54c782b2efc50bda45f1aa268d6d" + sha256 cellar: :any_skip_relocation, arm64_linux: "d86b9a2d4377d12ec9783e9855bc8bbd8ba06270860ff85521c0adf507fd0448" + sha256 cellar: :any_skip_relocation, x86_64_linux: "99c219b6991576f9ee16f57cb2f08f5d2081dacb1f5ce8c61136ae8c7ffbf470" end depends_on "boost" => :build From 35ffcff861937b1bb1479b237aa1126522174ffd Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 00:00:52 +0000 Subject: [PATCH 0434/1364] ratchet: update 0.11.3 bottle. --- Formula/r/ratchet.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/r/ratchet.rb b/Formula/r/ratchet.rb index 74adb3daf8fed..59d6e2507fac7 100644 --- a/Formula/r/ratchet.rb +++ b/Formula/r/ratchet.rb @@ -7,12 +7,12 @@ class Ratchet < Formula head "https://github.com/sethvargo/ratchet.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "ae54ad750e8a5bf9e01ead85d287bdca74fda9642c3dcb94f8cb62d51c729f29" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "ae54ad750e8a5bf9e01ead85d287bdca74fda9642c3dcb94f8cb62d51c729f29" - sha256 cellar: :any_skip_relocation, arm64_ventura: "ae54ad750e8a5bf9e01ead85d287bdca74fda9642c3dcb94f8cb62d51c729f29" - sha256 cellar: :any_skip_relocation, sonoma: "3dfc2fae31bc7b23478902bdca47870574c6ea6fecb487bd6c939fe06cfd35af" - sha256 cellar: :any_skip_relocation, ventura: "3dfc2fae31bc7b23478902bdca47870574c6ea6fecb487bd6c939fe06cfd35af" - sha256 cellar: :any_skip_relocation, x86_64_linux: "24cc05543463b7e9e4d3c98e787868082d8433c0aba8c185137035d5094a80e0" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "49fa18b970518e752110498b373d02d624522c702c0aa04effb7f97ad9c8d3e3" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "49fa18b970518e752110498b373d02d624522c702c0aa04effb7f97ad9c8d3e3" + sha256 cellar: :any_skip_relocation, arm64_ventura: "49fa18b970518e752110498b373d02d624522c702c0aa04effb7f97ad9c8d3e3" + sha256 cellar: :any_skip_relocation, sonoma: "488704c85b23d71d07fd24f54d20f7edef6c542bebc8c11ac5db0ab6e5a571c7" + sha256 cellar: :any_skip_relocation, ventura: "488704c85b23d71d07fd24f54d20f7edef6c542bebc8c11ac5db0ab6e5a571c7" + sha256 cellar: :any_skip_relocation, x86_64_linux: "46ba7b2680cd7aeb5fb0333625cd747975bc71ad549870edc1a995c6d84316f2" end depends_on "go" => :build From c0734106d556aebe8848b5c0973752704bd8078e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 01:01:58 +0000 Subject: [PATCH 0435/1364] rio: update 0.2.15 bottle. --- Formula/r/rio.rb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Formula/r/rio.rb b/Formula/r/rio.rb index edbb861906f63..346396745bd37 100644 --- a/Formula/r/rio.rb +++ b/Formula/r/rio.rb @@ -12,11 +12,11 @@ class Rio < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "9b03a31f36d5fb7c7891a4f30e84e28492fa9609db57ed97af189dffaccedd52" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "6c121ff07432f78eecc058b78619bfb3949fdcc45b941061101cac2723b09fb2" - sha256 cellar: :any_skip_relocation, arm64_ventura: "62e49ac1900e409a35fea4dbb411a059bdd4a32968c9f5a72555967acd7818da" - sha256 cellar: :any_skip_relocation, sonoma: "26823ab4a460c74a14a5793b33140e37aa492bd25422fd10a66448ba03f31271" - sha256 cellar: :any_skip_relocation, ventura: "91a11518ee947da821e65cfc8a63ec8234cb911d8cbceafa6b7db72d02dbd068" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "50cc084a1fe6c67abcccea58ef8e3aac6bc66b2bf4165fc5b52cb524be3bee08" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "d81a77ccde76fa7886a977a7d79ab4a62c090d39fd799af951f97f7ce7d4bc18" + sha256 cellar: :any_skip_relocation, arm64_ventura: "e8a74e845f9036eb3d2749d9ed11e3629118faa4fb8070241e79a79e2719266b" + sha256 cellar: :any_skip_relocation, sonoma: "9ffc892ffdcb26124dcaeafe8ecc3aa7efc0a6968b4e7bd649bd65eb897f0af9" + sha256 cellar: :any_skip_relocation, ventura: "de8dada41114df4b63ee68fa69c592ca37e5cd4093beaccd447b87ee3ca70d9d" end depends_on "rust" => :build From 626843bb671222dc959344492c782dbe894e0864 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 01:02:00 +0000 Subject: [PATCH 0436/1364] php@8.3: update 8.3.21 bottle. --- Formula/p/php@8.3.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/p/php@8.3.rb b/Formula/p/php@8.3.rb index e15156cddd45e..7ec053bbbe3fe 100644 --- a/Formula/p/php@8.3.rb +++ b/Formula/p/php@8.3.rb @@ -13,13 +13,13 @@ class PhpAT83 < Formula end bottle do - sha256 arm64_sequoia: "6e1bb9056791fd920a04050215fd9eb79c4c76a8e666051b18d09fc94b082fda" - sha256 arm64_sonoma: "d065d20878989d9b804b1a4e1646098536dcf8a220143b5c527fcf3732366bc9" - sha256 arm64_ventura: "70350ccd77c3f6734ccae1e894ec91544df876bf0c2d3f1f75354de9436c7cb1" - sha256 sonoma: "637c3cc2343c58a88ab26f0af43c4d3b6f47f6a81a8298e5627d48e068ce440c" - sha256 ventura: "0aa4c3ccb0e0fce8be4efb5db5c5be6a8607176bd740462d9e5f3294228e9589" - sha256 arm64_linux: "ac9a242f021a587e5adc64685138726a0df19d43c8fe852e6ec5ccd5814a5e85" - sha256 x86_64_linux: "a5f015ce31d9829515b5152f2ec22d8fc638e85a211bb1c3abf45b8576c281f4" + sha256 arm64_sequoia: "e3197f9bd177aefd63f9bcce8f7e5dcaf45246dc4170bd946bb06196772b98fa" + sha256 arm64_sonoma: "2eb9ae3177ee96bbe2d478264c169cab5268d4fba837fbf18565e86161a6da6b" + sha256 arm64_ventura: "619b9853cd24b379e582d97447bc4460e781a518a53eaab315a95f0f77b2d0c5" + sha256 sonoma: "0ae63bf1ef0935e560f264e3f4b99d18fe58c890686a5e015b641998fad76309" + sha256 ventura: "3aef53edbf54403cfff6a48d62c426a859d67082fde9cefabda16b767d1f6925" + sha256 arm64_linux: "f80bbee7cfeefe6403d9be7660432cd273f0977d6d6aea115496ddcfccc9a0a9" + sha256 x86_64_linux: "c3c97efcd65600bd1c4391e93063df436bd5fa0c206d7984a933cb91feddba2a" end keg_only :versioned_formula From b2fadfdba24f3829f310835df2d68a73fd48cdf7 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 01:02:01 +0000 Subject: [PATCH 0437/1364] mavsdk: update 3.3.3 bottle. --- Formula/m/mavsdk.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/m/mavsdk.rb b/Formula/m/mavsdk.rb index 9755ef3a90886..bd5d4118c7f9f 100644 --- a/Formula/m/mavsdk.rb +++ b/Formula/m/mavsdk.rb @@ -12,13 +12,13 @@ class Mavsdk < Formula end bottle do - sha256 arm64_sequoia: "cfc708e3fe96ea7fd31ea6cca545d0022aa514e852601da6a4929b0863b010da" - sha256 arm64_sonoma: "b84c74a67587e44330e6e8a034a52e8f2a034b2032675bfdf66dc211aa8ece07" - sha256 arm64_ventura: "4c3636f36285b3f2225a06a8f1cec66792f4f94f2a1c9bce6c2bbc7284b4185e" - sha256 cellar: :any, sonoma: "3e276ce268941e0147befdea9bb7da368de42f6b51dcc890eef1e118b4f6058d" - sha256 cellar: :any, ventura: "9848cc588db8c6d6b3444f094927375cc9c785479e15e0659eb3c97ff15f9331" - sha256 cellar: :any_skip_relocation, arm64_linux: "c9a424c4ff945c9164b9a453876da1d0882abd500960170a2e10bdb62157d35d" - sha256 cellar: :any_skip_relocation, x86_64_linux: "ec19d57c49b101d232e52b374d0422f03a4db507ba3fd46708a62c750e480b03" + sha256 arm64_sequoia: "f235c516fe52fae135aed64c73447015811d54fb955bcb381ffa919f23f47309" + sha256 arm64_sonoma: "f1626b74de04e8844f6f560b3519c68425cf27154568194e96eaa7b5fab37b8f" + sha256 arm64_ventura: "c43975520eab004c0a2de818eafe021b8224a75f372228375db91dafded94f2c" + sha256 cellar: :any, sonoma: "99e9359c92ed6bf6c0308edaebdaf25896635666b9f48421601638a1937c00f8" + sha256 cellar: :any, ventura: "4d12d87a3d9c77b9ad490ba51e90f579695252ea70fc2f34f5cbfe4993a5455f" + sha256 cellar: :any_skip_relocation, arm64_linux: "f1daae814d43f5524eafccb82a5418658694376f2e6832125a6fda0de55dbb97" + sha256 cellar: :any_skip_relocation, x86_64_linux: "74ec1e84d3ff12a106142cd61dd3ba1c32dfb2832fc2c8c62955d3d3cd9a1e31" end depends_on "cmake" => :build From 1c116d577747f290f887dd702d35718feee51c1b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 01:02:02 +0000 Subject: [PATCH 0438/1364] pyenv: update 2.5.7 bottle. --- Formula/p/pyenv.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/p/pyenv.rb b/Formula/p/pyenv.rb index f2ae08ced6f13..628f4e1e20b69 100644 --- a/Formula/p/pyenv.rb +++ b/Formula/p/pyenv.rb @@ -13,13 +13,13 @@ class Pyenv < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "1d654b3cfe26e5355d1f6cd547e26fcd567f9c035245a1c5066d9ff04ff12e47" - sha256 cellar: :any, arm64_sonoma: "378dc091255b9d589c79a217111d6d0a2c922284cbe8e7d81575b3add8129c55" - sha256 cellar: :any, arm64_ventura: "339619826129d8d04000eca3174c86ef1038db73f8edf4d3786a70e2ca3eb1f8" - sha256 cellar: :any, sonoma: "d092f48b7c0a0200c79c4e714ed3d3e50bb3503e7ab580136efc251c21a94c6a" - sha256 cellar: :any, ventura: "3977be932f4445e8d98d49f02d4cfe011b922dee3d62be84a924ed65eaed7530" - sha256 cellar: :any_skip_relocation, arm64_linux: "219c2c65107fe21e552390d777dfb0fec71855d66d4157aea0c63a155a1d91ef" - sha256 cellar: :any_skip_relocation, x86_64_linux: "ccc0042833ca4535475369ef88deccd35938ef876a8ad9668c8368dc0b8d4b81" + sha256 cellar: :any, arm64_sequoia: "e92da67e25841718343f019895fdd466b1f087a434c9c017a6f6be4cd56bd985" + sha256 cellar: :any, arm64_sonoma: "6fc91b1ce33f9b47111bdbfb69189cdde7ff2b345515bd95cdad8a9f5c5fdb5c" + sha256 cellar: :any, arm64_ventura: "6c4ccadbcca559187fb4bd96ac4460a0aba5aee91bcc540b88ad8a441fd18fd9" + sha256 cellar: :any, sonoma: "5176551daf7dcd43fa132b52c619f1932b43a4ac92c4186aac9a9f87fc8668e3" + sha256 cellar: :any, ventura: "5bec0b7618ddd7ae565131343bb8bdf95b0560980c94ac787559cca9413a399b" + sha256 cellar: :any_skip_relocation, arm64_linux: "c7639f6be19a307f91505bdc31dcd2c8f4fab2d586d5b3b9454cb133441a52e6" + sha256 cellar: :any_skip_relocation, x86_64_linux: "82e11c654d55d1cfbc229ddc6766c0e28185f3154e67aa37337083fd99458d70" end depends_on "autoconf" From cc27a15089b1230e3b3a42813a8e1e8f4ffc9d36 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 01:02:03 +0000 Subject: [PATCH 0439/1364] postgrest: update 13.0.0 bottle. --- Formula/p/postgrest.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/p/postgrest.rb b/Formula/p/postgrest.rb index 2519df9aa9528..c44c04daf1a56 100644 --- a/Formula/p/postgrest.rb +++ b/Formula/p/postgrest.rb @@ -12,13 +12,13 @@ class Postgrest < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "c4c873681dd0d0ef13f0641ec9a5f4f52aadde9228527367c58cceae872908bb" - sha256 cellar: :any, arm64_sonoma: "ebc0347179edf1dd6f5b8f9ac22725252357ac2cbb6cf00193c4955e44c84c2a" - sha256 cellar: :any, arm64_ventura: "da7f4e4822b47c42305be6ad6558da1678d7ad40be7cb763d56d2041699bbf0f" - sha256 cellar: :any, sonoma: "e33dfc41bfafc29e1c242673f4a74e1e397e53c08514f0f420326a04c0d7b14f" - sha256 cellar: :any, ventura: "f0abe5105f6f97ac61b842a59af4d6d0b5aa27c49b57dea99f01033ec9f39b25" - sha256 cellar: :any_skip_relocation, arm64_linux: "c17d0bfe395d15ea32a163265fa466410b305ef79cc75662c470d17869d641a9" - sha256 cellar: :any_skip_relocation, x86_64_linux: "c7917700b0d68fc45ce792899da3941ccd0253a75cb6314d5bb4fc00040116e1" + sha256 cellar: :any, arm64_sequoia: "d9290700cd7ddb3a617430c9c7cc3e12f5ba2c1195b8a4c9f0c822ab4cf193f9" + sha256 cellar: :any, arm64_sonoma: "ee9085f8de34c1a2e99cd8ed6a0b3b22fdc2722d33c546f8190793caaf96ce09" + sha256 cellar: :any, arm64_ventura: "395ae0c69a1e06db5bd4339b8ca40a9a9f8241ec7c0730c52a81d139e15932d7" + sha256 cellar: :any, sonoma: "f0a37bbbc2f54ae0ed72a91e0759dcef52e58841cb283c2f473eb408f912ff03" + sha256 cellar: :any, ventura: "e00742b17b0999d69eb31c6c45953b2ddea0b7f2e9656c145a6908127a9c4798" + sha256 cellar: :any_skip_relocation, arm64_linux: "ed9e02e34c6dc43b24561992a65f447a668e5362850edb3c6341327b8dbfa8b8" + sha256 cellar: :any_skip_relocation, x86_64_linux: "a6d14fa04538cd872c63ed61c2ff303e0e7104219e0ac455c95c23913a6264d0" end depends_on "cabal-install" => :build From 2edb6c93a674af59ce39eafd400ae4837fc33806 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 01:02:07 +0000 Subject: [PATCH 0440/1364] silk: update 3.23.4 bottle. --- Formula/s/silk.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/s/silk.rb b/Formula/s/silk.rb index fa668ee0f7fe1..f8bb5e3ac6416 100644 --- a/Formula/s/silk.rb +++ b/Formula/s/silk.rb @@ -11,13 +11,13 @@ class Silk < Formula end bottle do - sha256 arm64_sequoia: "4ec08564f5bc0da08669fcdd552ce86a8a1208f0fb901aed2d92eed840fd1acd" - sha256 arm64_sonoma: "80f77b63679bcfd3999be42d31f6da5b76656961a565e7a2464123640fb4855e" - sha256 arm64_ventura: "5e5d808fc887a8e6dfa50d087046c89f40683403444133ad9275ba46f9904997" - sha256 sonoma: "546bd6104614d6f05e53bac28a160a6083921d7357d0fc59e7ca1c804daca899" - sha256 ventura: "de93ae1b70d76f666c5a03d70741a51c910f93a4822184031e3704adb2765c2d" - sha256 arm64_linux: "20367aac96d0ebcd7f9fef99ce1bb9d63936d6d197cb64ee73d67bcb69f8178f" - sha256 x86_64_linux: "09cf4e1b3f3492c1245f04da0eda5fd741fa96238fe8eff9c16bd7b8c7ce1251" + sha256 arm64_sequoia: "b875ee67577ab96da3d7c593218e407fd8249c46aebf215bac34c2ed2318aa08" + sha256 arm64_sonoma: "189211ad4ba779d31573fd9a1332760e85588ac8e5e52453d89688fb716d4931" + sha256 arm64_ventura: "5252fe02085962df9e3fb10042f5e801a58b71dc4f5d53bef69c585407349a2a" + sha256 sonoma: "0cee6423aa6b66ece3d65aa17a1d3d9f6d22c2411d6f6f4d90fea0cf9ed6ef23" + sha256 ventura: "911268aac598d09cc6815cc086345c8356b6ad1c5933ef3e4ea03b0de9da0c53" + sha256 arm64_linux: "4c483da4df5cc0bee310dad7edf51fcbc40101963642e0a639ea021bdcb51437" + sha256 x86_64_linux: "9423c04a5e4863ad4f29d613581d0a9b769f75d8dee19f9e83db6f15d1d0b2f1" end depends_on "pkgconf" => :build From 903b0593767155f3615ce1b1fa1b4d3d7c13b2c5 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 01:02:17 +0000 Subject: [PATCH 0441/1364] victorialogs: update 1.22.1 bottle. --- Formula/v/victorialogs.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/v/victorialogs.rb b/Formula/v/victorialogs.rb index 052b8e9815b08..881455f43ac49 100644 --- a/Formula/v/victorialogs.rb +++ b/Formula/v/victorialogs.rb @@ -14,13 +14,13 @@ class Victorialogs < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "3060e406c55ba9370bf7ea9d58b58129c96a4334ba1e386af3ef398e7419a44b" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "5b8052fc019fcd725a3967a3cff955ea134e01387e1bd4462ad6273ed08775f0" - sha256 cellar: :any_skip_relocation, arm64_ventura: "d3516d87ed1ae0987c634c18c39be8a6f6037bd509254cd0163f57057cae35cf" - sha256 cellar: :any_skip_relocation, sonoma: "b319212821c17f8c73b21852a8374c376456a52c70a439ef939c3eeeb2712d70" - sha256 cellar: :any_skip_relocation, ventura: "48a9f74a1c1df3bc40394cf4f563bfb6076580cb7030dfa772e201ab7260ac59" - sha256 cellar: :any_skip_relocation, arm64_linux: "a0f20cb8c3b3a0ec2f437639dab54795cfd149adeef887bc4896ae5bbe593ffe" - sha256 cellar: :any_skip_relocation, x86_64_linux: "bace3e5742c05d3271daa9888db202b1ae501dbdfbe99d4fc3dc22a85ff4774f" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "37a3b6316830c437c18532fe1c5eb2937c66cbdfaaa8b4ffdf5bf66d153184f5" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "2b1f60a0877aa376b60eff933b78fc52b7d525395ac7ae897c780a3a924bb692" + sha256 cellar: :any_skip_relocation, arm64_ventura: "edf0ba98cf2b85440c549aeb53fcfee43cd5ff6c6c1675f441e0d5b927745c38" + sha256 cellar: :any_skip_relocation, sonoma: "06f069fd0a6d656caa4af4ea13d64fc4d8893192cb281b0094d3fff5c4cafa00" + sha256 cellar: :any_skip_relocation, ventura: "a3d775c8d1bba7fd813694c1e5cc1de59766a125b1e9b1545b54067df39b95ad" + sha256 cellar: :any_skip_relocation, arm64_linux: "f0349535926725c2e645446363e80be3cbb1a104a8d93ff0fd721e96ab1e7d0a" + sha256 cellar: :any_skip_relocation, x86_64_linux: "a817cdb92c3e71a200cfe60fa448497bb0122fb1139d38c84d42767fa318417b" end depends_on "go" => :build From 1cb9be7b28c7958ad281595203c3490e621d8305 Mon Sep 17 00:00:00 2001 From: Patrick Linnane Date: Thu, 8 May 2025 12:03:15 -0700 Subject: [PATCH 0442/1364] codex 0.1.2504301751 (new formula) Signed-off-by: Patrick Linnane codex: remove HEAD Signed-off-by: Patrick Linnane --- .github/autobump.txt | 1 + Formula/c/codex.rb | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 Formula/c/codex.rb diff --git a/.github/autobump.txt b/.github/autobump.txt index df8c622fef60b..0934cd96b7345 100644 --- a/.github/autobump.txt +++ b/.github/autobump.txt @@ -606,6 +606,7 @@ coder codesnap codespell codevis +codex cog coin3d coinutils diff --git a/Formula/c/codex.rb b/Formula/c/codex.rb new file mode 100644 index 0000000000000..803a71f9e338b --- /dev/null +++ b/Formula/c/codex.rb @@ -0,0 +1,22 @@ +class Codex < Formula + desc "OpenAI's coding agent that runs in your terminal" + homepage "https://github.com/openai/codex" + url "https://registry.npmjs.org/@openai/codex/-/codex-0.1.2504301751.tgz" + sha256 "534efae4ced56e98b136a13bee4523acebf261267fecc11ea3df9a2854875186" + license "Apache-2.0" + + depends_on "node" + + def install + system "npm", "install", *std_npm_args + bin.install_symlink Dir["#{libexec}/bin/*"] + + generate_completions_from_executable(bin/"codex", "completion") + end + + test do + assert_match version.to_s, shell_output("#{bin}/codex --version") + + assert_match "Missing openai API key", shell_output("#{bin}/codex brew 2>&1", 1) + end +end From c3624b59fb3697aec89d2a7702e6a4c722a9ff5a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 02:45:21 +0000 Subject: [PATCH 0443/1364] groonga 15.0.9 --- Formula/g/groonga.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/g/groonga.rb b/Formula/g/groonga.rb index 57a8e1ca5ff0c..da7bff9bbeb46 100644 --- a/Formula/g/groonga.rb +++ b/Formula/g/groonga.rb @@ -1,8 +1,8 @@ class Groonga < Formula desc "Fulltext search engine and column store" homepage "https://groonga.org/" - url "https://github.com/groonga/groonga/releases/download/v15.0.4/groonga-15.0.4.tar.gz" - sha256 "1123d4101a55ea183c290792ce39253e07f84740e561da70c69f4ce9875357f4" + url "https://github.com/groonga/groonga/releases/download/v15.0.9/groonga-15.0.9.tar.gz" + sha256 "f9969d2f8025a31dd201d8ce0e5db3a1547144e6191f75a9bbb1d771b7f0def2" license "LGPL-2.1-or-later" livecheck do From 3fd8d48b3dbe91b266650beb059a2aae31fd0d32 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 02:58:41 +0000 Subject: [PATCH 0444/1364] mako 0.11.11 --- Formula/m/mako.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/m/mako.rb b/Formula/m/mako.rb index 9e39ae14d09c4..4375b964b3b8f 100644 --- a/Formula/m/mako.rb +++ b/Formula/m/mako.rb @@ -1,8 +1,8 @@ class Mako < Formula desc "Production-grade web bundler based on Rust" homepage "https://makojs.dev" - url "https://registry.npmjs.org/@umijs/mako/-/mako-0.11.10.tgz" - sha256 "b8c872ae8a742db7a72747277622e898674c621fea970ac806ef8deac000816f" + url "https://registry.npmjs.org/@umijs/mako/-/mako-0.11.11.tgz" + sha256 "e01d3901af50d122a82f8249211978725ce6e0b7f4aeb3bfb3cfe0786840c5cf" license "MIT" bottle do From 9e83f7229d41c00e30746cc02549e159dd62b0b4 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 03:18:10 +0000 Subject: [PATCH 0445/1364] snowball 3.0.1 --- Formula/s/snowball.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/s/snowball.rb b/Formula/s/snowball.rb index 8d0b224dbb40c..ad0cdf5a772b4 100644 --- a/Formula/s/snowball.rb +++ b/Formula/s/snowball.rb @@ -1,8 +1,8 @@ class Snowball < Formula desc "Stemming algorithms" homepage "https://snowballstem.org" - url "https://github.com/snowballstem/snowball/archive/refs/tags/v3.0.0.tar.gz" - sha256 "4100b983cec95e1e6c998ea57b220d235f082b9ef6e837afb97dee0bb0a65d14" + url "https://github.com/snowballstem/snowball/archive/refs/tags/v3.0.1.tar.gz" + sha256 "80ac10ce40dc4fcfbfed8d085c457b5613da0e86a73611a3d5527d044a142d60" license "BSD-3-Clause" bottle do From 1fe27f12a961a71eb17f1859e138f823b01d4c07 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 03:30:44 +0000 Subject: [PATCH 0446/1364] yorkie 0.6.10 --- Formula/y/yorkie.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/y/yorkie.rb b/Formula/y/yorkie.rb index 1b5779f31f463..5ce6756615f7d 100644 --- a/Formula/y/yorkie.rb +++ b/Formula/y/yorkie.rb @@ -1,8 +1,8 @@ class Yorkie < Formula desc "Document store for collaborative applications" homepage "https://yorkie.dev/" - url "https://github.com/yorkie-team/yorkie/archive/refs/tags/v0.6.9.tar.gz" - sha256 "eee58566b35fa9d35e744a7cbefada6803b966c78eef191c94ce2f99ee26bd97" + url "https://github.com/yorkie-team/yorkie/archive/refs/tags/v0.6.10.tar.gz" + sha256 "cc9b9207f681c8655bec58fb17c1de652a72dd2ecede14558dccb07f5c57fde7" license "Apache-2.0" head "https://github.com/yorkie-team/yorkie.git", branch: "main" From 2f3a49ccfa8a68978b0493914d10b4b4a4b9af5a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 03:31:28 +0000 Subject: [PATCH 0447/1364] zizmor 1.7.0 --- Formula/z/zizmor.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Formula/z/zizmor.rb b/Formula/z/zizmor.rb index 1f38405b05793..6f98193de2b03 100644 --- a/Formula/z/zizmor.rb +++ b/Formula/z/zizmor.rb @@ -1,8 +1,8 @@ class Zizmor < Formula desc "Find security issues in GitHub Actions setups" homepage "https://woodruffw.github.io/zizmor/" - url "https://github.com/woodruffw/zizmor/archive/refs/tags/v1.6.0.tar.gz" - sha256 "17a244ff5a4d5ea58b323e421da2c061bb661c2e533c3827988a83cc1ed79f78" + url "https://github.com/woodruffw/zizmor/archive/refs/tags/v1.7.0.tar.gz" + sha256 "9564db26f6e134a8f23f6d92c48a25c7cf457fed5de5ac76643cd45abf098129" license "MIT" bottle do @@ -23,7 +23,7 @@ def install end test do - (testpath/"action.yaml").write <<~YAML + (testpath/"workflow.yaml").write <<~YAML on: push jobs: vulnerable: @@ -33,7 +33,7 @@ def install uses: actions/checkout@v4 YAML - output = shell_output("#{bin}/zizmor --format plain #{testpath}/action.yaml", 13) + output = shell_output("#{bin}/zizmor --format plain #{testpath}/workflow.yaml", 13) assert_match "does not set persist-credentials: false", output end end From 434bbd7e36e8ed07174900ad2b63e65cf15434f3 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 04:16:58 +0000 Subject: [PATCH 0448/1364] yorkie: update 0.6.10 bottle. --- Formula/y/yorkie.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/y/yorkie.rb b/Formula/y/yorkie.rb index 5ce6756615f7d..bb8c878c0d00d 100644 --- a/Formula/y/yorkie.rb +++ b/Formula/y/yorkie.rb @@ -12,12 +12,12 @@ class Yorkie < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "00fbb3d71ae78246a2723bb5c8ea738e3948ba53e28cd4944d25fa9214b449b4" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "00fbb3d71ae78246a2723bb5c8ea738e3948ba53e28cd4944d25fa9214b449b4" - sha256 cellar: :any_skip_relocation, arm64_ventura: "00fbb3d71ae78246a2723bb5c8ea738e3948ba53e28cd4944d25fa9214b449b4" - sha256 cellar: :any_skip_relocation, sonoma: "3bf1a8617ba0ec07256f00965a0990a873123aacbbaf6057b1f8bf9ddd54e7e9" - sha256 cellar: :any_skip_relocation, ventura: "3bf1a8617ba0ec07256f00965a0990a873123aacbbaf6057b1f8bf9ddd54e7e9" - sha256 cellar: :any_skip_relocation, x86_64_linux: "54d3df7e85a519f39361e3814d0c8710cb4197b8ec67814daf3b69bb833596fd" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "b679e675bafb2d517f91eb5fae47ecc37d0f748b377ad3b38c1d56c965e3ce1b" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "b679e675bafb2d517f91eb5fae47ecc37d0f748b377ad3b38c1d56c965e3ce1b" + sha256 cellar: :any_skip_relocation, arm64_ventura: "b679e675bafb2d517f91eb5fae47ecc37d0f748b377ad3b38c1d56c965e3ce1b" + sha256 cellar: :any_skip_relocation, sonoma: "cab6a4127143ba211b91f2d989b2b98be246c439646f23b739abce8fe3bf6a4b" + sha256 cellar: :any_skip_relocation, ventura: "cab6a4127143ba211b91f2d989b2b98be246c439646f23b739abce8fe3bf6a4b" + sha256 cellar: :any_skip_relocation, x86_64_linux: "ba338f9b06a6477d68f8308dee0ad25e45b6d176e48676a55292bce5a05dde18" end depends_on "go" => :build From 8c81ce7da19e3422c86f4ddf7d798b2131886325 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 04:17:33 +0000 Subject: [PATCH 0449/1364] snowball: update 3.0.1 bottle. --- Formula/s/snowball.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/s/snowball.rb b/Formula/s/snowball.rb index ad0cdf5a772b4..c0f0d381e9c6f 100644 --- a/Formula/s/snowball.rb +++ b/Formula/s/snowball.rb @@ -6,13 +6,13 @@ class Snowball < Formula license "BSD-3-Clause" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "f800d74cc3e5337071d2bb59a39085fa36af75fae8b2f00cffeee25fc0dc6d29" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "18a4becde03a59785d32e2e4b8fed9b079ee9f6cdebb5fcd4e89a3210687c163" - sha256 cellar: :any_skip_relocation, arm64_ventura: "a2595984accd236f401f4e0f37a2cbad5260d7afea79ac55b0182c6630cb72ec" - sha256 cellar: :any_skip_relocation, sonoma: "7d328109b67b97484f0570d86560c3086952f638da20d181cdbb5ffed10e3852" - sha256 cellar: :any_skip_relocation, ventura: "73a1328a2b670adc21b014aab0261fa393d2a3de2a5acb07f28c321f2b0472a6" - sha256 cellar: :any_skip_relocation, arm64_linux: "070310bee31cfcb3dcbf59b4fa5c9b05c3ada77f33fd096c5a1281e17741f2a7" - sha256 cellar: :any_skip_relocation, x86_64_linux: "0d8beb30dbbb73efbf7727da953b2a9d2c2b3bdc74814ea2eb6da54f5e3a0684" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "00c79db6c8ba404a5ad086c5e50a7102d0df266ee3fb3b5deafe4ed8e7184c71" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "2d7f77bad2cee9519cbe39492c5234455b01f1de41381279e8d63d6762f4c2f4" + sha256 cellar: :any_skip_relocation, arm64_ventura: "42cd2f37f93d279ad348fb7933739db82bdbb2602d1f7e1f40b6b0113dd4dc3a" + sha256 cellar: :any_skip_relocation, sonoma: "58eadab9b1887a26cb95506a264f0e53bf9a23d9d1cf6fe589533c8f20daa7c2" + sha256 cellar: :any_skip_relocation, ventura: "cd975136128f07351d331ec0c05bcc7bae659059e9f7a42c1c19d3d03d88a751" + sha256 cellar: :any_skip_relocation, arm64_linux: "a90617188624e914be73ec75078cebac9e2ee7458f0006225dba41da4fd2e431" + sha256 cellar: :any_skip_relocation, x86_64_linux: "9b8fd0e7fee01a520f36dfd8631171bb7fcfab8ddccb8ed9c37b069f338b6ca9" end def install From 356b547aa3910384913e6ee77613c429beb9ee7b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 04:18:13 +0000 Subject: [PATCH 0450/1364] mako: update 0.11.11 bottle. --- Formula/m/mako.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/m/mako.rb b/Formula/m/mako.rb index 4375b964b3b8f..bfe42bb1751bc 100644 --- a/Formula/m/mako.rb +++ b/Formula/m/mako.rb @@ -6,13 +6,13 @@ class Mako < Formula license "MIT" bottle do - sha256 cellar: :any, arm64_sequoia: "be2d57e9c56c6593adaa60aef3c08e70a51f8a434bdcd780573f8dbe2c90e393" - sha256 cellar: :any, arm64_sonoma: "be2d57e9c56c6593adaa60aef3c08e70a51f8a434bdcd780573f8dbe2c90e393" - sha256 cellar: :any, arm64_ventura: "be2d57e9c56c6593adaa60aef3c08e70a51f8a434bdcd780573f8dbe2c90e393" - sha256 cellar: :any, sonoma: "38005cdffd5b3fb836308a9523dece09ae9a0e4a882de2f718988175bccecddd" - sha256 cellar: :any, ventura: "38005cdffd5b3fb836308a9523dece09ae9a0e4a882de2f718988175bccecddd" - sha256 cellar: :any_skip_relocation, arm64_linux: "d5b045c6ac5feb936df88b834f0af956e2dc04fb17da3b141d53ed6a963d2579" - sha256 cellar: :any_skip_relocation, x86_64_linux: "78464e4091fbc59f47a9b42c2c0b0a416219fb3e5cbe3029471f308567263667" + sha256 cellar: :any, arm64_sequoia: "7838b2a47fd447410185327ca1fcb2674c5062ff72843de812089e096f31a9db" + sha256 cellar: :any, arm64_sonoma: "7838b2a47fd447410185327ca1fcb2674c5062ff72843de812089e096f31a9db" + sha256 cellar: :any, arm64_ventura: "7838b2a47fd447410185327ca1fcb2674c5062ff72843de812089e096f31a9db" + sha256 cellar: :any, sonoma: "4581d14ee9138dfd6312cbbc683ac479cb036d2f52adcab69d653c848d59a5a6" + sha256 cellar: :any, ventura: "4581d14ee9138dfd6312cbbc683ac479cb036d2f52adcab69d653c848d59a5a6" + sha256 cellar: :any_skip_relocation, arm64_linux: "a5070fb1219090d4b8592d89e7f998a75dd2bcaf930f643a4e3289382ec6685d" + sha256 cellar: :any_skip_relocation, x86_64_linux: "405f30504e483614212ece1383f4145ab8e7f812b397ab2ac2541e20726293a2" end depends_on "node" From fc3707a99201f5c3e6487a4bb2be6c37e02d08ef Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 04:18:24 +0000 Subject: [PATCH 0451/1364] groonga: update 15.0.9 bottle. --- Formula/g/groonga.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/g/groonga.rb b/Formula/g/groonga.rb index da7bff9bbeb46..dc0b605b17b99 100644 --- a/Formula/g/groonga.rb +++ b/Formula/g/groonga.rb @@ -11,13 +11,13 @@ class Groonga < Formula end bottle do - sha256 arm64_sequoia: "db52b9e32831fd9b9c0baa7ea20c1865b5652c1c6ba7f37039f9d2cb0eeb6b94" - sha256 arm64_sonoma: "79e101de66ca532160ec5505650dbbb9d06257acda5f97380436f2a0d8184e4f" - sha256 arm64_ventura: "f67284b265f14acd15f0ed34b7a738d8f11b38dd4c236277367de270d3e25c2a" - sha256 sonoma: "c08408f9afdebf15292b08b320d6928c2268c72b939fbcf8aba3951f609d52d3" - sha256 ventura: "52a214b7f4b89075b60035c65f028292108c2f50f5cbba173b1b34db33b69bbf" - sha256 arm64_linux: "83112f9ce8a9f441c884c4592c40db0f1eeefef256d5a3c6625d550f942b8b0e" - sha256 x86_64_linux: "0c61416dbdc151fe0f5faab6bbcbdd1800ec02ec9bdb8ff08b27b91e6ed1d581" + sha256 arm64_sequoia: "6af852758dac4527573db9237d6ded7dcee5b8163142d85bb170dc84f9e88e87" + sha256 arm64_sonoma: "22fa4b3e4b839318f3cb44f4e5b87b2c5f177fd92c20942cbbc812f0d259674a" + sha256 arm64_ventura: "850f01a79d08ea919815cd10217ea09ee445160fabecd641b2915097bb1e7c71" + sha256 sonoma: "ffdde706fd67694615fb8e3e31f6e1200db8560fdb23c05fa8e803f29406f772" + sha256 ventura: "79794d2e46039d3dd1183b1cac03f036085638685bdfb6815d253b6593ec1a56" + sha256 arm64_linux: "ffa645c5f8ec8dc1d4659ce430f82a3cb259597cfa1b3953df5e252a4968334a" + sha256 x86_64_linux: "208b9192cfac9d20366a07837a7efbf1abef51fd2f8c842aa8686a7e36fb06df" end head do From 6f70067860300e9a91617452834d806dd5346ac3 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 17:12:46 +0000 Subject: [PATCH 0452/1364] icloudpd 1.27.5 --- Formula/i/icloudpd.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/i/icloudpd.rb b/Formula/i/icloudpd.rb index 95e8f9185366e..eebacff157b20 100644 --- a/Formula/i/icloudpd.rb +++ b/Formula/i/icloudpd.rb @@ -5,8 +5,8 @@ class Icloudpd < Formula homepage "https://github.com/icloud-photos-downloader/icloud_photos_downloader" # We use a git checkout as scripts/patch_version runs git commands to update SHA url "https://github.com/icloud-photos-downloader/icloud_photos_downloader.git", - tag: "v1.27.4", - revision: "c4a63229c4d490ee86491c660ecd7ababb415b33" + tag: "v1.27.5", + revision: "ee21fdf518569f8836fd9a945c438e25cc9a2065" license "MIT" head "https://github.com/icloud-photos-downloader/icloud_photos_downloader.git", branch: "master" @@ -33,8 +33,8 @@ class Icloudpd < Formula end resource "charset-normalizer" do - url "https://files.pythonhosted.org/packages/16/b0/572805e227f01586461c80e0fd25d65a2115599cc9dad142fee4b747c357/charset_normalizer-3.4.1.tar.gz" - sha256 "44251f18cd68a75b56585dd00dae26183e102cd5e0f9f1466e6df5da2ed64ea3" + url "https://files.pythonhosted.org/packages/e4/33/89c2ced2b67d1c2a61c19c6751aa8902d46ce3dacb23600a283619f5a12d/charset_normalizer-3.4.2.tar.gz" + sha256 "5baececa9ecba31eff645232d59845c07aa030f0c81ee70184a90d35099a0e63" end resource "click" do @@ -93,8 +93,8 @@ class Icloudpd < Formula end resource "more-itertools" do - url "https://files.pythonhosted.org/packages/88/3b/7fa1fe835e2e93fd6d7b52b2f95ae810cf5ba133e1845f726f5a992d62c2/more-itertools-10.6.0.tar.gz" - sha256 "2cd7fad1009c31cc9fb6a035108509e6547547a7a738374f10bd49a09eb3ee3b" + url "https://files.pythonhosted.org/packages/ce/a0/834b0cebabbfc7e311f30b46c8188790a37f89fc8d756660346fe5abfd09/more_itertools-10.7.0.tar.gz" + sha256 "9fddd5403be01a94b204faadcff459ec3568cf110265d3c54323e1e866ad29d3" end resource "piexif" do From 4c0337c25f9dd7bb7d2503b5aa9e8772e2ccf4cf Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 04:30:00 +0000 Subject: [PATCH 0453/1364] codex: add 0.1.2504301751 bottle. --- Formula/c/codex.rb | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Formula/c/codex.rb b/Formula/c/codex.rb index 803a71f9e338b..f947e53ca118a 100644 --- a/Formula/c/codex.rb +++ b/Formula/c/codex.rb @@ -5,6 +5,15 @@ class Codex < Formula sha256 "534efae4ced56e98b136a13bee4523acebf261267fecc11ea3df9a2854875186" license "Apache-2.0" + bottle do + sha256 cellar: :any_skip_relocation, arm64_sequoia: "902627d20eec97ccfea442b6ad5aba8b3be30b39620e248e444af2f3557e83e9" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "902627d20eec97ccfea442b6ad5aba8b3be30b39620e248e444af2f3557e83e9" + sha256 cellar: :any_skip_relocation, arm64_ventura: "902627d20eec97ccfea442b6ad5aba8b3be30b39620e248e444af2f3557e83e9" + sha256 cellar: :any_skip_relocation, sonoma: "4b0bf800246962f876e5c30c65e36c8cd1aef87c62e62880957fbf5aba88bcec" + sha256 cellar: :any_skip_relocation, ventura: "4b0bf800246962f876e5c30c65e36c8cd1aef87c62e62880957fbf5aba88bcec" + sha256 cellar: :any_skip_relocation, x86_64_linux: "902627d20eec97ccfea442b6ad5aba8b3be30b39620e248e444af2f3557e83e9" + end + depends_on "node" def install From 6e5371646167e0989f29fc7dcefaa8c04a6a533c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 04:57:22 +0000 Subject: [PATCH 0454/1364] codex 0.1.2505021246 --- Formula/c/codex.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/codex.rb b/Formula/c/codex.rb index f947e53ca118a..55f424cd0abe3 100644 --- a/Formula/c/codex.rb +++ b/Formula/c/codex.rb @@ -1,8 +1,8 @@ class Codex < Formula desc "OpenAI's coding agent that runs in your terminal" homepage "https://github.com/openai/codex" - url "https://registry.npmjs.org/@openai/codex/-/codex-0.1.2504301751.tgz" - sha256 "534efae4ced56e98b136a13bee4523acebf261267fecc11ea3df9a2854875186" + url "https://registry.npmjs.org/@openai/codex/-/codex-0.1.2505021246.tgz" + sha256 "70d27f89af3eb9d2697de0a9ba68564d32fc6faecb6f8dfcd2cca7e6ab919ab8" license "Apache-2.0" bottle do From bff188fe91a29e8e13c6987a089a58d65809d27a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 05:02:56 +0000 Subject: [PATCH 0455/1364] fern-api 0.60.28 --- Formula/f/fern-api.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/f/fern-api.rb b/Formula/f/fern-api.rb index 7559718470e3e..db1823832b97c 100644 --- a/Formula/f/fern-api.rb +++ b/Formula/f/fern-api.rb @@ -1,8 +1,8 @@ class FernApi < Formula desc "Stripe-level SDKs and Docs for your API" homepage "https://buildwithfern.com/" - url "https://registry.npmjs.org/fern-api/-/fern-api-0.60.26.tgz" - sha256 "5c92639ffc1b32d1e2eb5b6e943613b52b712d7ed75675ce5bb7e216a91d0b3c" + url "https://registry.npmjs.org/fern-api/-/fern-api-0.60.28.tgz" + sha256 "2e393d30e44bb563f8fbb729bc4f9943824f8dee3bf87fa57e9ef3aae56769f8" license "Apache-2.0" head "https://github.com/fern-api/fern.git", branch: "main" From 1ad30cbf2fc85f81ba8ed329caf7cc4e24ff189b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 05:26:05 +0000 Subject: [PATCH 0456/1364] protolint 0.55.0 --- Formula/p/protolint.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/p/protolint.rb b/Formula/p/protolint.rb index eadb4baf09a36..8a57505dc14c0 100644 --- a/Formula/p/protolint.rb +++ b/Formula/p/protolint.rb @@ -1,8 +1,8 @@ class Protolint < Formula desc "Pluggable linter and fixer to enforce Protocol Buffer style and conventions" homepage "https://github.com/yoheimuta/protolint" - url "https://github.com/yoheimuta/protolint/archive/refs/tags/v0.54.1.tar.gz" - sha256 "3082d88e3c17a88f3001ffc6849eacd9075a0f847ed6339f81e4f80dd0007751" + url "https://github.com/yoheimuta/protolint/archive/refs/tags/v0.55.0.tar.gz" + sha256 "625cbbad34107efe6a838975a8a48ebf054874d936d003578f7a3ff02e486545" license "MIT" head "https://github.com/yoheimuta/protolint.git", branch: "master" From b33e50b9303e8c68898a62b0a8b950a55ec9df0d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 05:29:43 +0000 Subject: [PATCH 0457/1364] codex: update 0.1.2505021246 bottle. --- Formula/c/codex.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/c/codex.rb b/Formula/c/codex.rb index 55f424cd0abe3..c029f1c9630df 100644 --- a/Formula/c/codex.rb +++ b/Formula/c/codex.rb @@ -6,12 +6,12 @@ class Codex < Formula license "Apache-2.0" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "902627d20eec97ccfea442b6ad5aba8b3be30b39620e248e444af2f3557e83e9" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "902627d20eec97ccfea442b6ad5aba8b3be30b39620e248e444af2f3557e83e9" - sha256 cellar: :any_skip_relocation, arm64_ventura: "902627d20eec97ccfea442b6ad5aba8b3be30b39620e248e444af2f3557e83e9" - sha256 cellar: :any_skip_relocation, sonoma: "4b0bf800246962f876e5c30c65e36c8cd1aef87c62e62880957fbf5aba88bcec" - sha256 cellar: :any_skip_relocation, ventura: "4b0bf800246962f876e5c30c65e36c8cd1aef87c62e62880957fbf5aba88bcec" - sha256 cellar: :any_skip_relocation, x86_64_linux: "902627d20eec97ccfea442b6ad5aba8b3be30b39620e248e444af2f3557e83e9" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "85df5edd03aa3806252b9868d83ca32cba01d252889970f77bbc020c37933d9d" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "85df5edd03aa3806252b9868d83ca32cba01d252889970f77bbc020c37933d9d" + sha256 cellar: :any_skip_relocation, arm64_ventura: "85df5edd03aa3806252b9868d83ca32cba01d252889970f77bbc020c37933d9d" + sha256 cellar: :any_skip_relocation, sonoma: "9c0511f07c5d8b0ee0d5bd810f802fafe569a9b002590afa8e2452bdced54c37" + sha256 cellar: :any_skip_relocation, ventura: "9c0511f07c5d8b0ee0d5bd810f802fafe569a9b002590afa8e2452bdced54c37" + sha256 cellar: :any_skip_relocation, x86_64_linux: "85df5edd03aa3806252b9868d83ca32cba01d252889970f77bbc020c37933d9d" end depends_on "node" From d9cb43ff22057504af6982d218b5c6309fee6700 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 05:29:51 +0000 Subject: [PATCH 0458/1364] fern-api: update 0.60.28 bottle. --- Formula/f/fern-api.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/f/fern-api.rb b/Formula/f/fern-api.rb index db1823832b97c..48c54d66a4187 100644 --- a/Formula/f/fern-api.rb +++ b/Formula/f/fern-api.rb @@ -7,7 +7,7 @@ class FernApi < Formula head "https://github.com/fern-api/fern.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, all: "29eb6e62acdd72caa2cc46eb0efceedc855ac9e5399ee9835028bb9cbcbd9bf5" + sha256 cellar: :any_skip_relocation, all: "98d8363af4af8f6f8a667a41ccdbc7d0b7c35ce1355d8b82bea35e4d624751c1" end depends_on "node" From 8434b39326a05131c5c82a9a11bdeae54db0d158 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 05:30:50 +0000 Subject: [PATCH 0459/1364] icloudpd: update 1.27.5 bottle. --- Formula/i/icloudpd.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/i/icloudpd.rb b/Formula/i/icloudpd.rb index eebacff157b20..e646ce7619499 100644 --- a/Formula/i/icloudpd.rb +++ b/Formula/i/icloudpd.rb @@ -11,13 +11,13 @@ class Icloudpd < Formula head "https://github.com/icloud-photos-downloader/icloud_photos_downloader.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "7baf6cabec069e393691adf64efb119efd6573b081f373eab13dddff1d55f2d7" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "2c491ebd0dec42ed351e9e38b7243a47022e9654d9b9f24ba3047b1f66d405dc" - sha256 cellar: :any_skip_relocation, arm64_ventura: "d4e8d936dcdbe1a9318992c49e25b9f6a2c923b4bb495a2e1f9c297f5424763b" - sha256 cellar: :any_skip_relocation, sonoma: "a32ad719a10237489e9a79e6d540068301af464783ea770300a22ba820951b97" - sha256 cellar: :any_skip_relocation, ventura: "a032bfa1516d90cc367949f8047ff46c35135501d4feb4f2d63aaf56e2360c2e" - sha256 cellar: :any_skip_relocation, arm64_linux: "a55f49ef115aa3334d29005d5e33c165734cb0efec9a7ad7c235c1877ba6344d" - sha256 cellar: :any_skip_relocation, x86_64_linux: "8a59bc19b2a285da19391d8ea6cd00da3497db31e5a950ab26e3b1d30d6f2c75" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "1f0d54cfaec8c90744723bc432e63f0ae845df3616ed284b4a586b2e0cc3e01c" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "a8ff0aa8ae29dc10f43a31e0d2959f8d0cb857f15ce78938cc01b03be77a0044" + sha256 cellar: :any_skip_relocation, arm64_ventura: "aa483406a5949be879208cf94209a8cea474dae8843aa3377c7575ab0d1b6ae9" + sha256 cellar: :any_skip_relocation, sonoma: "c70347d1b14bb624a3f3d877eefaa53c77b4e8e9c042570d4e1e12b3658609c4" + sha256 cellar: :any_skip_relocation, ventura: "93c78c13b30859432920ba01996d69452a6164bfc0dddc9879774d3f390e6599" + sha256 cellar: :any_skip_relocation, arm64_linux: "1d6c620beb5f44ce446c997ea10bf56acc0b0b3ce1330e4e5bfc5dadb35ef8fb" + sha256 cellar: :any_skip_relocation, x86_64_linux: "e4885032aa8be43cfb8ee17b5470a7363a07ad19059fbe948f1d871e6c63f93b" end depends_on "certifi" From a97caf47953e501bf0c2bcbd9484bf06f26bcef8 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 05:37:13 +0000 Subject: [PATCH 0460/1364] unisonlang 0.5.40 --- Formula/u/unisonlang.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Formula/u/unisonlang.rb b/Formula/u/unisonlang.rb index 2d821e887b498..8da9c23c8dcf4 100644 --- a/Formula/u/unisonlang.rb +++ b/Formula/u/unisonlang.rb @@ -5,12 +5,12 @@ class Unisonlang < Formula stable do url "https://github.com/unisonweb/unison.git", - tag: "release/0.5.39", - revision: "a56de2dc574aeb1ec0448092b94d6373e6cfb640" + tag: "release/0.5.40", + revision: "468e355113bbad2f72d18ce27788f4323b0784b3" resource "local-ui" do - url "https://github.com/unisonweb/unison-local-ui/archive/refs/tags/release/0.5.39.tar.gz" - sha256 "8540afb233e1c99e25075ce443bf3529d401673f9f3d7d69bb8cddb63e1e82bb" + url "https://github.com/unisonweb/unison-local-ui/archive/refs/tags/release/0.5.40.tar.gz" + sha256 "d7e929e0de9e45f56e9ed3bc1e95591aa60dbb28f0de35a19afaeb7ac29d9be3" livecheck do formula :parent From d76845a75b9993fb231715bf25b70f8836eb5480 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 05:42:49 +0000 Subject: [PATCH 0461/1364] protolint: update 0.55.0 bottle. --- Formula/p/protolint.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/p/protolint.rb b/Formula/p/protolint.rb index 8a57505dc14c0..6fc9eb55877a8 100644 --- a/Formula/p/protolint.rb +++ b/Formula/p/protolint.rb @@ -7,12 +7,12 @@ class Protolint < Formula head "https://github.com/yoheimuta/protolint.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "1858bc0cf62941c36d1a4b2539b1b353244723784d47eee8715bc5f84311d026" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "1858bc0cf62941c36d1a4b2539b1b353244723784d47eee8715bc5f84311d026" - sha256 cellar: :any_skip_relocation, arm64_ventura: "1858bc0cf62941c36d1a4b2539b1b353244723784d47eee8715bc5f84311d026" - sha256 cellar: :any_skip_relocation, sonoma: "461a8cd7dd0d5e308a7faf63f1ac4f5f36f7b86097a0248f2fd9ed424504e098" - sha256 cellar: :any_skip_relocation, ventura: "461a8cd7dd0d5e308a7faf63f1ac4f5f36f7b86097a0248f2fd9ed424504e098" - sha256 cellar: :any_skip_relocation, x86_64_linux: "09834887e8f94eba8a7a64821c166434078e8cdd31fa186b3e3200ce4518a985" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "73d59f3c8c369d991216962f617112b39596c81d32cf54b7a7bc022da38cfaf6" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "73d59f3c8c369d991216962f617112b39596c81d32cf54b7a7bc022da38cfaf6" + sha256 cellar: :any_skip_relocation, arm64_ventura: "73d59f3c8c369d991216962f617112b39596c81d32cf54b7a7bc022da38cfaf6" + sha256 cellar: :any_skip_relocation, sonoma: "8c9e280390caa5acac4cceb9c4d1c943bcdaffcc15683334a983dc36e2e5fbe9" + sha256 cellar: :any_skip_relocation, ventura: "8c9e280390caa5acac4cceb9c4d1c943bcdaffcc15683334a983dc36e2e5fbe9" + sha256 cellar: :any_skip_relocation, x86_64_linux: "3dfaa46f3af600d8f67f307ddd41b867485a27b89aa0e197f787fed2d75dbbb8" end depends_on "go" => :build From 391e0e949abb2c587047ac957716a61d9dd0be05 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 07:54:27 +0000 Subject: [PATCH 0462/1364] cdk8s 2.200.65 --- Formula/c/cdk8s.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/cdk8s.rb b/Formula/c/cdk8s.rb index fc63786f4fcc6..09c40ae1d722d 100644 --- a/Formula/c/cdk8s.rb +++ b/Formula/c/cdk8s.rb @@ -1,8 +1,8 @@ class Cdk8s < Formula desc "Define k8s native apps and abstractions using object-oriented programming" homepage "https://cdk8s.io/" - url "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.200.64.tgz" - sha256 "9ca3fc24103218fc6d2bf0e2e698a65db6ae9813659948bf8c24272965649508" + url "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.200.65.tgz" + sha256 "5378b51d304240ef134a7ac7429e33d8e421c63fc32b6c59aaf146bb37819334" license "Apache-2.0" bottle do From 1b20ccd7702f5dbef60e2b3c2553a8e04c8c586b Mon Sep 17 00:00:00 2001 From: Li Jie Date: Fri, 9 May 2025 15:53:25 +0800 Subject: [PATCH 0463/1364] llgo v0.11.3 --- Formula/l/llgo.rb | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Formula/l/llgo.rb b/Formula/l/llgo.rb index 15996c8d387ee..b784e0a8a6c6b 100644 --- a/Formula/l/llgo.rb +++ b/Formula/l/llgo.rb @@ -1,8 +1,8 @@ class Llgo < Formula desc "Go compiler based on LLVM integrate with the C ecosystem and Python" homepage "https://github.com/goplus/llgo" - url "https://github.com/goplus/llgo/archive/refs/tags/v0.11.0.tar.gz" - sha256 "f7b55b0d91527c11adbfde4e95f78ab8238e8a35066cd8663882074ac18f2b6b" + url "https://github.com/goplus/llgo/archive/refs/tags/v0.11.3.tar.gz" + sha256 "6e51c300d49b33ce66f562b721fcf4f27d7ed6502382682d02b83786ba49e313" license "Apache-2.0" head "https://github.com/goplus/llgo.git", branch: "main" @@ -84,6 +84,11 @@ def install goarch = shell_output("go env GOARCH").chomp assert_equal "llgo v#{version} #{goos}/#{goarch}", shell_output("#{bin}/llgo version").chomp + # Add bdw-gc library path to LD_LIBRARY_PATH, this is a workaround for the libgc.so not found issue + # Will be fixed in the next release + bdwgc = find_dep("bdw-gc") + ENV.prepend_path "LD_LIBRARY_PATH", bdwgc.opt_lib + (testpath/"hello.go").write <<~GO package main From bd12fd2767283fa1fd89930da87e40f8aa6fd3ef Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 08:10:08 +0000 Subject: [PATCH 0464/1364] jackett 0.22.1884 --- Formula/j/jackett.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/j/jackett.rb b/Formula/j/jackett.rb index 0edc0194b3dd3..168539b922940 100644 --- a/Formula/j/jackett.rb +++ b/Formula/j/jackett.rb @@ -1,8 +1,8 @@ class Jackett < Formula desc "API Support for your favorite torrent trackers" homepage "https://github.com/Jackett/Jackett" - url "https://github.com/Jackett/Jackett/archive/refs/tags/v0.22.1877.tar.gz" - sha256 "b1f8c10402f3162189ec9d8e55dcf77e4b47651c10cb0fee93d27b1e31207c66" + url "https://github.com/Jackett/Jackett/archive/refs/tags/v0.22.1884.tar.gz" + sha256 "1daa2aa7519c61047e8fc0298b9bbdfddca4b346a35d483848e11497b73abdf0" license "GPL-2.0-only" head "https://github.com/Jackett/Jackett.git", branch: "master" From 472c941eb3317fc89d834471f7ca2766e1a96c48 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 08:12:45 +0000 Subject: [PATCH 0465/1364] kubevpn 2.7.7 --- Formula/k/kubevpn.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/k/kubevpn.rb b/Formula/k/kubevpn.rb index 6ebc693cba31e..76bea76373df4 100644 --- a/Formula/k/kubevpn.rb +++ b/Formula/k/kubevpn.rb @@ -1,8 +1,8 @@ class Kubevpn < Formula desc "Offers a Cloud-Native Dev Environment that connects to your K8s cluster network" homepage "https://www.kubevpn.dev" - url "https://github.com/kubenetworks/kubevpn/archive/refs/tags/v2.7.2.tar.gz" - sha256 "2ebd97ff789de7f36ade5f94cf19ce279f69c878f75023b3140e3a3f7c2bb2c5" + url "https://github.com/kubenetworks/kubevpn/archive/refs/tags/v2.7.7.tar.gz" + sha256 "fe64007df8550de18b5358bd0f767c88accf7da3f068b74b21eda9d0673b503d" license "MIT" head "https://github.com/kubenetworks/kubevpn.git", branch: "master" From f10e8f333daa2ff379b8b0ec2df547ccbb4bea56 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 08:17:28 +0000 Subject: [PATCH 0466/1364] linux-headers@5.15 5.15.182 --- Formula/l/linux-headers@5.15.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/l/linux-headers@5.15.rb b/Formula/l/linux-headers@5.15.rb index 593c2b17ae199..5e49ca12bc539 100644 --- a/Formula/l/linux-headers@5.15.rb +++ b/Formula/l/linux-headers@5.15.rb @@ -1,8 +1,8 @@ class LinuxHeadersAT515 < Formula desc "Header files of the Linux kernel" homepage "https://kernel.org/" - url "https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.15.181.tar.gz" - sha256 "c2516f380549b37a073ab8228ffa30288d670221877f3afdca111153a6f9aba1" + url "https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.15.182.tar.gz" + sha256 "eb4fe85945691cb705bac0e58564b8991e3ef7707eb0c1bf60def62f879d5556" license "GPL-2.0-only" livecheck do From fbf424a9da5ef378b3c2c567caf087ba9089a370 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 08:19:07 +0000 Subject: [PATCH 0467/1364] maturin 1.8.4 --- Formula/m/maturin.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/m/maturin.rb b/Formula/m/maturin.rb index d19376d3a592d..0f1b94d95be00 100644 --- a/Formula/m/maturin.rb +++ b/Formula/m/maturin.rb @@ -1,8 +1,8 @@ class Maturin < Formula desc "Build and publish Rust crates as Python packages" homepage "https://github.com/PyO3/maturin" - url "https://github.com/PyO3/maturin/archive/refs/tags/v1.8.3.tar.gz" - sha256 "c67ff594570270c75b6b123a0728aee5ef8871e34a2777ccf99cef10457649c0" + url "https://github.com/PyO3/maturin/archive/refs/tags/v1.8.4.tar.gz" + sha256 "16839be24f792cd0de7bc849794e351ab63569d7d302d781e113af319914fdf6" license any_of: ["Apache-2.0", "MIT"] head "https://github.com/PyO3/maturin.git", branch: "main" From 9ebee4597ed4d257b739d19754c57f80cca979fc Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 08:25:59 +0000 Subject: [PATCH 0468/1364] oxlint 0.16.10 --- Formula/o/oxlint.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/o/oxlint.rb b/Formula/o/oxlint.rb index 707cf22915230..566a468439214 100644 --- a/Formula/o/oxlint.rb +++ b/Formula/o/oxlint.rb @@ -1,8 +1,8 @@ class Oxlint < Formula desc "Suite of high-performance tools for JavaScript and TypeScript written in Rust" homepage "https://oxc.rs/" - url "https://github.com/oxc-project/oxc/archive/refs/tags/oxlint_v0.16.9.tar.gz" - sha256 "32ae11a1708c629f066616fde90a64406e8a7a8288b68bd161ec5c234faad0f1" + url "https://github.com/oxc-project/oxc/archive/refs/tags/oxlint_v0.16.10.tar.gz" + sha256 "f2f2f56ab75eeddd0dd129db0b1c816022c0121e80a1f2c0aaaf768abd08f99d" license "MIT" head "https://github.com/oxc-project/oxc.git", branch: "main" From 6510909d0203e40973640c675e644dde5b0182e8 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 08:29:04 +0000 Subject: [PATCH 0469/1364] protolint 0.55.1 --- Formula/p/protolint.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/p/protolint.rb b/Formula/p/protolint.rb index 6fc9eb55877a8..af8d1716dd07a 100644 --- a/Formula/p/protolint.rb +++ b/Formula/p/protolint.rb @@ -1,8 +1,8 @@ class Protolint < Formula desc "Pluggable linter and fixer to enforce Protocol Buffer style and conventions" homepage "https://github.com/yoheimuta/protolint" - url "https://github.com/yoheimuta/protolint/archive/refs/tags/v0.55.0.tar.gz" - sha256 "625cbbad34107efe6a838975a8a48ebf054874d936d003578f7a3ff02e486545" + url "https://github.com/yoheimuta/protolint/archive/refs/tags/v0.55.1.tar.gz" + sha256 "5d58dc9460dc6e7712a92e154f3d539f3ec5516577e43f4ae44490ee86549276" license "MIT" head "https://github.com/yoheimuta/protolint.git", branch: "master" From 6c73158b4ef3d8d2d5ba4d8595312fb4324136eb Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 08:31:02 +0000 Subject: [PATCH 0470/1364] railway 4.4.1 --- Formula/r/railway.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/r/railway.rb b/Formula/r/railway.rb index 2f57d29f1bd65..248daa1f113d8 100644 --- a/Formula/r/railway.rb +++ b/Formula/r/railway.rb @@ -1,8 +1,8 @@ class Railway < Formula desc "Develop and deploy code with zero configuration" homepage "https://railway.com/" - url "https://github.com/railwayapp/cli/archive/refs/tags/v4.4.0.tar.gz" - sha256 "b8879601028e9922491f9bcf56f53837d19be655ffa0fd88eb090f3d1b1b3e06" + url "https://github.com/railwayapp/cli/archive/refs/tags/v4.4.1.tar.gz" + sha256 "f52a96050fb6e72214365f020cacb6d16b3459461f29853670974be3646cf18f" license "MIT" head "https://github.com/railwayapp/cli.git", branch: "master" From 600598d9d96b146fd2d389b0a09c280ac70d63e6 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 05:07:24 +0000 Subject: [PATCH 0471/1364] grokj2k 15.0.0 --- Formula/g/grokj2k.rb | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/Formula/g/grokj2k.rb b/Formula/g/grokj2k.rb index f6b673161faa5..7c30bfe39a9fa 100644 --- a/Formula/g/grokj2k.rb +++ b/Formula/g/grokj2k.rb @@ -3,8 +3,8 @@ class Grokj2k < Formula homepage "https://github.com/GrokImageCompression/grok" # pull from git tag to get submodules url "https://github.com/GrokImageCompression/grok.git", - tag: "v14.3.0", - revision: "1542410d2ee31c881ef46f491d613d7cea76e75b" + tag: "v15.0.0", + revision: "5f1a8a754fe6a5b3265616544adccd37f4a83e52" license "AGPL-3.0-or-later" head "https://github.com/GrokImageCompression/grok.git", branch: "master" @@ -54,6 +54,13 @@ class Grokj2k < Formula cause "GNU compiler version must be at least 10.0" end + # Fix to cmake 4 compatibility + # PR ref: https://github.com/GrokImageCompression/grok/pull/376 + patch do + url "https://github.com/GrokImageCompression/grok/commit/40af3b5f2b9343d162a829e91868976ed2bbf563.patch?full_index=1" + sha256 "8e3d7b46efe3e12744383ade949e16d4a3046436c744cc728a4c1aecba26369a" + end + def install ENV.llvm_clang if OS.mac? && (DevelopmentTools.clang_build_version <= 1200) From 435a874d1f78875a22485389e77bda40c1c1980a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 08:35:50 +0000 Subject: [PATCH 0472/1364] jackett: update 0.22.1884 bottle. --- Formula/j/jackett.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/j/jackett.rb b/Formula/j/jackett.rb index 168539b922940..141407a5f2efe 100644 --- a/Formula/j/jackett.rb +++ b/Formula/j/jackett.rb @@ -7,12 +7,12 @@ class Jackett < Formula head "https://github.com/Jackett/Jackett.git", branch: "master" bottle do - sha256 cellar: :any, arm64_sequoia: "2a68ba786fcd01a8a8f92118bd45853f1f25f869759bea6ca89065a4f8326656" - sha256 cellar: :any, arm64_sonoma: "0041a17567221099b194e1496b61533ceea1cb36b726304d6f3b8cf66068737e" - sha256 cellar: :any, arm64_ventura: "60260079a21e4842ffbfee9b0ed77a39a6729106ce1a9360ac052968d1a94713" - sha256 cellar: :any, ventura: "e9c6b1d269584f6476c6c20f79e4d914f3d04f0c491600fb64d18dbeb25f2e55" - sha256 cellar: :any_skip_relocation, arm64_linux: "f1227515bd738478b0105389ea714d58fcedf45fcc65db9cb365511cf9893036" - sha256 cellar: :any_skip_relocation, x86_64_linux: "fa1583db21910fadfcb709c87369b2529b184de593e9e6c02a70a5069ecd0d52" + sha256 cellar: :any, arm64_sequoia: "a23f43453c4fdc39a9a2ff3f4a4e040d7762e55ba1840fd7db486a58e2f369f9" + sha256 cellar: :any, arm64_sonoma: "bcb3a5785e77b2a8224198a49c285e172b2440efcc97888369a701948e926664" + sha256 cellar: :any, arm64_ventura: "b8b970489d6c94401040d7555b8f5189cf3c23aad8b613312e44265713e60501" + sha256 cellar: :any, ventura: "499c0ada3b485f168b0a092dda14b1731ed9be9c7190c1144c180d1d7d379797" + sha256 cellar: :any_skip_relocation, arm64_linux: "85bb948d83e83702681c0ca43741839c67eceb165b9c172b3afb5c6f69989e25" + sha256 cellar: :any_skip_relocation, x86_64_linux: "0943761f7482e893c1758bcb6394501aec5514eeed4e9b45d4ad022ac3926b06" end depends_on "dotnet@8" From 5ab0aef7c5a35a8a35e39e55bfe34a139b3a0f2a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 08:36:12 +0000 Subject: [PATCH 0473/1364] cdk8s: update 2.200.65 bottle. --- Formula/c/cdk8s.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/cdk8s.rb b/Formula/c/cdk8s.rb index 09c40ae1d722d..e6679457a754a 100644 --- a/Formula/c/cdk8s.rb +++ b/Formula/c/cdk8s.rb @@ -6,13 +6,13 @@ class Cdk8s < Formula license "Apache-2.0" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "d7674735ad35dca33f679601370c04bcf1334563ddf9514b78faf5c917514d90" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "d7674735ad35dca33f679601370c04bcf1334563ddf9514b78faf5c917514d90" - sha256 cellar: :any_skip_relocation, arm64_ventura: "d7674735ad35dca33f679601370c04bcf1334563ddf9514b78faf5c917514d90" - sha256 cellar: :any_skip_relocation, sonoma: "532eff7ec55d9977f5352a241739fb2878fd98c45c1357de1a41e49b60e0ddbc" - sha256 cellar: :any_skip_relocation, ventura: "532eff7ec55d9977f5352a241739fb2878fd98c45c1357de1a41e49b60e0ddbc" - sha256 cellar: :any_skip_relocation, arm64_linux: "d7674735ad35dca33f679601370c04bcf1334563ddf9514b78faf5c917514d90" - sha256 cellar: :any_skip_relocation, x86_64_linux: "d7674735ad35dca33f679601370c04bcf1334563ddf9514b78faf5c917514d90" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "9778b3f564877d8ccc0d0e796e468f5e6f798e04b7fa97326e07a8460e5da171" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "9778b3f564877d8ccc0d0e796e468f5e6f798e04b7fa97326e07a8460e5da171" + sha256 cellar: :any_skip_relocation, arm64_ventura: "9778b3f564877d8ccc0d0e796e468f5e6f798e04b7fa97326e07a8460e5da171" + sha256 cellar: :any_skip_relocation, sonoma: "772b6a81abc6c83098a3ab7120f27f5381dea66d1d0090228b8d6e942b4379a2" + sha256 cellar: :any_skip_relocation, ventura: "772b6a81abc6c83098a3ab7120f27f5381dea66d1d0090228b8d6e942b4379a2" + sha256 cellar: :any_skip_relocation, arm64_linux: "9778b3f564877d8ccc0d0e796e468f5e6f798e04b7fa97326e07a8460e5da171" + sha256 cellar: :any_skip_relocation, x86_64_linux: "9778b3f564877d8ccc0d0e796e468f5e6f798e04b7fa97326e07a8460e5da171" end depends_on "node" From bb8cb80b9708f6dab7fa6883fd8ed3d0b576680b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 08:36:21 +0000 Subject: [PATCH 0474/1364] sqlboiler 4.19.0 --- Formula/s/sqlboiler.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/s/sqlboiler.rb b/Formula/s/sqlboiler.rb index 93709801d8c15..46a69be0d2d34 100644 --- a/Formula/s/sqlboiler.rb +++ b/Formula/s/sqlboiler.rb @@ -1,8 +1,8 @@ class Sqlboiler < Formula desc "Generate a Go ORM tailored to your database schema" homepage "https://github.com/volatiletech/sqlboiler" - url "https://github.com/volatiletech/sqlboiler/archive/refs/tags/v4.18.0.tar.gz" - sha256 "dcbbeef8c077a8b988fb5750fd6d334f3fddec86ea679f1071adaf82a67b2298" + url "https://github.com/volatiletech/sqlboiler/archive/refs/tags/v4.19.0.tar.gz" + sha256 "39f106e8846f818a71f81e7863e38ff154f351e758c15e25312882fcfdad2ca8" license "BSD-3-Clause" head "https://github.com/volatiletech/sqlboiler.git", branch: "master" From 1529ad4cd4158d827e231e98dd24c00a7807b688 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 08:45:14 +0000 Subject: [PATCH 0475/1364] yq 4.45.3 --- Formula/y/yq.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/y/yq.rb b/Formula/y/yq.rb index b84aeec032c5b..b96d382bd9f78 100644 --- a/Formula/y/yq.rb +++ b/Formula/y/yq.rb @@ -1,8 +1,8 @@ class Yq < Formula desc "Process YAML, JSON, XML, CSV and properties documents from the CLI" homepage "https://github.com/mikefarah/yq" - url "https://github.com/mikefarah/yq/archive/refs/tags/v4.45.2.tar.gz" - sha256 "7ae8f8a4acc78dba5ab3a4bb004d390bbf6fe1cd1fc5746ff7db19f8e627b84f" + url "https://github.com/mikefarah/yq/archive/refs/tags/v4.45.3.tar.gz" + sha256 "e3edb61a80691d05f4e6286cf68b0f9e8eba120f1f7326b80b9e17fbed25d49e" license "MIT" head "https://github.com/mikefarah/yq.git", branch: "master" From 2e879a548834c60358d83307004c7220c42c876a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 08:53:12 +0000 Subject: [PATCH 0476/1364] protolint: update 0.55.1 bottle. --- Formula/p/protolint.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/p/protolint.rb b/Formula/p/protolint.rb index af8d1716dd07a..3549e35034e3f 100644 --- a/Formula/p/protolint.rb +++ b/Formula/p/protolint.rb @@ -7,12 +7,12 @@ class Protolint < Formula head "https://github.com/yoheimuta/protolint.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "73d59f3c8c369d991216962f617112b39596c81d32cf54b7a7bc022da38cfaf6" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "73d59f3c8c369d991216962f617112b39596c81d32cf54b7a7bc022da38cfaf6" - sha256 cellar: :any_skip_relocation, arm64_ventura: "73d59f3c8c369d991216962f617112b39596c81d32cf54b7a7bc022da38cfaf6" - sha256 cellar: :any_skip_relocation, sonoma: "8c9e280390caa5acac4cceb9c4d1c943bcdaffcc15683334a983dc36e2e5fbe9" - sha256 cellar: :any_skip_relocation, ventura: "8c9e280390caa5acac4cceb9c4d1c943bcdaffcc15683334a983dc36e2e5fbe9" - sha256 cellar: :any_skip_relocation, x86_64_linux: "3dfaa46f3af600d8f67f307ddd41b867485a27b89aa0e197f787fed2d75dbbb8" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "f48da6ff3aa324ab2c175701f5e12c98399421e2265926c696bf41720f462c42" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "f48da6ff3aa324ab2c175701f5e12c98399421e2265926c696bf41720f462c42" + sha256 cellar: :any_skip_relocation, arm64_ventura: "f48da6ff3aa324ab2c175701f5e12c98399421e2265926c696bf41720f462c42" + sha256 cellar: :any_skip_relocation, sonoma: "890c2a21455f3940d838da86993ed3bc8a79c954af28a63efe1295708c1491da" + sha256 cellar: :any_skip_relocation, ventura: "890c2a21455f3940d838da86993ed3bc8a79c954af28a63efe1295708c1491da" + sha256 cellar: :any_skip_relocation, x86_64_linux: "c013b5b485d1b8a8d4c852cb44472b0a8993b754a8a519df7990b2d15f75ae93" end depends_on "go" => :build From 84b2d57b0dcd692ec7bed777ad913ed865783071 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 08:53:20 +0000 Subject: [PATCH 0477/1364] railway: update 4.4.1 bottle. --- Formula/r/railway.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/r/railway.rb b/Formula/r/railway.rb index 248daa1f113d8..aaf35d92f41d2 100644 --- a/Formula/r/railway.rb +++ b/Formula/r/railway.rb @@ -7,13 +7,13 @@ class Railway < Formula head "https://github.com/railwayapp/cli.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "72222923f92283a386248aff68e5f5abd8ac44b89a622ed78ffda7b2e9228f46" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "bc308f449b00ca6975ee3d7aec5a27bfa4201126dfec154ba3ddbf13af349a6b" - sha256 cellar: :any_skip_relocation, arm64_ventura: "8f2cdbcdbff1a374e1f44ce5be2fedbc0554811b64061ad1ff99becb91be9c5f" - sha256 cellar: :any_skip_relocation, sonoma: "38db0a107fc460ccf8c7eae0b13f4b1045cd5c19b25090d6904afdb194303107" - sha256 cellar: :any_skip_relocation, ventura: "50c3013b7f2e97b28cc72a7ae44649f267cc41a72c7da19c8bf36490ca978d77" - sha256 cellar: :any_skip_relocation, arm64_linux: "020a585c5000ed69e771a9d8d2ee0e07a7ce3e845f0df72fbc7c025026305c91" - sha256 cellar: :any_skip_relocation, x86_64_linux: "2268a935a70b57a4e9c639e0ddab32b33df9714f585bf1b0c45bd1bf5df3729e" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "21c1b0c452043a6a84f42c5a076ef319f427ac15f9c8b9020c25d179ae19820f" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "b090fde637ac5ccf11b5e55a95fc3581160c68dc45ad8303dde563df0016c702" + sha256 cellar: :any_skip_relocation, arm64_ventura: "080a40d4c0f96341a07bd9a1c559d0ece5ea3ca6a17289a54e1638ce794a7442" + sha256 cellar: :any_skip_relocation, sonoma: "02ec63356b8271c4d180be1ae7ff2d3408ef1ba86139ee4486593e88d926a3bc" + sha256 cellar: :any_skip_relocation, ventura: "ee377f42549c8a8aab3dae1b59fdd664b21ca9274e9403d54e08b91df4dedbe0" + sha256 cellar: :any_skip_relocation, arm64_linux: "f38073631b34044f85adba2c8023f37f9f8abb4d8d5edc887ccfecdde1c6e31f" + sha256 cellar: :any_skip_relocation, x86_64_linux: "ee3803604074ebdb572837f25a012bc13d50c8b6bcbb6a2c15c8b9b880fb603b" end depends_on "rust" => :build From 1122b26629d83f1c1ad5519b96338c07f197163e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 09:20:29 +0000 Subject: [PATCH 0478/1364] oxlint: update 0.16.10 bottle. --- Formula/o/oxlint.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/o/oxlint.rb b/Formula/o/oxlint.rb index 566a468439214..27dbf19e65e3d 100644 --- a/Formula/o/oxlint.rb +++ b/Formula/o/oxlint.rb @@ -12,13 +12,13 @@ class Oxlint < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "4f78d139a86a29f26f1e70a579705bdb9ba1dd35413de11a5ace3fac7554ac84" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "d866aa799b3f33316bab3421b6ab218272e38a627c0d60fe7d1a6d0557695b8a" - sha256 cellar: :any_skip_relocation, arm64_ventura: "0a7c72a2bbdb8713da51c0eaf5203096ac6c86e436d39430b3fba71e5177da13" - sha256 cellar: :any_skip_relocation, sonoma: "b153603757d8bd091caf7a42a61444f2b0797fc326495bae95b293924e3f0b28" - sha256 cellar: :any_skip_relocation, ventura: "208df123033fca0ef3881c6929c93a667a945cdf36e3479c0a4036af046e81c2" - sha256 cellar: :any_skip_relocation, arm64_linux: "a46306aadf8c8e3ed0fadba77c806fae50a1f4fb9901f723b6a646f1e8ada44f" - sha256 cellar: :any_skip_relocation, x86_64_linux: "1f2fb4b9e8169ecd793818ed8afa452f05eb13881d148fe007effec01ab45468" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "010fb93348b0dddd0d84418ef0b6987048980a2b5df1fd13344e07aad76c8b7d" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "30795ee01f3a0d51c62857101f7808a9243e68fd90a0a2b6c007d94c5ce3e131" + sha256 cellar: :any_skip_relocation, arm64_ventura: "52e2efe941dc85db6d37054f5fe10b06a30683dbc3e2977a486a286e2067087d" + sha256 cellar: :any_skip_relocation, sonoma: "1e98cb8c5cd7f91432e1db4b0faecf89d2678e821b9f039ccef98c044bebbb27" + sha256 cellar: :any_skip_relocation, ventura: "3d6bc8145e6087226413560833f7c5577fc0a04edd9afc3583bb80e9a84a8b33" + sha256 cellar: :any_skip_relocation, arm64_linux: "5d5ff0303477c5ef9a1f9d3a95eb9da9222e63c6be6db543b39adfefe53b779c" + sha256 cellar: :any_skip_relocation, x86_64_linux: "c551e1084c2847e2a4cd225073b94338d24626c0ec24dc3f3db6847402a21d9d" end depends_on "rust" => :build From db4e60191341e857e36158dea5216e3a1f324807 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 09:20:58 +0000 Subject: [PATCH 0479/1364] sqlboiler: update 4.19.0 bottle. --- Formula/s/sqlboiler.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/s/sqlboiler.rb b/Formula/s/sqlboiler.rb index 46a69be0d2d34..f180a3b671549 100644 --- a/Formula/s/sqlboiler.rb +++ b/Formula/s/sqlboiler.rb @@ -7,12 +7,12 @@ class Sqlboiler < Formula head "https://github.com/volatiletech/sqlboiler.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "d1abb342fdfab30d9d143054acfd4979cd0134681602551fdc7170f5a86f8815" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "d1abb342fdfab30d9d143054acfd4979cd0134681602551fdc7170f5a86f8815" - sha256 cellar: :any_skip_relocation, arm64_ventura: "d1abb342fdfab30d9d143054acfd4979cd0134681602551fdc7170f5a86f8815" - sha256 cellar: :any_skip_relocation, sonoma: "42e35b08b3485f333406d5edeb2ac24a754586d75e9f43216c1611d2c816b84e" - sha256 cellar: :any_skip_relocation, ventura: "42e35b08b3485f333406d5edeb2ac24a754586d75e9f43216c1611d2c816b84e" - sha256 cellar: :any_skip_relocation, x86_64_linux: "d976fe8334514b6c20222fab1f021e5d90807fac14589c53ff3cea4516f9a1d7" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "91baa67ed1eb0f569395fd5731006bc1401516a13f5261fca90037df3cc01b48" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "91baa67ed1eb0f569395fd5731006bc1401516a13f5261fca90037df3cc01b48" + sha256 cellar: :any_skip_relocation, arm64_ventura: "91baa67ed1eb0f569395fd5731006bc1401516a13f5261fca90037df3cc01b48" + sha256 cellar: :any_skip_relocation, sonoma: "2074aa55cde9dbc8c0387148750788a968da5266009eb141fbfc428555285ecb" + sha256 cellar: :any_skip_relocation, ventura: "2074aa55cde9dbc8c0387148750788a968da5266009eb141fbfc428555285ecb" + sha256 cellar: :any_skip_relocation, x86_64_linux: "be93948ff6fabbc25d0545c21bf276d0b1189838be7ecf7d750839af9f71dfaf" end depends_on "go" => :build From c6f8e485c86c26588a55d47255a714efd7f4bed9 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 08:11:29 +0000 Subject: [PATCH 0480/1364] kapp: update livecheck --- Formula/k/kapp.rb | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Formula/k/kapp.rb b/Formula/k/kapp.rb index 2de8c382ccc21..57f885372bb64 100644 --- a/Formula/k/kapp.rb +++ b/Formula/k/kapp.rb @@ -6,6 +6,11 @@ class Kapp < Formula license "Apache-2.0" head "https://github.com/carvel-dev/kapp.git", branch: "develop" + livecheck do + url :stable + strategy :github_latest + end + bottle do sha256 cellar: :any_skip_relocation, arm64_sequoia: "7ff0deb34460ced94c830822c2afeec04d2f02be064c44cd317f9b1024a3bb7d" sha256 cellar: :any_skip_relocation, arm64_sonoma: "7ff0deb34460ced94c830822c2afeec04d2f02be064c44cd317f9b1024a3bb7d" From 6336cbb190ea7d5974ec903035f68f39420e02c5 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 09:25:02 +0000 Subject: [PATCH 0481/1364] kubevpn: update 2.7.7 bottle. --- Formula/k/kubevpn.rb | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Formula/k/kubevpn.rb b/Formula/k/kubevpn.rb index 76bea76373df4..6d1dc2c11a991 100644 --- a/Formula/k/kubevpn.rb +++ b/Formula/k/kubevpn.rb @@ -7,14 +7,13 @@ class Kubevpn < Formula head "https://github.com/kubenetworks/kubevpn.git", branch: "master" bottle do - rebuild 1 - sha256 cellar: :any_skip_relocation, arm64_sequoia: "8526da1fe3a1f381358ab9ea6d7b3c787ef2fd1e0d5d3175aebf7ad6b8a25e3d" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "3abb4b7c8a299eda685a614afba9d3404b97dd2b0b2a2be0b4eb17c2911c9382" - sha256 cellar: :any_skip_relocation, arm64_ventura: "223df4c21fa1fce82f4d6b61b5992629e5844f95aa61d86d088c8abba503ff33" - sha256 cellar: :any_skip_relocation, sonoma: "4acb91f660f022b7f33adfe5ad1694308b3a45d51a929caa05454b771d362184" - sha256 cellar: :any_skip_relocation, ventura: "1d60f5d32de3eda4cbb21da525fd78e85871fff91569b544a83c4aeda7e382bd" - sha256 cellar: :any_skip_relocation, arm64_linux: "a22cf4a29361a97c00fa568e93a253b2c8de0066b789d2affac1877ad8853609" - sha256 cellar: :any_skip_relocation, x86_64_linux: "bf014ae3ba2a8eac5d7f1dceeda87f0a81c1d4c8a0eb2814d717287dca1de176" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "b5e69973b89bae2e327e0685a575db39b02c00fe5dd5f24fa49c59a6d37036e8" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "ae10e62c889fcab222fab00ef4e50393d69f46312551b049199d40ade7bfb621" + sha256 cellar: :any_skip_relocation, arm64_ventura: "a68b8918815e25187521d02cf559f740257db843530068515f153d13a0472566" + sha256 cellar: :any_skip_relocation, sonoma: "1399ab1db5480e72ea16cff863d00a2432d19ea7a021da34452c73553041cef1" + sha256 cellar: :any_skip_relocation, ventura: "70977edba89edb6a0755931f364955ace82a7a6a8f017af95a2802fe45246d8a" + sha256 cellar: :any_skip_relocation, arm64_linux: "79f7e4fa628b3c8d31ba12947bd62aebffaba16fa08157c7294a39d8705aa942" + sha256 cellar: :any_skip_relocation, x86_64_linux: "5ac1452083238a17e768b58f5b1b1c1e8dc92385e7b939a3a925f71b7d66265e" end depends_on "go" => :build From 2ad490c8a03dc29bea620a36d2dc1ccee3e03f9a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 09:26:06 +0000 Subject: [PATCH 0482/1364] yq: update 4.45.3 bottle. --- Formula/y/yq.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/y/yq.rb b/Formula/y/yq.rb index b96d382bd9f78..8f69ffffe0805 100644 --- a/Formula/y/yq.rb +++ b/Formula/y/yq.rb @@ -12,12 +12,12 @@ class Yq < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "00ae48fd0ccb3757314dbb15c2a4ec7179f8b3746bddf6fd915eadc734f3a380" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "00ae48fd0ccb3757314dbb15c2a4ec7179f8b3746bddf6fd915eadc734f3a380" - sha256 cellar: :any_skip_relocation, arm64_ventura: "00ae48fd0ccb3757314dbb15c2a4ec7179f8b3746bddf6fd915eadc734f3a380" - sha256 cellar: :any_skip_relocation, sonoma: "bf60e9476c96ed855b2c96d020723526ef552c2fce449bb4e9b22b260a59f451" - sha256 cellar: :any_skip_relocation, ventura: "bf60e9476c96ed855b2c96d020723526ef552c2fce449bb4e9b22b260a59f451" - sha256 cellar: :any_skip_relocation, x86_64_linux: "a999339a362347193d445f836c3dfb5b2bc6cd9f058d3c72fb8c7f525420064b" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "dabd1626fecd45c80f3f29da1d032f765504a506fdd8c4cf7f8568f35456a118" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "dabd1626fecd45c80f3f29da1d032f765504a506fdd8c4cf7f8568f35456a118" + sha256 cellar: :any_skip_relocation, arm64_ventura: "dabd1626fecd45c80f3f29da1d032f765504a506fdd8c4cf7f8568f35456a118" + sha256 cellar: :any_skip_relocation, sonoma: "939b648fc9e66e7a497e92d59cd2d5881a0a1fb42cc7fdbd8bc83f9fd0f8ffab" + sha256 cellar: :any_skip_relocation, ventura: "939b648fc9e66e7a497e92d59cd2d5881a0a1fb42cc7fdbd8bc83f9fd0f8ffab" + sha256 cellar: :any_skip_relocation, x86_64_linux: "e78daaead01cc0c2417183df2942129f2e9ce864dcf55611592b8b0230540cb9" end depends_on "go" => :build From 4e912e0a0a7bb0a640594fa0a36748269d49011c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 09:26:28 +0000 Subject: [PATCH 0483/1364] cython: update 3.1.0 bottle. --- Formula/c/cython.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/cython.rb b/Formula/c/cython.rb index 9330e21ff6190..8a9962cd83751 100644 --- a/Formula/c/cython.rb +++ b/Formula/c/cython.rb @@ -6,13 +6,13 @@ class Cython < Formula license "Apache-2.0" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "61f7e6769e2e430f1fc8bfdd8160844c97ddc148586e52125a644265855a4c6b" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "a7dab5895e7452dd67ca3be898e59adfe908c0d3187323441ebc1228c7dd9f21" - sha256 cellar: :any_skip_relocation, arm64_ventura: "c9a43ca2229987dc45aecf953209472b3ec76d5bd8e155b139680019e7dc7bce" - sha256 cellar: :any_skip_relocation, sonoma: "aeaa52ed2d4fc58b91577811eed2e022e6b24da4d4cd8372d862c834c1d5f887" - sha256 cellar: :any_skip_relocation, ventura: "1a9c68f744399dd4ae2685056120c84a3a7c6e2c82ada4917635484f4ed8bde5" - sha256 cellar: :any_skip_relocation, arm64_linux: "c741c3b0f335532211ab4746082a1c50e766f558eb9af037747e3bad342f9039" - sha256 cellar: :any_skip_relocation, x86_64_linux: "d62655bdfcaacdaa6776745dc1f9eb03afc1d704eb981907e4d519f33ead631f" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "523ef2906c0a49f7b8f6bd42cdc590c88cbd8f2e23fd3103ab7639831d006a40" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "ba69d65522aaac7020b293bbee17f8bb7f94f3cba2d4fbe2a2fd2410b13da7e0" + sha256 cellar: :any_skip_relocation, arm64_ventura: "1ead5f57ce8703c3a5f849de31f5de4b95282db40a3d4d9f9f97b52e09caab9d" + sha256 cellar: :any_skip_relocation, sonoma: "f138b2d41d2fe40dba1e18748c362dff2e11f64c6735df7c5a7208f631660689" + sha256 cellar: :any_skip_relocation, ventura: "fd1b184b73148ce28997af38e4090adb1a85d1f724fefc8181fb77c32cf76d46" + sha256 cellar: :any_skip_relocation, arm64_linux: "7cc0e4a4e1dc5ba4039b8ae2ac033e57327d004d8dc9272a8f234ef248b2f799" + sha256 cellar: :any_skip_relocation, x86_64_linux: "1359e72e9f13a895116e7cd58659ca0c03ed92eec6b2fedad0d4f17604d0d3d3" end keg_only <<~EOS From 67b6504d46ca033c509c97bc1b1fad1d5183ead9 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 10:13:06 +0000 Subject: [PATCH 0484/1364] maturin: update 1.8.4 bottle. --- Formula/m/maturin.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/m/maturin.rb b/Formula/m/maturin.rb index 0f1b94d95be00..7001330fb57c3 100644 --- a/Formula/m/maturin.rb +++ b/Formula/m/maturin.rb @@ -7,13 +7,13 @@ class Maturin < Formula head "https://github.com/PyO3/maturin.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "f07b71d793c27a95202b27674fdde84f07f63683d0c5c489b250d3863ab5e72c" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "22bbf2b7668ec7e27054bbcd147809f67aa93fe16674da8e9988d5b09a055d88" - sha256 cellar: :any_skip_relocation, arm64_ventura: "a7cbda3bb40994236d20ce05872cb4c54af14db99c37a3b59d7706930a23a640" - sha256 cellar: :any_skip_relocation, sonoma: "2be3842707e09924541dbd996040da07ff8a5a0ebf631e87033700feb1169ff3" - sha256 cellar: :any_skip_relocation, ventura: "b71f626046ca930fba0ac672cda769480f12212ea07d1d0029cb9c7960007818" - sha256 cellar: :any_skip_relocation, arm64_linux: "7bda662d2cf548520ff1994a228c2e30c7056d1556b60fa1db90bf3ef26504bc" - sha256 cellar: :any_skip_relocation, x86_64_linux: "43af90ed1f50b58b604c0fbf8d537805b51435a25d2354f8d885fe8b25562347" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "16d60fe01ca76e124af5cf5c282644b94bcf8dc65dcb1d385619f0be28682852" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "77b2eed87bd60268aada9b343b705800de4cb9ae74c5cb2b1ebecdc81274d56f" + sha256 cellar: :any_skip_relocation, arm64_ventura: "ed30655e916d3d29684ac88fd78fd139a309850dcf61c30db083529e108ac048" + sha256 cellar: :any_skip_relocation, sonoma: "b61d5933f5c7b947dd4ac15b73b2992c3d2bb75be239e408429edc306bfd66d7" + sha256 cellar: :any_skip_relocation, ventura: "41ee546127ae7c3b750b649c2859d02fe5ec1c24d57ea74361595a9b6ff31eaa" + sha256 cellar: :any_skip_relocation, arm64_linux: "0d32f4e935d2dc645f5430f6fc1ee8d007cc0e532a95e91a64eb94237a78a509" + sha256 cellar: :any_skip_relocation, x86_64_linux: "c4eea3bb116c873f954c18704ee7fc4f37a8323f1d7c9c4277545c989c0e8d12" end depends_on "python@3.13" => :test From 04cc181b62320915ca1265538b3021a0482bcdc8 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 10:13:15 +0000 Subject: [PATCH 0485/1364] linux-headers@5.15: update 5.15.182 bottle. --- Formula/l/linux-headers@5.15.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/l/linux-headers@5.15.rb b/Formula/l/linux-headers@5.15.rb index 5e49ca12bc539..8d95ff8c5866c 100644 --- a/Formula/l/linux-headers@5.15.rb +++ b/Formula/l/linux-headers@5.15.rb @@ -11,8 +11,8 @@ class LinuxHeadersAT515 < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_linux: "c3403915352cc6bcc938755cd76b10dcbfbb2ccbdc65a890c55b0857d8263ea7" - sha256 cellar: :any_skip_relocation, x86_64_linux: "8367cf8edab4b971c1f14a337b48a8c06e9b11e35f834f678eea6f08e6d30fc8" + sha256 cellar: :any_skip_relocation, arm64_linux: "c148928c9cb84159a5f35fbb8b980a79684e1926e12eabb04d914b8ab4dd1b98" + sha256 cellar: :any_skip_relocation, x86_64_linux: "33f742cffed587c14dcca8cc34f4993c5bb707c39356ff53612a0f0891264159" end depends_on :linux From 057223f38d7f14d77d0f3b629dd602a0873094a7 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 10:15:03 +0000 Subject: [PATCH 0486/1364] llgo: update 0.11.3 bottle. --- Formula/l/llgo.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/l/llgo.rb b/Formula/l/llgo.rb index b784e0a8a6c6b..4682dc2568de8 100644 --- a/Formula/l/llgo.rb +++ b/Formula/l/llgo.rb @@ -12,12 +12,12 @@ class Llgo < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "a96f779a5389a9fcdb130cd9101d35fb2b2d1d3776368969b0993a8a0c867912" - sha256 cellar: :any, arm64_sonoma: "564c695388e1174c54b7ec84fc1baf746dc83c6b39e4b13d2dfbb1f08542dac7" - sha256 cellar: :any, arm64_ventura: "5a6d47e546bec68fe6408efa6aa94f43ad13fd782a381d771f3d6643d0f53c51" - sha256 cellar: :any, sonoma: "77ff6916be6051de0c73b92f332cac15decb446345176c48053081e6795d1572" - sha256 cellar: :any, ventura: "19124f9d591258fb823d379730dedbbdd3f2e806bb04cafef1c41150934b722d" - sha256 x86_64_linux: "e39a853e8b70f3f11ca64d3b99a44c4d4c70d06d1d3b472e93f4a8c7186f8d04" + sha256 cellar: :any, arm64_sequoia: "301657dfac614b209cd41e7aedd01cf62825c8e116646ee93d0e527425be39ef" + sha256 cellar: :any, arm64_sonoma: "58f7518f88c21c764fbe885a02327514603d452675a457da96932d8036bd7d44" + sha256 cellar: :any, arm64_ventura: "a658c43e1e63d797813cb58bde26a6f650adfd967614501b4899b67909ed5e35" + sha256 cellar: :any, sonoma: "adc0711a8f6bd9a31d4d17e8e50e72d29748428006b5816bccea197bb0c64bf6" + sha256 cellar: :any, ventura: "019af6713d1f25c979971a7759d5b50fdd2f25b4d41eac2bf93087a98863fb64" + sha256 x86_64_linux: "84a8c66af302faace3159e60537e9f1b7e40cbd1215deb3c5c4ef46d0d5d535a" end depends_on "bdw-gc" From 280e636fe0a18c5b5586eae9f3da250794f72ab4 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 10:15:36 +0000 Subject: [PATCH 0487/1364] grokj2k: update 15.0.0 bottle. --- Formula/g/grokj2k.rb | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Formula/g/grokj2k.rb b/Formula/g/grokj2k.rb index 7c30bfe39a9fa..dbbec98ae6940 100644 --- a/Formula/g/grokj2k.rb +++ b/Formula/g/grokj2k.rb @@ -14,14 +14,13 @@ class Grokj2k < Formula end bottle do - rebuild 1 - sha256 cellar: :any, arm64_sequoia: "5149d78f8c62ba15378406a5cf7069664610210b6217407a84f525b8d4f3a503" - sha256 cellar: :any, arm64_sonoma: "77b72bff592cea45f9a58ac582c40936a40f43c5043a03f776c66ebcb243c4a8" - sha256 cellar: :any, arm64_ventura: "671bcbcd63e92dcec776dd40f283af775c20ac48b8db218df2bf434b1e2745bc" - sha256 cellar: :any, sonoma: "9ced0cf80ece1940de03f7aa539c7ab8343cee8e180322bbd13746d715f47fb5" - sha256 cellar: :any, ventura: "55af09dd82eabdd8ccdec7300c92598cc194f59d4f67c7f7dfd36abc99617c37" - sha256 cellar: :any_skip_relocation, arm64_linux: "034279982c94fdf35fdd73e2e31f41a6a600494dbb722e070501013984970398" - sha256 cellar: :any_skip_relocation, x86_64_linux: "61435c3633d1ba62db43e0ade8388ed6fe95e4c6601ef6446223d1e9f2527cd4" + sha256 cellar: :any, arm64_sequoia: "c449e121480cf29ababe0308798de24bf4bc6cae481b25f638ca66d7cf450799" + sha256 cellar: :any, arm64_sonoma: "3494b6e2d894c6aa91928372e0c945b7ad48263db85c11a309aa89625810df4a" + sha256 cellar: :any, arm64_ventura: "0146edbf0ea87f7bbd8d2ef16cbae48855e65dbabadc39b397311d1ba3cea210" + sha256 cellar: :any, sonoma: "14b7c8a41249a4b681443bdb9114357c4efda8d7af697f6fe109af98fa209a50" + sha256 cellar: :any, ventura: "1f5a312a4fc699b7471c7a173c76f37fb8f459228a88c62a27e02117bed869c5" + sha256 cellar: :any_skip_relocation, arm64_linux: "01752750f376fd888afabad5acfcd512503184be46049bea7cd7ea78e4643141" + sha256 cellar: :any_skip_relocation, x86_64_linux: "ed50ea40ee52f5381b72c02ee813620ccc2fbdbe26550f2d295171dad807c7ae" end depends_on "cmake" => :build From a93560e8a35f9f588e4f3becf41daf19319a2906 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 10:50:47 +0000 Subject: [PATCH 0488/1364] artillery 2.0.23 --- Formula/a/artillery.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/a/artillery.rb b/Formula/a/artillery.rb index 7bd383a83fc2e..e6da522d9d50b 100644 --- a/Formula/a/artillery.rb +++ b/Formula/a/artillery.rb @@ -1,8 +1,8 @@ class Artillery < Formula desc "Cloud-native performance & reliability testing for developers and SREs" homepage "https://www.artillery.io/" - url "https://registry.npmjs.org/artillery/-/artillery-2.0.22.tgz" - sha256 "4cd54217a4024da7d953e7258d7c02d309bb7db6bf9b630ee8cfd15675655721" + url "https://registry.npmjs.org/artillery/-/artillery-2.0.23.tgz" + sha256 "56fee81d5f5fd831fcc1e89c6134b2294095ed0c07c225578ae932b0e82b272b" license "MPL-2.0" livecheck do From 4882d3c5a3f437d0e6db9003a8d498dfa7738d94 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 11:04:28 +0000 Subject: [PATCH 0489/1364] ford 7.0.11 --- Formula/f/ford.rb | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/Formula/f/ford.rb b/Formula/f/ford.rb index 536fbf27c6366..d80b4e36dd52d 100644 --- a/Formula/f/ford.rb +++ b/Formula/f/ford.rb @@ -3,8 +3,8 @@ class Ford < Formula desc "Automatic documentation generator for modern Fortran programs" homepage "https://github.com/Fortran-FOSS-Programmers/ford" - url "https://files.pythonhosted.org/packages/01/08/a2380f5a63e0dc8e428c9307ee26e4455fce4775a76964a86b7068a9edc7/ford-7.0.10.tar.gz" - sha256 "b1271adcd8a33af89aa65cd176ed25fe252b3e0a52aa9f1fd00b0e8c51fc4086" + url "https://files.pythonhosted.org/packages/96/fe/e06d62822f8eb66e068066c4a342f2dc79c4e6e9c3fef97fd4f80aa73353/ford-7.0.11.tar.gz" + sha256 "d682372592de3414e10db6baee3e8bf52867006cf0b198f42b82ea735015128b" license "GPL-3.0-or-later" head "https://github.com/Fortran-FOSS-Programmers/ford.git", branch: "master" @@ -23,8 +23,8 @@ class Ford < Formula depends_on "python@3.13" resource "beautifulsoup4" do - url "https://files.pythonhosted.org/packages/f0/3c/adaf39ce1fb4afdd21b611e3d530b183bb7759c9b673d60db0e347fd4439/beautifulsoup4-4.13.3.tar.gz" - sha256 "1bd32405dacc920b42b83ba01644747ed77456a65760e285fbc47633ceddaf8b" + url "https://files.pythonhosted.org/packages/d8/e4/0c4c39e18fd76d6a628d4dd8da40543d136ce2d1752bd6eeeab0791f4d6b/beautifulsoup4-4.13.4.tar.gz" + sha256 "dbb3c4e1ceae6aefebdaf2423247260cd062430a410e38c66f2baa50a8437195" end resource "graphviz" do @@ -73,18 +73,18 @@ class Ford < Formula end resource "python-markdown-math" do - url "https://files.pythonhosted.org/packages/ec/17/e7e3f3fce951b8adec10987834f4b2fa721ebd9bd6651ce2a4f39c4c544d/python-markdown-math-0.8.tar.gz" - sha256 "8564212af679fc18d53f38681f16080fcd3d186073f23825c7ce86fadd3e3635" + url "https://files.pythonhosted.org/packages/4c/68/fbea05ec6fb318bdcf56ea47596605614554f51d77bfd14f6fb481139ad8/python_markdown_math-0.9.tar.gz" + sha256 "567395553dc4941e79b3789a1096dcabb3fda9539d150d558ef3507948b264a3" end resource "rich" do - url "https://files.pythonhosted.org/packages/ab/3a/0316b28d0761c6734d6bc14e770d85506c986c85ffb239e688eeaab2c2bc/rich-13.9.4.tar.gz" - sha256 "439594978a49a09530cff7ebc4b5c7103ef57baf48d5ea3184f21d9a2befa098" + url "https://files.pythonhosted.org/packages/a1/53/830aa4c3066a8ab0ae9a9955976fb770fe9c6102117c8ec4ab3ea62d89e8/rich-14.0.0.tar.gz" + sha256 "82f1bc23a6a21ebca4ae0c45af9bdbc492ed20231dcb63f297d6d1021a9d5725" end resource "soupsieve" do - url "https://files.pythonhosted.org/packages/d7/ce/fbaeed4f9fb8b2daa961f90591662df6a86c1abf25c548329a86920aedfb/soupsieve-2.6.tar.gz" - sha256 "e2e68417777af359ec65daac1057404a3c8a5455bb8abc36f1a9866ab1a51abb" + url "https://files.pythonhosted.org/packages/3f/f4/4a80cd6ef364b2e8b65b15816a843c0980f7a5a2b4dc701fc574952aa19f/soupsieve-2.7.tar.gz" + sha256 "ad282f9b6926286d2ead4750552c8a6142bc4c783fd66b0293547c8fe6ae126a" end resource "toposort" do @@ -93,13 +93,13 @@ class Ford < Formula end resource "tqdm" do - url "https://files.pythonhosted.org/packages/c1/c2/d8a40e5363fb01806870e444fc1d066282743292ff32a9da54af51ce36a2/tqdm-4.64.1.tar.gz" - sha256 "5f4f682a004951c1b450bc753c710e9280c5746ce6ffedee253ddbcbf54cf1e4" + url "https://files.pythonhosted.org/packages/a8/4b/29b4ef32e036bb34e4ab51796dd745cdba7ed47ad142a9f4a1eb8e0c744d/tqdm-4.67.1.tar.gz" + sha256 "f8aef9c52c08c13a65f30ea34f4e5aac3fd1a34959879d7e59e63027286627f2" end resource "typing-extensions" do - url "https://files.pythonhosted.org/packages/df/db/f35a00659bc03fec321ba8bce9420de607a1d37f8342eee1863174c69557/typing_extensions-4.12.2.tar.gz" - sha256 "1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8" + url "https://files.pythonhosted.org/packages/f6/37/23083fcd6e35492953e8d2aaaa68b860eb422b34627b13f2ce3eb6106061/typing_extensions-4.13.2.tar.gz" + sha256 "e6c81219bd689f51865d9e372991c540bda33a0379d5573cddb9a3a23f7caaef" end def install From 0ab45f6eee2084b8dac03ff056e5fd05c66c578a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 08:27:46 +0000 Subject: [PATCH 0490/1364] mariadb@10.11 10.11.12 --- Formula/m/mariadb@10.11.rb | 21 ++------------------- 1 file changed, 2 insertions(+), 19 deletions(-) diff --git a/Formula/m/mariadb@10.11.rb b/Formula/m/mariadb@10.11.rb index 78f37f63fa23a..72eba0f4bf173 100644 --- a/Formula/m/mariadb@10.11.rb +++ b/Formula/m/mariadb@10.11.rb @@ -1,8 +1,8 @@ class MariadbAT1011 < Formula desc "Drop-in replacement for MySQL" homepage "https://mariadb.org/" - url "https://archive.mariadb.org/mariadb-10.11.11/source/mariadb-10.11.11.tar.gz" - sha256 "6f29d4d7e40fc49af4a0fe608984509ef2d153df3cd8afe4359dce3ca0e27890" + url "https://archive.mariadb.org/mariadb-10.11.12/source/mariadb-10.11.12.tar.gz" + sha256 "d61f23090cfc14f43e8a27c2d3ce7f80247e74481bb26a2d3a6308b8d194e167" license "GPL-2.0-only" livecheck do @@ -60,23 +60,6 @@ class MariadbAT1011 < Formula depends_on "readline" # uses libedit on macOS end - # system libfmt patch, upstream pr ref, https://github.com/MariaDB/server/pull/3786 - patch do - url "https://github.com/MariaDB/server/commit/b6a924b8478d2fab5d51245ff6719b365d7db7f4.patch?full_index=1" - sha256 "77b65b35cf0166b8bb576254ac289845db5a8e64e03b41f1bf4b2045ac1cd2d1" - end - - # Backport fix for CMake 4.0 - patch do - url "https://github.com/MariaDB/server/commit/2a5a12b227845e03575f1b1eb0f6366dccc3e026.patch?full_index=1" - sha256 "f3a4b5871141451edf3936bcad0861e3a38418c3a8c6a69dfeddb8d073ac3253" - end - patch do - url "https://github.com/codership/wsrep-lib/commit/324b01e4315623ce026688dd9da1a5f921ce7084.patch?full_index=1" - sha256 "eaa0c3b648b712b3dbab3d37dfca7fef8a072908dc28f2ed383fbe8d217be421" - directory "wsrep-lib" - end - def install ENV.runtime_cpu_detection ENV.cxx11 From d1dee1151ca9d2cdab840e77ca35170af06f746f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 08:28:07 +0000 Subject: [PATCH 0491/1364] mariadb@10.5 10.5.29 --- Formula/m/mariadb@10.5.rb | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/Formula/m/mariadb@10.5.rb b/Formula/m/mariadb@10.5.rb index 779ec27e3f653..176ec2277bf72 100644 --- a/Formula/m/mariadb@10.5.rb +++ b/Formula/m/mariadb@10.5.rb @@ -1,8 +1,8 @@ class MariadbAT105 < Formula desc "Drop-in replacement for MySQL" homepage "https://mariadb.org/" - url "https://archive.mariadb.org/mariadb-10.5.28/source/mariadb-10.5.28.tar.gz" - sha256 "0b5070208da0116640f20bd085f1136527f998cc23268715bcbf352e7b7f3cc1" + url "https://archive.mariadb.org/mariadb-10.5.29/source/mariadb-10.5.29.tar.gz" + sha256 "de49ed417f6fa90e8fee72a41e526e0983dc47f388caff9e703803cec263b826" license "GPL-2.0-only" livecheck do @@ -58,17 +58,6 @@ class MariadbAT105 < Formula depends_on "linux-pam" end - # Backport fix for CMake 4.0 - patch do - url "https://github.com/MariaDB/server/commit/2a5a12b227845e03575f1b1eb0f6366dccc3e026.patch?full_index=1" - sha256 "f3a4b5871141451edf3936bcad0861e3a38418c3a8c6a69dfeddb8d073ac3253" - end - patch do - url "https://github.com/codership/wsrep-lib/commit/324b01e4315623ce026688dd9da1a5f921ce7084.patch?full_index=1" - sha256 "eaa0c3b648b712b3dbab3d37dfca7fef8a072908dc28f2ed383fbe8d217be421" - directory "wsrep-lib" - end - def install ENV.runtime_cpu_detection From 2a9a6669ccc46e2536e3ea5954502662f5e26117 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 08:28:41 +0000 Subject: [PATCH 0492/1364] mariadb@10.6 10.6.22 --- Formula/m/mariadb@10.6.rb | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/Formula/m/mariadb@10.6.rb b/Formula/m/mariadb@10.6.rb index 855fe682bdaf2..f018d2f2e9357 100644 --- a/Formula/m/mariadb@10.6.rb +++ b/Formula/m/mariadb@10.6.rb @@ -1,8 +1,8 @@ class MariadbAT106 < Formula desc "Drop-in replacement for MySQL" homepage "https://mariadb.org/" - url "https://archive.mariadb.org/mariadb-10.6.21/source/mariadb-10.6.21.tar.gz" - sha256 "8d7f97169b3ba2044858965b8cfc254364400df43e905042f92e24b8fa7b0d96" + url "https://archive.mariadb.org/mariadb-10.6.22/source/mariadb-10.6.22.tar.gz" + sha256 "2ca600dc7e85ead1f33c212f9d76b1f2f812d249c8bde02e5f38ead098ade420" license "GPL-2.0-only" livecheck do @@ -59,17 +59,6 @@ class MariadbAT106 < Formula depends_on "readline" # uses libedit on macOS end - # Backport fix for CMake 4.0 - patch do - url "https://github.com/MariaDB/server/commit/2a5a12b227845e03575f1b1eb0f6366dccc3e026.patch?full_index=1" - sha256 "f3a4b5871141451edf3936bcad0861e3a38418c3a8c6a69dfeddb8d073ac3253" - end - patch do - url "https://github.com/codership/wsrep-lib/commit/324b01e4315623ce026688dd9da1a5f921ce7084.patch?full_index=1" - sha256 "eaa0c3b648b712b3dbab3d37dfca7fef8a072908dc28f2ed383fbe8d217be421" - directory "wsrep-lib" - end - def install ENV.runtime_cpu_detection From 748b578452c4a69373cb032919bfb139a7559372 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 11:16:13 +0000 Subject: [PATCH 0493/1364] llama.cpp 5320 --- Formula/l/llama.cpp.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/l/llama.cpp.rb b/Formula/l/llama.cpp.rb index ab467b317b269..7b9ab07f41d5f 100644 --- a/Formula/l/llama.cpp.rb +++ b/Formula/l/llama.cpp.rb @@ -3,8 +3,8 @@ class LlamaCpp < Formula homepage "https://github.com/ggerganov/llama.cpp" # CMake uses Git to generate version information. url "https://github.com/ggerganov/llama.cpp.git", - tag: "b5310", - revision: "70a6991edf1b60e7afa8962f830320583f3babb0" + tag: "b5320", + revision: "02115dcd9a6d0c03b527d5bee8c1493ab819ddbd" license "MIT" head "https://github.com/ggerganov/llama.cpp.git", branch: "master" From cc6b12b3e92812ed123811e39bb1c05fcfd728a3 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 11:17:36 +0000 Subject: [PATCH 0494/1364] maturin 1.8.5 --- Formula/m/maturin.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/m/maturin.rb b/Formula/m/maturin.rb index 7001330fb57c3..a1bf64f9661ce 100644 --- a/Formula/m/maturin.rb +++ b/Formula/m/maturin.rb @@ -1,8 +1,8 @@ class Maturin < Formula desc "Build and publish Rust crates as Python packages" homepage "https://github.com/PyO3/maturin" - url "https://github.com/PyO3/maturin/archive/refs/tags/v1.8.4.tar.gz" - sha256 "16839be24f792cd0de7bc849794e351ab63569d7d302d781e113af319914fdf6" + url "https://github.com/PyO3/maturin/archive/refs/tags/v1.8.5.tar.gz" + sha256 "4511c34d4a362ba27aaf95b711f371e06e742b4a0d4e31f6e0c0243af636b07a" license any_of: ["Apache-2.0", "MIT"] head "https://github.com/PyO3/maturin.git", branch: "main" From 6eef105e22e1c5037d932c8ccdf1e90828eb216c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 11:20:30 +0000 Subject: [PATCH 0495/1364] neonctl 2.9.1 --- Formula/n/neonctl.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/n/neonctl.rb b/Formula/n/neonctl.rb index adac5c5de8164..2b38d8a732a58 100644 --- a/Formula/n/neonctl.rb +++ b/Formula/n/neonctl.rb @@ -1,8 +1,8 @@ class Neonctl < Formula desc "Neon CLI tool" homepage "https://neon.tech/docs/reference/neon-cli" - url "https://registry.npmjs.org/neonctl/-/neonctl-2.9.0.tgz" - sha256 "bf54dcf2563769587ac0194b4b6034ba97a17ec3ba56928ca7995e667a8f5e61" + url "https://registry.npmjs.org/neonctl/-/neonctl-2.9.1.tgz" + sha256 "b45d698caa6b34805e8a3f9f110cd15057357610261fb8da514f01d63fdfbdf6" license "Apache-2.0" bottle do From bc6b46afc86bf774b74ff5d9ab6df68c75a24612 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 11:27:21 +0000 Subject: [PATCH 0496/1364] prowler 5.6.0 --- Formula/p/prowler.rb | 33 ++++++++++++++++----------------- 1 file changed, 16 insertions(+), 17 deletions(-) diff --git a/Formula/p/prowler.rb b/Formula/p/prowler.rb index fcc31568b6fef..eac8d4fa73e12 100644 --- a/Formula/p/prowler.rb +++ b/Formula/p/prowler.rb @@ -3,10 +3,9 @@ class Prowler < Formula desc "Tool for cloud security assessments, audits, incident response, and more" homepage "https://prowler.com/" - url "https://files.pythonhosted.org/packages/8e/94/832826cce8c69fb8d2e4134c0425b42ae9b33b777ff4eb1cb1a2e96726d8/prowler-5.5.1.tar.gz" - sha256 "8e9c8b7551cfbcb406f2f05f31a613767200393d3f28125b7298c24a79fe6c1b" + url "https://files.pythonhosted.org/packages/ac/cd/fb77106fd83fdafe8e4f27a6de426f4ec931fc527298fcbc8c2dcc845aee/prowler-5.6.0.tar.gz" + sha256 "ee06323c67e0b95c9b54164a7523821913711d21d9411aad5f55ba3ef0b4dbed" license "Apache-2.0" - revision 1 bottle do sha256 cellar: :any, arm64_sequoia: "20bb2201f0f3ca0cdbefc5a19c7ee12d6190e6f331aaf71a1bf20e515f21765d" @@ -78,8 +77,8 @@ class Prowler < Formula end resource "azure-core" do - url "https://files.pythonhosted.org/packages/75/aa/7c9db8edd626f1a7d99d09ef7926f6f4fb34d5f9fa00dc394afdfe8e2a80/azure_core-1.33.0.tar.gz" - sha256 "f367aa07b5e3005fec2c1e184b882b0b039910733907d001c20fb08ebb8c0eb9" + url "https://files.pythonhosted.org/packages/c9/29/ff7a519a315e41c85bab92a7478c6acd1cf0b14353139a08caee4c691f77/azure_core-1.34.0.tar.gz" + sha256 "bdb544989f246a0ad1c85d72eeb45f2f835afdcbc5b45e43f0dbde7461c81ece" end resource "azure-identity" do @@ -208,8 +207,8 @@ class Prowler < Formula end resource "charset-normalizer" do - url "https://files.pythonhosted.org/packages/16/b0/572805e227f01586461c80e0fd25d65a2115599cc9dad142fee4b747c357/charset_normalizer-3.4.1.tar.gz" - sha256 "44251f18cd68a75b56585dd00dae26183e102cd5e0f9f1466e6df5da2ed64ea3" + url "https://files.pythonhosted.org/packages/e4/33/89c2ced2b67d1c2a61c19c6751aa8902d46ce3dacb23600a283619f5a12d/charset_normalizer-3.4.2.tar.gz" + sha256 "5baececa9ecba31eff645232d59845c07aa030f0c81ee70184a90d35099a0e63" end resource "click" do @@ -293,8 +292,8 @@ class Prowler < Formula end resource "google-api-core" do - url "https://files.pythonhosted.org/packages/6a/a2/7950df7fbb8ab1b7afb286ab374df2f5b3ea107b5d18224eac4e81bd2a69/google_api_core-2.25.0rc0.tar.gz" - sha256 "38d9d6a67673473457adbbef1ccca27d9ebb755e377c05e8a9b88f89eecab9ad" + url "https://files.pythonhosted.org/packages/1f/5a/746a50ac46d6cb716fa30bf5686663ac27fb2616d07391d1e8d919dc2acc/google_api_core-2.25.0rc1.tar.gz" + sha256 "ec279085923652b0d2e4c72fd6bb926ee17e9c960f0b8a472df146a42493957e" end resource "google-api-python-client" do @@ -303,8 +302,8 @@ class Prowler < Formula end resource "google-auth" do - url "https://files.pythonhosted.org/packages/cb/8e/8f45c9a32f73e786e954b8f9761c61422955d23c45d1e8c347f9b4b59e8e/google_auth-2.39.0.tar.gz" - sha256 "73222d43cdc35a3aeacbfdcaf73142a97839f10de930550d89ebfe1d0a00cde7" + url "https://files.pythonhosted.org/packages/94/a5/38c21d0e731bb716cffcf987bd9a3555cb95877ab4b616cfb96939933f20/google_auth-2.40.1.tar.gz" + sha256 "58f0e8416a9814c1d86c9b7f6acf6816b51aba167b2c76821965271bac275540" end resource "google-auth-httplib2" do @@ -458,8 +457,8 @@ class Prowler < Formula end resource "msgraph-sdk" do - url "https://files.pythonhosted.org/packages/aa/26/95dd0fce22456ea26c8ab0a8f4e9b56d2ece772ab6f7fe3dc23b827a2e68/msgraph_sdk-1.18.0.tar.gz" - sha256 "ef49166ada7b459b5a843ceb3d253c1ab99d8987ebf3112147eb6cbcaa101793" + url "https://files.pythonhosted.org/packages/7b/3b/e0129b84e981004d5305418119a8c54ad7e75df27215028895716960e09b/msgraph_sdk-1.23.0.tar.gz" + sha256 "6dd1ba9a46f5f0ce8599fd9610133adbd9d1493941438b5d3632fce9e55ed607" end resource "msrest" do @@ -473,8 +472,8 @@ class Prowler < Formula end resource "narwhals" do - url "https://files.pythonhosted.org/packages/65/92/503f99e2244a271aacd6c2588e0af1b59232292b217708748cdb30214dc3/narwhals-1.36.0.tar.gz" - sha256 "7cd860e7e066609bd8a042bb5b8e4193275532114448210a91cbd5c622b6e5eb" + url "https://files.pythonhosted.org/packages/dd/fa/f4c2b2524b6b1e7475af933849ecaad280822eab5631151ccb1993d600ce/narwhals-1.38.2.tar.gz" + sha256 "7c5fbc9f2b8e1d5d95f49dcef9c2d94bf17810de68c87ff195dc7d22f7b3eeb5" end resource "nest-asyncio" do @@ -623,8 +622,8 @@ class Prowler < Formula end resource "setuptools" do - url "https://files.pythonhosted.org/packages/bb/71/b6365e6325b3290e14957b2c3a804a529968c77a049b2ed40c095f749707/setuptools-79.0.1.tar.gz" - sha256 "128ce7b8f33c3079fd1b067ecbb4051a66e8526e7b65f6cec075dfc650ddfa88" + url "https://files.pythonhosted.org/packages/70/dc/3976b322de9d2e87ed0007cf04cc7553969b6c7b3f48a565d0333748fbcd/setuptools-80.3.1.tar.gz" + sha256 "31e2c58dbb67c99c289f51c16d899afedae292b978f8051efaf6262d8212f927" end resource "shodan" do From 30204681d01a2efb1dbd3c4289e85642df5bde89 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 11:30:15 +0000 Subject: [PATCH 0497/1364] renovate 40.11.0 --- Formula/r/renovate.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/r/renovate.rb b/Formula/r/renovate.rb index 07a63c489410f..6d010306f2c56 100644 --- a/Formula/r/renovate.rb +++ b/Formula/r/renovate.rb @@ -1,8 +1,8 @@ class Renovate < Formula desc "Automated dependency updates. Flexible so you don't need to be" homepage "https://github.com/renovatebot/renovate" - url "https://registry.npmjs.org/renovate/-/renovate-40.10.0.tgz" - sha256 "24d4a423520a2e3fef97148a79292dc16bd3679bb3ab149eaa8b4fc366efb025" + url "https://registry.npmjs.org/renovate/-/renovate-40.11.0.tgz" + sha256 "b7a2e8b0298d49f501ff22c6abe50b51bc72522a666b38b777c07e0b5de38216" license "AGPL-3.0-only" # There are thousands of renovate releases on npm and the page the `Npm` From 665cdd04a6830cc7ebfa6a384a80131e653b6d9d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 11:35:18 +0000 Subject: [PATCH 0498/1364] spdlog 1.15.3 --- Formula/s/spdlog.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/s/spdlog.rb b/Formula/s/spdlog.rb index d2e390fb73348..91eb3883064f9 100644 --- a/Formula/s/spdlog.rb +++ b/Formula/s/spdlog.rb @@ -1,8 +1,8 @@ class Spdlog < Formula desc "Super fast C++ logging library" homepage "https://github.com/gabime/spdlog" - url "https://github.com/gabime/spdlog/archive/refs/tags/v1.15.2.tar.gz" - sha256 "7a80896357f3e8e920e85e92633b14ba0f229c506e6f978578bdc35ba09e9a5d" + url "https://github.com/gabime/spdlog/archive/refs/tags/v1.15.3.tar.gz" + sha256 "15a04e69c222eb6c01094b5c7ff8a249b36bb22788d72519646fb85feb267e67" license "MIT" head "https://github.com/gabime/spdlog.git", branch: "v1.x" From b7875931166f86c09d21c2b08f61ffb2568d7bde Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 11:40:05 +0000 Subject: [PATCH 0499/1364] typos-lsp 0.1.37 --- Formula/t/typos-lsp.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/t/typos-lsp.rb b/Formula/t/typos-lsp.rb index a853307a3b937..d10ab16ef3a04 100644 --- a/Formula/t/typos-lsp.rb +++ b/Formula/t/typos-lsp.rb @@ -1,8 +1,8 @@ class TyposLsp < Formula desc "Language Server for typos-cli" homepage "https://github.com/tekumara/typos-lsp" - url "https://github.com/tekumara/typos-lsp/archive/refs/tags/v0.1.36.tar.gz" - sha256 "a09600b077872574566b267be332c620b41f009c485d50ce122094b51675ef65" + url "https://github.com/tekumara/typos-lsp/archive/refs/tags/v0.1.37.tar.gz" + sha256 "a1fc610814752811bccac1cc2a75b86a2475df7546a6051f4618c5625d286a1d" license "MIT" livecheck do From 898d7f7fd604cb95c629c5d63bb9f71ba44b8433 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 8 May 2025 08:29:01 +0000 Subject: [PATCH 0500/1364] mariadb@11.4 11.4.6 --- Formula/m/mariadb@11.4.rb | 21 ++------------------- 1 file changed, 2 insertions(+), 19 deletions(-) diff --git a/Formula/m/mariadb@11.4.rb b/Formula/m/mariadb@11.4.rb index 4b51d249f13f7..e8b50f459ab65 100644 --- a/Formula/m/mariadb@11.4.rb +++ b/Formula/m/mariadb@11.4.rb @@ -1,8 +1,8 @@ class MariadbAT114 < Formula desc "Drop-in replacement for MySQL" homepage "https://mariadb.org/" - url "https://archive.mariadb.org/mariadb-11.4.5/source/mariadb-11.4.5.tar.gz" - sha256 "ff6595f8c482f9921e39b97fa1122377a69f0dcbd92553c6b9032cbf0e9b5354" + url "https://archive.mariadb.org/mariadb-11.4.6/source/mariadb-11.4.6.tar.gz" + sha256 "1b26c0bb2d025dbfac3b9852d2b7eafda56a171b67ac2e27831ec0414fb7df07" license "GPL-2.0-only" livecheck do @@ -61,26 +61,9 @@ class MariadbAT114 < Formula depends_on "linux-pam" end - # system libfmt patch, upstream pr ref, https://github.com/MariaDB/server/pull/3786 - patch do - url "https://github.com/MariaDB/server/commit/b6a924b8478d2fab5d51245ff6719b365d7db7f4.patch?full_index=1" - sha256 "77b65b35cf0166b8bb576254ac289845db5a8e64e03b41f1bf4b2045ac1cd2d1" - end - - # Backport fix for CMake 4.0 - patch do - url "https://github.com/codership/wsrep-lib/commit/324b01e4315623ce026688dd9da1a5f921ce7084.patch?full_index=1" - sha256 "eaa0c3b648b712b3dbab3d37dfca7fef8a072908dc28f2ed383fbe8d217be421" - directory "wsrep-lib" - end - def install ENV.runtime_cpu_detection - # Backport fix for CMake 4.0 - # https://github.com/MariaDB/server/commit/cacaaebf01939d387645fb850ceeec5392496171 - inreplace "storage/mroonga/CMakeLists.txt", "cmake_minimum_required(VERSION 2.8.12)", "" - # Set basedir and ldata so that mysql_install_db can find the server # without needing an explicit path to be set. This can still # be overridden by calling --basedir= when calling. From 511fbd47c915b5c93ea5cff44cfddacb0b749ed2 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 11:43:09 +0000 Subject: [PATCH 0501/1364] artillery: update 2.0.23 bottle. --- Formula/a/artillery.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/a/artillery.rb b/Formula/a/artillery.rb index e6da522d9d50b..93e57ad525fbc 100644 --- a/Formula/a/artillery.rb +++ b/Formula/a/artillery.rb @@ -11,13 +11,13 @@ class Artillery < Formula end bottle do - sha256 arm64_sequoia: "18e367a6dbc8dee58671b9a885f694284893493b45d4b692c66b3734af65f8db" - sha256 arm64_sonoma: "0aeea463a5068167ea244a2866d91b039088529399f79063483c9a9df76ad2fe" - sha256 arm64_ventura: "da5a85b601ebbd27bf1689902ff0d0122393881294510265059fc1012cdf607f" - sha256 sonoma: "0475d0998555c0b01a3b1c7817fcd046617702f977cbac92bad7f3e847ac7d1c" - sha256 ventura: "208f1c86bc65e2f56b9052a277b2bd04b547315201ae650d9dfaa0c4800b32cb" - sha256 cellar: :any_skip_relocation, arm64_linux: "ee9eb04cf795a5881712446b67f2d563bea10f2ac2b751b57ca596e01117edaa" - sha256 cellar: :any_skip_relocation, x86_64_linux: "d0579e9a607b7a09eddcf8001c3449b134cbf1cd904053600272fb793ded88de" + sha256 arm64_sequoia: "5c9b0f3df6e260876a412bf1439011cc80e7c0c53d6f583dab10a9d7e96de656" + sha256 arm64_sonoma: "2debcd213bc15422e7d14a865e60882d91f3647e1b73dbb4d6f05dab7ba3dd38" + sha256 arm64_ventura: "5abfad7cb7e2c4665c742813dcc84eb3d97a1732f067378514326a1f9da9c972" + sha256 sonoma: "5fd036f5003839c2e56a884c1adeac468ecdf4adaf5e742ad1e15391de14067c" + sha256 ventura: "58c94545760f40d8856ca78829adf823f50735e64e5e0cc69c584da30188d149" + sha256 cellar: :any_skip_relocation, arm64_linux: "559a04c716334c1cfafaa3038976de4c00b9ff9c3a80f7d3a90dbc38e5fc6091" + sha256 cellar: :any_skip_relocation, x86_64_linux: "b3b97f42ebe125135855f1a17bd2d408f7d30a6aeb6be1a68475ecbfa480d49f" end depends_on "node" From 27d8d9e883b7162c5e8e24016d11a46af849a83d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 11:43:34 +0000 Subject: [PATCH 0502/1364] unisonlang: update 0.5.40 bottle. --- Formula/u/unisonlang.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/u/unisonlang.rb b/Formula/u/unisonlang.rb index 8da9c23c8dcf4..760ff2804ec78 100644 --- a/Formula/u/unisonlang.rb +++ b/Formula/u/unisonlang.rb @@ -24,12 +24,12 @@ class Unisonlang < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "eb17960289f828005b3e52a8a480d7a3e970e518400e2f55fef48a2a82d5c29e" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "7ba2e858ec03679ade457ce9a5b6c846f56a7b8ba88a66d1b6645583afbc3696" - sha256 cellar: :any_skip_relocation, arm64_ventura: "4c05f19af063342403d8d207766f80fdf5d0ae51feb86f8462f784c6419c2d74" - sha256 cellar: :any_skip_relocation, sonoma: "29ea80a72604e450af13d35a11e77743d5fbd60be44a75203252e1d4bce48c4a" - sha256 cellar: :any_skip_relocation, ventura: "f843bc9fc8fcf1733eaa76e11ca8af3fb6e834d87ad45f1af00905d09f200a35" - sha256 cellar: :any_skip_relocation, x86_64_linux: "cbdb44bfb2fcdc43ea61e410cc2586a785564ae66759b18d5ceae689f3dceb5f" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "75c91467d276477fd34e624af8ac4e44fd16aff613e1596d55b7c14ff303556d" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "cb94cd1e12115c8e58adde03f1d0cfc26ef36f6a1b7a60a251adeb425c424390" + sha256 cellar: :any_skip_relocation, arm64_ventura: "8602c23752ec792b7171110c625c445fd1f60a08b0080006aeca7582c736e000" + sha256 cellar: :any_skip_relocation, sonoma: "2363ae68bd1e50902effe27beffba9de2cb441f6dc22e2e2e32aa454e319e655" + sha256 cellar: :any_skip_relocation, ventura: "07d831bcbf16c85dc0ac123645507310f615682f33f31db750512184c59c8f7f" + sha256 cellar: :any_skip_relocation, x86_64_linux: "d2f6729b7fe8b4e64813d56c94948d0f9c6465ddea444207261dead45923ddc2" end head do From a772fc0eb90b44e29646f0ce33dde7f71f2ac5e4 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 11:57:23 +0000 Subject: [PATCH 0503/1364] ford: update 7.0.11 bottle. --- Formula/f/ford.rb | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Formula/f/ford.rb b/Formula/f/ford.rb index d80b4e36dd52d..9f81278106737 100644 --- a/Formula/f/ford.rb +++ b/Formula/f/ford.rb @@ -9,14 +9,13 @@ class Ford < Formula head "https://github.com/Fortran-FOSS-Programmers/ford.git", branch: "master" bottle do - rebuild 1 - sha256 cellar: :any_skip_relocation, arm64_sequoia: "b064d880206f80b5c53d75f52d883e2c0f00a81067820fe3bfc2ffa3b41310b6" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "5886a9cc98a97e8f204e2eb813e04f7176dd4084961d38a05753b455b6ef896d" - sha256 cellar: :any_skip_relocation, arm64_ventura: "eac3e85730ed7bc65c9c7796a5141b03bfe18010d4b130f1ffb854c976de372d" - sha256 cellar: :any_skip_relocation, sonoma: "692f7fb9a31df9ee0194ed34d282ed969710e1fa61ce5c6ced6d16db55e3d577" - sha256 cellar: :any_skip_relocation, ventura: "0de0150ff4d60a7afff61a186a1c122edf27e2aa7ca8fcb1054827fac2b55fdb" - sha256 cellar: :any_skip_relocation, arm64_linux: "0ea70b70a6e3df4f7b621251ad96dc1fc9803ad41aeec2c728362fd664a0e67a" - sha256 cellar: :any_skip_relocation, x86_64_linux: "2f6057a4ff856011848da2c688453f88d23a8bddd80b61a781a1717d9b97ff93" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "0a4cfebfc053ff7e7d00069ea41e12a230ede786aec26d7f4ca1e8f2e2b55bb2" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "1a0f5377fa85c93fb7761d3cc7b86c9630c046b94ceeb454709f6a9b1340901f" + sha256 cellar: :any_skip_relocation, arm64_ventura: "372bf0286ebea7e90f65094714b93779da6a78d8e92455028bcf01ba99cc1401" + sha256 cellar: :any_skip_relocation, sonoma: "7e52e202d1e8ab293ca0560e325ae4bc1b8a80dcd0174fa9bb9852bd8b11fff5" + sha256 cellar: :any_skip_relocation, ventura: "e32b10bed5a7b43403ca51acb069dc99d805957f43efd5cb4a143a8e45dabbdb" + sha256 cellar: :any_skip_relocation, arm64_linux: "1d413e1b967c434385b994e59c90cc98ea2662e8f5e2d53200a32d1f48915f1e" + sha256 cellar: :any_skip_relocation, x86_64_linux: "f5fe0ba13ffe18c87373b64a42d6a8633967e84d11d9a241870b3b83e75d94ae" end depends_on "graphviz" From 239d4f2c4b0a30d0f172f50d74c7a465ca5828d5 Mon Sep 17 00:00:00 2001 From: nodenv bot <68817010+nodenv-bot@users.noreply.github.com> Date: Fri, 9 May 2025 07:59:25 -0400 Subject: [PATCH 0504/1364] node-build 5.3.36 Created by https://github.com/mislav/bump-homebrew-formula-action --- Formula/n/node-build.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/n/node-build.rb b/Formula/n/node-build.rb index 1ecf6709ed06e..2674c01d2f56d 100644 --- a/Formula/n/node-build.rb +++ b/Formula/n/node-build.rb @@ -1,8 +1,8 @@ class NodeBuild < Formula desc "Install NodeJS versions" homepage "https://github.com/nodenv/node-build" - url "https://github.com/nodenv/node-build/archive/refs/tags/v5.3.35.tar.gz" - sha256 "75ad2e3d4a86f1848d6117a8562a4bf5d31449e11dc9572627f553bfeebb7fc0" + url "https://github.com/nodenv/node-build/archive/refs/tags/v5.3.36.tar.gz" + sha256 "a56cc69117e5bd641db8f23a245d43f20bdaf87768af9d410a352458104db32b" license "MIT" head "https://github.com/nodenv/node-build.git", branch: "master" From 3c52b010845ff998dedf777682345ccae331a78b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 12:00:36 +0000 Subject: [PATCH 0505/1364] neonctl: update 2.9.1 bottle. --- Formula/n/neonctl.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/n/neonctl.rb b/Formula/n/neonctl.rb index 2b38d8a732a58..6ec3afd7ab461 100644 --- a/Formula/n/neonctl.rb +++ b/Formula/n/neonctl.rb @@ -6,13 +6,13 @@ class Neonctl < Formula license "Apache-2.0" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "491ea5e29bdaa5cd12b82f2412c11a5a8eb34baac66b8d145219b5403d595b0b" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "491ea5e29bdaa5cd12b82f2412c11a5a8eb34baac66b8d145219b5403d595b0b" - sha256 cellar: :any_skip_relocation, arm64_ventura: "491ea5e29bdaa5cd12b82f2412c11a5a8eb34baac66b8d145219b5403d595b0b" - sha256 cellar: :any_skip_relocation, sonoma: "59bfefb34b9f8003d242e2d1cc8dcb2886afb7e0401c09bd64c69010418fe6ea" - sha256 cellar: :any_skip_relocation, ventura: "59bfefb34b9f8003d242e2d1cc8dcb2886afb7e0401c09bd64c69010418fe6ea" - sha256 cellar: :any_skip_relocation, arm64_linux: "b8521b047d9fa3f8f6979f2a3a49832efb00c3aee7984166a906b948e40c7be7" - sha256 cellar: :any_skip_relocation, x86_64_linux: "491ea5e29bdaa5cd12b82f2412c11a5a8eb34baac66b8d145219b5403d595b0b" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "edd8331f51c25bfd570dd98483c76e84374c9d87e72553be9c24f3630d20709a" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "edd8331f51c25bfd570dd98483c76e84374c9d87e72553be9c24f3630d20709a" + sha256 cellar: :any_skip_relocation, arm64_ventura: "edd8331f51c25bfd570dd98483c76e84374c9d87e72553be9c24f3630d20709a" + sha256 cellar: :any_skip_relocation, sonoma: "a457135c01ac513047ad7f6621ee19ae3bb8f2d8e84b433574deb8fe97d6be32" + sha256 cellar: :any_skip_relocation, ventura: "a457135c01ac513047ad7f6621ee19ae3bb8f2d8e84b433574deb8fe97d6be32" + sha256 cellar: :any_skip_relocation, arm64_linux: "edd8331f51c25bfd570dd98483c76e84374c9d87e72553be9c24f3630d20709a" + sha256 cellar: :any_skip_relocation, x86_64_linux: "edd8331f51c25bfd570dd98483c76e84374c9d87e72553be9c24f3630d20709a" end depends_on "node" From 05b85ce97112e09a9f3119efe54e5499c14ac43b Mon Sep 17 00:00:00 2001 From: Daeho Ro <40587651+daeho-ro@users.noreply.github.com> Date: Fri, 9 May 2025 12:04:07 +0000 Subject: [PATCH 0506/1364] hellwal: add 1.0.4 bottle. --- Formula/h/hellwal.rb | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Formula/h/hellwal.rb b/Formula/h/hellwal.rb index 9cfa33f236f78..382d4673852a6 100644 --- a/Formula/h/hellwal.rb +++ b/Formula/h/hellwal.rb @@ -5,6 +5,15 @@ class Hellwal < Formula sha256 "a33d1c5257fe4b42e92cac7f055c6ed1a3e857fe52ab435924b316947d55e200" license "MIT" + bottle do + sha256 cellar: :any_skip_relocation, arm64_sequoia: "5b29e58646b2391aa7789e5a9f5f123ca3348881cf77685cd1e8167cdc0e0ba9" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "e70ac6fbd2861baba5a96267ba402c2a824579d146c14c8a24febbac5adbcb5f" + sha256 cellar: :any_skip_relocation, arm64_ventura: "232ae8888f812cc13028e638d484ce639187362e35f257ca73b4907c8682a2cd" + sha256 cellar: :any_skip_relocation, sonoma: "ad61a0ce7e32d075464eaeb3eaadd263eadc50c1d03b9df920da1e8cbf81a72a" + sha256 cellar: :any_skip_relocation, ventura: "419049de2bda47e54b8a8ab224c5ecdab29306522541e72e6cc43eb217bb8c1e" + sha256 cellar: :any_skip_relocation, x86_64_linux: "6b23953290d7eb3c7c73158227ef69b2517986868324ec96ac69c0e71c75e207" + end + def install system "make", "install", "DESTDIR=#{bin}" end From 4221e75286275243cc731007fd987c1ba987b3ba Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 12:10:05 +0000 Subject: [PATCH 0507/1364] llama.cpp: update 5320 bottle. --- Formula/l/llama.cpp.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/l/llama.cpp.rb b/Formula/l/llama.cpp.rb index 7b9ab07f41d5f..bf485ed2024f8 100644 --- a/Formula/l/llama.cpp.rb +++ b/Formula/l/llama.cpp.rb @@ -19,13 +19,13 @@ class LlamaCpp < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "7aa55b9a36d917a1f404a14b189dd66a23a0ad34060fa167654d5535cf992473" - sha256 cellar: :any, arm64_sonoma: "b71185dd3ca6a9f7819dfe94fecf591dc77813603d7145bae513e086d17ee001" - sha256 cellar: :any, arm64_ventura: "58d411d0a866073243a9cbec0c09a2c3f13edd1de775631a65948c26e65646b8" - sha256 cellar: :any, sonoma: "66400e7c354932ebd925781c04256d32d6c1927546ffc9fddb060800f847be91" - sha256 cellar: :any, ventura: "65eb29d108f7ba83df13563e1e1d3dbdd407cdd54ebb072995f8884dde7bd7e0" - sha256 cellar: :any_skip_relocation, arm64_linux: "e86717c62e9e564f3fc6f12f9238b7325a4e012053b6d1d950f0bc9b0e397f68" - sha256 cellar: :any_skip_relocation, x86_64_linux: "5fea6fe827d863cb9e42fc55b08aa6cba1473ad2a40338d81de6c91930511711" + sha256 cellar: :any, arm64_sequoia: "9a810fc79148d7ad4ddb1b4b2b9f36f44aaaf553fc39354ab62f8334ca9b9dda" + sha256 cellar: :any, arm64_sonoma: "4bc3931ff8e791fa336a0317501957b1c73b816e1f43e93cba31ac9b11c84b3b" + sha256 cellar: :any, arm64_ventura: "3cdbc5162b259cbe84c19353b7bfec7ac4aaacfadda11c536a916de241e1fbb6" + sha256 cellar: :any, sonoma: "25ec7e92db857b51f13c229634f520465d2c49d8685637fd887768df8440be67" + sha256 cellar: :any, ventura: "93b049332afcdde3af9c19f32b259f83597a55a4a862962a9c52ac7fedc43445" + sha256 cellar: :any_skip_relocation, arm64_linux: "192f778cbe0cfef7a16cbe42bc5b339bd107dd5ac355c83995019f04fe62411f" + sha256 cellar: :any_skip_relocation, x86_64_linux: "6f408c287624f7b56809c9788ff4450a4cbf5115f18b9806886943f9ea4cde9b" end depends_on "cmake" => :build From c50ee6e84d89f8ce848581c1b69b0aad69d7562e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 12:25:06 +0000 Subject: [PATCH 0508/1364] maturin: update 1.8.5 bottle. --- Formula/m/maturin.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/m/maturin.rb b/Formula/m/maturin.rb index a1bf64f9661ce..4fa59de7f5af3 100644 --- a/Formula/m/maturin.rb +++ b/Formula/m/maturin.rb @@ -7,13 +7,13 @@ class Maturin < Formula head "https://github.com/PyO3/maturin.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "16d60fe01ca76e124af5cf5c282644b94bcf8dc65dcb1d385619f0be28682852" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "77b2eed87bd60268aada9b343b705800de4cb9ae74c5cb2b1ebecdc81274d56f" - sha256 cellar: :any_skip_relocation, arm64_ventura: "ed30655e916d3d29684ac88fd78fd139a309850dcf61c30db083529e108ac048" - sha256 cellar: :any_skip_relocation, sonoma: "b61d5933f5c7b947dd4ac15b73b2992c3d2bb75be239e408429edc306bfd66d7" - sha256 cellar: :any_skip_relocation, ventura: "41ee546127ae7c3b750b649c2859d02fe5ec1c24d57ea74361595a9b6ff31eaa" - sha256 cellar: :any_skip_relocation, arm64_linux: "0d32f4e935d2dc645f5430f6fc1ee8d007cc0e532a95e91a64eb94237a78a509" - sha256 cellar: :any_skip_relocation, x86_64_linux: "c4eea3bb116c873f954c18704ee7fc4f37a8323f1d7c9c4277545c989c0e8d12" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "45023642be0bdbeebd2ccb366854671a22f4c48f062e761819db133c0f484a58" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "8a3163f46427caf116fea34298c29a01826a8a128f85e87db16a96b625c819d5" + sha256 cellar: :any_skip_relocation, arm64_ventura: "4468f591de327b6a1d2cd9b85066cb9bb018510c32dcf894b2bbf3bbfc202917" + sha256 cellar: :any_skip_relocation, sonoma: "96e60903db8132db5caea8c8d23e71cee848561a9b4afe3dfc912b58f223c30f" + sha256 cellar: :any_skip_relocation, ventura: "e12da1af1f31873a5412d56a437bc57cc9205cb2285ae510b76d99b085523946" + sha256 cellar: :any_skip_relocation, arm64_linux: "4bcce8890749e3f37bf3658b14ff428e6d1c7700b8f49da87f171208656e5a41" + sha256 cellar: :any_skip_relocation, x86_64_linux: "18e142ff49fe39aa3a7cf5cbdf44b146c650f1954724421e298e9c12a8f5dad7" end depends_on "python@3.13" => :test From be3f1df38485e71fa062ff3190fe356800aa8178 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 12:25:47 +0000 Subject: [PATCH 0509/1364] typos-lsp: update 0.1.37 bottle. --- Formula/t/typos-lsp.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/t/typos-lsp.rb b/Formula/t/typos-lsp.rb index d10ab16ef3a04..eddc1328c31db 100644 --- a/Formula/t/typos-lsp.rb +++ b/Formula/t/typos-lsp.rb @@ -11,13 +11,13 @@ class TyposLsp < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "ee3915e3e9617c1924eab3c8a911ed61fa53b7206c4e4a4f026ba48584b8b5c0" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "f78129f30fccbae78d3ea8694bbefb4fbee51929655929a57ad3a59053f2a4e3" - sha256 cellar: :any_skip_relocation, arm64_ventura: "303570d8c7ce686d08c5235ba515b199d3f8e6234b54bcc05078b161e9042379" - sha256 cellar: :any_skip_relocation, sonoma: "04c34111dcd0d81a53f844a97db9bec7c7980cb2843c19a10b6d83dd3f36cb9e" - sha256 cellar: :any_skip_relocation, ventura: "7c6b085d65cd0c47907967b724326f74a935787b005f4b6eea2187aff61a5ba3" - sha256 cellar: :any_skip_relocation, arm64_linux: "17590a83cbffb34775cb3889a4c94517819d32ef1410cf7d6ee079d2d1e37d70" - sha256 cellar: :any_skip_relocation, x86_64_linux: "26adc0fda5ccba800edb5346be6849ff61a5934322f0f71a7f312d3f49d82332" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "d8a096a4453e5b4f20d8ddb20e87abac2539c42230e2cf29daa0c5af58565c40" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "4ffd1ecafd76a83b10cccf8858338686a90e9fc89e16da98fb9a5ff1a5b8fa5b" + sha256 cellar: :any_skip_relocation, arm64_ventura: "4ccdf0b65429819ad75c9a00fadec5fcacf05c0039f8a295973ae72b3e0e9a77" + sha256 cellar: :any_skip_relocation, sonoma: "9d1ff0a88502af0bc61d093bb9cc471c927b3584c06aed939ca1cbcd67be055c" + sha256 cellar: :any_skip_relocation, ventura: "f49f5d49dc645a6417045bbc7767d71eb12f9795f583123f4d7e3244d9c12ae6" + sha256 cellar: :any_skip_relocation, arm64_linux: "002ffc822da05839fded73487b51dcff18b10584789e7e5abfe876be4ca366a8" + sha256 cellar: :any_skip_relocation, x86_64_linux: "b0cd6f7c9324aaabefdfa19538c250772aadc76fc43cadecac10219afcefd6d0" end depends_on "rust" => :build From 998d5671a53d503b2307850b4ecb761af2ad4b1d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 12:36:26 +0000 Subject: [PATCH 0510/1364] renovate: update 40.11.0 bottle. --- Formula/r/renovate.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/r/renovate.rb b/Formula/r/renovate.rb index 6d010306f2c56..4e7e0810f0365 100644 --- a/Formula/r/renovate.rb +++ b/Formula/r/renovate.rb @@ -17,13 +17,13 @@ class Renovate < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "8fcead4b40bdebac34f6fb7f26e01a7847f194865521b41618ce3dd5b22b912b" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "55d58a4b1195e419330b5337be66ccce61f9003c2ab11c162e0416a08641c250" - sha256 cellar: :any_skip_relocation, arm64_ventura: "3a59bfab73c8bc6c0de529e52f06816cb6ceda225305a8fbb7e7ea5e36336bf8" - sha256 cellar: :any_skip_relocation, sonoma: "e78d052d211e7d76e033d041d4a1be284bba50789b53885d54d53172c194d763" - sha256 cellar: :any_skip_relocation, ventura: "7891058a4a467c24208e230cc065d32b80df2d91d60c11139166facc9e6f37c5" - sha256 cellar: :any_skip_relocation, arm64_linux: "c8de081c06bfb3e57552d0957875045743b60c703c9d0a405b034618a37e87f0" - sha256 cellar: :any_skip_relocation, x86_64_linux: "cab83d5ddf91cebf4dbc3754756469fa9ba0245d78bd800b1ec704ff2a96d086" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "ca7dbf8850d5d99cf30244eb9a3005c80fb42f92515b45a24b6c2411ccf2f5b5" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "6885a91e9d46dd5647578e041330b2fc5f6a7c289b2a373a490608759dd5284d" + sha256 cellar: :any_skip_relocation, arm64_ventura: "279a32df2732329a6280220d3be3c7efbfc222de5416303c2f0d5a8793e2c11a" + sha256 cellar: :any_skip_relocation, sonoma: "0aa8c252b9ba207badf4e11f0edc8d8f4c2ef27c7fd4711c738cc30dbb242e35" + sha256 cellar: :any_skip_relocation, ventura: "ae4ef6f3a0b5dab77a6e75e4c9129369801c25e88ba5fba3d80ae7985b7614e3" + sha256 cellar: :any_skip_relocation, arm64_linux: "d523c967216d6954d7e4198e3e134c5512542033c227818410face56187ccc35" + sha256 cellar: :any_skip_relocation, x86_64_linux: "76a2f82113f66a86b8775297ed350e950d459711532db821f1cc419a3fb4d7f5" end depends_on "node@22" From 0f5e9290efe57c1b0e8e22d99de425adc8c17dde Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 12:39:11 +0000 Subject: [PATCH 0511/1364] libpq: update 17.5 bottle. --- Formula/lib/libpq.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/lib/libpq.rb b/Formula/lib/libpq.rb index 254eaaaf2275e..2dd9d27cdb5ff 100644 --- a/Formula/lib/libpq.rb +++ b/Formula/lib/libpq.rb @@ -11,13 +11,13 @@ class Libpq < Formula end bottle do - sha256 arm64_sequoia: "d8ade9cb5deef5a893d1358e0501444d7d14a7dd216d1722b55cf8e1dbe765e3" - sha256 arm64_sonoma: "edbf11d3ab9246ef639cbb56106e39dc696f49d6dc7be22075af3c60575888f9" - sha256 arm64_ventura: "e99ecda84fb5f0916f880c9c948f09b39c9d41e8753fd1fbc8bba6df69fac2ea" - sha256 sonoma: "56e9a1b6989876211ac979f936f54aed74af06371f039b331f15c970d9924ec7" - sha256 ventura: "020d0f1ad534770b2341a0bc0c836377a5e741fa1aa288a2c700e980d1f9ced1" - sha256 arm64_linux: "b53f6a940943be15290dac3a7efe1985c4595e78263a2c81622dc74ebe232715" - sha256 x86_64_linux: "85f0b26d9fca6e6edb0683ce4a39279cdbce9c447bcd278041c1bac9e8ef5af8" + sha256 arm64_sequoia: "c6765fe0928bbf4748d3b3dde8526ecf2f72b3cc5228de9148bfea3d39867ed8" + sha256 arm64_sonoma: "6be0459aa835312193f0c5016c476d631586ec0272eaa9b8c18545b6146b3a71" + sha256 arm64_ventura: "f0062e5202103dbc0cd2e7d9cf1fd759d62611931eb904e6024bad003e8ff6f7" + sha256 sonoma: "50d492965b1860f1e7d648fdc77d2768ac4d995e659968a7e872a66370d6213d" + sha256 ventura: "a8bee90dd7dbc4876f42d19ac69716738b381a356230dc45ed5a923a1434e79b" + sha256 arm64_linux: "82ab721a86a42257f2e2152afdc6b080a07b0e93393c580dbd01a2352a2d8309" + sha256 x86_64_linux: "0c73376d125c4d80714135ebbd2deb1aa56bb4938f5420ecf4fb592beba55295" end keg_only "conflicts with postgres formula" From 4b12f685462aa881ed0041fcfa83eae5deb8672f Mon Sep 17 00:00:00 2001 From: Daeho Ro Date: Fri, 9 May 2025 21:39:51 +0900 Subject: [PATCH 0512/1364] jolie: update checksum --- Formula/j/jolie.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/j/jolie.rb b/Formula/j/jolie.rb index 56dede0754020..a38b0763a19d0 100644 --- a/Formula/j/jolie.rb +++ b/Formula/j/jolie.rb @@ -2,7 +2,7 @@ class Jolie < Formula desc "Service-oriented programming language" homepage "https://www.jolie-lang.org/" url "https://github.com/jolie/jolie/releases/download/v1.12.5/jolie-1.12.5.jar" - sha256 "95afe6929008e5d09494889a5f97e2b5811153d5b4d2d3ef997e26d51cb8faec" + sha256 "69dfaf3724da1202a10e0a44068778da8b5c2258f0e7166365ea7e9522320de8" license "LGPL-2.1-only" bottle do From 61ae7428914b81022c2cf0d5f1fd0ff84f4bbcd8 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 12:49:32 +0000 Subject: [PATCH 0513/1364] node-build: update 5.3.36 bottle. --- Formula/n/node-build.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/n/node-build.rb b/Formula/n/node-build.rb index 2674c01d2f56d..e35f092085bc3 100644 --- a/Formula/n/node-build.rb +++ b/Formula/n/node-build.rb @@ -12,7 +12,7 @@ class NodeBuild < Formula end bottle do - sha256 cellar: :any_skip_relocation, all: "310db352c8721c945362cd5a43957e0ed5bc3df754fe0d1e07f257157d019525" + sha256 cellar: :any_skip_relocation, all: "b0f96fbfc5f55bccc534ce835bbbb4c500db5b8989b6268a225de32240424556" end depends_on "autoconf" From 331463fc8107603705960a1034ba84c3d1fc96ba Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 13:00:13 +0000 Subject: [PATCH 0514/1364] zizmor: update 1.7.0 bottle. --- Formula/z/zizmor.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/z/zizmor.rb b/Formula/z/zizmor.rb index 6f98193de2b03..bcd0d542389a5 100644 --- a/Formula/z/zizmor.rb +++ b/Formula/z/zizmor.rb @@ -6,13 +6,13 @@ class Zizmor < Formula license "MIT" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "06cdf464e76734631bb7e218623cc20e4a1c79a60c48fe0214e5bf089377edd5" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "627df6dc06fc48c7cd01aca11096ab7b9da8ed3bac34ca31c6c83a1f4e2c4bfb" - sha256 cellar: :any_skip_relocation, arm64_ventura: "62e651f7551a649a71f228ac0843e737bd88079abf914825fead17114489eab8" - sha256 cellar: :any_skip_relocation, sonoma: "62c2b7d26c945adbd8679498612d5ad2a52b06ba25162edd6bb40eab24dabb36" - sha256 cellar: :any_skip_relocation, ventura: "7ff2e163033021070d0ed7efdaf32331002df1df6b549881e672c201cc61ac02" - sha256 cellar: :any_skip_relocation, arm64_linux: "586d9e955b0037151269896184c4e8ca5cd8e15364abd008cfd209d24fd90a73" - sha256 cellar: :any_skip_relocation, x86_64_linux: "1e1e45ec0461b3db2f198652a8f3a00bb227bbfe9ce929580a0e13ab13c94347" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "f70ae4fb964b1cf3740c0613db1f3b5fea6ca19085c47a29a492ccd81cb4f671" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "2d8e00f1e155a4a00464cc5ad0c2128152a58a2302d032b26b529d47cd669490" + sha256 cellar: :any_skip_relocation, arm64_ventura: "b8d76923ae416df44d70d3d6ef31b878a2ec906e66562c9dab97f96872a1c9ec" + sha256 cellar: :any_skip_relocation, sonoma: "3da95aa53caa2597862f03ffd357270a47e13e27a91a7eeec12b9243912ecaa2" + sha256 cellar: :any_skip_relocation, ventura: "f686808a51217cd1df4f499f688c661f50fc6cf651765a2dfb5a2f9414ff0fae" + sha256 cellar: :any_skip_relocation, arm64_linux: "7dbef99a06b10f436ace04fdc5542691431122a8e539ce671c958ae89fedcdfa" + sha256 cellar: :any_skip_relocation, x86_64_linux: "bb26678f3ac7345ea29e4bb12b355f0ad97b8f9f1508fe764b2f265b64672c70" end depends_on "pkgconf" => :build From a89a68cacea4c838f3998796d59673c42c214310 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 13:10:27 +0000 Subject: [PATCH 0515/1364] spdlog: update 1.15.3 bottle. --- Formula/s/spdlog.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/s/spdlog.rb b/Formula/s/spdlog.rb index 91eb3883064f9..eb3f69b52eae4 100644 --- a/Formula/s/spdlog.rb +++ b/Formula/s/spdlog.rb @@ -7,13 +7,13 @@ class Spdlog < Formula head "https://github.com/gabime/spdlog.git", branch: "v1.x" bottle do - sha256 cellar: :any, arm64_sequoia: "fce7e7460c9221b3cac3d0217cc0308805c7c30e4a01fcd7a8e76639029e6b67" - sha256 cellar: :any, arm64_sonoma: "fc56bc102f9b5fe33c7e30948fa92032116d0f56b2d57933da6310716f34dccf" - sha256 cellar: :any, arm64_ventura: "fc03c6140eff2abbb534c3f5031fa2449ae0495c210868c323d8ef5ed2bd88e7" - sha256 cellar: :any, sonoma: "d504d88ce3da851f6d9ead5970f3cd6572c0333f1b86d5b7888628b202e5c806" - sha256 cellar: :any, ventura: "82e8917975135e05b0a741fac78d24592c91fd0034f691acc15dd9998b6f33e2" - sha256 cellar: :any_skip_relocation, arm64_linux: "5c4880279f344e870b2c2bb96a4b1ca4eb489823e871e0c6b33520fa13e0fc02" - sha256 cellar: :any_skip_relocation, x86_64_linux: "971b2b89a5d5952e49e93de2bcb504c68265bd108b19a265617d00908b8b16e1" + sha256 cellar: :any, arm64_sequoia: "b885d77ddec4626dd6f31bc9a94fae28b4bd3ac4e5e91c36624891d262d6d3de" + sha256 cellar: :any, arm64_sonoma: "222a1f363fe1b82e9e830c7a42f98d73c7b9673e7256502cdc66093193e2fee3" + sha256 cellar: :any, arm64_ventura: "78d3b81c70195115a7d762b9b39efaef6d45652488654a1104c237138a5f3898" + sha256 cellar: :any, sonoma: "6407f99157debc92ed12594a56cc98b9513e6d3617c5bf0ccad7127c8e0340a1" + sha256 cellar: :any, ventura: "f62555b2fb8dcc64a581c3f2efca87e50b49aecbc62d3492b4fb910c97442cb3" + sha256 cellar: :any_skip_relocation, arm64_linux: "774a3ccba115e20c6b0c594bb4c6b554de3c65f1454666d86a4aa0028d8591ff" + sha256 cellar: :any_skip_relocation, x86_64_linux: "334f9f05e98a52ecea6bbdbaebbfb597936d4169c935018eff7cd2f1789dcebd" end depends_on "cmake" => :build From 28493f2a89db1f245907c82db1bab0495b570f91 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 13:21:58 +0000 Subject: [PATCH 0516/1364] prowler: update 5.6.0 bottle. --- Formula/p/prowler.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/p/prowler.rb b/Formula/p/prowler.rb index eac8d4fa73e12..f3fd75861906a 100644 --- a/Formula/p/prowler.rb +++ b/Formula/p/prowler.rb @@ -8,13 +8,13 @@ class Prowler < Formula license "Apache-2.0" bottle do - sha256 cellar: :any, arm64_sequoia: "20bb2201f0f3ca0cdbefc5a19c7ee12d6190e6f331aaf71a1bf20e515f21765d" - sha256 cellar: :any, arm64_sonoma: "fa5d9d8b151ad3ba1512d9ace7169cccbc80e0e52abcb4a908946cdf8aec5a89" - sha256 cellar: :any, arm64_ventura: "fff62c2eae4dab8945fbf84192e6926d76ea5f04c68bf62b7435ccb60bbd2b7d" - sha256 cellar: :any, sonoma: "cfcc63b46022032210a29608cef0514d323dd4acf8276bcfc1de40a5f74d6c3a" - sha256 cellar: :any, ventura: "ab566ec9ad1248c327cd5580c2a83f2edff9fe2426c6fa3db096a7d452a7269e" - sha256 cellar: :any_skip_relocation, arm64_linux: "436745b1a22a0b2d8ad338dc9ebb6f3fe137e06cc4d1ac3db292787e3efdf49a" - sha256 cellar: :any_skip_relocation, x86_64_linux: "2568a6ebd5699ba7ff1a6d73b15f00d5bec3b5e9c770060528ce6bd6420e0391" + sha256 cellar: :any, arm64_sequoia: "1248ba67b0f33a0326041eb0733d1674029f0ebb3fcce21c77d42f241ab4c5b1" + sha256 cellar: :any, arm64_sonoma: "c0da586baf9f61c0978d815719478fa6631df52bdc72cdcc0beef9e1d02d8b28" + sha256 cellar: :any, arm64_ventura: "8a8cb17d00ad3c159eea6c2eb97db82af8a524523f063592770e69720ae49c0f" + sha256 cellar: :any, sonoma: "8bb8ddc9c83707977a163c5043dbbe8d1acddbec6665fe6d1443fa3c6bf7034b" + sha256 cellar: :any, ventura: "892f76b20ab7d1bb4bc17035b2cc7a23b18b9fa982caaa0278a4db10662e6dc9" + sha256 cellar: :any_skip_relocation, arm64_linux: "77e87d53f6642204199754763609a448a6a9e5a38bd08fff0ad09f7519eb882a" + sha256 cellar: :any_skip_relocation, x86_64_linux: "92563a040f176664aa55fe100491521c82364c74fd233ff8e77382ff99572e25" end depends_on "cmake" => :build From 593d3fd75ebf74b133938bfde3c956635f83b692 Mon Sep 17 00:00:00 2001 From: William Woodruff Date: Fri, 9 May 2025 09:29:26 -0400 Subject: [PATCH 0517/1364] zizmor: add tab completion Signed-off-by: William Woodruff --- Formula/z/zizmor.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Formula/z/zizmor.rb b/Formula/z/zizmor.rb index bcd0d542389a5..cda5d95102430 100644 --- a/Formula/z/zizmor.rb +++ b/Formula/z/zizmor.rb @@ -20,6 +20,8 @@ class Zizmor < Formula def install system "cargo", "install", *std_cargo_args + + generate_completions_from_executable(bin/"zizmor", shell_parameter_format: "--completions=") end test do From 3173332486ff9b40dc46007e0089a46b4697624b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 13:59:22 +0000 Subject: [PATCH 0518/1364] codesnap 0.12.5 --- Formula/c/codesnap.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/codesnap.rb b/Formula/c/codesnap.rb index 8981d86f21581..bbe5d48ad7a80 100644 --- a/Formula/c/codesnap.rb +++ b/Formula/c/codesnap.rb @@ -1,8 +1,8 @@ class Codesnap < Formula desc "Generates code snapshots in various formats" homepage "https://github.com/codesnap-rs/codesnap" - url "https://github.com/codesnap-rs/codesnap/archive/refs/tags/v0.12.4.tar.gz" - sha256 "33ef4168ce1aa589b6f1454242fa079bb8f69fabc7baf58313064c6554608438" + url "https://github.com/codesnap-rs/codesnap/archive/refs/tags/v0.12.5.tar.gz" + sha256 "8b8fe2760ff373e5b3efdce684470399453c7313c554f1fa33b19c94804f56a9" license "MIT" head "https://github.com/codesnap-rs/codesnap.git", branch: "main" From 439067d14a53a65668a14e0d36d81010ce9fbbde Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 14:05:17 +0000 Subject: [PATCH 0519/1364] dunamai 1.24.1 --- Formula/d/dunamai.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/d/dunamai.rb b/Formula/d/dunamai.rb index 8ba2d60ecfe53..a0ace60d006ed 100644 --- a/Formula/d/dunamai.rb +++ b/Formula/d/dunamai.rb @@ -3,8 +3,8 @@ class Dunamai < Formula desc "Dynamic version generation" homepage "https://github.com/mtkennerly/dunamai" - url "https://files.pythonhosted.org/packages/7b/39/1d9099f7529c61c80ef00c88b385493b9f6183582ac9bca5af84fe62311b/dunamai-1.24.0.tar.gz" - sha256 "c2d1a9f7359033c04dfc1865481d890acc5be4ac02596ad3275b854aba342294" + url "https://files.pythonhosted.org/packages/54/22/7f46b0146ef614cd6f80e4bcb188dabe33e90b4e0af028e16f597f5826ad/dunamai-1.24.1.tar.gz" + sha256 "3aa3348f77242da8628b23f11e89569343440f0f912bcef32a1fa891cf8e7215" license "MIT" bottle do From 61787ccff2bcc06b88a868ab9cc3d92655fd1cf5 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 14:19:05 +0000 Subject: [PATCH 0520/1364] keploy 2.6.4 --- Formula/k/keploy.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/k/keploy.rb b/Formula/k/keploy.rb index 165224dbe674e..2dba119969d0b 100644 --- a/Formula/k/keploy.rb +++ b/Formula/k/keploy.rb @@ -1,8 +1,8 @@ class Keploy < Formula desc "Testing Toolkit creates test-cases and data mocks from API calls, DB queries" homepage "https://keploy.io" - url "https://github.com/keploy/keploy/archive/refs/tags/v2.6.2.tar.gz" - sha256 "3272d8941f7c03efb854f1a00f2dce537c7d2993bc49ff60e201e4ac98daca65" + url "https://github.com/keploy/keploy/archive/refs/tags/v2.6.4.tar.gz" + sha256 "5690138639f75cb68448fbd19abee404611503b4eb4657c1120f03fb918ddd17" license "Apache-2.0" head "https://github.com/keploy/keploy.git", branch: "main" From 8d8ce3b442f786b8b10841b605aaff5e460a92fd Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 14:25:29 +0000 Subject: [PATCH 0521/1364] zizmor: update 1.7.0 bottle. --- Formula/z/zizmor.rb | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Formula/z/zizmor.rb b/Formula/z/zizmor.rb index cda5d95102430..f5ed33691d4a7 100644 --- a/Formula/z/zizmor.rb +++ b/Formula/z/zizmor.rb @@ -6,13 +6,14 @@ class Zizmor < Formula license "MIT" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "f70ae4fb964b1cf3740c0613db1f3b5fea6ca19085c47a29a492ccd81cb4f671" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "2d8e00f1e155a4a00464cc5ad0c2128152a58a2302d032b26b529d47cd669490" - sha256 cellar: :any_skip_relocation, arm64_ventura: "b8d76923ae416df44d70d3d6ef31b878a2ec906e66562c9dab97f96872a1c9ec" - sha256 cellar: :any_skip_relocation, sonoma: "3da95aa53caa2597862f03ffd357270a47e13e27a91a7eeec12b9243912ecaa2" - sha256 cellar: :any_skip_relocation, ventura: "f686808a51217cd1df4f499f688c661f50fc6cf651765a2dfb5a2f9414ff0fae" - sha256 cellar: :any_skip_relocation, arm64_linux: "7dbef99a06b10f436ace04fdc5542691431122a8e539ce671c958ae89fedcdfa" - sha256 cellar: :any_skip_relocation, x86_64_linux: "bb26678f3ac7345ea29e4bb12b355f0ad97b8f9f1508fe764b2f265b64672c70" + rebuild 1 + sha256 cellar: :any_skip_relocation, arm64_sequoia: "fe997f8811e7eed3e1435a75557269e5ae510b047dfc169a641555a699ad2dc6" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "89921f02ba68bac05eaff29c8c1f7cb3a707f9b89710b25b51dfaa1b4755f86b" + sha256 cellar: :any_skip_relocation, arm64_ventura: "c43af3dd890eb1782e27aeeb772cf589f724529b4199c879d598360a7bbb5c44" + sha256 cellar: :any_skip_relocation, sonoma: "29dfae0331e97244575914cabd1858f30d7f5b17d18fa36524fbff4e0287a5a4" + sha256 cellar: :any_skip_relocation, ventura: "b8c53542d2d4c4c99c370c4e313013afec187bc3394cdf9e443858c52575325f" + sha256 cellar: :any_skip_relocation, arm64_linux: "bcce1f98efb0beaafd24de5f3aa74a6d2d5dd8d2d563d4589d5df0959194aebd" + sha256 cellar: :any_skip_relocation, x86_64_linux: "f32ca3503f3465cad4d5fe6fab6905e10753b9c41b16887350b3d3cc69020821" end depends_on "pkgconf" => :build From 31466f37423fed4250e8ece54ff81736d5cb79c9 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 14:32:04 +0000 Subject: [PATCH 0522/1364] neonctl 2.9.2 --- Formula/n/neonctl.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/n/neonctl.rb b/Formula/n/neonctl.rb index 6ec3afd7ab461..8f29dec669080 100644 --- a/Formula/n/neonctl.rb +++ b/Formula/n/neonctl.rb @@ -1,8 +1,8 @@ class Neonctl < Formula desc "Neon CLI tool" homepage "https://neon.tech/docs/reference/neon-cli" - url "https://registry.npmjs.org/neonctl/-/neonctl-2.9.1.tgz" - sha256 "b45d698caa6b34805e8a3f9f110cd15057357610261fb8da514f01d63fdfbdf6" + url "https://registry.npmjs.org/neonctl/-/neonctl-2.9.2.tgz" + sha256 "680ea4a627427ee7c7e1f7ef7dae55deafe9a717cb941ca1eb03228adc8e02c9" license "Apache-2.0" bottle do From 2593eeb4a3248868e72cac112f27200e01ca388b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 14:34:14 +0000 Subject: [PATCH 0523/1364] oksh 7.7 --- Formula/o/oksh.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/o/oksh.rb b/Formula/o/oksh.rb index 7edffca90e813..843c24643aba1 100644 --- a/Formula/o/oksh.rb +++ b/Formula/o/oksh.rb @@ -1,8 +1,8 @@ class Oksh < Formula desc "Portable OpenBSD ksh, based on the public domain Korn shell (pdksh)" homepage "https://github.com/ibara/oksh" - url "https://github.com/ibara/oksh/releases/download/oksh-7.6/oksh-7.6.tar.gz" - sha256 "26b45fc3dcaab786db6b87dcd741ac572a7ef539dbb88ea22c43ed8b54405c74" + url "https://github.com/ibara/oksh/releases/download/oksh-7.7/oksh-7.7.tar.gz" + sha256 "98a758f590bc570e657263f56eb81577a018ff6d2f6e085f8efedf9d68749f95" license all_of: [:public_domain, "BSD-3-Clause", "ISC"] head "https://github.com/ibara/oksh.git", branch: "main" From f9f624cc906cf005aa17d4826f0031447576f65e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 14:37:47 +0000 Subject: [PATCH 0524/1364] pgrx 0.14.3 --- Formula/p/pgrx.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/p/pgrx.rb b/Formula/p/pgrx.rb index 6f971bc96e907..9dcf8f479ea05 100644 --- a/Formula/p/pgrx.rb +++ b/Formula/p/pgrx.rb @@ -1,8 +1,8 @@ class Pgrx < Formula desc "Build Postgres Extensions with Rust" homepage "https://github.com/pgcentralfoundation/pgrx" - url "https://github.com/pgcentralfoundation/pgrx/archive/refs/tags/v0.14.2.tar.gz" - sha256 "3d3d45d225756a7dadfaed3b22c3a0898b5292968314747c5f4de3c4a96f497d" + url "https://github.com/pgcentralfoundation/pgrx/archive/refs/tags/v0.14.3.tar.gz" + sha256 "af5e0026d9e734d1412f5dcf3be196b6b51f952867b6eb361f49df6d55fccf5f" license "MIT" bottle do From d0d95bf5837f981fbb91ea25cfaa69d6f431f66f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 14:47:12 +0000 Subject: [PATCH 0525/1364] snakemake 9.3.4 --- Formula/s/snakemake.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/s/snakemake.rb b/Formula/s/snakemake.rb index e99639abec203..a0a5875ab0a50 100644 --- a/Formula/s/snakemake.rb +++ b/Formula/s/snakemake.rb @@ -3,8 +3,8 @@ class Snakemake < Formula desc "Pythonic workflow system" homepage "https://snakemake.readthedocs.io/" - url "https://files.pythonhosted.org/packages/d4/3a/2ef43c366fa23a7c0a6776d2d874b663c3b5f68bef7969721f72df60405d/snakemake-9.3.3.tar.gz" - sha256 "734fd7f25ca3caec415689f3f35f151044b65f2d1ca50d4ca1035ec6edaf7d68" + url "https://files.pythonhosted.org/packages/6a/ff/022ebb177eb679fa0eb0e5baa4c317ca56cb0e8c30feadbf5a074630dc30/snakemake-9.3.4.tar.gz" + sha256 "1f90e675bf0d750d769ab6547697249084b0945fa46966a6f032c48f0594a5d7" license "MIT" head "https://github.com/snakemake/snakemake.git", branch: "main" @@ -40,8 +40,8 @@ class Snakemake < Formula end resource "charset-normalizer" do - url "https://files.pythonhosted.org/packages/16/b0/572805e227f01586461c80e0fd25d65a2115599cc9dad142fee4b747c357/charset_normalizer-3.4.1.tar.gz" - sha256 "44251f18cd68a75b56585dd00dae26183e102cd5e0f9f1466e6df5da2ed64ea3" + url "https://files.pythonhosted.org/packages/e4/33/89c2ced2b67d1c2a61c19c6751aa8902d46ce3dacb23600a283619f5a12d/charset_normalizer-3.4.2.tar.gz" + sha256 "5baececa9ecba31eff645232d59845c07aa030f0c81ee70184a90d35099a0e63" end resource "conda-inject" do @@ -140,8 +140,8 @@ class Snakemake < Formula end resource "platformdirs" do - url "https://files.pythonhosted.org/packages/b6/2d/7d512a3913d60623e7eb945c6d1b4f0bddf1d0b7ada5225274c87e5b53d1/platformdirs-4.3.7.tar.gz" - sha256 "eb437d586b6a0986388f0d6f74aa0cde27b48d0e3d66843640bfb6bdcdb6e351" + url "https://files.pythonhosted.org/packages/fe/8b/3c73abc9c759ecd3f1f7ceff6685840859e8070c4d947c93fae71f6a0bf2/platformdirs-4.3.8.tar.gz" + sha256 "3d512d96e16bcb959a814c9f348431070822a6496326a4be0911c40b5a74c2bc" end resource "psutil" do From df4c55597981f14acc962f49edcc1e12c53365be Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 14:51:08 +0000 Subject: [PATCH 0526/1364] tailwindcss 4.1.6 --- Formula/t/tailwindcss.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/t/tailwindcss.rb b/Formula/t/tailwindcss.rb index 672171962e58d..3a25e362dd040 100644 --- a/Formula/t/tailwindcss.rb +++ b/Formula/t/tailwindcss.rb @@ -1,8 +1,8 @@ class Tailwindcss < Formula desc "Utility-first CSS framework" homepage "https://tailwindcss.com" - url "https://registry.npmjs.org/@tailwindcss/cli/-/cli-4.1.5.tgz" - sha256 "7e83a4fec748ce4c35ef1f11249f06370ed11875051be210cd20b596fe4b435f" + url "https://registry.npmjs.org/@tailwindcss/cli/-/cli-4.1.6.tgz" + sha256 "84b9f4f6be5959a782aef1c6be5ab2b761b2652f9fc70ffd2897a3bfcfe949a4" license "MIT" head "https://github.com/tailwindlabs/tailwindcss.git", branch: "next" From 6417b7db9498c5ee736ce3f55c3c49df1340067a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 14:52:07 +0000 Subject: [PATCH 0527/1364] testkube 2.1.150 --- Formula/t/testkube.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/t/testkube.rb b/Formula/t/testkube.rb index e839a92111d49..707eea203502d 100644 --- a/Formula/t/testkube.rb +++ b/Formula/t/testkube.rb @@ -1,8 +1,8 @@ class Testkube < Formula desc "Kubernetes-native framework for test definition and execution" homepage "https://testkube.io" - url "https://github.com/kubeshop/testkube/archive/refs/tags/v2.1.149.tar.gz" - sha256 "77f15cd228a75124601f5fd79c57177c647cf24fc1d084575a9a7da95b2e2b56" + url "https://github.com/kubeshop/testkube/archive/refs/tags/v2.1.150.tar.gz" + sha256 "7f5c06c223f8e888ed2c5f341cf03de7f3a29271fdf478173351e7647a471d8f" license "MIT" head "https://github.com/kubeshop/testkube.git", branch: "main" From 748e3e7def68b504b5b059cbc7ceeb08f0904448 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 14:54:25 +0000 Subject: [PATCH 0528/1364] codesnap: update 0.12.5 bottle. --- Formula/c/codesnap.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/codesnap.rb b/Formula/c/codesnap.rb index bbe5d48ad7a80..883ce663fb735 100644 --- a/Formula/c/codesnap.rb +++ b/Formula/c/codesnap.rb @@ -7,13 +7,13 @@ class Codesnap < Formula head "https://github.com/codesnap-rs/codesnap.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "7f8bc31a0f0679316140653209b7cca185135949c5e8ada455c8104da4020be6" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "7240fcf2a191496282de4d306d0e3b12a3775a55655d05617a69ea4b7ff4f0a2" - sha256 cellar: :any_skip_relocation, arm64_ventura: "63784447a6eb54b3b2f6d4a0dd1fc6cbd63a7f274c98d7795f85366b0db391fb" - sha256 cellar: :any_skip_relocation, sonoma: "eb27002943f155d83f71c0abe3468f7a986f3487e6dee80a9f2beaa470ae5e92" - sha256 cellar: :any_skip_relocation, ventura: "eb73ec874cd1908a5a6d0760c4919d22f3e8d8b80cbb03fffd8e67df2458a71c" - sha256 cellar: :any_skip_relocation, arm64_linux: "82e4e6dbd4152640ab4a714358fb2c54027c06bd9217f98f4f0482603ba45f17" - sha256 cellar: :any_skip_relocation, x86_64_linux: "5749a3735d20ea7d7156f19ad545e1d45cb374f698942e642fe384ca2c279510" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "d856b602c69bec1edf844fae1d0b0db478990fe0b056ce2fd3cf634f11b6fe25" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "70d5cf99e309f65de7e6165718b85fc74540575cc54527c39b2edba6f42abd08" + sha256 cellar: :any_skip_relocation, arm64_ventura: "4f25953da13dc2dae3225af0efcbe0a204e430f880fdafa5923c86d286ac5e07" + sha256 cellar: :any_skip_relocation, sonoma: "d15706d9be90b1b0ccd44c5ec4d9eebc1e0f0dc7631f89d08eb183269c568cb9" + sha256 cellar: :any_skip_relocation, ventura: "f13fadf12e421eda053d94332f7573fabff492cc3625f29e9788a454d0721419" + sha256 cellar: :any_skip_relocation, arm64_linux: "c8d0c7295d6f4e6cf3ba195a8a21aca3fddbfb0aa50a3a42caffd485947b6195" + sha256 cellar: :any_skip_relocation, x86_64_linux: "a765e3dc0617d7f66a6983b2f1466f068d0986cdfc26d888cc3792416bd4c926" end depends_on "pkgconf" => :build From 3e896f90b470bbf21a0d0e87533ad5218cd48f5e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 14:54:44 +0000 Subject: [PATCH 0529/1364] dunamai: update 1.24.1 bottle. --- Formula/d/dunamai.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/d/dunamai.rb b/Formula/d/dunamai.rb index a0ace60d006ed..6317f93b0ae88 100644 --- a/Formula/d/dunamai.rb +++ b/Formula/d/dunamai.rb @@ -8,7 +8,7 @@ class Dunamai < Formula license "MIT" bottle do - sha256 cellar: :any_skip_relocation, all: "6dd7ec71034e04dba5dc663ed3a4c445124baf7e0277be99c8d72426cc02a268" + sha256 cellar: :any_skip_relocation, all: "269b3b6b072addd2141d0430e7d3fcc6c95c400821db6b8b079a8ec0c56f7bed" end depends_on "python@3.13" From 34441c8c637aef916c4e49dda9225fdee0fbb529 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 14:54:47 +0000 Subject: [PATCH 0530/1364] keploy: update 2.6.4 bottle. --- Formula/k/keploy.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/k/keploy.rb b/Formula/k/keploy.rb index 2dba119969d0b..17d9e9178307b 100644 --- a/Formula/k/keploy.rb +++ b/Formula/k/keploy.rb @@ -7,12 +7,12 @@ class Keploy < Formula head "https://github.com/keploy/keploy.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "eee48980b7fa657a7253a8de854c7c75352c879070e113c2fcd5175b436569b8" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "eee48980b7fa657a7253a8de854c7c75352c879070e113c2fcd5175b436569b8" - sha256 cellar: :any_skip_relocation, arm64_ventura: "eee48980b7fa657a7253a8de854c7c75352c879070e113c2fcd5175b436569b8" - sha256 cellar: :any_skip_relocation, sonoma: "df628530823014d486d795a7120483518d80de2d403f050805f9c5a4a34b5e52" - sha256 cellar: :any_skip_relocation, ventura: "df628530823014d486d795a7120483518d80de2d403f050805f9c5a4a34b5e52" - sha256 cellar: :any_skip_relocation, x86_64_linux: "65aa01e95d7a4e784f40780d00e789d23fdf4ad874a6bf016af4b0453f8baf89" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "c0ee4c9f0ce893e7318c7a3478adaea6451e516eb071446a4b1db1d673c1fb1f" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "c0ee4c9f0ce893e7318c7a3478adaea6451e516eb071446a4b1db1d673c1fb1f" + sha256 cellar: :any_skip_relocation, arm64_ventura: "c0ee4c9f0ce893e7318c7a3478adaea6451e516eb071446a4b1db1d673c1fb1f" + sha256 cellar: :any_skip_relocation, sonoma: "0f579a32870e9180713811cacccfd76edecd54f3f6a6b3e9ab377c6afdc8efea" + sha256 cellar: :any_skip_relocation, ventura: "0f579a32870e9180713811cacccfd76edecd54f3f6a6b3e9ab377c6afdc8efea" + sha256 cellar: :any_skip_relocation, x86_64_linux: "4ce6eed90000af405c4b91245cc3e4294d5e1086de6f80e0c72c9faddcdd6935" end depends_on "go" => :build From 626ce890e460c861f2125ef45a79b25ad06afd93 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 14:55:09 +0000 Subject: [PATCH 0531/1364] neonctl: update 2.9.2 bottle. --- Formula/n/neonctl.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/n/neonctl.rb b/Formula/n/neonctl.rb index 8f29dec669080..d42f8d6f5540d 100644 --- a/Formula/n/neonctl.rb +++ b/Formula/n/neonctl.rb @@ -6,13 +6,13 @@ class Neonctl < Formula license "Apache-2.0" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "edd8331f51c25bfd570dd98483c76e84374c9d87e72553be9c24f3630d20709a" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "edd8331f51c25bfd570dd98483c76e84374c9d87e72553be9c24f3630d20709a" - sha256 cellar: :any_skip_relocation, arm64_ventura: "edd8331f51c25bfd570dd98483c76e84374c9d87e72553be9c24f3630d20709a" - sha256 cellar: :any_skip_relocation, sonoma: "a457135c01ac513047ad7f6621ee19ae3bb8f2d8e84b433574deb8fe97d6be32" - sha256 cellar: :any_skip_relocation, ventura: "a457135c01ac513047ad7f6621ee19ae3bb8f2d8e84b433574deb8fe97d6be32" - sha256 cellar: :any_skip_relocation, arm64_linux: "edd8331f51c25bfd570dd98483c76e84374c9d87e72553be9c24f3630d20709a" - sha256 cellar: :any_skip_relocation, x86_64_linux: "edd8331f51c25bfd570dd98483c76e84374c9d87e72553be9c24f3630d20709a" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "34690b17434aac6e9badb3a6ab988ffd767e1340d488551d85d4b0b78ec6b29c" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "34690b17434aac6e9badb3a6ab988ffd767e1340d488551d85d4b0b78ec6b29c" + sha256 cellar: :any_skip_relocation, arm64_ventura: "34690b17434aac6e9badb3a6ab988ffd767e1340d488551d85d4b0b78ec6b29c" + sha256 cellar: :any_skip_relocation, sonoma: "360d71f2e532a47fc45749eabb98e7b965f5b20f380725b6d9a7e605656ecb23" + sha256 cellar: :any_skip_relocation, ventura: "360d71f2e532a47fc45749eabb98e7b965f5b20f380725b6d9a7e605656ecb23" + sha256 cellar: :any_skip_relocation, arm64_linux: "34690b17434aac6e9badb3a6ab988ffd767e1340d488551d85d4b0b78ec6b29c" + sha256 cellar: :any_skip_relocation, x86_64_linux: "34690b17434aac6e9badb3a6ab988ffd767e1340d488551d85d4b0b78ec6b29c" end depends_on "node" From 4ef57e2c3bf5e9333b57344ec2a967f9a58ba521 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 14:55:23 +0000 Subject: [PATCH 0532/1364] oksh: update 7.7 bottle. --- Formula/o/oksh.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/o/oksh.rb b/Formula/o/oksh.rb index 843c24643aba1..1d4c0590a548c 100644 --- a/Formula/o/oksh.rb +++ b/Formula/o/oksh.rb @@ -7,13 +7,13 @@ class Oksh < Formula head "https://github.com/ibara/oksh.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "7cac543c705cf353172ad80014192ab32009e13c9282f76351ee8fcc69a18cce" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "93b8cc437a4c6ba61ffa48e22180f780f44fee4b289fbee9a5f3329c73590eb9" - sha256 cellar: :any_skip_relocation, arm64_ventura: "ee1c16d52c54180c06655dab3844a24793616a6133caf129d9bc97c1cde8a9ec" - sha256 cellar: :any_skip_relocation, sonoma: "bcb1a11d8fc619e3930e90169b176465952ed0433ebcb542be10f3208254e6c3" - sha256 cellar: :any_skip_relocation, ventura: "ab69b4780f3199a9e48b076759d0b3665f48ea991ff9d1ea7bef5547a123c88a" - sha256 cellar: :any_skip_relocation, arm64_linux: "65142d25fc17a41c61238259bb23c356a0c2e4f4254a9cfd62bbd73dbf687a0a" - sha256 cellar: :any_skip_relocation, x86_64_linux: "8ef2738318950f311d1aea31ecbd228f3f556e2266612635da2dd1ce5d5b1639" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "9793c9e02f01a8feff896ebd1bf1779f9cd3ce9b028b8f4882c9c11bcfc8eb38" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "d1595b03d4c714d2c27d0e62bbcc9d13b68852c19ca3d83d08eb3523277a8555" + sha256 cellar: :any_skip_relocation, arm64_ventura: "d838994b217f2fda5f7863ddf7f7219cfe10d6341109ab8f5049af5ada25b6be" + sha256 cellar: :any_skip_relocation, sonoma: "c7d7155672ef96777d6c99ae22019f151ea78fd6b7df4d5c2017659a796952ca" + sha256 cellar: :any_skip_relocation, ventura: "9c9215d0bc365cceba31c7663bd89d50eb90b20f64f9a54e15e62bbdcbb2e8ab" + sha256 cellar: :any_skip_relocation, arm64_linux: "57077f64c3422719c5855422574060ddfd32773c6b59f69842c5d9184a0ff18d" + sha256 cellar: :any_skip_relocation, x86_64_linux: "53579c85a910b31bb43252b91eb9fa6701b47774df80257f5f865ea3c8aa0f8d" end def install From 7557637ab67481519a733a1549fe37926e7fb3ab Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 14:59:55 +0000 Subject: [PATCH 0533/1364] tmt 1.48.0 --- Formula/t/tmt.rb | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/Formula/t/tmt.rb b/Formula/t/tmt.rb index 46c1ad670f689..694a7034d99a3 100644 --- a/Formula/t/tmt.rb +++ b/Formula/t/tmt.rb @@ -3,8 +3,8 @@ class Tmt < Formula desc "Test Management Tool" homepage "https://tmt.readthedocs.io" - url "https://files.pythonhosted.org/packages/92/d6/003811f778e3413d89ae21f4b5ce466962351c731df2891e572c7842b798/tmt-1.47.0.tar.gz" - sha256 "96045c6dd418b7c209dc4881be5bac767b792763282d7ebdec7437dd975a3f8c" + url "https://files.pythonhosted.org/packages/e3/80/81ff2de5c0e59ecedb5341345f9e2d92f52c8b4c67ec27264bf7462edc9e/tmt-1.48.0.tar.gz" + sha256 "5854a5260db1417844789b8cbf2a18e428661977f18e191cdfd246d75f6b0577" license "MIT" bottle do @@ -33,8 +33,8 @@ class Tmt < Formula end resource "charset-normalizer" do - url "https://files.pythonhosted.org/packages/16/b0/572805e227f01586461c80e0fd25d65a2115599cc9dad142fee4b747c357/charset_normalizer-3.4.1.tar.gz" - sha256 "44251f18cd68a75b56585dd00dae26183e102cd5e0f9f1466e6df5da2ed64ea3" + url "https://files.pythonhosted.org/packages/e4/33/89c2ced2b67d1c2a61c19c6751aa8902d46ce3dacb23600a283619f5a12d/charset_normalizer-3.4.2.tar.gz" + sha256 "5baececa9ecba31eff645232d59845c07aa030f0c81ee70184a90d35099a0e63" end resource "click" do @@ -103,18 +103,18 @@ class Tmt < Formula end resource "platformdirs" do - url "https://files.pythonhosted.org/packages/b6/2d/7d512a3913d60623e7eb945c6d1b4f0bddf1d0b7ada5225274c87e5b53d1/platformdirs-4.3.7.tar.gz" - sha256 "eb437d586b6a0986388f0d6f74aa0cde27b48d0e3d66843640bfb6bdcdb6e351" + url "https://files.pythonhosted.org/packages/fe/8b/3c73abc9c759ecd3f1f7ceff6685840859e8070c4d947c93fae71f6a0bf2/platformdirs-4.3.8.tar.gz" + sha256 "3d512d96e16bcb959a814c9f348431070822a6496326a4be0911c40b5a74c2bc" end resource "pydantic" do - url "https://files.pythonhosted.org/packages/10/2e/ca897f093ee6c5f3b0bee123ee4465c50e75431c3d5b6a3b44a47134e891/pydantic-2.11.3.tar.gz" - sha256 "7471657138c16adad9322fe3070c0116dd6c3ad8d649300e3cbdfe91f4db4ec3" + url "https://files.pythonhosted.org/packages/77/ab/5250d56ad03884ab5efd07f734203943c8a8ab40d551e208af81d0257bf2/pydantic-2.11.4.tar.gz" + sha256 "32738d19d63a226a52eed76645a98ee07c1f410ee41d93b4afbfa85ed8111c2d" end resource "pydantic-core" do - url "https://files.pythonhosted.org/packages/17/19/ed6a078a5287aea7922de6841ef4c06157931622c89c2a47940837b5eecd/pydantic_core-2.33.1.tar.gz" - sha256 "bcc9c6fdb0ced789245b02b7d6603e17d1563064ddcfc36f046b61c0c05dd9df" + url "https://files.pythonhosted.org/packages/ad/88/5f2260bdfae97aabf98f1778d43f69574390ad787afb646292a638c923d4/pydantic_core-2.33.2.tar.gz" + sha256 "7cb8bc3605c29176e1b105350d2e6474142d7c1bd1d9327c4a9bdb46bf827acc" end resource "pygments" do From 56ef680218620d877bc1fd2355ae40a718ed3b8d Mon Sep 17 00:00:00 2001 From: Patrick Linnane Date: Fri, 9 May 2025 15:00:12 +0000 Subject: [PATCH 0534/1364] codex: update 0.1.2505021246 bottle. --- Formula/c/codex.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/c/codex.rb b/Formula/c/codex.rb index c029f1c9630df..a530bc100d2b1 100644 --- a/Formula/c/codex.rb +++ b/Formula/c/codex.rb @@ -11,6 +11,7 @@ class Codex < Formula sha256 cellar: :any_skip_relocation, arm64_ventura: "85df5edd03aa3806252b9868d83ca32cba01d252889970f77bbc020c37933d9d" sha256 cellar: :any_skip_relocation, sonoma: "9c0511f07c5d8b0ee0d5bd810f802fafe569a9b002590afa8e2452bdced54c37" sha256 cellar: :any_skip_relocation, ventura: "9c0511f07c5d8b0ee0d5bd810f802fafe569a9b002590afa8e2452bdced54c37" + sha256 cellar: :any_skip_relocation, arm64_linux: "85df5edd03aa3806252b9868d83ca32cba01d252889970f77bbc020c37933d9d" sha256 cellar: :any_skip_relocation, x86_64_linux: "85df5edd03aa3806252b9868d83ca32cba01d252889970f77bbc020c37933d9d" end From 5207481f281df626c686067870f317266549991e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 15:07:28 +0000 Subject: [PATCH 0535/1364] zx 8.5.4 --- Formula/z/zx.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/z/zx.rb b/Formula/z/zx.rb index 3fb39d0728f8a..3b09ad80c1aab 100644 --- a/Formula/z/zx.rb +++ b/Formula/z/zx.rb @@ -1,8 +1,8 @@ class Zx < Formula desc "Tool for writing better scripts" homepage "https://google.github.io/zx/" - url "https://registry.npmjs.org/zx/-/zx-8.5.3.tgz" - sha256 "b02624779da21d9f9995b30ed8cd38b1d33af979ba85266000d7e5363d74beda" + url "https://registry.npmjs.org/zx/-/zx-8.5.4.tgz" + sha256 "be31333e3a149071fa4d199f61dce64a66b40c40f6d11a5e183cab6cc4ca4900" license "Apache-2.0" bottle do From 89773ed9776af48d97d2946733a23276943777ca Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 15:43:20 +0000 Subject: [PATCH 0536/1364] testkube: update 2.1.150 bottle. --- Formula/t/testkube.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/t/testkube.rb b/Formula/t/testkube.rb index 707eea203502d..bf33c6b99f284 100644 --- a/Formula/t/testkube.rb +++ b/Formula/t/testkube.rb @@ -12,12 +12,12 @@ class Testkube < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "0077f52b60be881eb5541f59ea22867feefd6ae3ad47d005f59e791bfdfbe250" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "0077f52b60be881eb5541f59ea22867feefd6ae3ad47d005f59e791bfdfbe250" - sha256 cellar: :any_skip_relocation, arm64_ventura: "0077f52b60be881eb5541f59ea22867feefd6ae3ad47d005f59e791bfdfbe250" - sha256 cellar: :any_skip_relocation, sonoma: "e8e1f9016062cc6c232d57ebd729703c4d613bad8f4c0b60a5af7fcea94f5e3a" - sha256 cellar: :any_skip_relocation, ventura: "e8e1f9016062cc6c232d57ebd729703c4d613bad8f4c0b60a5af7fcea94f5e3a" - sha256 cellar: :any_skip_relocation, x86_64_linux: "fd2eebc78497dbbb95df762aae5c02a63ffa5c14efd4f669892342a83cd5bda2" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "70645be2f903622d5d0acd6351da7cd8146f83a2bc3eddecef71c872b7988a7b" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "70645be2f903622d5d0acd6351da7cd8146f83a2bc3eddecef71c872b7988a7b" + sha256 cellar: :any_skip_relocation, arm64_ventura: "70645be2f903622d5d0acd6351da7cd8146f83a2bc3eddecef71c872b7988a7b" + sha256 cellar: :any_skip_relocation, sonoma: "ac3224360690527478e2858782191b6d9b36c06bee75b87b746a420478c8f28f" + sha256 cellar: :any_skip_relocation, ventura: "ac3224360690527478e2858782191b6d9b36c06bee75b87b746a420478c8f28f" + sha256 cellar: :any_skip_relocation, x86_64_linux: "af64df28091c269f77a7b6e7c53afcd930925fdfaf2fc3d6d75ac92e2100af81" end depends_on "go" => :build From d76b945d2d79e4ae5c48c7f1a312c66b9a043478 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 15:43:31 +0000 Subject: [PATCH 0537/1364] zx: update 8.5.4 bottle. --- Formula/z/zx.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/z/zx.rb b/Formula/z/zx.rb index 3b09ad80c1aab..a0aec808c94ad 100644 --- a/Formula/z/zx.rb +++ b/Formula/z/zx.rb @@ -6,7 +6,7 @@ class Zx < Formula license "Apache-2.0" bottle do - sha256 cellar: :any_skip_relocation, all: "520f6d1dfcd54b908600c798170200b6d72d2f415451442efcbb14b7ec12a5ad" + sha256 cellar: :any_skip_relocation, all: "0108d87b11cedda3ec3ea5aef2e359fb4f40f717d109f195d61bf51475522bfb" end depends_on "node" From e680839282ad64c4550d1f3b0627300b03d22ff7 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 15:43:44 +0000 Subject: [PATCH 0538/1364] tmt: update 1.48.0 bottle. --- Formula/t/tmt.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/t/tmt.rb b/Formula/t/tmt.rb index 694a7034d99a3..747ba4b2e700a 100644 --- a/Formula/t/tmt.rb +++ b/Formula/t/tmt.rb @@ -8,13 +8,13 @@ class Tmt < Formula license "MIT" bottle do - sha256 cellar: :any, arm64_sequoia: "90de4621b6125d10d86d0f573354006a7d995a439281a69de425d4ad776f3bc0" - sha256 cellar: :any, arm64_sonoma: "c8a29c5868cb70105f74f82c6780dcdb1973492a51bcf505fb2fa5c7ef380699" - sha256 cellar: :any, arm64_ventura: "cd43ee64af56202e4a002741e1a3b82b59638d6c1af9e0af56d4f0d2a4288b5e" - sha256 cellar: :any, sonoma: "e34301449ee8c89bfbb7b90c3d40aa47c68630b8bd7e113fd1b4aa2e44eda2c0" - sha256 cellar: :any, ventura: "cea67c9101d5dcb863ae922c2fefe23b66d96be93977cf823d0d25e5aa1a531b" - sha256 cellar: :any_skip_relocation, arm64_linux: "88d8b7d1cf5838081ed40acf6a7f92a8a694b3d0b8bfff5d6ecd3200b4152339" - sha256 cellar: :any_skip_relocation, x86_64_linux: "28e313111f8f14b76fa18fca956b7f260cff7e32a4dbbddada7e4687ba43cdc8" + sha256 cellar: :any, arm64_sequoia: "c1048a33ce45bd72050e1fabb0569758d6c93541b295d8cd6a0900309f303396" + sha256 cellar: :any, arm64_sonoma: "503071ff86cdef1c3845631ce3f799b2d6cbfc9c502ad950c33154e2321e2332" + sha256 cellar: :any, arm64_ventura: "4287a14195fccf5c45c449db15f79c62da28368656951471117efdda176fe4c9" + sha256 cellar: :any, sonoma: "640aa2726533a4e637473e48c8a5fda05fd8f9b43ecc015c351e153b740fedb7" + sha256 cellar: :any, ventura: "53b0f06f114c346f9c2b9e279d536d849a7dee98397e4f98e24abcb896edf642" + sha256 cellar: :any_skip_relocation, arm64_linux: "a851352f3cfb1fa02a307812ca83ab3d0dfdab511d02e8afcc4c6cd2fef5caba" + sha256 cellar: :any_skip_relocation, x86_64_linux: "4d507980cb846c7a3f0c531eb396c820b56348489fed26ab7a8602d2d3396859" end depends_on "rust" => :build # for rpds-py From 7d9ba21a7864bd30bbad41dac4eecd8d7afc27df Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 15:43:51 +0000 Subject: [PATCH 0539/1364] pgrx: update 0.14.3 bottle. --- Formula/p/pgrx.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/p/pgrx.rb b/Formula/p/pgrx.rb index 9dcf8f479ea05..2edb9a1917d3d 100644 --- a/Formula/p/pgrx.rb +++ b/Formula/p/pgrx.rb @@ -6,13 +6,13 @@ class Pgrx < Formula license "MIT" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "73f0c406bebd43959455aeff419442dd183f50a4334c6952d88cadfd3789e3fd" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "d6f04a4c9a14d67ab5ee51f14d4a09a346558c9a7392139bfba93a3d8aac5f48" - sha256 cellar: :any_skip_relocation, arm64_ventura: "a1e78d65541f458e0e4772cf0ce22da31becfc4415d0f30fbf0b6b1dbf4426ce" - sha256 cellar: :any_skip_relocation, sonoma: "d4d597c9e49f2e68d67b1b3a1f59e1522ad852b89042a5bbbe2bd71e8698e597" - sha256 cellar: :any_skip_relocation, ventura: "3e098fc95719bdacdf15b368694ffa63a562c3fbe24f76695184befebb63d3d2" - sha256 cellar: :any_skip_relocation, arm64_linux: "69bd019df33da3eeb8a704c5c60db8246a56e1e1135d8d617fcd4537c0fabfe8" - sha256 cellar: :any_skip_relocation, x86_64_linux: "b077d3db94e29075d1a3a3e076f455139f9514160b9a1a1cdc733512c6fc4e68" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "dd02c5e460fd47f8fb36dc2966c0eecf4a4e3e9faf6e713df5c2a067edf61045" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "2d0a1b58df6c06550e38892f3f25ab51b34b3be375251dde286f61e41d359f12" + sha256 cellar: :any_skip_relocation, arm64_ventura: "4f8bf7e100e277219b0a01eb10ebe9681e566067aebecef165335882184c7017" + sha256 cellar: :any_skip_relocation, sonoma: "de59c11d9ba2a511e83181330416cb1ad54ec0e8aea2d88220846e6059385766" + sha256 cellar: :any_skip_relocation, ventura: "59078b5be62dbe49c6778ce12d87b13c803803848ce250da6d142ee455d784c2" + sha256 cellar: :any_skip_relocation, arm64_linux: "d1320cf98cf58207fde64dd91bfdb6c3db3f882058b19825788a5f77bea3aa2a" + sha256 cellar: :any_skip_relocation, x86_64_linux: "a9df726b9148c6593f1e4b3beaf78903a99d41cd999e11f6464d634246b7c25e" end depends_on "pkgconf" => :build From d01ad0ca7802042f56bac1985f6affad3d0eb93d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 15:54:40 +0000 Subject: [PATCH 0540/1364] snakemake: update 9.3.4 bottle. --- Formula/s/snakemake.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/s/snakemake.rb b/Formula/s/snakemake.rb index a0a5875ab0a50..a04b7b875461d 100644 --- a/Formula/s/snakemake.rb +++ b/Formula/s/snakemake.rb @@ -9,13 +9,13 @@ class Snakemake < Formula head "https://github.com/snakemake/snakemake.git", branch: "main" bottle do - sha256 cellar: :any, arm64_sequoia: "08edc5855fceb28665a10fb57bb10eb4b2e2467925da0199c71628e55a8e8578" - sha256 cellar: :any, arm64_sonoma: "07c2d84db24139e33b7315e74ee3a5466ac65f9bdb1bac827ab2d6402924506d" - sha256 cellar: :any, arm64_ventura: "611e60f1e01df512116c36d19fdb2877d8f01aee11197f3ef7207e3c0c155fe3" - sha256 cellar: :any, sonoma: "08f64c7e09d337d7f03b8e02467521c5007deae629456bcc159811593f36d1a0" - sha256 cellar: :any, ventura: "aa3ba12655d608a6c3c91ed745af03754abde50c2bbfb2fafd600a58af50bcc0" - sha256 cellar: :any_skip_relocation, arm64_linux: "bb9bccfff11dff8deb7c8e2a189c4e9e4bab6f6442fad8842908738fa0fef17b" - sha256 cellar: :any_skip_relocation, x86_64_linux: "c6f1dc3d646944d740a9183e2b90303212ad2c5379353cdeef05430c42b517c7" + sha256 cellar: :any, arm64_sequoia: "622a7c9a306c043c1636b245daa51698906501bec6f490767b69baf4fcde9166" + sha256 cellar: :any, arm64_sonoma: "17063fc18b4c04ad27b7a82c1e1bc5f5f393f10dd001864a19c00b9154ab8a5a" + sha256 cellar: :any, arm64_ventura: "1877f6c800e327305eebe4dc2344836d940b147528cba2dfa0983dccf792efee" + sha256 cellar: :any, sonoma: "5f1353c5a6cd8e964dbe6d10907e34ab2dce10f24a06267cf844b1d74ab13870" + sha256 cellar: :any, ventura: "02882ebce2db5e7ee7af8ba6bfe828258fa10db2bdf3fb6f2f02ddca188a66a5" + sha256 cellar: :any_skip_relocation, arm64_linux: "5005eb1c62278280811633eb8fcf0f4e07f4a23106820cbec0dfd5d5b09d9fae" + sha256 cellar: :any_skip_relocation, x86_64_linux: "e0f0a98fdc2ec0e6f5e53e4316eac97e2cfa32881192f6e3281406131c9061f5" end depends_on "rust" => :build From 6c7d8474a5c3768bb4f3355982291c0171f390ff Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 16:40:46 +0000 Subject: [PATCH 0541/1364] tailwindcss: update 4.1.6 bottle. --- Formula/t/tailwindcss.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/t/tailwindcss.rb b/Formula/t/tailwindcss.rb index 3a25e362dd040..b12e354407c9a 100644 --- a/Formula/t/tailwindcss.rb +++ b/Formula/t/tailwindcss.rb @@ -15,13 +15,13 @@ class Tailwindcss < Formula end bottle do - sha256 arm64_sequoia: "b1fc0f4f8d83b189211515746eae2d402001874d39382762c6a9ff8464102668" - sha256 arm64_sonoma: "01248c7342d0b98319743744aa9a3ab7a5d18bdfdc147af5f45602c5af8a0a36" - sha256 arm64_ventura: "4849f06ccc1c44f5c7b647983242120c01021d98d8873582ebe8753e26831747" - sha256 sonoma: "f4a66f8d8f73fd6eb0d3a6934a596c928377efbbefefa3a5926fea0471089c7d" - sha256 ventura: "dd9f2aa492e82a623ec21a68c1efbc3c718d2007ba782868e0a419f9997ebea0" - sha256 cellar: :any_skip_relocation, arm64_linux: "35e772cab86b719591ded3bd1c4acbb9ed6df8796f50fc759213b6a8dc80c7d0" - sha256 cellar: :any_skip_relocation, x86_64_linux: "85e9c820f4e13836cb74a2f699b09323e84d1d0b8e5fad8ed6d25927d1fe4356" + sha256 arm64_sequoia: "12fa8ef97f0b074efb90db9a1745040f64e4d54e7bcf234cda9d44743adc096e" + sha256 arm64_sonoma: "5534d455c9af158e6e663ef28ae30ac341c32fa5660b92b5ba4289a555e9a631" + sha256 arm64_ventura: "b5185080dce1ab0eb8ff3d6119eac74d397a1fd0bf6824ed04efa1a8de61b821" + sha256 sonoma: "d7684af1a1c542a60a62d4c4e6bd91304789f37dce9562b2497f61b10fe76bf3" + sha256 ventura: "dd34317bc26714ad0b620a0a97051408601c7f1b60fc53b6d9b309f171419951" + sha256 cellar: :any_skip_relocation, arm64_linux: "4d02c9c95f136d3e6fccde8bfd36468dbd3d7268f817e13bcc3ee7b4729d2c56" + sha256 cellar: :any_skip_relocation, x86_64_linux: "04e40e5aebe1d0f7774292c521c7705d3a53ff045f29d1f801e1c00dce01ee8d" end depends_on "node" From 2152e7b651ffd1fa4dfac86b48b7feb0a56f85ca Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 16:41:26 +0000 Subject: [PATCH 0542/1364] mariadb@11.4: update 11.4.6 bottle. --- Formula/m/mariadb@11.4.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/m/mariadb@11.4.rb b/Formula/m/mariadb@11.4.rb index e8b50f459ab65..967227e64e9db 100644 --- a/Formula/m/mariadb@11.4.rb +++ b/Formula/m/mariadb@11.4.rb @@ -18,13 +18,13 @@ class MariadbAT114 < Formula end bottle do - sha256 arm64_sequoia: "87a845829263889cd366220894d2dde7434e01c5c511210706f921a661d705d2" - sha256 arm64_sonoma: "9b97d5578b40a74af45a00cd630c387c191ebca5adfb2e8a0c27040b2136942b" - sha256 arm64_ventura: "c8a51147722430cb5aa0cce6d30119812cc0d99ac46fe5acebaf8228a19820e7" - sha256 sonoma: "f166a658a618d12aa5e6c32f30bb1436bb08a96481e1f6bb31d818d1ca275f37" - sha256 ventura: "d69e4631108cb221d28f9209f0055e27949ed5c96e67ac9cbf5277eb3a407f64" - sha256 arm64_linux: "9fdd60711b2f3adbbaad53d0c9d4608aff3fc417fc952b3e29f317275fdbe54b" - sha256 x86_64_linux: "398d364ac0b0698a7efb9b0bcb4503895d51e48616a7e0d3ed21cf198b47f61f" + sha256 arm64_sequoia: "69c66775aaf4416a552e06026e7830dd6d9ed516fd482b39d078e75ea4a1f35a" + sha256 arm64_sonoma: "b46c4fdd9bbb04c8e692855bea7eba13751e5fa36686674a036fa52d1491f6e0" + sha256 arm64_ventura: "7a6c80e7d28e49822f1a417308f5826f97a6a11cf934af3f64c40c0c378fff60" + sha256 sonoma: "25a5671345926af66ed688162d1af6ec714715ed0c59169299c36618eab65dbb" + sha256 ventura: "001bd3c1d200bda85099131acac703803b9dd1f43fe13555a15e68a86d73d21e" + sha256 arm64_linux: "902fbdaf9b7a501a7d4496f501fac13151c63b9f88590277047e66e71e4b0806" + sha256 x86_64_linux: "fbdd67efee538d64a9fb5ae707eb2f8307be19e25615ef5a1c2652fa626ab232" end keg_only :versioned_formula From bb7c2fb9e637af3294bac59c65808fba8e8da90e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 16:41:29 +0000 Subject: [PATCH 0543/1364] mariadb@10.6: update 10.6.22 bottle. --- Formula/m/mariadb@10.6.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/m/mariadb@10.6.rb b/Formula/m/mariadb@10.6.rb index f018d2f2e9357..c98e97380b274 100644 --- a/Formula/m/mariadb@10.6.rb +++ b/Formula/m/mariadb@10.6.rb @@ -18,13 +18,13 @@ class MariadbAT106 < Formula end bottle do - sha256 arm64_sequoia: "f62b858d8c013e4458a536cabb429cbb9b4b4bfacbe2ab3cc88f813cb2ee780e" - sha256 arm64_sonoma: "bb3025f391d669e9442d8df1eca9bd0dbcee97883dd4abc8118229fbbb30314c" - sha256 arm64_ventura: "58f3634df92e8b7c58f30f91295f88472d977577e2b2666342fd04f3f8eb16fd" - sha256 sonoma: "81af7a0000ff278c3070ce3db9546af93eb06279def2f79f1087ded07d1123a3" - sha256 ventura: "41569c954dd0c2961c84e8ec6fb02041a6fa82e38ac7be909d28cff8638e9bc8" - sha256 arm64_linux: "cedd156e1c90e2d4644064c4c4d5f0fb9348526c114ede82ffc7a821c7c76551" - sha256 x86_64_linux: "586cec21d3568a0528d1d222ebdeb5b3bc98503d93794e87b387e786ed4d14b9" + sha256 arm64_sequoia: "942a2ce7b84cc905ac82fa13d235d7f38bbf53a77f1d3d68ca66bad93d047a55" + sha256 arm64_sonoma: "c716ee48c769c11bece7fb3e7c8cba9ca6aca9201474089695b676a4a7fd2c6a" + sha256 arm64_ventura: "ce6ec0d37c64f103680b05280fed1cfb35a23a7746320a5b8584923b87205cdf" + sha256 sonoma: "f5e97c072d4943f9423669205f43914485f7154731d3cee33d2d67db93ee8bc9" + sha256 ventura: "689b21abf431d8ea1904f684c69a6b4d4ab994bda8a32a750f41a235013e0003" + sha256 arm64_linux: "1e1dd55600e0864ed9a58760bd6f77486d9db76b6fb2ca9c69af2b0b6fbc63f3" + sha256 x86_64_linux: "0d482c2aed000e5bc0fcba8673782af0479b0313bf2a2f78c223a9d742c51e6b" end keg_only :versioned_formula From 8752c77e456435566c42d82298311691ca23e59c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 16:41:29 +0000 Subject: [PATCH 0544/1364] mariadb@10.11: update 10.11.12 bottle. --- Formula/m/mariadb@10.11.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/m/mariadb@10.11.rb b/Formula/m/mariadb@10.11.rb index 72eba0f4bf173..490d237c009e5 100644 --- a/Formula/m/mariadb@10.11.rb +++ b/Formula/m/mariadb@10.11.rb @@ -18,13 +18,13 @@ class MariadbAT1011 < Formula end bottle do - sha256 arm64_sequoia: "04470673c1f6cae250ca31e5882d5535b852d8b3a330db914522a301fed52d6d" - sha256 arm64_sonoma: "58d4aa3ff13d2e6abe0be57014ea698e9d29bc73897e7d8f8b4627bd6ea5e375" - sha256 arm64_ventura: "a2e474fded76e08edfbc0722c14831f224a1bcad893b3cff74a7eb39a7b13e35" - sha256 sonoma: "ac4da5f4380f31b36346cbd45fc17f188fc13ec2672552338b77c176f1206348" - sha256 ventura: "6a001296b9e98e61e25e384177110927f1e8d9351fc81a143f6ce7af13830800" - sha256 arm64_linux: "eb73d5c1531dec08a5b89d622bdfbfd6afa89bacdc89c30de57d885c27e58f18" - sha256 x86_64_linux: "216605249b124d91406eb9b40ca31b6c5508b9a066ef9d791c087daa17c4f9ba" + sha256 arm64_sequoia: "cd0fbe5bf3e9035fb2e8799d0e91c897c47a31bc38401d31509b8d9411286d1a" + sha256 arm64_sonoma: "af1719894b04e042421e4317d6068263927814425836991d541333fb5ada39db" + sha256 arm64_ventura: "f4f4a43875c097500c3da176586f19f532893e2cff43cab2cbfe91696e6e3aca" + sha256 sonoma: "0787ae74054567bc9fdf7d29f5ccbdbe6e51826bf9686dcb690360f116edbc72" + sha256 ventura: "d1eb3e6452d85a1b5b991be1133f149955bd0ee37bacd4c801842d9ad85a883b" + sha256 arm64_linux: "929665421463109a022d8cc7506ad3eb0f6b48aa6de5e0dd46760b97e2d5e549" + sha256 x86_64_linux: "0a1f70f085cc78310f369d371f92ee18334b84e27fea363ac4a89c1daff2e41d" end keg_only :versioned_formula From 8665e39247626d4c31b969181bfdd1245dbeed18 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 16:41:30 +0000 Subject: [PATCH 0545/1364] mariadb@10.5: update 10.5.29 bottle. --- Formula/m/mariadb@10.5.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/m/mariadb@10.5.rb b/Formula/m/mariadb@10.5.rb index 176ec2277bf72..a6fee3ad4d562 100644 --- a/Formula/m/mariadb@10.5.rb +++ b/Formula/m/mariadb@10.5.rb @@ -18,13 +18,13 @@ class MariadbAT105 < Formula end bottle do - sha256 arm64_sequoia: "a96a6208d4bfe250d5b74416e14a31086e2d538a512b1f59698dcb50e19348bb" - sha256 arm64_sonoma: "9aaa6d34bb857450b03972b3f7f879a7d46ce93235a3fca00fdbdd2580c8b919" - sha256 arm64_ventura: "ef61353ca947499a30b62433da89edd9d6b791ebe2d1ec8f9091fcedf06baf02" - sha256 sonoma: "0ebc972d9d5ca4c66a37776bd2e80d06293da8b41cf2239f31371b84007fda0f" - sha256 ventura: "c4bf53cb65f70e4b46d129ace5df49753fc7c9bd7b4c0d8e80965644c562e67b" - sha256 arm64_linux: "f0fba839c8726cbe4378213bffc9b55d04ac9a96f4e07ec7441a417e70c317e8" - sha256 x86_64_linux: "4a6c0cb6fde2bbbf0302a77fa6d9f8c5bbbeb062c03a58b3ff4276a01e97261b" + sha256 arm64_sequoia: "fbc6c60828c5b08de909657354aa0ae4b61ed7016e16fe3cb0ba0202f761a163" + sha256 arm64_sonoma: "4d82bc0d05b270c8d6b1aff58a8303b9eaaa694c4c6d99ffb3f980dd95a9ad6e" + sha256 arm64_ventura: "b639bb146a4e838d542810b16b2fe090b5223428d1d832e7bca6afdf0a976555" + sha256 sonoma: "9820c413100a32e67e7efb0027a18b8a314eedd15dcd7fb6bb91b34c3fdef322" + sha256 ventura: "12ef4bda287ca4dde510dbb1cee7ebddc8abdf8f2117fcc8f37cb23263d21015" + sha256 arm64_linux: "50752547002571ba3b54aa3624e7ac74b8d3a514b9a23513c6c3e27336c6b64b" + sha256 x86_64_linux: "a35b606e2aac03025965c0ac65a7894de48d6c1eb94e9786c60cc5ac3f9514db" end keg_only :versioned_formula From e1722f60d79ab629240126795db50bc2a014909b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 16:50:39 +0000 Subject: [PATCH 0546/1364] anubis 1.18.0 --- Formula/a/anubis.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/a/anubis.rb b/Formula/a/anubis.rb index 844fe3744e771..9274d492ca754 100644 --- a/Formula/a/anubis.rb +++ b/Formula/a/anubis.rb @@ -1,8 +1,8 @@ class Anubis < Formula desc "Protect resources from scraper bots" homepage "https://anubis.techaro.lol" - url "https://github.com/TecharoHQ/anubis/archive/refs/tags/v1.17.1.tar.gz" - sha256 "461420249c5860cc1caed87a750c2eba3a02b1102833f3588feff75c165be78e" + url "https://github.com/TecharoHQ/anubis/archive/refs/tags/v1.18.0.tar.gz" + sha256 "b543f3c4af32a71994f4290b901b5670ce3cc7756b9db2c86d2569286d6dd6ef" license "MIT" head "https://github.com/TecharoHQ/anubis.git", branch: "main" From fb73012e2629bd4ddc814dd492b93ea5335fdb1d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 16:52:01 +0000 Subject: [PATCH 0547/1364] jolie: update 1.12.5 bottle. --- Formula/j/jolie.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Formula/j/jolie.rb b/Formula/j/jolie.rb index a38b0763a19d0..4e9cbcc3714a1 100644 --- a/Formula/j/jolie.rb +++ b/Formula/j/jolie.rb @@ -6,7 +6,8 @@ class Jolie < Formula license "LGPL-2.1-only" bottle do - sha256 cellar: :any_skip_relocation, all: "818ee260fe7d9189db8e8669b15db9fe39473b1d0fe6b2f5115e94bce1c24f21" + rebuild 1 + sha256 cellar: :any_skip_relocation, all: "690e57262402203f7eea7feeeb08cb23c8f6ddc4c6680c998d1b141ed42b4ec2" end depends_on "openjdk" From 77028b65a599565df016792e20974cd53ca4dd30 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 16:52:17 +0000 Subject: [PATCH 0548/1364] bkmr 4.21.0 --- Formula/b/bkmr.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/b/bkmr.rb b/Formula/b/bkmr.rb index c15c0d9650287..edbc51ef77f47 100644 --- a/Formula/b/bkmr.rb +++ b/Formula/b/bkmr.rb @@ -1,8 +1,8 @@ class Bkmr < Formula desc "Unified CLI Tool for Bookmark, Snippet, and Knowledge Management" homepage "https://github.com/sysid/bkmr" - url "https://github.com/sysid/bkmr/archive/refs/tags/v4.20.5.tar.gz" - sha256 "d6ccddc6313d32932e2c637d5f1497992eb6b98e61dd0cb8ffab34ebb0823057" + url "https://github.com/sysid/bkmr/archive/refs/tags/v4.21.0.tar.gz" + sha256 "682e2a458596a9c4a93281f401a88eff2e8df08d5ae135317445bf2f2315b431" license "BSD-3-Clause" head "https://github.com/sysid/bkmr.git", branch: "main" From 36d2c79879132e4fa46e9652af9505a486c5c9f8 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 16:54:32 +0000 Subject: [PATCH 0549/1364] conftest 0.60.0 --- Formula/c/conftest.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/conftest.rb b/Formula/c/conftest.rb index 3cb2b32504a16..982f279e50bdb 100644 --- a/Formula/c/conftest.rb +++ b/Formula/c/conftest.rb @@ -1,8 +1,8 @@ class Conftest < Formula desc "Test your configuration files using Open Policy Agent" homepage "https://www.conftest.dev/" - url "https://github.com/open-policy-agent/conftest/archive/refs/tags/v0.59.0.tar.gz" - sha256 "1ee047be3970368d992304cecc773a3a47068b8eb66365fb7d0c2d7aff91216b" + url "https://github.com/open-policy-agent/conftest/archive/refs/tags/v0.60.0.tar.gz" + sha256 "85db17fba05e95594c30fd67dfdbef78e18cf0f87ab3537d987a8197e2c19911" license "Apache-2.0" head "https://github.com/open-policy-agent/conftest.git", branch: "master" From 0f57fb70ab969591d9580daf50f413bdd4d161cc Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 16:56:24 +0000 Subject: [PATCH 0550/1364] diffoscope 295 --- Formula/d/diffoscope.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/d/diffoscope.rb b/Formula/d/diffoscope.rb index 73bdf8caca671..209a2dc60f0ba 100644 --- a/Formula/d/diffoscope.rb +++ b/Formula/d/diffoscope.rb @@ -3,8 +3,8 @@ class Diffoscope < Formula desc "In-depth comparison of files, archives, and directories" homepage "https://diffoscope.org" - url "https://files.pythonhosted.org/packages/51/49/eb7545893027dda1767858b39305c9048a0d9636804616d79a8dc906f2fb/diffoscope-294.tar.gz" - sha256 "6833785359cade9930fa6d0699f646d62e937bebdb00182e499420f79084cb0d" + url "https://files.pythonhosted.org/packages/e6/04/4a9df77e0b0dea2bd70b7366d9751237cc79ae2598d6dfbe5e5ab57f6228/diffoscope-295.tar.gz" + sha256 "f99ad743fc888693b193fe768a08d0142e3c5c6b2503a7265be7c08a99cc2a5f" license "GPL-3.0-or-later" bottle do From 59938a6c18920aecb816a1d6713f9f077aef6698 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 16:57:48 +0000 Subject: [PATCH 0551/1364] falco 1.17.0 --- Formula/f/falco.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/f/falco.rb b/Formula/f/falco.rb index a1e9f53eb2435..2b2f67582d8d4 100644 --- a/Formula/f/falco.rb +++ b/Formula/f/falco.rb @@ -1,8 +1,8 @@ class Falco < Formula desc "VCL parser and linter optimized for Fastly" homepage "https://github.com/ysugimoto/falco" - url "https://github.com/ysugimoto/falco/archive/refs/tags/v1.16.0.tar.gz" - sha256 "db65c42757922c74c1ad34eea6c13bec970b92e7202f06eac7fa4ba5ba8ebbe1" + url "https://github.com/ysugimoto/falco/archive/refs/tags/v1.17.0.tar.gz" + sha256 "a4006ba07678f1cd82dfaf3eaf2747fabb23a0abc38e661936dd8f2f38a141b0" license "MIT" head "https://github.com/ysugimoto/falco.git", branch: "main" From cc1c29351b4998dcbaef09f12469e01aa0978634 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 17:02:30 +0000 Subject: [PATCH 0552/1364] anubis: update 1.18.0 bottle. --- Formula/a/anubis.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/a/anubis.rb b/Formula/a/anubis.rb index 9274d492ca754..00231bba7157a 100644 --- a/Formula/a/anubis.rb +++ b/Formula/a/anubis.rb @@ -12,12 +12,12 @@ class Anubis < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "d16c7c54957af0e6df519e1f70623fb2c809a3239e4d6c7d12b693b80ccd4116" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "0a6e4f55dee590269a8db88fd19d4868912e6e476f7a19ff183e9aae5058e4d0" - sha256 cellar: :any_skip_relocation, arm64_ventura: "3a707c7a1be3cf9fb790ea6caa3b742f677a8e7ad2e6e1441095373aa215cf26" - sha256 cellar: :any_skip_relocation, sonoma: "cd503408e8d61a901cc98a00bedef219a62158b6332a5457a5148159e3d03267" - sha256 cellar: :any_skip_relocation, ventura: "cb4662c1144f6b30a66534f0aaed7e93acc61997b38e9781b74e9c348e308048" - sha256 cellar: :any_skip_relocation, x86_64_linux: "d975ae62abe5d184c1581e8c1b7aaf4fa6bd499331734ff0198a056fd25160ce" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "b162bd9c43dedbe24fbfff3667d5df2cf433d34c698b286a894ff2dbba8ee9ba" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "7387ba7dd8e716f47bc486ca499dc40a02484ed5284186c591032f61c2f5241e" + sha256 cellar: :any_skip_relocation, arm64_ventura: "774a900e165f381bbebc6dcbb55cdde962cad597968a9c1912f20e1c0418b28e" + sha256 cellar: :any_skip_relocation, sonoma: "2328432dc08c377c0f4ef8641e3806856785c2bfb7e26d388abd0e53daadfa9e" + sha256 cellar: :any_skip_relocation, ventura: "2608708e94511311a6b6f5e363bc98aaadc9c11358c1a05231161acc871f1384" + sha256 cellar: :any_skip_relocation, x86_64_linux: "655f3a50f4db66e85fa0a866d146de7cc0bd2165b9692513b3314aec5185c414" end depends_on "go" => :build From 0fd899f2d4fe39291857f0fd163e7b8633e4a83a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 17:04:26 +0000 Subject: [PATCH 0553/1364] libavif 1.3.0 --- Formula/lib/libavif.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/lib/libavif.rb b/Formula/lib/libavif.rb index 43d6edde54185..d3cdaa89e75d2 100644 --- a/Formula/lib/libavif.rb +++ b/Formula/lib/libavif.rb @@ -1,8 +1,8 @@ class Libavif < Formula desc "Library for encoding and decoding .avif files" homepage "https://github.com/AOMediaCodec/libavif" - url "https://github.com/AOMediaCodec/libavif/archive/refs/tags/v1.2.1.tar.gz" - sha256 "9c859c7c12ccb0f407511bfe303e6a7247f5f6738f54852662c6df8048daddf4" + url "https://github.com/AOMediaCodec/libavif/archive/refs/tags/v1.3.0.tar.gz" + sha256 "0a545e953cc049bf5bcf4ee467306a2f113a75110edf59e61248873101cd26c1" license "BSD-2-Clause" bottle do From 93c01e7c443da987a514481b357971973bf991fb Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 17:06:12 +0000 Subject: [PATCH 0554/1364] llama.cpp 5330 --- Formula/l/llama.cpp.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/l/llama.cpp.rb b/Formula/l/llama.cpp.rb index bf485ed2024f8..862101da1b0c1 100644 --- a/Formula/l/llama.cpp.rb +++ b/Formula/l/llama.cpp.rb @@ -3,8 +3,8 @@ class LlamaCpp < Formula homepage "https://github.com/ggerganov/llama.cpp" # CMake uses Git to generate version information. url "https://github.com/ggerganov/llama.cpp.git", - tag: "b5320", - revision: "02115dcd9a6d0c03b527d5bee8c1493ab819ddbd" + tag: "b5330", + revision: "17512a94d636c4b6c1332370acb3e5af3ca70918" license "MIT" head "https://github.com/ggerganov/llama.cpp.git", branch: "master" From 1c82618a45b71ecc886a48eb1a11662209d96e9d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 17:13:53 +0000 Subject: [PATCH 0555/1364] ruff 0.11.9 --- Formula/r/ruff.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/r/ruff.rb b/Formula/r/ruff.rb index ae3029937baaf..cd713f7f10835 100644 --- a/Formula/r/ruff.rb +++ b/Formula/r/ruff.rb @@ -1,8 +1,8 @@ class Ruff < Formula desc "Extremely fast Python linter, written in Rust" homepage "https://docs.astral.sh/ruff/" - url "https://github.com/astral-sh/ruff/archive/refs/tags/0.11.8.tar.gz" - sha256 "5513715a202b2dd2516ebb67142d9ea8e52fdd73595dda3eb957804013d33090" + url "https://github.com/astral-sh/ruff/archive/refs/tags/0.11.9.tar.gz" + sha256 "7813b1c4950597dbcd128072bb84ba1efe2440418f867000bff5fcae0ba53ceb" license "MIT" head "https://github.com/astral-sh/ruff.git", branch: "main" From edad5baa0f131d3052d556cfe8b2f13a6f6f67bb Mon Sep 17 00:00:00 2001 From: botantony Date: Fri, 9 May 2025 19:15:14 +0200 Subject: [PATCH 0556/1364] dbhash 3.49.2 Signed-off-by: botantony --- Formula/d/dbhash.rb | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Formula/d/dbhash.rb b/Formula/d/dbhash.rb index 26860ccd69b64..8bb0931ac0a00 100644 --- a/Formula/d/dbhash.rb +++ b/Formula/d/dbhash.rb @@ -1,15 +1,17 @@ class Dbhash < Formula desc "Computes the SHA1 hash of schema and content of a SQLite database" homepage "https://www.sqlite.org/dbhash.html" - url "https://www.sqlite.org/2025/sqlite-src-3490100.zip" - version "3.49.1" - sha256 "4404d93cbce818b1b98ca7259d0ba9b45db76f2fdd9373e56f2d29b519f4d43b" + url "https://www.sqlite.org/2025/sqlite-src-3490200.zip" + version "3.49.2" + sha256 "c3101978244669a43bc09f44fa21e47a4e25cdf440f1829e9eff176b9a477862" license "blessing" livecheck do formula "sqlite" end + no_autobump! because: :incompatible_version_format + bottle do sha256 cellar: :any, arm64_sequoia: "88764608e548191d287cbb49c35a1a7a15a74d3101384056a4056228a953df47" sha256 cellar: :any, arm64_sonoma: "fd18905e491cf4908799fba763a5ef502d1cec96c30a3e88ab7b0e4061bcc91d" From 0103e25b38e82e4503414f05f2d1b9e63165b744 Mon Sep 17 00:00:00 2001 From: botantony Date: Fri, 9 May 2025 19:15:19 +0200 Subject: [PATCH 0557/1364] lemon 3.49.2 Signed-off-by: botantony --- Formula/l/lemon.rb | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Formula/l/lemon.rb b/Formula/l/lemon.rb index 37f0f44057176..8786a68c87794 100644 --- a/Formula/l/lemon.rb +++ b/Formula/l/lemon.rb @@ -1,15 +1,17 @@ class Lemon < Formula desc "LALR(1) parser generator like yacc or bison" homepage "https://www.hwaci.com/sw/lemon/" - url "https://www.sqlite.org/2025/sqlite-src-3490100.zip" - version "3.49.1" - sha256 "4404d93cbce818b1b98ca7259d0ba9b45db76f2fdd9373e56f2d29b519f4d43b" + url "https://www.sqlite.org/2025/sqlite-src-3490200.zip" + version "3.49.2" + sha256 "c3101978244669a43bc09f44fa21e47a4e25cdf440f1829e9eff176b9a477862" license "blessing" livecheck do formula "sqlite" end + no_autobump! because: :incompatible_version_format + bottle do sha256 cellar: :any_skip_relocation, arm64_sequoia: "c14de55cd3a85bc71e62f7cdc37577a353250190103d0e5cbd49e8a753e6c995" sha256 cellar: :any_skip_relocation, arm64_sonoma: "a064a8eb15e229554511dfa3c5dd0603841fa1eaf1fb94e7f823fca54c73bed9" From 4396f7be29c86e71c591187bcd5dfbbd85f75915 Mon Sep 17 00:00:00 2001 From: botantony Date: Fri, 9 May 2025 19:15:26 +0200 Subject: [PATCH 0558/1364] sqldiff 3.49.2 Signed-off-by: botantony --- Formula/s/sqldiff.rb | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Formula/s/sqldiff.rb b/Formula/s/sqldiff.rb index ce35743e5263f..2310df439db6c 100644 --- a/Formula/s/sqldiff.rb +++ b/Formula/s/sqldiff.rb @@ -1,15 +1,17 @@ class Sqldiff < Formula desc "Displays the differences between SQLite databases" homepage "https://www.sqlite.org/sqldiff.html" - url "https://www.sqlite.org/2025/sqlite-src-3490100.zip" - version "3.49.1" - sha256 "4404d93cbce818b1b98ca7259d0ba9b45db76f2fdd9373e56f2d29b519f4d43b" + url "https://www.sqlite.org/2025/sqlite-src-3490200.zip" + version "3.49.2" + sha256 "c3101978244669a43bc09f44fa21e47a4e25cdf440f1829e9eff176b9a477862" license "blessing" livecheck do formula "sqlite" end + no_autobump! because: :incompatible_version_format + bottle do sha256 cellar: :any, arm64_sequoia: "8eba0a51124012d7330f891802419b11700906803414b596aae62b3707d87050" sha256 cellar: :any, arm64_sonoma: "2c4b335a2e922b87c675dc1cd06d3406bb9ebab2006ad16cac4083c61646f062" From 3345c7de42160517c1b30d066935f4c5a7e760c5 Mon Sep 17 00:00:00 2001 From: botantony Date: Fri, 9 May 2025 19:15:33 +0200 Subject: [PATCH 0559/1364] sqlite-analyzer 3.49.2 Signed-off-by: botantony --- Formula/s/sqlite-analyzer.rb | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Formula/s/sqlite-analyzer.rb b/Formula/s/sqlite-analyzer.rb index 0f08657c27fbf..012c2113a6597 100644 --- a/Formula/s/sqlite-analyzer.rb +++ b/Formula/s/sqlite-analyzer.rb @@ -1,15 +1,17 @@ class SqliteAnalyzer < Formula desc "Analyze how space is allocated inside an SQLite file" homepage "https://www.sqlite.org/" - url "https://www.sqlite.org/2025/sqlite-src-3490100.zip" - version "3.49.1" - sha256 "4404d93cbce818b1b98ca7259d0ba9b45db76f2fdd9373e56f2d29b519f4d43b" + url "https://www.sqlite.org/2025/sqlite-src-3490200.zip" + version "3.49.2" + sha256 "c3101978244669a43bc09f44fa21e47a4e25cdf440f1829e9eff176b9a477862" license "blessing" livecheck do formula "sqlite" end + no_autobump! because: :incompatible_version_format + bottle do sha256 cellar: :any, arm64_sequoia: "f7e90f78db2a0025da80a686bcbb01c17fc8b431484f328c8f88d66b457b8b7c" sha256 cellar: :any, arm64_sonoma: "7bdc35d3236c57f446b3ebbe58c7bf55f1ad711c0da0ae1ce07cbb836c0ca4da" From 91246535c3cbe47b3f4e3526df53f9d0a149593f Mon Sep 17 00:00:00 2001 From: botantony Date: Fri, 9 May 2025 19:15:37 +0200 Subject: [PATCH 0560/1364] sqlite 3.49.2 Signed-off-by: botantony --- Formula/s/sqlite.rb | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Formula/s/sqlite.rb b/Formula/s/sqlite.rb index 6221e8e03c786..2c7427c98d582 100644 --- a/Formula/s/sqlite.rb +++ b/Formula/s/sqlite.rb @@ -1,9 +1,9 @@ class Sqlite < Formula desc "Command-line interface for SQLite" homepage "https://sqlite.org/index.html" - url "https://www.sqlite.org/2025/sqlite-autoconf-3490100.tar.gz" - version "3.49.1" - sha256 "106642d8ccb36c5f7323b64e4152e9b719f7c0215acf5bfeac3d5e7f97b59254" + url "https://www.sqlite.org/2025/sqlite-autoconf-3490200.tar.gz" + version "3.49.2" + sha256 "5c6d8697e8a32a1512a9be5ad2b2e7a891241c334f56f8b0fb4fc6051e1652e8" license "blessing" livecheck do @@ -14,6 +14,8 @@ class Sqlite < Formula end end + no_autobump! because: :incompatible_version_format + bottle do sha256 cellar: :any, arm64_sequoia: "757c3d60f4d35fe1c3336207d63992fc804fa6ddd2c40ebb84eb7bfa07bc69e1" sha256 cellar: :any, arm64_sonoma: "49a9ba828b871d0aca0f9093478971763172c20c7c3184bab42b5f0dd579268f" From d23f4c5c10423ef3804bd9fc9fbdb4c85a02f7ba Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 17:17:22 +0000 Subject: [PATCH 0561/1364] terragrunt 0.78.2 --- Formula/t/terragrunt.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/t/terragrunt.rb b/Formula/t/terragrunt.rb index 622fb48a4fe38..f6e7338c8269d 100644 --- a/Formula/t/terragrunt.rb +++ b/Formula/t/terragrunt.rb @@ -1,8 +1,8 @@ class Terragrunt < Formula desc "Thin wrapper for Terraform e.g. for locking state" homepage "https://terragrunt.gruntwork.io/" - url "https://github.com/gruntwork-io/terragrunt/archive/refs/tags/v0.78.1.tar.gz" - sha256 "58cf4815bf38b287b6273fdbe0e261a4cbebbe92ebf3d22222658a1977751ca8" + url "https://github.com/gruntwork-io/terragrunt/archive/refs/tags/v0.78.2.tar.gz" + sha256 "9966c90ce842089295bae6ba26d3f50ab443d88c954c46a3c2af0b8227283189" license "MIT" # Upstream creates releases that use a stable tag (e.g., `v1.2.3`) but are From 7916e8d7c817ba19fe4fdcd5b1aec18eb9f26f64 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 17:17:47 +0000 Subject: [PATCH 0562/1364] tippecanoe 2.78.0 --- Formula/t/tippecanoe.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/t/tippecanoe.rb b/Formula/t/tippecanoe.rb index c6593fb9b2efd..8fe664d4d78a9 100644 --- a/Formula/t/tippecanoe.rb +++ b/Formula/t/tippecanoe.rb @@ -1,8 +1,8 @@ class Tippecanoe < Formula desc "Build vector tilesets from collections of GeoJSON features" homepage "https://github.com/felt/tippecanoe" - url "https://github.com/felt/tippecanoe/archive/refs/tags/2.77.0.tar.gz" - sha256 "4cb152a705250ab37f09d02610df376599c4423efbda96b65ad26f41a966d29e" + url "https://github.com/felt/tippecanoe/archive/refs/tags/2.78.0.tar.gz" + sha256 "da628c5fa1aec3aba318f6096d2f60d8b4cc78043e1c25e18a4d0975c8262f00" license "BSD-2-Clause" livecheck do From f1a14126f6b01fe6e364409f1ddc048fa5e9403f Mon Sep 17 00:00:00 2001 From: botantony Date: Fri, 9 May 2025 19:20:09 +0200 Subject: [PATCH 0563/1364] ortp 5.4.15 Signed-off-by: botantony --- Formula/o/ortp.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Formula/o/ortp.rb b/Formula/o/ortp.rb index 26a0d0d6c65c3..55735596cf1f0 100644 --- a/Formula/o/ortp.rb +++ b/Formula/o/ortp.rb @@ -4,16 +4,16 @@ class Ortp < Formula license "GPL-3.0-or-later" stable do - url "https://gitlab.linphone.org/BC/public/ortp/-/archive/5.4.14/ortp-5.4.14.tar.bz2" - sha256 "cc91f7bb8ca5cfab4e333f1e1655a3ff0d82fa61ca93117178872980e7e286a5" + url "https://gitlab.linphone.org/BC/public/ortp/-/archive/5.4.15/ortp-5.4.15.tar.bz2" + sha256 "463a2f3bb2da09937dc587dad6afd948d928cda4ebf9ec9e750312ca9fe70778" depends_on "mbedtls" # bctoolbox appears to follow ortp's version. This can be verified at the GitHub mirror: # https://github.com/BelledonneCommunications/bctoolbox resource "bctoolbox" do - url "https://gitlab.linphone.org/BC/public/bctoolbox/-/archive/5.4.14/bctoolbox-5.4.14.tar.bz2" - sha256 "494245128330401f45abce89bf9b1db9b404462ac424a957a15926d558dba6eb" + url "https://gitlab.linphone.org/BC/public/bctoolbox/-/archive/5.4.15/bctoolbox-5.4.15.tar.bz2" + sha256 "ca6c43592d9c7f915b9a0d7767deb7fbff54b777947070212901ba566c0dca27" livecheck do formula :parent From 007ccbc9e2ba01ecd2080709535a093bf4d7b1d5 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 17:25:11 +0000 Subject: [PATCH 0564/1364] bkmr: update 4.21.0 bottle. --- Formula/b/bkmr.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/b/bkmr.rb b/Formula/b/bkmr.rb index edbc51ef77f47..d2ae3a2e91052 100644 --- a/Formula/b/bkmr.rb +++ b/Formula/b/bkmr.rb @@ -7,13 +7,13 @@ class Bkmr < Formula head "https://github.com/sysid/bkmr.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "9e62d6e36b5261cf512117a4dfb94e680da4d60679b4329a237269bf97d2304f" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "d543def1339c0c2bd1193cb11c07c12837c5bf11060f3489a8ff7e3c9d099275" - sha256 cellar: :any_skip_relocation, arm64_ventura: "a3aeb77bb465cfa8ec6bbe65e98ccffac72f64a8a769fa7a96b4d1ac89f94940" - sha256 cellar: :any_skip_relocation, sonoma: "5cb2dcda7b42fd5f719805226cb14dde750a34f69904758bc8924ef34c572b22" - sha256 cellar: :any_skip_relocation, ventura: "bb91ca73c3750d781000a6bce12b0ed5c75dad184e7a82dd4495c126c4c94efd" - sha256 cellar: :any_skip_relocation, arm64_linux: "e5fac8d813caf6b1a947eada139a7d574077c68507c50b9225946dd83eae5dc6" - sha256 cellar: :any_skip_relocation, x86_64_linux: "98252b36ad407f02f75d57e3e1ddd22e40c50b01117d3fa7fa6cdca5e9b1dcf8" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "b7ebb45ac51a5757c61864b44c4d7e6126b795e75c00311e502923128ed77e76" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "238aa425a0cae86bfc363947f440d5dd2bb7e057f6fdda3a705de4975e3ff1c9" + sha256 cellar: :any_skip_relocation, arm64_ventura: "289bcfc7a611a457b20017d200ff839acf52c8a25530be726e17333b80006fed" + sha256 cellar: :any_skip_relocation, sonoma: "bcb879a57c5172d7dfd09faf0f3f2b946d0a6a4c027d9322022b2f78939106c5" + sha256 cellar: :any_skip_relocation, ventura: "bc4c7887fd10fe39d53cb80f06391d8b8ab30727d6c433f4e5670a239a7fae09" + sha256 cellar: :any_skip_relocation, arm64_linux: "ad125a883f6e54d541544b1da612a2679f70a3155dbf07a6e3e5606f0edb2cc0" + sha256 cellar: :any_skip_relocation, x86_64_linux: "eb2bd069c208584ad0cebd7abe3dffdefe44c01c502655069bbf8fa7d40c75e2" end depends_on "rust" => :build From 065d2a7d0db0525844967871789555a0c2fbe7d3 Mon Sep 17 00:00:00 2001 From: botantony Date: Fri, 9 May 2025 19:55:27 +0200 Subject: [PATCH 0565/1364] vulkan-headers 1.4.315 --- Formula/v/vulkan-headers.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/v/vulkan-headers.rb b/Formula/v/vulkan-headers.rb index 6b3d0a3ff0115..8f48d2b058d4f 100644 --- a/Formula/v/vulkan-headers.rb +++ b/Formula/v/vulkan-headers.rb @@ -1,8 +1,8 @@ class VulkanHeaders < Formula desc "Vulkan Header files and API registry" homepage "https://github.com/KhronosGroup/Vulkan-Headers" - url "https://github.com/KhronosGroup/Vulkan-Headers/archive/refs/tags/v1.4.314.tar.gz" - sha256 "da32bccb312ddbc69519ee248ea222723083441e9d59bde4381c76bde8ad9dba" + url "https://github.com/KhronosGroup/Vulkan-Headers/archive/refs/tags/v1.4.315.tar.gz" + sha256 "77e3a78db853f8b9c5bc3ddef04e637bef9744e01d6a8c90ebe0ddcd916c0c50" license "Apache-2.0" head "https://github.com/KhronosGroup/Vulkan-Headers.git", branch: "main" From 2367e77d49ddb2d569333190148516123b789977 Mon Sep 17 00:00:00 2001 From: botantony Date: Fri, 9 May 2025 19:55:28 +0200 Subject: [PATCH 0566/1364] vulkan-loader 1.4.315 --- Formula/v/vulkan-loader.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/v/vulkan-loader.rb b/Formula/v/vulkan-loader.rb index 1d11c04e7a746..4ba4e9028aaf2 100644 --- a/Formula/v/vulkan-loader.rb +++ b/Formula/v/vulkan-loader.rb @@ -1,8 +1,8 @@ class VulkanLoader < Formula desc "Vulkan ICD Loader" homepage "https://github.com/KhronosGroup/Vulkan-Loader" - url "https://github.com/KhronosGroup/Vulkan-Loader/archive/refs/tags/v1.4.314.tar.gz" - sha256 "0ab4147003b881df01eec1cceabe3a2e1491dd45bf90bb50113f791af6b8d86c" + url "https://github.com/KhronosGroup/Vulkan-Loader/archive/refs/tags/v1.4.315.tar.gz" + sha256 "2e7c3762ce0ef6ba35e319ca270f1714c06e02c0efca145a1c5fbcc4f79fe59f" license "Apache-2.0" head "https://github.com/KhronosGroup/Vulkan-Loader.git", branch: "main" From 2a6fcfcaa7cedcfb4a75517f2608ee5329857d0f Mon Sep 17 00:00:00 2001 From: botantony Date: Fri, 9 May 2025 19:55:28 +0200 Subject: [PATCH 0567/1364] vulkan-tools 1.4.315 --- Formula/v/vulkan-tools.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/v/vulkan-tools.rb b/Formula/v/vulkan-tools.rb index 0bb219b510047..b0fc1c69e6e9b 100644 --- a/Formula/v/vulkan-tools.rb +++ b/Formula/v/vulkan-tools.rb @@ -1,8 +1,8 @@ class VulkanTools < Formula desc "Vulkan utilities and tools" homepage "https://github.com/KhronosGroup/Vulkan-Tools" - url "https://github.com/KhronosGroup/Vulkan-Tools/archive/refs/tags/v1.4.314.tar.gz" - sha256 "720f10e8e5a8a816e869ab120a094480ba64c5a025822e88c5766c7938a435e0" + url "https://github.com/KhronosGroup/Vulkan-Tools/archive/refs/tags/v1.4.315.tar.gz" + sha256 "2caefad09082941af790fda9a5dc5dd776f73124148b1d34ea0e2db1af67c0c0" license "Apache-2.0" head "https://github.com/KhronosGroup/Vulkan-Tools.git", branch: "main" From 3947f179dcc6d4d7440a49d90eed1b4a6f0c5517 Mon Sep 17 00:00:00 2001 From: botantony Date: Fri, 9 May 2025 19:55:28 +0200 Subject: [PATCH 0568/1364] vulkan-utility-libraries 1.4.315 --- Formula/v/vulkan-utility-libraries.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/v/vulkan-utility-libraries.rb b/Formula/v/vulkan-utility-libraries.rb index 1155f7de94400..27154660c3b8f 100644 --- a/Formula/v/vulkan-utility-libraries.rb +++ b/Formula/v/vulkan-utility-libraries.rb @@ -1,8 +1,8 @@ class VulkanUtilityLibraries < Formula desc "Utility Libraries for Vulkan" homepage "https://github.com/KhronosGroup/Vulkan-Utility-Libraries" - url "https://github.com/KhronosGroup/Vulkan-Utility-Libraries/archive/refs/tags/v1.4.314.tar.gz" - sha256 "aad807bfe8fe5b1a442204c9daf935be9e3b9973004b05e5df98ca94ea9f0882" + url "https://github.com/KhronosGroup/Vulkan-Utility-Libraries/archive/refs/tags/v1.4.315.tar.gz" + sha256 "c51e3f7faef76b86b74f86ccfc18a7bd93ea42ae9c8acba33b04e7db41ea5b55" license "Apache-2.0" head "https://github.com/KhronosGroup/Vulkan-Utility-Libraries.git", branch: "main" From e400858d5364027503187840b2a074d96b7168a8 Mon Sep 17 00:00:00 2001 From: botantony Date: Fri, 9 May 2025 19:57:01 +0200 Subject: [PATCH 0569/1364] autobump: add vulkan-related formulae Signed-off-by: botantony --- .github/autobump.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/autobump.txt b/.github/autobump.txt index 5df9c32a4276e..da6f15c60ff1b 100644 --- a/.github/autobump.txt +++ b/.github/autobump.txt @@ -3829,7 +3829,11 @@ vte3 vtk vue-language-server vulkan-extensionlayer +vulkan-headers +vulkan-loader vulkan-profiles +vulkan-tools +vulkan-utility-libraries vulkan-validationlayers vulkan-volk vulsio-gost From 73382dc201293dc70e9d1f3ee4e2995e5404e35f Mon Sep 17 00:00:00 2001 From: l5io <47201130+l5io@users.noreply.github.com> Date: Fri, 9 May 2025 13:22:16 -0500 Subject: [PATCH 0570/1364] mesheryctl 0.8.77 Created by https://github.com/mislav/bump-homebrew-formula-action --- Formula/m/mesheryctl.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/m/mesheryctl.rb b/Formula/m/mesheryctl.rb index 91b6be736a739..04406c0c82534 100644 --- a/Formula/m/mesheryctl.rb +++ b/Formula/m/mesheryctl.rb @@ -2,8 +2,8 @@ class Mesheryctl < Formula desc "Command-line utility for Meshery, the cloud native management plane" homepage "https://meshery.io" url "https://github.com/meshery/meshery.git", - tag: "v0.8.76", - revision: "b4f292ecd4e8e4bebc8ee13eef440c25296fbb8e" + tag: "v0.8.77", + revision: "b4f623bd45805568472a4260e782361fe1e6d81f" license "Apache-2.0" head "https://github.com/meshery/meshery.git", branch: "master" From 1ec54506f2666d0e5b0af5f878ea328b575d9eae Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 18:52:21 +0000 Subject: [PATCH 0571/1364] llama.cpp: update 5330 bottle. --- Formula/l/llama.cpp.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/l/llama.cpp.rb b/Formula/l/llama.cpp.rb index 862101da1b0c1..a40c27f8afc45 100644 --- a/Formula/l/llama.cpp.rb +++ b/Formula/l/llama.cpp.rb @@ -19,13 +19,13 @@ class LlamaCpp < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "9a810fc79148d7ad4ddb1b4b2b9f36f44aaaf553fc39354ab62f8334ca9b9dda" - sha256 cellar: :any, arm64_sonoma: "4bc3931ff8e791fa336a0317501957b1c73b816e1f43e93cba31ac9b11c84b3b" - sha256 cellar: :any, arm64_ventura: "3cdbc5162b259cbe84c19353b7bfec7ac4aaacfadda11c536a916de241e1fbb6" - sha256 cellar: :any, sonoma: "25ec7e92db857b51f13c229634f520465d2c49d8685637fd887768df8440be67" - sha256 cellar: :any, ventura: "93b049332afcdde3af9c19f32b259f83597a55a4a862962a9c52ac7fedc43445" - sha256 cellar: :any_skip_relocation, arm64_linux: "192f778cbe0cfef7a16cbe42bc5b339bd107dd5ac355c83995019f04fe62411f" - sha256 cellar: :any_skip_relocation, x86_64_linux: "6f408c287624f7b56809c9788ff4450a4cbf5115f18b9806886943f9ea4cde9b" + sha256 cellar: :any, arm64_sequoia: "7ab32ff555aedd9df502e8187ef4c12d8a8996a9f4d0564d3145d3b8d7abf066" + sha256 cellar: :any, arm64_sonoma: "323094cc4ee06cd29eb3d827aece056d80ce0e5f1c778101fcaf779c7179277f" + sha256 cellar: :any, arm64_ventura: "ef80869f84da914b0772d925de9fa46c27bc6538adbb4790b8c09c54dea8b953" + sha256 cellar: :any, sonoma: "a97391572f5fd9e91f19a84a4e6a2999c4b5314802559cf892d33a1b40475f21" + sha256 cellar: :any, ventura: "64e0e9993e49d8d99d08d55ace66af248fa520f684b2a6a10b9ca2d599fbf0c1" + sha256 cellar: :any_skip_relocation, arm64_linux: "b6bdbe5a3f9cba60cc5881f13e3545d7bec59b5ecdc1649af54d092e6b8d3d42" + sha256 cellar: :any_skip_relocation, x86_64_linux: "475279f8af86160ed5ccca31563481353b3b5c465c581c2334956aea21a96731" end depends_on "cmake" => :build From f75a7d34d6a46dc779fbfbfa425b17b2853d2748 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 18:52:53 +0000 Subject: [PATCH 0572/1364] terragrunt: update 0.78.2 bottle. --- Formula/t/terragrunt.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/t/terragrunt.rb b/Formula/t/terragrunt.rb index f6e7338c8269d..442eda58d07a7 100644 --- a/Formula/t/terragrunt.rb +++ b/Formula/t/terragrunt.rb @@ -14,12 +14,12 @@ class Terragrunt < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "d96d26478352f055b2586f918f9c1bc8b133a9a22f049bd827b6deb6e2b9e5c6" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "d96d26478352f055b2586f918f9c1bc8b133a9a22f049bd827b6deb6e2b9e5c6" - sha256 cellar: :any_skip_relocation, arm64_ventura: "d96d26478352f055b2586f918f9c1bc8b133a9a22f049bd827b6deb6e2b9e5c6" - sha256 cellar: :any_skip_relocation, sonoma: "16e30ca5eb2782cd74fc3abc3b19b088e0731075c9752cfa22ade2cc2cd74ccf" - sha256 cellar: :any_skip_relocation, ventura: "16e30ca5eb2782cd74fc3abc3b19b088e0731075c9752cfa22ade2cc2cd74ccf" - sha256 cellar: :any_skip_relocation, x86_64_linux: "bbf0d78c43e00ad99e763f317daf5611efc980f14ff349f3872c001815fff78d" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "4e167f3b713e51456d6bf75c248b604edacf1db96197114c88cded7c47c67c38" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "4e167f3b713e51456d6bf75c248b604edacf1db96197114c88cded7c47c67c38" + sha256 cellar: :any_skip_relocation, arm64_ventura: "4e167f3b713e51456d6bf75c248b604edacf1db96197114c88cded7c47c67c38" + sha256 cellar: :any_skip_relocation, sonoma: "4aa79a804e3390c6bbfc413a88db72bcddfd8487119c0447e483c9c0ea700304" + sha256 cellar: :any_skip_relocation, ventura: "4aa79a804e3390c6bbfc413a88db72bcddfd8487119c0447e483c9c0ea700304" + sha256 cellar: :any_skip_relocation, x86_64_linux: "1343e29660723fb5cd7100bb4bb5b523f1db242b5327d964296d29d5a6f4253f" end depends_on "go" => :build From 9a35ddc73e357f84f621036614f62fc782363d52 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 18:53:09 +0000 Subject: [PATCH 0573/1364] ruff: update 0.11.9 bottle. --- Formula/r/ruff.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/r/ruff.rb b/Formula/r/ruff.rb index cd713f7f10835..3cf76d4458fa3 100644 --- a/Formula/r/ruff.rb +++ b/Formula/r/ruff.rb @@ -7,13 +7,13 @@ class Ruff < Formula head "https://github.com/astral-sh/ruff.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "7288cfac1d25acf6f5f63137f8779014a74e20b13f1968c563bf1df52f313324" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "249746d73f949184186be89f62eeb9a7795d32cba4fb8252e14330e6478eb27a" - sha256 cellar: :any_skip_relocation, arm64_ventura: "760ac58784f9d94536ceeeec9773418a31bd553968c2557a8f961ff7538a6bbc" - sha256 cellar: :any_skip_relocation, sonoma: "9b7efb1255f533fc8f6453cd1ec053a7b863ed13ce9b22084824411c013b703c" - sha256 cellar: :any_skip_relocation, ventura: "1cb09f9dc9501ad92c87074a310d3fa4b524caa491df128d0527f68805a71872" - sha256 cellar: :any_skip_relocation, arm64_linux: "ef6181166d511e4f023434d1ce3efe185d7e0181b8fc7bc0547a82c9f477e76e" - sha256 cellar: :any_skip_relocation, x86_64_linux: "3ca5651be023a79eddae0ca16c859d18d2d477306e00bd8c9b1c9b709349254c" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "6d669f38fcc4d6565cb1bd150b8c09b9005cea8fc6327c30b8633cc2f763a446" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "aadc5b8f112f4a2cc887c2af02f56b184d919566d3b92aecd31dfeae59269528" + sha256 cellar: :any_skip_relocation, arm64_ventura: "9d99a63da5572f820278d978e61b4d00afeeab195cf222beded6f586ad197918" + sha256 cellar: :any_skip_relocation, sonoma: "6a8994f708123891ae540e57b8b817771697adfa819057888b8482f21318e2dd" + sha256 cellar: :any_skip_relocation, ventura: "b93be442e0eae6d4cc1ed0991c244e3cfd196a7bef0c28da643ba6afff8b1487" + sha256 cellar: :any_skip_relocation, arm64_linux: "1283b7e2af96e8d02578dc8d85080d545d5e1fb1c05197795ed256c9f1c888db" + sha256 cellar: :any_skip_relocation, x86_64_linux: "50aebc2c5aa751cfb979db10cd04c83e9afcb4fb0402711d24d8cd85fa9c4f98" end depends_on "rust" => :build From d06627f4199f6a1cd3bd01f7dde685271f20f355 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 18:53:50 +0000 Subject: [PATCH 0574/1364] tippecanoe: update 2.78.0 bottle. --- Formula/t/tippecanoe.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/t/tippecanoe.rb b/Formula/t/tippecanoe.rb index 8fe664d4d78a9..f02d9182de190 100644 --- a/Formula/t/tippecanoe.rb +++ b/Formula/t/tippecanoe.rb @@ -11,13 +11,13 @@ class Tippecanoe < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "c34771632da98e7b086022f8b75a88d55abe5f57927964d362c81cc97b9aaf6f" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "8ac89dcc288c13cc205116c990ed137115a4f55285ccc8de4144b8c55bf1a594" - sha256 cellar: :any_skip_relocation, arm64_ventura: "49e2f77aef2ec18f7c59b95196aba7b1c2a496c2804c378bfee7d6c3c10ad228" - sha256 cellar: :any_skip_relocation, sonoma: "5d9a866db7aeefd1c2e7e62e6c99ed3ef7c187e114b5410a391e6d183a57ffba" - sha256 cellar: :any_skip_relocation, ventura: "5357fb2244b2da01db78e39c51c4128026a0f4b13bef4996b4aba4f7b062bdaf" - sha256 cellar: :any_skip_relocation, arm64_linux: "5b48940708a98344a7ee8abab6c0b07ed509e1c5a8ef494f6f461cfb4e4b4a25" - sha256 cellar: :any_skip_relocation, x86_64_linux: "ef79dd3a4bb85a9ecf913c69c6aabf7a80a757b0cc30b2824379f61c811b5db6" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "bad7cb29c955e82161443cbb4ceaea5c2f363b916ac39caee6dc1858838c769b" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "f4c6159f9be5c5f8f51086368285c092477e56a9e806c0df5f277c57c4ecc0b6" + sha256 cellar: :any_skip_relocation, arm64_ventura: "11b91e170f02af2ac3a06abe136ed801a63f992deb9a8a07a643af93175d20e6" + sha256 cellar: :any_skip_relocation, sonoma: "cbc643cdac3193b9aa7772a0673ab05d6cad35c06381d8e83d02c5e3dba17a36" + sha256 cellar: :any_skip_relocation, ventura: "fa88fbbf875ed9ea6320eef04a79c900fbf2a75a545582058d475acb2632e9dd" + sha256 cellar: :any_skip_relocation, arm64_linux: "ea7de77825580f3434355a2a15638bfdecbcfba0ea3deb7289d8ba44d291e517" + sha256 cellar: :any_skip_relocation, x86_64_linux: "92a3f5a0750911ebc42d9289149fb924db26add21d1e9080f0423f36e7c741f6" end uses_from_macos "sqlite" From b1cddf2f2ce641aa532f9d62f654cc411bb10241 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 18:53:52 +0000 Subject: [PATCH 0575/1364] mesheryctl: update 0.8.77 bottle. --- Formula/m/mesheryctl.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/m/mesheryctl.rb b/Formula/m/mesheryctl.rb index 04406c0c82534..d9c417e2933ed 100644 --- a/Formula/m/mesheryctl.rb +++ b/Formula/m/mesheryctl.rb @@ -10,13 +10,13 @@ class Mesheryctl < Formula no_autobump! because: :bumped_by_upstream bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "fe15e492d71199ac2523df810a2e144792f83aafc56274beeaabf9933767e970" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "fe15e492d71199ac2523df810a2e144792f83aafc56274beeaabf9933767e970" - sha256 cellar: :any_skip_relocation, arm64_ventura: "fe15e492d71199ac2523df810a2e144792f83aafc56274beeaabf9933767e970" - sha256 cellar: :any_skip_relocation, sonoma: "fa00aae4f1d3be816f07a2231a3c0d7b494fa1e4c0f943ff54ba72a78c787af7" - sha256 cellar: :any_skip_relocation, ventura: "fa00aae4f1d3be816f07a2231a3c0d7b494fa1e4c0f943ff54ba72a78c787af7" - sha256 cellar: :any_skip_relocation, arm64_linux: "de1751923dee046da4a77b782186480ade32542cc8854c5823fe033908cd416b" - sha256 cellar: :any_skip_relocation, x86_64_linux: "a783d1584cb9182bd60766a8590e895b915d331b58e91c4fae48d7c6817d9012" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "8897b97553dc6092355d5d725a77b429322ccc2dc818aca5ac4d122cbd5ccc7a" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "8897b97553dc6092355d5d725a77b429322ccc2dc818aca5ac4d122cbd5ccc7a" + sha256 cellar: :any_skip_relocation, arm64_ventura: "8897b97553dc6092355d5d725a77b429322ccc2dc818aca5ac4d122cbd5ccc7a" + sha256 cellar: :any_skip_relocation, sonoma: "bfc586a1a72e492aa53d3b60347b9f533db6f64ab7ece499ee4e5eef53b816e6" + sha256 cellar: :any_skip_relocation, ventura: "bfc586a1a72e492aa53d3b60347b9f533db6f64ab7ece499ee4e5eef53b816e6" + sha256 cellar: :any_skip_relocation, arm64_linux: "3be9086ca099289b2384e3f33c98957a6525b80ebda8533bb67304e2c52edcf2" + sha256 cellar: :any_skip_relocation, x86_64_linux: "1b503fca9f69785b90550e426aa8d17777e8ae078e8322653de37b53cfcbb35d" end depends_on "go" => :build From 03eabb9ede6e7d72ca590f8186b7e8abf8d172bb Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 19:06:24 +0000 Subject: [PATCH 0576/1364] diffoscope: update 295 bottle. --- Formula/d/diffoscope.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/d/diffoscope.rb b/Formula/d/diffoscope.rb index 209a2dc60f0ba..61413aff0c12a 100644 --- a/Formula/d/diffoscope.rb +++ b/Formula/d/diffoscope.rb @@ -8,13 +8,13 @@ class Diffoscope < Formula license "GPL-3.0-or-later" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "983b3a72e64edd88c16803eab9e1cc88db894ca60cb69556916f97a0801c7624" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "983b3a72e64edd88c16803eab9e1cc88db894ca60cb69556916f97a0801c7624" - sha256 cellar: :any_skip_relocation, arm64_ventura: "983b3a72e64edd88c16803eab9e1cc88db894ca60cb69556916f97a0801c7624" - sha256 cellar: :any_skip_relocation, sonoma: "15b0b4cd688c1e1c950479457586cd5ffe3f5f6775a0bab688d68ba6ea64e71e" - sha256 cellar: :any_skip_relocation, ventura: "15b0b4cd688c1e1c950479457586cd5ffe3f5f6775a0bab688d68ba6ea64e71e" - sha256 cellar: :any_skip_relocation, arm64_linux: "346fcaa9e1298415f29d71d43d093e2bcc9f19ba024613cb13b4a28a3947c19f" - sha256 cellar: :any_skip_relocation, x86_64_linux: "346fcaa9e1298415f29d71d43d093e2bcc9f19ba024613cb13b4a28a3947c19f" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "72561383a6605b074c65408ecf6a012bda7afed15ccea38a2f59e2bfdbaf846b" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "72561383a6605b074c65408ecf6a012bda7afed15ccea38a2f59e2bfdbaf846b" + sha256 cellar: :any_skip_relocation, arm64_ventura: "72561383a6605b074c65408ecf6a012bda7afed15ccea38a2f59e2bfdbaf846b" + sha256 cellar: :any_skip_relocation, sonoma: "f1431204e8d53d11d393778f8ff9d4eefe0eb11d4b250a80c3191be650e8f83b" + sha256 cellar: :any_skip_relocation, ventura: "f1431204e8d53d11d393778f8ff9d4eefe0eb11d4b250a80c3191be650e8f83b" + sha256 cellar: :any_skip_relocation, arm64_linux: "ef40858ce16753a77d8dfb8f32dda51080ecfaf3b8e7c5f770a2706eaadcf017" + sha256 cellar: :any_skip_relocation, x86_64_linux: "ef40858ce16753a77d8dfb8f32dda51080ecfaf3b8e7c5f770a2706eaadcf017" end depends_on "libarchive" From c13123ebbeb3f5ec702342397a1c9a6b3416b3cb Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 19:09:58 +0000 Subject: [PATCH 0577/1364] falco: update 1.17.0 bottle. --- Formula/f/falco.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/f/falco.rb b/Formula/f/falco.rb index 2b2f67582d8d4..e51e9154e3ad5 100644 --- a/Formula/f/falco.rb +++ b/Formula/f/falco.rb @@ -7,12 +7,12 @@ class Falco < Formula head "https://github.com/ysugimoto/falco.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "bf48bf74832c36f7e29928805f68f437af79c611daa3436bcbe198f94c6e616b" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "bf48bf74832c36f7e29928805f68f437af79c611daa3436bcbe198f94c6e616b" - sha256 cellar: :any_skip_relocation, arm64_ventura: "bf48bf74832c36f7e29928805f68f437af79c611daa3436bcbe198f94c6e616b" - sha256 cellar: :any_skip_relocation, sonoma: "e24213c3edce989b03cc999d27ec840c14eda32c44c847ea91c46f457a992605" - sha256 cellar: :any_skip_relocation, ventura: "e24213c3edce989b03cc999d27ec840c14eda32c44c847ea91c46f457a992605" - sha256 cellar: :any_skip_relocation, x86_64_linux: "1e9c20ad4e12d5f5d45b9f8370382fcebc923c3765be3598e834b5458123c3b4" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "e3c0c6fb52a1a6cb077358496872538bfca3ddcd5fe44d645c18768f919418fc" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "e3c0c6fb52a1a6cb077358496872538bfca3ddcd5fe44d645c18768f919418fc" + sha256 cellar: :any_skip_relocation, arm64_ventura: "e3c0c6fb52a1a6cb077358496872538bfca3ddcd5fe44d645c18768f919418fc" + sha256 cellar: :any_skip_relocation, sonoma: "3152a662a9c28eaae54f874a92dbbe7dbb5c52ba2397cf5d1ae9498bf7f006bc" + sha256 cellar: :any_skip_relocation, ventura: "3152a662a9c28eaae54f874a92dbbe7dbb5c52ba2397cf5d1ae9498bf7f006bc" + sha256 cellar: :any_skip_relocation, x86_64_linux: "ac5765774cf7f07cc5690be7e77b23776c25863c49825c8ce2e640287826f066" end depends_on "go" => :build From 4ecd14cbe60219e133b24ea20c2962141d08f6ea Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 19:19:13 +0000 Subject: [PATCH 0578/1364] conftest: update 0.60.0 bottle. --- Formula/c/conftest.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/c/conftest.rb b/Formula/c/conftest.rb index 982f279e50bdb..4ff15bf03ff37 100644 --- a/Formula/c/conftest.rb +++ b/Formula/c/conftest.rb @@ -7,12 +7,12 @@ class Conftest < Formula head "https://github.com/open-policy-agent/conftest.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "8c517a65f23727a7e3781ac711a1e343ee579a68fea06cbbf0efe4ac7873fb75" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "8def6c63a0ad5dcbd5a6b5b298783d1a50dc29f105310d45c882d245146775ef" - sha256 cellar: :any_skip_relocation, arm64_ventura: "3572b8a232363769d304e1526541af63fda59a777095cb556e13927273b3330c" - sha256 cellar: :any_skip_relocation, sonoma: "49190afffeae49cc9e40f6efb9561a8d28088c4799a405c9b68759b187f84278" - sha256 cellar: :any_skip_relocation, ventura: "7b6d96fa97826466a91af5ecdb628b8752f96cad382e656c9b24f6e9a7e65699" - sha256 cellar: :any_skip_relocation, x86_64_linux: "fd271f01f04ef04f635d0b1ce4279d97fc91ef93bf9ae0bcae848d0820339153" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "effd49553b97c61f566f9e6f20088c720eef2d9cccb059991be421551724483c" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "e09a8c2da7662d8c109024e001e7ef49833718bdd5575779238fc4f313f20e2d" + sha256 cellar: :any_skip_relocation, arm64_ventura: "01f9d2cc41bbdc7500639f6e396ff1c7c771291b428f6e76671a09079ae052c0" + sha256 cellar: :any_skip_relocation, sonoma: "6ae1bff1b4b49e52187fd2f147265961ad59a99ab8de5b07d52bf0cac1bb80c8" + sha256 cellar: :any_skip_relocation, ventura: "5ea5d6a74c47a0945691a4482754050ed23f8363511a845ee88cf66a2b824b0c" + sha256 cellar: :any_skip_relocation, x86_64_linux: "fcde20e3189d8bbbbd92b3c7339f0d40d720a5a42da5a50c6f243f23529b6144" end depends_on "go" => :build From b1457d84ac87a99caf7d021e2bc8b86ba5c4eeb1 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 19:50:32 +0000 Subject: [PATCH 0579/1364] awscli 2.27.12 --- Formula/a/awscli.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/a/awscli.rb b/Formula/a/awscli.rb index aa67d74e9e612..77b65a9a9a439 100644 --- a/Formula/a/awscli.rb +++ b/Formula/a/awscli.rb @@ -3,8 +3,8 @@ class Awscli < Formula desc "Official Amazon AWS command-line interface" homepage "https://aws.amazon.com/cli/" - url "https://github.com/aws/aws-cli/archive/refs/tags/2.27.11.tar.gz" - sha256 "aa8b95a0887f6a6ff02e03be7e54219d97ccd634dfdff3107a10fc7b66892b7c" + url "https://github.com/aws/aws-cli/archive/refs/tags/2.27.12.tar.gz" + sha256 "6ae980c54efa86926d457a4c97a8488ed5aaef69d72c53528ef9a6f631d24a9a" license "Apache-2.0" head "https://github.com/aws/aws-cli.git", branch: "v2" From 379406bf3bb0df75d82d9aaa359b0a343de74ffc Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 19:51:07 +0000 Subject: [PATCH 0580/1364] bazel-diff 9.0.1 --- Formula/b/bazel-diff.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/b/bazel-diff.rb b/Formula/b/bazel-diff.rb index 79150d5df78aa..05dc6fcf99af6 100644 --- a/Formula/b/bazel-diff.rb +++ b/Formula/b/bazel-diff.rb @@ -1,8 +1,8 @@ class BazelDiff < Formula desc "Performs Bazel Target Diffing between two revisions in Git" homepage "https://github.com/Tinder/bazel-diff/" - url "https://github.com/Tinder/bazel-diff/releases/download/9.0.0/bazel-diff_deploy.jar" - sha256 "5f36e74a8d6167e4d31f663526a63be3e3728456d8b5b4a84503315dd10e65e7" + url "https://github.com/Tinder/bazel-diff/releases/download/9.0.1/bazel-diff_deploy.jar" + sha256 "79291fa7b5900b98cd495bf94559ac096f2bf5341fea96425993ee19d9285e83" license "BSD-3-Clause" bottle do From 196043e0cb30d0f7a840284a34cac67f60e4eb91 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 19:51:40 +0000 Subject: [PATCH 0581/1364] bkmr 4.21.1 --- Formula/b/bkmr.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/b/bkmr.rb b/Formula/b/bkmr.rb index d2ae3a2e91052..581626852e750 100644 --- a/Formula/b/bkmr.rb +++ b/Formula/b/bkmr.rb @@ -1,8 +1,8 @@ class Bkmr < Formula desc "Unified CLI Tool for Bookmark, Snippet, and Knowledge Management" homepage "https://github.com/sysid/bkmr" - url "https://github.com/sysid/bkmr/archive/refs/tags/v4.21.0.tar.gz" - sha256 "682e2a458596a9c4a93281f401a88eff2e8df08d5ae135317445bf2f2315b431" + url "https://github.com/sysid/bkmr/archive/refs/tags/v4.21.1.tar.gz" + sha256 "7ccf8e94d44e8ed3048f713274cacf14e1a8eb7fa36af607fa9ab08430c70769" license "BSD-3-Clause" head "https://github.com/sysid/bkmr.git", branch: "main" From dba59081892376bd8bac55be320fba5bd54723cc Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 19:57:23 +0000 Subject: [PATCH 0582/1364] egctl 1.3.3 --- Formula/e/egctl.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/e/egctl.rb b/Formula/e/egctl.rb index 6eb50ae624e50..14ada6486e7b3 100644 --- a/Formula/e/egctl.rb +++ b/Formula/e/egctl.rb @@ -1,8 +1,8 @@ class Egctl < Formula desc "Command-line utility for operating Envoy Gateway" homepage "https://gateway.envoyproxy.io/" - url "https://github.com/envoyproxy/gateway/archive/refs/tags/v1.3.2.tar.gz" - sha256 "7584b61e464dbdd2fe13bc91989c77bc9ed2825d6f4f8d032e24eed88ea5c147" + url "https://github.com/envoyproxy/gateway/archive/refs/tags/v1.3.3.tar.gz" + sha256 "54225f8a52a46efa423e034189e2971dea64437dc79c5205a0ba39475005d190" license "Apache-2.0" head "https://github.com/envoyproxy/gateway.git", branch: "main" From b94db4aebb1726b89b0be8a6ba4a3bce249178e9 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 19:58:38 +0000 Subject: [PATCH 0583/1364] fern-api 0.60.29 --- Formula/f/fern-api.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/f/fern-api.rb b/Formula/f/fern-api.rb index 48c54d66a4187..716ee7bd4b9ab 100644 --- a/Formula/f/fern-api.rb +++ b/Formula/f/fern-api.rb @@ -1,8 +1,8 @@ class FernApi < Formula desc "Stripe-level SDKs and Docs for your API" homepage "https://buildwithfern.com/" - url "https://registry.npmjs.org/fern-api/-/fern-api-0.60.28.tgz" - sha256 "2e393d30e44bb563f8fbb729bc4f9943824f8dee3bf87fa57e9ef3aae56769f8" + url "https://registry.npmjs.org/fern-api/-/fern-api-0.60.29.tgz" + sha256 "b4be178d45ea8e6e7e4ce4a4d90585e1d8e8885f24747762e37d37189199d87b" license "Apache-2.0" head "https://github.com/fern-api/fern.git", branch: "main" From 6c1a28d6211100d7eb1563c7ba8036c164177104 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 19:59:33 +0000 Subject: [PATCH 0584/1364] firebase-cli 14.3.1 --- Formula/f/firebase-cli.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/f/firebase-cli.rb b/Formula/f/firebase-cli.rb index 32aa8e834e7ae..2fd5aa99f6ac9 100644 --- a/Formula/f/firebase-cli.rb +++ b/Formula/f/firebase-cli.rb @@ -1,8 +1,8 @@ class FirebaseCli < Formula desc "Firebase command-line tools" homepage "https://firebase.google.com/docs/cli/" - url "https://registry.npmjs.org/firebase-tools/-/firebase-tools-14.3.0.tgz" - sha256 "2238f5d821af3e66d6b89e6e0b09596c7aa034ef12067dc320645d5d5fc467ec" + url "https://registry.npmjs.org/firebase-tools/-/firebase-tools-14.3.1.tgz" + sha256 "7b591c2e692f857639e01cfb43c47802a03346298eefb473c12bd0cafe20b0a5" license "MIT" head "https://github.com/firebase/firebase-tools.git", branch: "master" From 3cedbe99126dabadff11cf80131c7767b3a32baa Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 19:59:57 +0000 Subject: [PATCH 0585/1364] flyctl 0.3.119 --- Formula/f/flyctl.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/f/flyctl.rb b/Formula/f/flyctl.rb index acaaacaae34b6..18c551372602c 100644 --- a/Formula/f/flyctl.rb +++ b/Formula/f/flyctl.rb @@ -2,8 +2,8 @@ class Flyctl < Formula desc "Command-line tools for fly.io services" homepage "https://fly.io" url "https://github.com/superfly/flyctl.git", - tag: "v0.3.118", - revision: "e964b2acefccba21f3ebe5ee857d1b4c0d726861" + tag: "v0.3.119", + revision: "17355c249062714ff87ebbfce2f4076def235318" license "Apache-2.0" head "https://github.com/superfly/flyctl.git", branch: "master" From 091a6b92f299fd9d7f81d29a98a64a45400f38e4 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 20:09:51 +0000 Subject: [PATCH 0586/1364] moon 1.35.6 --- Formula/m/moon.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/m/moon.rb b/Formula/m/moon.rb index 6de46bdccbdd8..d0ccf0369aef2 100644 --- a/Formula/m/moon.rb +++ b/Formula/m/moon.rb @@ -1,8 +1,8 @@ class Moon < Formula desc "Task runner and repo management tool for the web ecosystem, written in Rust" homepage "https://moonrepo.dev/moon" - url "https://github.com/moonrepo/moon/archive/refs/tags/v1.35.5.tar.gz" - sha256 "5899830c67ffe8beb6114f1ac1e74d989cf4fe110450a75e53d03f392ed3f6e6" + url "https://github.com/moonrepo/moon/archive/refs/tags/v1.35.6.tar.gz" + sha256 "ad358f73812f35080cd5e9b4c3bac07972a67309cb7dde2fe7ea1a2e07392dd4" license "MIT" head "https://github.com/moonrepo/moon.git", branch: "master" From 9388ecba4ea89e43a9cf36861528893f21e9b255 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 20:19:05 +0000 Subject: [PATCH 0587/1364] silk 3.23.5 --- Formula/s/silk.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/s/silk.rb b/Formula/s/silk.rb index f8bb5e3ac6416..6eee34a955af0 100644 --- a/Formula/s/silk.rb +++ b/Formula/s/silk.rb @@ -1,8 +1,8 @@ class Silk < Formula desc "Collection of traffic analysis tools" homepage "https://tools.netsa.cert.org/silk/" - url "https://tools.netsa.cert.org/releases/silk-3.23.4.tar.gz" - sha256 "b627af58880cd92532eea396ecc26c69f502452c8d37aacf93309bcdb370acb7" + url "https://tools.netsa.cert.org/releases/silk-3.23.5.tar.gz" + sha256 "58701cd3b7ceb951fb5cda9c241b171608036daab4bad4893f6882f4a29b1680" license all_of: ["GPL-2.0-or-later", "LGPL-2.1-or-later"] livecheck do From 1bffaa41564bc3a158d30edfe3ffe85de5e5f968 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 20:24:55 +0000 Subject: [PATCH 0588/1364] vulkan-profiles 1.4.315 --- Formula/v/vulkan-profiles.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/v/vulkan-profiles.rb b/Formula/v/vulkan-profiles.rb index cbe0650fe73da..bf183f648dc78 100644 --- a/Formula/v/vulkan-profiles.rb +++ b/Formula/v/vulkan-profiles.rb @@ -1,8 +1,8 @@ class VulkanProfiles < Formula desc "Tools for Vulkan profiles" homepage "https://github.com/KhronosGroup/Vulkan-Profiles" - url "https://github.com/KhronosGroup/Vulkan-Profiles/archive/refs/tags/v1.4.314.tar.gz" - sha256 "fc322eb254836a7b18dd999e6255dd501e1f85b94248efa80f20e06c88fa7a95" + url "https://github.com/KhronosGroup/Vulkan-Profiles/archive/refs/tags/v1.4.315.tar.gz" + sha256 "ea2c45304206e23789ce57117d5155f1cc3c8ad8fa636e0fb32891e1c01ca4b8" license "Apache-2.0" head "https://github.com/KhronosGroup/Vulkan-Profiles.git", branch: "main" From e8a11e4d79466ed152f88a75feb2bfc65294294e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 20:26:36 +0000 Subject: [PATCH 0589/1364] yeet 0.2.3 --- Formula/y/yeet.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/y/yeet.rb b/Formula/y/yeet.rb index 81088dd50acc1..b3620588802e5 100644 --- a/Formula/y/yeet.rb +++ b/Formula/y/yeet.rb @@ -1,8 +1,8 @@ class Yeet < Formula desc "Packaging tool that lets you declare build instructions in JavaScript" homepage "https://github.com/TecharoHQ/yeet" - url "https://github.com/TecharoHQ/yeet/archive/refs/tags/v0.2.2.tar.gz" - sha256 "157bd064defd2e47c4a0f85fdee92fda51548a27b3a273194ef4dd315147b8e3" + url "https://github.com/TecharoHQ/yeet/archive/refs/tags/v0.2.3.tar.gz" + sha256 "007121e2b511193f861284d3a156756639c8d9a80d7404ac97058f8054bb67c2" license "MIT" head "https://github.com/TecharoHQ/yeet.git", branch: "main" From d451b90700a9e9852befc0051964e29e0e2fa89c Mon Sep 17 00:00:00 2001 From: botantony Date: Fri, 9 May 2025 22:28:53 +0200 Subject: [PATCH 0590/1364] memray 1.17.2 Signed-off-by: botantony --- Formula/m/memray.rb | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Formula/m/memray.rb b/Formula/m/memray.rb index 135fba4473416..14c8cb358fdf2 100644 --- a/Formula/m/memray.rb +++ b/Formula/m/memray.rb @@ -3,8 +3,8 @@ class Memray < Formula desc "Memory profiler for Python applications" homepage "https://bloomberg.github.io/memray/" - url "https://files.pythonhosted.org/packages/b9/bd/2614cf6d3d68eb53fc0bcb04f85ac3a94922150c2d786b7f8b204f602dda/memray-1.17.1.tar.gz" - sha256 "99f6672d435878e3251a9c4600bb8f14cf205d2d6da3d6f0e6b309e535f9fc4a" + url "https://files.pythonhosted.org/packages/df/40/66e6ae86c0a22b8b998779fa8d6c0ab9ee63f0943198adcf714934286cbf/memray-1.17.2.tar.gz" + sha256 "eb75c075874a6eccddf361513d9d4a9223dd940580c6370a6ba5339bae5d0ba2" license "Apache-2.0" bottle do @@ -29,8 +29,8 @@ class Memray < Formula # TODO: Consider creating a formula for (lib)debuginfod resource "elfutils" do - url "https://sourceware.org/elfutils/ftp/0.192/elfutils-0.192.tar.bz2" - sha256 "616099beae24aba11f9b63d86ca6cc8d566d968b802391334c91df54eab416b4" + url "https://sourceware.org/elfutils/ftp/0.193/elfutils-0.193.tar.bz2" + sha256 "7857f44b624f4d8d421df851aaae7b1402cfe6bcdd2d8049f15fc07d3dde7635" end end @@ -65,8 +65,8 @@ class Memray < Formula end resource "platformdirs" do - url "https://files.pythonhosted.org/packages/b6/2d/7d512a3913d60623e7eb945c6d1b4f0bddf1d0b7ada5225274c87e5b53d1/platformdirs-4.3.7.tar.gz" - sha256 "eb437d586b6a0986388f0d6f74aa0cde27b48d0e3d66843640bfb6bdcdb6e351" + url "https://files.pythonhosted.org/packages/fe/8b/3c73abc9c759ecd3f1f7ceff6685840859e8070c4d947c93fae71f6a0bf2/platformdirs-4.3.8.tar.gz" + sha256 "3d512d96e16bcb959a814c9f348431070822a6496326a4be0911c40b5a74c2bc" end resource "pygments" do @@ -80,8 +80,8 @@ class Memray < Formula end resource "textual" do - url "https://files.pythonhosted.org/packages/dc/1f/df371f1455524a3d0079871e49e3850c82767904e9f4e2bdea6d30a866a7/textual-3.1.0.tar.gz" - sha256 "6bcab6581e9753d2a2043caf49f43c5818feb35f8049ed185bd38982bfb310ca" + url "https://files.pythonhosted.org/packages/34/99/8408761a1a1076b2bb69d4859ec110d74be7515552407ac1cb6b68630eb6/textual-3.2.0.tar.gz" + sha256 "d2f3b0c39e02535bb5f2aec1c45e10bd3ee7508ed1e240b7505c3cf02a6f00ed" end resource "typing-extensions" do From d6360b465ea66f525c4773361f770700a1e30394 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 21:05:39 +0000 Subject: [PATCH 0591/1364] yeet: update 0.2.3 bottle. --- Formula/y/yeet.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/y/yeet.rb b/Formula/y/yeet.rb index b3620588802e5..f67b1c7b1704f 100644 --- a/Formula/y/yeet.rb +++ b/Formula/y/yeet.rb @@ -7,12 +7,12 @@ class Yeet < Formula head "https://github.com/TecharoHQ/yeet.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "bd2fe022c2cc94d2cb6997c3eccf7ff7b7ef738f1509a1b69737254b1a250f35" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "bd2fe022c2cc94d2cb6997c3eccf7ff7b7ef738f1509a1b69737254b1a250f35" - sha256 cellar: :any_skip_relocation, arm64_ventura: "bd2fe022c2cc94d2cb6997c3eccf7ff7b7ef738f1509a1b69737254b1a250f35" - sha256 cellar: :any_skip_relocation, sonoma: "d8a6ca7d3a6a25c07ec08c2177e32ff3fe978e7986d103eb49856728898021f4" - sha256 cellar: :any_skip_relocation, ventura: "d8a6ca7d3a6a25c07ec08c2177e32ff3fe978e7986d103eb49856728898021f4" - sha256 cellar: :any_skip_relocation, x86_64_linux: "2dd5767d76731ba8711a36e15c90a326218e8ca2bfa075266af81c7d644a85a5" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "c5c7b51cb1a6a0ecc7ceac5383389d43cc5efe3c3a0073c3595caebd521ec3b7" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "c5c7b51cb1a6a0ecc7ceac5383389d43cc5efe3c3a0073c3595caebd521ec3b7" + sha256 cellar: :any_skip_relocation, arm64_ventura: "c5c7b51cb1a6a0ecc7ceac5383389d43cc5efe3c3a0073c3595caebd521ec3b7" + sha256 cellar: :any_skip_relocation, sonoma: "9a998adc097bc329fd3bd943c45d4db704fa76e711bb6c756800949cf01d2d3b" + sha256 cellar: :any_skip_relocation, ventura: "9a998adc097bc329fd3bd943c45d4db704fa76e711bb6c756800949cf01d2d3b" + sha256 cellar: :any_skip_relocation, x86_64_linux: "ede85ca1fb1d6f56e81fe34062aa9ba732fb2b57dd4b8092bf4a10b13774729b" end depends_on "go" => :build From 4f5afe8e07e747622d09030638a07595c10f9e6f Mon Sep 17 00:00:00 2001 From: William Melody Date: Fri, 9 May 2025 14:13:26 -0700 Subject: [PATCH 0592/1364] nb 7.18.0 --- Formula/n/nb.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/n/nb.rb b/Formula/n/nb.rb index fb796bf25885c..0e78a6290d4b9 100644 --- a/Formula/n/nb.rb +++ b/Formula/n/nb.rb @@ -1,8 +1,8 @@ class Nb < Formula desc "Command-line and local web note-taking, bookmarking, and archiving" homepage "https://xwmx.github.io/nb" - url "https://github.com/xwmx/nb/archive/refs/tags/7.17.0.tar.gz" - sha256 "4dc803d2247857f3c03497ea87921cc462e104b5f0780c598528d2247c4da5f8" + url "https://github.com/xwmx/nb/archive/refs/tags/7.18.0.tar.gz" + sha256 "7bcf153933d071e157b36846a00a7a2cee4b5066289968803b88b8e33f54ab5f" license "AGPL-3.0-or-later" head "https://github.com/xwmx/nb.git", branch: "master" From 68b95e09d0618d8d6dffebd0f7aca0ee6a5d75de Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 22:52:38 +0000 Subject: [PATCH 0593/1364] cog 0.14.10 --- Formula/c/cog.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/cog.rb b/Formula/c/cog.rb index b30e9c9509435..f3024dde44730 100644 --- a/Formula/c/cog.rb +++ b/Formula/c/cog.rb @@ -1,8 +1,8 @@ class Cog < Formula desc "Containers for machine learning" homepage "https://cog.run/" - url "https://github.com/replicate/cog/archive/refs/tags/v0.14.9.tar.gz" - sha256 "3e5db97b0cd59b3e0106371ef37c1e2d8c542f74c6aef1dfd58c6cbd67fc0705" + url "https://github.com/replicate/cog/archive/refs/tags/v0.14.10.tar.gz" + sha256 "f82c646e653e1fa2cc361ca44a2d56b0c3f65e7b0fd941b5f1bcc1178db997f1" license "Apache-2.0" head "https://github.com/replicate/cog.git", branch: "main" From 6e257e7dde98a0aacee011e0ae3f1ef68ca35ff7 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 22:53:24 +0000 Subject: [PATCH 0594/1364] css-crush 4.2.0 --- Formula/c/css-crush.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/css-crush.rb b/Formula/c/css-crush.rb index bcfd169824c1b..ba6b1e126c7ca 100644 --- a/Formula/c/css-crush.rb +++ b/Formula/c/css-crush.rb @@ -1,8 +1,8 @@ class CssCrush < Formula desc "Extensible PHP based CSS preprocessor" homepage "https://the-echoplex.net/csscrush" - url "https://github.com/peteboere/css-crush/archive/refs/tags/v4.1.3.tar.gz" - sha256 "3afb4f3992b0bbf0a4cc0a1a1cf9c6f40d14b0ee91094ddefbb4a53d650fa234" + url "https://github.com/peteboere/css-crush/archive/refs/tags/v4.2.0.tar.gz" + sha256 "4c4a898ada8685cf7e33a1cdaca470ca45ec66ffbc441e749b2014f3010fd0aa" license "MIT" head "https://github.com/peteboere/css-crush.git", branch: "master" From 86e8953d8a68c5487b5925bdf7ba698c46ada163 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 22:54:30 +0000 Subject: [PATCH 0595/1364] djl-serving 0.33.0 --- Formula/d/djl-serving.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/d/djl-serving.rb b/Formula/d/djl-serving.rb index a2fcee9ffdbf1..14da6d2445a29 100644 --- a/Formula/d/djl-serving.rb +++ b/Formula/d/djl-serving.rb @@ -1,8 +1,8 @@ class DjlServing < Formula desc "This module contains an universal model serving implementation" homepage "https://github.com/deepjavalibrary/djl-serving" - url "https://publish.djl.ai/djl-serving/serving-0.32.0.tar" - sha256 "0087df57a9afee61ca9bde7e20d3bd3190b15b1bac49c6566c3359251fa22fb2" + url "https://publish.djl.ai/djl-serving/serving-0.33.0.tar" + sha256 "48326bdeacba973ac54d8f07e22b6be0a0edafe2e1377d7031665d5efe726691" license "Apache-2.0" # `djl-serving` versions aren't considered released until a corresponding From bbc717e1e26c6dfb6b5ecc3a85e964c976ee731c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 23:02:17 +0000 Subject: [PATCH 0596/1364] langgraph-cli 0.2.10 --- Formula/l/langgraph-cli.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/l/langgraph-cli.rb b/Formula/l/langgraph-cli.rb index 7718c16b0f2a3..c004a7429f265 100644 --- a/Formula/l/langgraph-cli.rb +++ b/Formula/l/langgraph-cli.rb @@ -3,8 +3,8 @@ class LanggraphCli < Formula desc "Command-line interface for deploying apps to the LangGraph platform" homepage "https://www.github.com/langchain-ai/langgraph" - url "https://files.pythonhosted.org/packages/85/b2/6cbdea914fa0f9d125884aab3af4fb4405785bf65a9a378cd0869f39d9d6/langgraph_cli-0.2.8.tar.gz" - sha256 "9091aa12bf826572446cb5564604a8a6f750c9dcaa0cd9fb1067128a53ac2282" + url "https://files.pythonhosted.org/packages/8d/5e/b12bc8140cd4f797ad7f596bf90558994fd6891df8974bc3fc4747eabdc7/langgraph_cli-0.2.10.tar.gz" + sha256 "0c215b364daeaf10de681e4960ecaafc7c9cd2a4100b41052d78d95cababf422" license "MIT" bottle do From 84e3c723d59b57240b1f8c087095321e926b3250 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 23:05:24 +0000 Subject: [PATCH 0597/1364] mlx 0.25.2 --- Formula/m/mlx.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/m/mlx.rb b/Formula/m/mlx.rb index 18b1676fe9749..e9dbe32bc2d1b 100644 --- a/Formula/m/mlx.rb +++ b/Formula/m/mlx.rb @@ -3,8 +3,8 @@ class Mlx < Formula desc "Array framework for Apple silicon" homepage "https://github.com/ml-explore/mlx" - url "https://github.com/ml-explore/mlx/archive/refs/tags/v0.25.1.tar.gz" - sha256 "9ee2e54d6acd1eca2255b87ab546dde0b0254776089b972216af96bbd21eb573" + url "https://github.com/ml-explore/mlx/archive/refs/tags/v0.25.2.tar.gz" + sha256 "de01c18f59c72f8160c3194b822eebe0f0e6ef77207e239a925c72009518089b" license all_of: [ "MIT", # main license "Apache-2.0", # metal-cpp resource From 550d40fd4f1b09ca261cc4ad378912d3435c1c37 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 23:10:50 +0000 Subject: [PATCH 0598/1364] python-setuptools 80.4.0 --- Formula/p/python-setuptools.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/p/python-setuptools.rb b/Formula/p/python-setuptools.rb index 9afcbd44b3adf..f06b5bc5d6dd8 100644 --- a/Formula/p/python-setuptools.rb +++ b/Formula/p/python-setuptools.rb @@ -1,8 +1,8 @@ class PythonSetuptools < Formula desc "Easily download, build, install, upgrade, and uninstall Python packages" homepage "https://setuptools.pypa.io/" - url "https://files.pythonhosted.org/packages/70/dc/3976b322de9d2e87ed0007cf04cc7553969b6c7b3f48a565d0333748fbcd/setuptools-80.3.1.tar.gz" - sha256 "31e2c58dbb67c99c289f51c16d899afedae292b978f8051efaf6262d8212f927" + url "https://files.pythonhosted.org/packages/95/32/0cc40fe41fd2adb80a2f388987f4f8db3c866c69e33e0b4c8b093fdf700e/setuptools-80.4.0.tar.gz" + sha256 "5a78f61820bc088c8e4add52932ae6b8cf423da2aff268c23f813cfbb13b4006" license "MIT" bottle do From fff87325bcf3068f8ab47582c9198d3f1e3b427c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 23:11:18 +0000 Subject: [PATCH 0599/1364] railway 4.5.0 --- Formula/r/railway.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/r/railway.rb b/Formula/r/railway.rb index aaf35d92f41d2..890062fb67176 100644 --- a/Formula/r/railway.rb +++ b/Formula/r/railway.rb @@ -1,8 +1,8 @@ class Railway < Formula desc "Develop and deploy code with zero configuration" homepage "https://railway.com/" - url "https://github.com/railwayapp/cli/archive/refs/tags/v4.4.1.tar.gz" - sha256 "f52a96050fb6e72214365f020cacb6d16b3459461f29853670974be3646cf18f" + url "https://github.com/railwayapp/cli/archive/refs/tags/v4.5.0.tar.gz" + sha256 "0a7e9fb04970795e23e80a68dde355021aaff9146b0a376840ff7d065920a0c4" license "MIT" head "https://github.com/railwayapp/cli.git", branch: "master" From fb40f5a28c29020ca71569b721107936f1459ac6 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 01:28:30 +0000 Subject: [PATCH 0600/1364] flyctl: update 0.3.119 bottle. --- Formula/f/flyctl.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/f/flyctl.rb b/Formula/f/flyctl.rb index 18c551372602c..614fe3ce49d4e 100644 --- a/Formula/f/flyctl.rb +++ b/Formula/f/flyctl.rb @@ -18,13 +18,13 @@ class Flyctl < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "2b5b12722e9e1e643c9923e558181d0d511f74cf08d7a700aa170d973068d55a" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "2b5b12722e9e1e643c9923e558181d0d511f74cf08d7a700aa170d973068d55a" - sha256 cellar: :any_skip_relocation, arm64_ventura: "2b5b12722e9e1e643c9923e558181d0d511f74cf08d7a700aa170d973068d55a" - sha256 cellar: :any_skip_relocation, sonoma: "9fdc53e01c0bc037ef1ffb11d0bafc3b6e4fd6646c5e4d0aad3ac6f9cfcfe810" - sha256 cellar: :any_skip_relocation, ventura: "9fdc53e01c0bc037ef1ffb11d0bafc3b6e4fd6646c5e4d0aad3ac6f9cfcfe810" - sha256 cellar: :any_skip_relocation, arm64_linux: "a712de98090367ec973539f347e642f77bcee8e4cea1247f14367e17bc87aa39" - sha256 cellar: :any_skip_relocation, x86_64_linux: "05115e9f3c57bc2cd6987a62791d25b114fcd92a779532518b82a76c936bf6e4" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "252d257595810deaf0ed83c05a4924f1d7c3d0ae17942f55d7565e3cbe68073c" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "252d257595810deaf0ed83c05a4924f1d7c3d0ae17942f55d7565e3cbe68073c" + sha256 cellar: :any_skip_relocation, arm64_ventura: "252d257595810deaf0ed83c05a4924f1d7c3d0ae17942f55d7565e3cbe68073c" + sha256 cellar: :any_skip_relocation, sonoma: "22907fcb277eb6d8c2f959792c8d1206f716465f23d83deb113ca16daee0d8ee" + sha256 cellar: :any_skip_relocation, ventura: "22907fcb277eb6d8c2f959792c8d1206f716465f23d83deb113ca16daee0d8ee" + sha256 cellar: :any_skip_relocation, arm64_linux: "01015bc84c32f7e88ff24b439fb520d80e0f9b32e12bb8012f2dece37963a46b" + sha256 cellar: :any_skip_relocation, x86_64_linux: "1b15ca090ca5bf55f9be12f0dc6384739abf1f1535bf650ce144270765623721" end depends_on "go" => :build From 937a0b6d12af2a18f7f331f98e004e8fd9dc265b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 02:11:22 +0000 Subject: [PATCH 0601/1364] awscli: update 2.27.12 bottle. --- Formula/a/awscli.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/a/awscli.rb b/Formula/a/awscli.rb index 77b65a9a9a439..a6a4fabd91a69 100644 --- a/Formula/a/awscli.rb +++ b/Formula/a/awscli.rb @@ -9,13 +9,13 @@ class Awscli < Formula head "https://github.com/aws/aws-cli.git", branch: "v2" bottle do - sha256 cellar: :any, arm64_sequoia: "58b654c2e798d93113f97ce4befbbd57ad61bf55e35d5b60f122b4ad586763ac" - sha256 cellar: :any, arm64_sonoma: "499c95974f604883ed451d80981d38a29ba2574fe68cf63f94c526a2c602f6b2" - sha256 cellar: :any, arm64_ventura: "54716fda963548ee9e4eb2926a6786637f691e4552a934bf9962e391872235d1" - sha256 cellar: :any, sonoma: "26807a753e974a316797c106a66198bf1d67ac7788c3ffa4362c1236b026557e" - sha256 cellar: :any, ventura: "138f183fa3a2421031b273d355858ea066402cd24c55d3fe7196548cf7d2384f" - sha256 cellar: :any_skip_relocation, arm64_linux: "23a026b5b1536d1e4767d4cba4d0dcf84567777ac43afeb7b61e28265aa378d7" - sha256 cellar: :any_skip_relocation, x86_64_linux: "fa7f26fcbdcd7e1ab187a01a4e22aaf1446cdf66504762c560123a8588c7d261" + sha256 cellar: :any, arm64_sequoia: "ca00f3ed28b36c4dc126f6c42980ec18cdc9c0f95f68d8f08945c3f4ee991761" + sha256 cellar: :any, arm64_sonoma: "5da08b98ac0ccc5a5c9c3b3928663d0965bdb0ef4f21bead8898a1ea45f70f34" + sha256 cellar: :any, arm64_ventura: "dc839bdd33b64133a4216cfbcee7c8becf301771924fcaec874e5b8d98c1e8b8" + sha256 cellar: :any, sonoma: "01de2f85a1919f0f84ec06f78b5a2116d92662d861cc28c4fd079d86902440e8" + sha256 cellar: :any, ventura: "a7e4b59af4ea92887d122cd1670e1e234d75e2bc50f7a87c8e19d8b01d2c9bcd" + sha256 cellar: :any_skip_relocation, arm64_linux: "f55bd703f56c9b9500f39a212554b4ac8a494096df9d7548f1e48d6a729754c2" + sha256 cellar: :any_skip_relocation, x86_64_linux: "fff3a4271967f2744c7c0cee05a3a764ab841a1a494458bd2c2e9d905717fde4" end depends_on "cmake" => :build From db856f53807e8d0acc0084aa9468a1a522fcb8fe Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 02:11:23 +0000 Subject: [PATCH 0602/1364] css-crush: update 4.2.0 bottle. --- Formula/c/css-crush.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Formula/c/css-crush.rb b/Formula/c/css-crush.rb index ba6b1e126c7ca..c8e292c6e6e22 100644 --- a/Formula/c/css-crush.rb +++ b/Formula/c/css-crush.rb @@ -7,8 +7,7 @@ class CssCrush < Formula head "https://github.com/peteboere/css-crush.git", branch: "master" bottle do - rebuild 1 - sha256 cellar: :any_skip_relocation, all: "7dd6610bca95f68d00bd025c5d30bc83f6a36a1a7a88fc6a1e30a3162e37005c" + sha256 cellar: :any_skip_relocation, all: "57dca95e7404936bc249a6934132a3942e31f4c1574e99dce5907c32bc14ad77" end depends_on "php" From e508f485282b75bbf1375bb61401cb937c32aba9 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 02:11:24 +0000 Subject: [PATCH 0603/1364] bkmr: update 4.21.1 bottle. --- Formula/b/bkmr.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/b/bkmr.rb b/Formula/b/bkmr.rb index 581626852e750..d910b2f360316 100644 --- a/Formula/b/bkmr.rb +++ b/Formula/b/bkmr.rb @@ -7,13 +7,13 @@ class Bkmr < Formula head "https://github.com/sysid/bkmr.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "b7ebb45ac51a5757c61864b44c4d7e6126b795e75c00311e502923128ed77e76" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "238aa425a0cae86bfc363947f440d5dd2bb7e057f6fdda3a705de4975e3ff1c9" - sha256 cellar: :any_skip_relocation, arm64_ventura: "289bcfc7a611a457b20017d200ff839acf52c8a25530be726e17333b80006fed" - sha256 cellar: :any_skip_relocation, sonoma: "bcb879a57c5172d7dfd09faf0f3f2b946d0a6a4c027d9322022b2f78939106c5" - sha256 cellar: :any_skip_relocation, ventura: "bc4c7887fd10fe39d53cb80f06391d8b8ab30727d6c433f4e5670a239a7fae09" - sha256 cellar: :any_skip_relocation, arm64_linux: "ad125a883f6e54d541544b1da612a2679f70a3155dbf07a6e3e5606f0edb2cc0" - sha256 cellar: :any_skip_relocation, x86_64_linux: "eb2bd069c208584ad0cebd7abe3dffdefe44c01c502655069bbf8fa7d40c75e2" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "628a34799de07ce3180c8b215629a5e993af0e86afcbd86af0dc0130334e36a5" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "f2d03001aaae2728e3696f3568baafc36bc3f12a66dd80b8a39d97d538efa27f" + sha256 cellar: :any_skip_relocation, arm64_ventura: "cd25dbe8424ff8e219d9e290eb8e4538762c64dbfac6754c021312a9da4e87a9" + sha256 cellar: :any_skip_relocation, sonoma: "62bcd03bd152d69a9996c4fa882f3b450264f654f74c3b9ba65c24a30f652f56" + sha256 cellar: :any_skip_relocation, ventura: "35707aae7413aa30ef8a9f79408f2e1d0f779a8463030fcd5bb0e4e9613974ed" + sha256 cellar: :any_skip_relocation, arm64_linux: "99617a8659e382415e12b2d4b30f76737e1ac400125437696678468a6c9564d1" + sha256 cellar: :any_skip_relocation, x86_64_linux: "9af678309cc0397e3a315d11afc880b39ec28d328b34d7e3c2b3b71b8ce90a00" end depends_on "rust" => :build From f77c0332cfa62b356e8c8c499d67436fb5ddd203 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 02:11:25 +0000 Subject: [PATCH 0604/1364] bazel-diff: update 9.0.1 bottle. --- Formula/b/bazel-diff.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/b/bazel-diff.rb b/Formula/b/bazel-diff.rb index 05dc6fcf99af6..2473e285adbe5 100644 --- a/Formula/b/bazel-diff.rb +++ b/Formula/b/bazel-diff.rb @@ -6,7 +6,7 @@ class BazelDiff < Formula license "BSD-3-Clause" bottle do - sha256 cellar: :any_skip_relocation, all: "dff042f705e90139a0966ad0206f7ebbff19fdef4ee851a5d6b8efeec23a91b1" + sha256 cellar: :any_skip_relocation, all: "86bb4d78b24b7d2114926ebb5a41f3f8616eca291f3ea563bfc0210175a2d652" end depends_on "bazel" => :test From 4336733af0763441635c5510cef3bdb360cf447e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 02:11:36 +0000 Subject: [PATCH 0605/1364] firebase-cli: update 14.3.1 bottle. --- Formula/f/firebase-cli.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/f/firebase-cli.rb b/Formula/f/firebase-cli.rb index 2fd5aa99f6ac9..208d60ae6a9c7 100644 --- a/Formula/f/firebase-cli.rb +++ b/Formula/f/firebase-cli.rb @@ -7,13 +7,13 @@ class FirebaseCli < Formula head "https://github.com/firebase/firebase-tools.git", branch: "master" bottle do - sha256 arm64_sequoia: "b8e10a5cef55a5b20007fbdc422d550875019963d3d6569287663cc3a49e43a8" - sha256 arm64_sonoma: "aa21ef230938e420270e4b449a17f71966b8615c74c4d5a62313578e468839e6" - sha256 arm64_ventura: "f5c7d104c845c9440c5acfcc006657fb77058d967c365f1c62701cc76a2ee803" - sha256 sonoma: "c6d9f2791f44a17e2234bce88bd5dd01614427d6785952d971d77cda08e17966" - sha256 ventura: "1c2227460600cf490578210b00e03b71d3f25f96805943edbf675a1233d19ed7" - sha256 cellar: :any_skip_relocation, arm64_linux: "79b2cc3ba9cc58859597f43c6c0106d50bde5ecbbf716e522f3cd6c118d392aa" - sha256 cellar: :any_skip_relocation, x86_64_linux: "c2875e4edd3d8271e85d0c5c6920886b8e0b3e7365a9e761b0839113baa17066" + sha256 arm64_sequoia: "4f287564636504825950c7c2600c8b5f63dd6a711b11c65ebe40ee8e09e867ad" + sha256 arm64_sonoma: "3347432626b7a0fdc445c623bf42fc80162e4c188315c4fb105e8369fcd6e07f" + sha256 arm64_ventura: "6dfa8a64ddd2ed56f447429619066d5e937e8cc82c190d80b966055685683959" + sha256 sonoma: "12471bd0c8abd69a31d95c40b936a687be46205ed08d036bab6fadf1c4d5e023" + sha256 ventura: "e96c07aa83ca9ff349f1d2332ca985d3b9c19c384eb5a8791e0073865e2dd01c" + sha256 cellar: :any_skip_relocation, arm64_linux: "31235dd38def495136cf67ffcfdac59e04d3e979e8207332798dd29cfdc0b779" + sha256 cellar: :any_skip_relocation, x86_64_linux: "bf6d0550f596984cbc90b0667a39ff54f25e81066c3aa2033e9ee12bf212930b" end depends_on "node" From 28532e71dbbd45adc969bd2e5b6c7bec9878edf8 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 02:11:36 +0000 Subject: [PATCH 0606/1364] egctl: update 1.3.3 bottle. --- Formula/e/egctl.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/e/egctl.rb b/Formula/e/egctl.rb index 14ada6486e7b3..ef2c439592579 100644 --- a/Formula/e/egctl.rb +++ b/Formula/e/egctl.rb @@ -7,13 +7,13 @@ class Egctl < Formula head "https://github.com/envoyproxy/gateway.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "f759873010fb22e2c7772edeb0c1f16aae1034bda83a13b6c5cf04053698fb93" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "c4f29bb576485f33e25fd0e58f265ae2d25b1d2a6f14087f12fb3ece84acb6c8" - sha256 cellar: :any_skip_relocation, arm64_ventura: "22d207191baca56905f98fbfd5a651b59636f2ad59d99543742cd8e557787551" - sha256 cellar: :any_skip_relocation, sonoma: "5a680df48cb020c0ee16d7423e982d70a3f19ea528c706e70004f9c99ad3919a" - sha256 cellar: :any_skip_relocation, ventura: "f6ac33f54771bc77d01e442c50f6bcf5c10eed8560b8d7fd8555c69114be51f0" - sha256 cellar: :any_skip_relocation, arm64_linux: "f046f29b0f56d837ecb68df4d4c2eec966b52965702bcfbd7e4df5c0a7c63b59" - sha256 cellar: :any_skip_relocation, x86_64_linux: "9d9bf62cb82f28990ab8879d34fc782b8dda9ff261f1095f30b0ea7f84b5c2ac" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "5bd83e12dcfce64b2655abee020db6085697589af5e8f8d95b6fa60623d12d4d" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "b061f4ef9a8fabc8dcf68b5d67f605f34adadfb89ce6ff3fec2ebf3ca642bf0c" + sha256 cellar: :any_skip_relocation, arm64_ventura: "0f4974dcc88dcd279531ab4a3cdc7d92e5f9be7beb1fe4fe89dfa857316e7f5c" + sha256 cellar: :any_skip_relocation, sonoma: "3c0f2084eb058106d7dd0b1fa3d1070f4143b2bf6ab23f0b0e55cf3898452f57" + sha256 cellar: :any_skip_relocation, ventura: "d3c099041421c6c380a4ff26f256b8c3602290549282fa2f5fb64411e97dfae1" + sha256 cellar: :any_skip_relocation, arm64_linux: "043f3e2707d07aaa3ce11bee498bf2e0d742d4e0bf808b111baf263db2abf93b" + sha256 cellar: :any_skip_relocation, x86_64_linux: "1dad0eb0f80aa413577a2489c0d58fb9dab1d56ac44d6d23dca44573d88b52af" end depends_on "go" => :build From 9bc96fa792136aee2e31db2ed90c82d8a926c76e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 02:11:40 +0000 Subject: [PATCH 0607/1364] fern-api: update 0.60.29 bottle. --- Formula/f/fern-api.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/f/fern-api.rb b/Formula/f/fern-api.rb index 716ee7bd4b9ab..9bf1a21f12877 100644 --- a/Formula/f/fern-api.rb +++ b/Formula/f/fern-api.rb @@ -7,7 +7,7 @@ class FernApi < Formula head "https://github.com/fern-api/fern.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, all: "98d8363af4af8f6f8a667a41ccdbc7d0b7c35ce1355d8b82bea35e4d624751c1" + sha256 cellar: :any_skip_relocation, all: "8bafedbe279cbd50fa295639196246835d08d081e31adc64b7da2109a5902923" end depends_on "node" From ea4bcfe821b519591ccb7e72ae78c32c2df9ac6e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 02:11:42 +0000 Subject: [PATCH 0608/1364] langgraph-cli: update 0.2.10 bottle. --- Formula/l/langgraph-cli.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/l/langgraph-cli.rb b/Formula/l/langgraph-cli.rb index c004a7429f265..96feef6ee9be1 100644 --- a/Formula/l/langgraph-cli.rb +++ b/Formula/l/langgraph-cli.rb @@ -8,13 +8,13 @@ class LanggraphCli < Formula license "MIT" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "b241fddc959b0db1e894b11bda211e720f4ba42833efcec531613cfacf433043" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "b241fddc959b0db1e894b11bda211e720f4ba42833efcec531613cfacf433043" - sha256 cellar: :any_skip_relocation, arm64_ventura: "b241fddc959b0db1e894b11bda211e720f4ba42833efcec531613cfacf433043" - sha256 cellar: :any_skip_relocation, sonoma: "cfb8aa3486a2aeee634d885b06bbdadf2daf2da6c7b00071cb3bb1c9e947e4a1" - sha256 cellar: :any_skip_relocation, ventura: "cfb8aa3486a2aeee634d885b06bbdadf2daf2da6c7b00071cb3bb1c9e947e4a1" - sha256 cellar: :any_skip_relocation, arm64_linux: "b241fddc959b0db1e894b11bda211e720f4ba42833efcec531613cfacf433043" - sha256 cellar: :any_skip_relocation, x86_64_linux: "b241fddc959b0db1e894b11bda211e720f4ba42833efcec531613cfacf433043" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "07a250dd1c29400cfef5c7da506224617b487ff1beeabc0c5832157036456a8e" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "07a250dd1c29400cfef5c7da506224617b487ff1beeabc0c5832157036456a8e" + sha256 cellar: :any_skip_relocation, arm64_ventura: "07a250dd1c29400cfef5c7da506224617b487ff1beeabc0c5832157036456a8e" + sha256 cellar: :any_skip_relocation, sonoma: "25c261b92fc1711046a983453b8af2bd1ccec43724e591ce93c226f532ec6ca8" + sha256 cellar: :any_skip_relocation, ventura: "25c261b92fc1711046a983453b8af2bd1ccec43724e591ce93c226f532ec6ca8" + sha256 cellar: :any_skip_relocation, arm64_linux: "07a250dd1c29400cfef5c7da506224617b487ff1beeabc0c5832157036456a8e" + sha256 cellar: :any_skip_relocation, x86_64_linux: "07a250dd1c29400cfef5c7da506224617b487ff1beeabc0c5832157036456a8e" end depends_on "python@3.13" From 7445f396b209b0009395b0300ce37f9d1af14485 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 02:11:44 +0000 Subject: [PATCH 0609/1364] nb: update 7.18.0 bottle. --- Formula/n/nb.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/n/nb.rb b/Formula/n/nb.rb index 0e78a6290d4b9..274f886e12aba 100644 --- a/Formula/n/nb.rb +++ b/Formula/n/nb.rb @@ -7,13 +7,13 @@ class Nb < Formula head "https://github.com/xwmx/nb.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "6ccaac19205784fb7cb81fc7f03e4f77f65c8da6297d1fd8c93e63e0df8be472" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "6ccaac19205784fb7cb81fc7f03e4f77f65c8da6297d1fd8c93e63e0df8be472" - sha256 cellar: :any_skip_relocation, arm64_ventura: "6ccaac19205784fb7cb81fc7f03e4f77f65c8da6297d1fd8c93e63e0df8be472" - sha256 cellar: :any_skip_relocation, sonoma: "bc4c8ee86526bccedc3a1a6f04416e1faa89166d3450f732a3a76c9a15a9b225" - sha256 cellar: :any_skip_relocation, ventura: "bc4c8ee86526bccedc3a1a6f04416e1faa89166d3450f732a3a76c9a15a9b225" - sha256 cellar: :any_skip_relocation, arm64_linux: "6ccaac19205784fb7cb81fc7f03e4f77f65c8da6297d1fd8c93e63e0df8be472" - sha256 cellar: :any_skip_relocation, x86_64_linux: "6ccaac19205784fb7cb81fc7f03e4f77f65c8da6297d1fd8c93e63e0df8be472" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "4615634ddfad9d1846d30af0705cb403a9f37532f07040d8cb9892ad26714139" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "4615634ddfad9d1846d30af0705cb403a9f37532f07040d8cb9892ad26714139" + sha256 cellar: :any_skip_relocation, arm64_ventura: "4615634ddfad9d1846d30af0705cb403a9f37532f07040d8cb9892ad26714139" + sha256 cellar: :any_skip_relocation, sonoma: "4ffc5aa7d8a5325d94b28c59ae9e2d4716cf28f8424ebf7c51f2bfc5adf3ab68" + sha256 cellar: :any_skip_relocation, ventura: "4ffc5aa7d8a5325d94b28c59ae9e2d4716cf28f8424ebf7c51f2bfc5adf3ab68" + sha256 cellar: :any_skip_relocation, arm64_linux: "4615634ddfad9d1846d30af0705cb403a9f37532f07040d8cb9892ad26714139" + sha256 cellar: :any_skip_relocation, x86_64_linux: "4615634ddfad9d1846d30af0705cb403a9f37532f07040d8cb9892ad26714139" end depends_on "bat" From 7808b09dcbafbdd4ab3ed87f3649de8dced24fa4 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 02:11:46 +0000 Subject: [PATCH 0610/1364] vulkan-profiles: update 1.4.315 bottle. --- Formula/v/vulkan-profiles.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/v/vulkan-profiles.rb b/Formula/v/vulkan-profiles.rb index bf183f648dc78..465fe7b85d713 100644 --- a/Formula/v/vulkan-profiles.rb +++ b/Formula/v/vulkan-profiles.rb @@ -12,13 +12,13 @@ class VulkanProfiles < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "a652b4a6f97acec46e61b4d1635d5713c31efe70c2e7bf7e0056f3c74151ad36" - sha256 cellar: :any, arm64_sonoma: "c2566a55e959a89d415710c00586a707008be56a2ea0bdd5d9a1d250ec7e2d7d" - sha256 cellar: :any, arm64_ventura: "41ecf66f4660efc7f93f6bc8c9369fef5cea122486af53bedc89dfee7ede4ac6" - sha256 cellar: :any, sonoma: "6e5173560c0c710d00587c5f68b13c4cb2a9974d81a5a4a2a53a62cd13da7b78" - sha256 cellar: :any, ventura: "65a329a86926e362eb8ce8e99e46cc83d2bcfba8d26d49ac34ed2ed7c88eb837" - sha256 cellar: :any_skip_relocation, arm64_linux: "7055e83db2e90ce1e21461893925e05d26b7623126b59e01fedd9d3142a723dd" - sha256 cellar: :any_skip_relocation, x86_64_linux: "48c3b2a2efedb867d755e98c5a674d703c7c550f40c161c75f4cb0ba798d8134" + sha256 cellar: :any, arm64_sequoia: "fc7933980f568e7439dd2e28cf344bbe547438a61938b2bf9c080f539e8c2931" + sha256 cellar: :any, arm64_sonoma: "60c9ec07733d9beb0116e1708308207fbafe17fa36633f2d1d2fee3dd3184bdd" + sha256 cellar: :any, arm64_ventura: "f8a3ce10f8a620eb00a2c9e2fb1ac4384f2cda09d237404dd41b729bd1be8111" + sha256 cellar: :any, sonoma: "bd81bcb6a3752de8f32bc16941594c7efaaa36350fde18f7e60e288e5e6976a2" + sha256 cellar: :any, ventura: "1d2fdf67c932e160440cf28880e2af6958beec47bcb69a2ce00bd889249a3bf8" + sha256 cellar: :any_skip_relocation, arm64_linux: "e4d31d9fe16d203f4fa8a612cc90c134ae4019c6ebc9e47e0db13cb48b037013" + sha256 cellar: :any_skip_relocation, x86_64_linux: "e7879c75d098cad1c8a58b7fab1cf337cb3c5f541e17aab8a2edb6ab71ac6141" end depends_on "cmake" => :build From 7ac1d6e2a25e1cf7ad8a484414fe08b05a83ba67 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 02:11:46 +0000 Subject: [PATCH 0611/1364] cog: update 0.14.10 bottle. --- Formula/c/cog.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/c/cog.rb b/Formula/c/cog.rb index f3024dde44730..5aa1b8d294fe0 100644 --- a/Formula/c/cog.rb +++ b/Formula/c/cog.rb @@ -7,12 +7,12 @@ class Cog < Formula head "https://github.com/replicate/cog.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "c952ef491df77534a33e12385047694246eadbc9a54aecb9bae416024d9d2cee" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "c952ef491df77534a33e12385047694246eadbc9a54aecb9bae416024d9d2cee" - sha256 cellar: :any_skip_relocation, arm64_ventura: "c952ef491df77534a33e12385047694246eadbc9a54aecb9bae416024d9d2cee" - sha256 cellar: :any_skip_relocation, sonoma: "961445b3064c1e292c4bb39e4789deb864c78a1626a27bc12d53921f09565e68" - sha256 cellar: :any_skip_relocation, ventura: "961445b3064c1e292c4bb39e4789deb864c78a1626a27bc12d53921f09565e68" - sha256 cellar: :any_skip_relocation, x86_64_linux: "db663aad500610e5b9e4f8fe11e5b7846b10ef16e2f2e80ddb36b0cd2aa714f1" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "f1f7648eeb2aa56a46785aa2eda8ae794f42631d1955887f6fe6a85bc48eec61" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "f1f7648eeb2aa56a46785aa2eda8ae794f42631d1955887f6fe6a85bc48eec61" + sha256 cellar: :any_skip_relocation, arm64_ventura: "f1f7648eeb2aa56a46785aa2eda8ae794f42631d1955887f6fe6a85bc48eec61" + sha256 cellar: :any_skip_relocation, sonoma: "4bd2ea92f15eebe076ecf025bfd9a73e9b432e1d41011d77004d85e78c6073c0" + sha256 cellar: :any_skip_relocation, ventura: "4bd2ea92f15eebe076ecf025bfd9a73e9b432e1d41011d77004d85e78c6073c0" + sha256 cellar: :any_skip_relocation, x86_64_linux: "86cbbe50733e834a0d8a36fdb84f3516f4de882c9114d1624bdfda2d15f77b5a" end depends_on "go" => :build From 6e2ddeba9ce928260d7341d730e925c939df298a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 02:11:47 +0000 Subject: [PATCH 0612/1364] python-setuptools: update 80.4.0 bottle. --- Formula/p/python-setuptools.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/p/python-setuptools.rb b/Formula/p/python-setuptools.rb index f06b5bc5d6dd8..84638c537927c 100644 --- a/Formula/p/python-setuptools.rb +++ b/Formula/p/python-setuptools.rb @@ -6,7 +6,7 @@ class PythonSetuptools < Formula license "MIT" bottle do - sha256 cellar: :any_skip_relocation, all: "6cfde665b7b65c9df882bdbdd488d4e91af78f4e4d3af30716b6fae79bb153ca" + sha256 cellar: :any_skip_relocation, all: "de6898d8f686d1a127cf9e9b6afc127a4ac90c3a5b0410ba896857c13de129cc" end depends_on "python@3.12" => [:build, :test] From cb1c84b37571ef0dd62c33b453fc14633634c39f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 02:11:48 +0000 Subject: [PATCH 0613/1364] djl-serving: update 0.33.0 bottle. --- Formula/d/djl-serving.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/d/djl-serving.rb b/Formula/d/djl-serving.rb index 14da6d2445a29..8e9c8f240cc51 100644 --- a/Formula/d/djl-serving.rb +++ b/Formula/d/djl-serving.rb @@ -13,7 +13,7 @@ class DjlServing < Formula end bottle do - sha256 cellar: :any_skip_relocation, all: "3c8dfa4e92f0929a39a00624a0908a6f4c32fdb37a3ce4b6614505c748398c3d" + sha256 cellar: :any_skip_relocation, all: "9d0f31ed27572681ddd8cc68ecb6396fd1697ad89cd56bec21fa22f8f3017a38" end depends_on "openjdk" From 700d60fadf8b0b84f273c8b6194aedea6a138f6d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 02:11:58 +0000 Subject: [PATCH 0614/1364] memray: update 1.17.2 bottle. --- Formula/m/memray.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/m/memray.rb b/Formula/m/memray.rb index 14c8cb358fdf2..b359a875f0dc3 100644 --- a/Formula/m/memray.rb +++ b/Formula/m/memray.rb @@ -8,13 +8,13 @@ class Memray < Formula license "Apache-2.0" bottle do - sha256 cellar: :any, arm64_sequoia: "17272f7adecc072265492748044ce2c047b91abf8dc8b7cb2a2c9459a67292c4" - sha256 cellar: :any, arm64_sonoma: "55beb65ee82ab38f96bf48c7839fe865fc67c2e05456f62d9d47afbaa35a54ec" - sha256 cellar: :any, arm64_ventura: "5bcb4c8963c4b2959df6bb62c41d080a1d0650fde140abe50d52fd8902951dd8" - sha256 cellar: :any, sonoma: "472f1211109502aa37ce2d48b2373eaacebdf86564d90eb57a36cb45797fb7d6" - sha256 cellar: :any, ventura: "0c1429e3702c1a7e6f08a9d5f0e9a629231c2d8667692f701b38753643dbf933" - sha256 cellar: :any_skip_relocation, arm64_linux: "cd233f927a7de10aa99ec08084168cd82f32abb40a1e7fc652d80dcf7e971d9d" - sha256 cellar: :any_skip_relocation, x86_64_linux: "da998e77dd56ebccb30c64aa5fafd350474d92d72135ea4d9beee1cf6a54a9c0" + sha256 cellar: :any, arm64_sequoia: "1c4efb8fb7ecbf0afe0d4caabec09224e2b2536bd9ed879d158c889328707a6a" + sha256 cellar: :any, arm64_sonoma: "6339196a5e610a541f4e9514ba7f39f4964e32e034a7a3c813f476a5526badc9" + sha256 cellar: :any, arm64_ventura: "0441f370654154a80c6ff3d829b604608f65e7f470e4e57995231bb4ec1c7071" + sha256 cellar: :any, sonoma: "bf7bad5d0a61b6bb39e233627bde0270b2491667a44f65fb788afb39824df938" + sha256 cellar: :any, ventura: "f9385c4a945339ff46b94106acb15adb96d44ff77f57908219663000618121f2" + sha256 cellar: :any_skip_relocation, arm64_linux: "025020899fa12f0a4dd1889e0680836d51e3c83dbd720ac6e480f38e246cfe23" + sha256 cellar: :any_skip_relocation, x86_64_linux: "25a28919d12faf4b7c84f982a791ec7b034d4606c03563973220eb0cf6315af6" end depends_on "lz4" From a622d32e2abd7a6169ba043be0528508bdf0eb9f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 02:12:00 +0000 Subject: [PATCH 0615/1364] silk: update 3.23.5 bottle. --- Formula/s/silk.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/s/silk.rb b/Formula/s/silk.rb index 6eee34a955af0..be0465bb595b2 100644 --- a/Formula/s/silk.rb +++ b/Formula/s/silk.rb @@ -11,13 +11,13 @@ class Silk < Formula end bottle do - sha256 arm64_sequoia: "b875ee67577ab96da3d7c593218e407fd8249c46aebf215bac34c2ed2318aa08" - sha256 arm64_sonoma: "189211ad4ba779d31573fd9a1332760e85588ac8e5e52453d89688fb716d4931" - sha256 arm64_ventura: "5252fe02085962df9e3fb10042f5e801a58b71dc4f5d53bef69c585407349a2a" - sha256 sonoma: "0cee6423aa6b66ece3d65aa17a1d3d9f6d22c2411d6f6f4d90fea0cf9ed6ef23" - sha256 ventura: "911268aac598d09cc6815cc086345c8356b6ad1c5933ef3e4ea03b0de9da0c53" - sha256 arm64_linux: "4c483da4df5cc0bee310dad7edf51fcbc40101963642e0a639ea021bdcb51437" - sha256 x86_64_linux: "9423c04a5e4863ad4f29d613581d0a9b769f75d8dee19f9e83db6f15d1d0b2f1" + sha256 arm64_sequoia: "95e2f74ac394bb9327e6e54a9b60fa4a4f320f1b974c640898fea6689b42bac4" + sha256 arm64_sonoma: "861f979e9ca355c2bfcbfa383f1b052eaf98bf8550c8b8eccea603a7ca83db1c" + sha256 arm64_ventura: "ad2454feb3a3a60d32b8e889ad387fdc0408c84522dfe9af6c34cb32710d8c2b" + sha256 sonoma: "155ccf0867d12599b416cb34c00f1e082894cd43462b206a09a6ee8e0cab363d" + sha256 ventura: "f730eb216f5b4bf435000d1dfe1197a87c2f2ac4d25c3ff45e7f9d433b6760d4" + sha256 arm64_linux: "f13652d2d255490d21f8b4cac9f5da8f8e3aaf2c1d50032d6d3c000d53eaacfd" + sha256 x86_64_linux: "1b93547929821cca240e813162e1d6ff3066c4dd6df50060c027b59f33b6f6bb" end depends_on "pkgconf" => :build From 4ee76a073b0727b26e007a4c7710e8a2297b0bb7 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 02:12:01 +0000 Subject: [PATCH 0616/1364] mlx: update 0.25.2 bottle. --- Formula/m/mlx.rb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Formula/m/mlx.rb b/Formula/m/mlx.rb index e9dbe32bc2d1b..59516171f66c1 100644 --- a/Formula/m/mlx.rb +++ b/Formula/m/mlx.rb @@ -12,11 +12,11 @@ class Mlx < Formula head "https://github.com/ml-explore/mlx.git", branch: "main" bottle do - sha256 cellar: :any, arm64_sequoia: "6afff377f8721a7c20fa69069ec568f132e7473e6b6bb750e151c111d6c039bf" - sha256 cellar: :any, arm64_sonoma: "728494a6cdcaa5f5cbf16fb718e561304fa25756402d35ed6b3ea8deedc2c8ba" - sha256 cellar: :any, arm64_ventura: "8452fffb332135ce4601402782195c7b134e45dbf17b621f7d6696416312c969" - sha256 cellar: :any, sonoma: "a5000dbe6ffef97b60e1fe31557d9188de60d1ea8b62e45de7f56aec393e9193" - sha256 cellar: :any, ventura: "a834c89b1e829283f21f49259b75e26405d47a6a3605ea9d9aeb6297d7ad447a" + sha256 cellar: :any, arm64_sequoia: "6c44962cad5a0418f7d888b0cc1c32bf5ec820e65f31c53e5aaa9792378dfa73" + sha256 cellar: :any, arm64_sonoma: "564ccfc953e7675deae57f7021319f0a3c5c966ac3bcd54e7b7f521264566a2e" + sha256 cellar: :any, arm64_ventura: "27471e57abdedc23ae260f135facafed41d760ae542807edaaa6a41ba001f10c" + sha256 cellar: :any, sonoma: "2e4480e8eab481305971a3ea5d0adf9805e91715d4ce42bf425fa43cf699cdfd" + sha256 cellar: :any, ventura: "b6c09fa5b59d983579b4f3b713f185e8443368e978187a67d118d7ff18ce0ac5" end depends_on "cmake" => :build From 571d955ba609b348b010057466a1b8b0d1652a5d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 02:12:03 +0000 Subject: [PATCH 0617/1364] moon: update 1.35.6 bottle. --- Formula/m/moon.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/m/moon.rb b/Formula/m/moon.rb index d0ccf0369aef2..bfb09b610a852 100644 --- a/Formula/m/moon.rb +++ b/Formula/m/moon.rb @@ -12,13 +12,13 @@ class Moon < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "c91e24e013a70189dd5ebe4e79d49e8358ae44e1f1d3f90f4774dad57266dcf6" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "84bfbe8767d8ba62df9d6883fa34bbe2866ff6ffd5615c29a6a00ddad5686a39" - sha256 cellar: :any_skip_relocation, arm64_ventura: "4e904045f6d1edf6083fc3812b1d1401410329d0f6f609281be3cb6cd6aba77f" - sha256 cellar: :any_skip_relocation, sonoma: "f75adc4868847b67493665037c35d20e2319c3d0344cfc069113e9b5e3c2faba" - sha256 cellar: :any_skip_relocation, ventura: "701424e823e496c290454bf1d2d6babafccbba13876a877899f61d22b1c17774" - sha256 cellar: :any_skip_relocation, arm64_linux: "19b8bc71fb7d9defe26fe8510b79b0c10ba2e88cc85e1de82439f8a3a478e41a" - sha256 cellar: :any_skip_relocation, x86_64_linux: "a5728b3e8176cd61753856490b0b87e823086f528ede830f479d6dd430980c06" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "6fb2d6cc1b5c40063cb3525eb9240c04f0b5f43644168e6a65801b8084dab229" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "4896c4c5872f04331a2935eb781b89f3e46025e336a1617ddcfc6ac923c321d8" + sha256 cellar: :any_skip_relocation, arm64_ventura: "2e0c1eaf5860be27e5e346a89eaf88a511e1350887fd8436ea6eaea3b93d9c68" + sha256 cellar: :any_skip_relocation, sonoma: "95c1342246c3720f668dc6b2b067e36191f410b97f3842f47e6b00c63dbba07a" + sha256 cellar: :any_skip_relocation, ventura: "caa1085aa3c1516eedabf9cfc25319e7b53cb3a4cfb4125382518c7870db3571" + sha256 cellar: :any_skip_relocation, arm64_linux: "8eac85f47140029a974da8488678ea6cf3dcffa99e4991f83edb139c1219e526" + sha256 cellar: :any_skip_relocation, x86_64_linux: "8de658fd56f578a812903db31aa084385bad43c16e50f2d710d723a483b1b278" end depends_on "pkgconf" => :build From 39ce587a1eab60193bc55d8dd68774e3a32555e7 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 02:12:10 +0000 Subject: [PATCH 0618/1364] ortp: update 5.4.15 bottle. --- Formula/o/ortp.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/o/ortp.rb b/Formula/o/ortp.rb index 55735596cf1f0..cb4609464591f 100644 --- a/Formula/o/ortp.rb +++ b/Formula/o/ortp.rb @@ -26,13 +26,13 @@ class Ortp < Formula no_autobump! because: "resources cannot be updated automatically" bottle do - sha256 cellar: :any, arm64_sequoia: "28cfa7ebd711112926c7ee3039126766119382cbc5effb0883c6fb96ca321068" - sha256 cellar: :any, arm64_sonoma: "06efef44fbafe7f3f24ceeb9b5751731883ca27c9e7bb5ddd3d91936ac6fd575" - sha256 cellar: :any, arm64_ventura: "8069650d982d765bf198d5147b741e8ecdada18acd883511de3deac224a0a8df" - sha256 cellar: :any, sonoma: "e5a336f5106ee94fbd034147a91752d620e32e3c20378b6e47170187aaccd387" - sha256 cellar: :any, ventura: "7b22cd5ea7b43fac6867eb5e831bd260e9dd290c9839b0b55e78fec870ffc4fb" - sha256 cellar: :any_skip_relocation, arm64_linux: "822a72497d4d27b23d3beb2b3576d45ab595753d4f7fd1901078860d6cee18b5" - sha256 cellar: :any_skip_relocation, x86_64_linux: "003c0e1f938497084cbbd1a9b4e5def10d20d502fd5f9471ab67e62f4a39690b" + sha256 cellar: :any, arm64_sequoia: "2182e953d4b591fbc3f7c649e71b1bf70ef3bc7cb74102ad1aa2b77414de549c" + sha256 cellar: :any, arm64_sonoma: "1652eab81e33e472541404591cf9464d954da74816276cdd1bfb8d2d27ab72df" + sha256 cellar: :any, arm64_ventura: "2fb6fb95bb806a05158b013fb0e6a11657ac7eeab2d41e392c3451147b1a5d40" + sha256 cellar: :any, sonoma: "ff6ee4c95d0ee48f6bf26f62a354d5d2379e2b42643e5fc6f609562e1dbcf42b" + sha256 cellar: :any, ventura: "e6eb1c0397b19d2cb59eaa3f847cae1e2a8311a77cb67b112e98b7d9cb9ab60d" + sha256 cellar: :any_skip_relocation, arm64_linux: "d8357c50b8179031066d3403a84199299a854bcf047e7ecfa92ad8eb1f9dc0c0" + sha256 cellar: :any_skip_relocation, x86_64_linux: "1244b6dd6fd2438e24994a84a3c7160638dbdbbb3935bf6a194addb6abc4f280" end head do From 3d7f8317325e87bf717141e85f7ef2e06380961b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 02:12:16 +0000 Subject: [PATCH 0619/1364] railway: update 4.5.0 bottle. --- Formula/r/railway.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/r/railway.rb b/Formula/r/railway.rb index 890062fb67176..db410edeefed3 100644 --- a/Formula/r/railway.rb +++ b/Formula/r/railway.rb @@ -7,13 +7,13 @@ class Railway < Formula head "https://github.com/railwayapp/cli.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "21c1b0c452043a6a84f42c5a076ef319f427ac15f9c8b9020c25d179ae19820f" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "b090fde637ac5ccf11b5e55a95fc3581160c68dc45ad8303dde563df0016c702" - sha256 cellar: :any_skip_relocation, arm64_ventura: "080a40d4c0f96341a07bd9a1c559d0ece5ea3ca6a17289a54e1638ce794a7442" - sha256 cellar: :any_skip_relocation, sonoma: "02ec63356b8271c4d180be1ae7ff2d3408ef1ba86139ee4486593e88d926a3bc" - sha256 cellar: :any_skip_relocation, ventura: "ee377f42549c8a8aab3dae1b59fdd664b21ca9274e9403d54e08b91df4dedbe0" - sha256 cellar: :any_skip_relocation, arm64_linux: "f38073631b34044f85adba2c8023f37f9f8abb4d8d5edc887ccfecdde1c6e31f" - sha256 cellar: :any_skip_relocation, x86_64_linux: "ee3803604074ebdb572837f25a012bc13d50c8b6bcbb6a2c15c8b9b880fb603b" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "b640104ac2d1daab637cc0262651e900f2bec88b41cbc3243008a41edf99238d" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "dbe8c77a87f7d922343e23394aa4d5ce2b776ab265add39880ac74c59d639337" + sha256 cellar: :any_skip_relocation, arm64_ventura: "5e09df544c27541d772402a08b4ae02de4f1e71c21eb99ac685d8e223d7c4b58" + sha256 cellar: :any_skip_relocation, sonoma: "318feba4c426347f56421bffe03e12d925005fe4ad66db5770996a3dc8deec91" + sha256 cellar: :any_skip_relocation, ventura: "08712f861c14ca8a7641d2bf488df48fd9ee06b0bce228839e5a60299e3137ed" + sha256 cellar: :any_skip_relocation, arm64_linux: "c623516ec34414568d2064e79894961188866de007fd41d00389fa635e083692" + sha256 cellar: :any_skip_relocation, x86_64_linux: "58d29137244121c3a41f61133472aaf62a76aa3bba25bd6a45675265e68aea49" end depends_on "rust" => :build From 228076020af6791bb7faba69c473ad942d6bc631 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Sat, 10 May 2025 02:12:17 +0000 Subject: [PATCH 0620/1364] libavif: update 1.3.0 bottle. --- Formula/lib/libavif.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/lib/libavif.rb b/Formula/lib/libavif.rb index d3cdaa89e75d2..98a8cba082f1f 100644 --- a/Formula/lib/libavif.rb +++ b/Formula/lib/libavif.rb @@ -6,13 +6,13 @@ class Libavif < Formula license "BSD-2-Clause" bottle do - sha256 cellar: :any, arm64_sequoia: "5c44c28b7141328d5a3eca015fa7ac4fc13ecf42f137405358f658646264c766" - sha256 cellar: :any, arm64_sonoma: "c82c77f895818aab922235f77fceaf50f2ef974dfe126297685c2457d6f73e3f" - sha256 cellar: :any, arm64_ventura: "ac77cb3a2d3454bdb65849f62eb012d462c36e2c99e9ce4cb5943ac995ece7f7" - sha256 cellar: :any, sonoma: "017c5e8e2fd2c29e85a549292d4df072b7e25bb22553538d9fde27f9f458ca7f" - sha256 cellar: :any, ventura: "29c4fe070f05b1fd6f67fb9987001a570c736fa39ceefe7dfa7fa92c7136612e" - sha256 cellar: :any_skip_relocation, arm64_linux: "f475b33e6a5e14decaccea79d41fbd0b8c827c7d8478f162e9ec7060caf1a0fe" - sha256 cellar: :any_skip_relocation, x86_64_linux: "8513ff0924eec754250e1ea79370950fbb6be068a7a155583b58b5ad1ac34f60" + sha256 cellar: :any, arm64_sequoia: "79ac7837d5f965f0df486a3551aa4efbc0472f9a8a4c89f4748f6c423044c51e" + sha256 cellar: :any, arm64_sonoma: "3d278f7e6324456dcf4e25f596e6f3063078e3b77ec0a6f709aecc985f7ad7b2" + sha256 cellar: :any, arm64_ventura: "8c9b7da2440de5d6ef334c1ec5345436a7206d9594ff3c7e242b66bd3fbadafe" + sha256 cellar: :any, sonoma: "7f0fbb053b843800ebf5edc64a14d5bfd4fc4c38f63e0c9c23aa1df0e5502d1f" + sha256 cellar: :any, ventura: "e1b76ac7c6960e689f40202c9ef2519a557414ae4ac577b94ddf0ad217a9b7ee" + sha256 cellar: :any_skip_relocation, arm64_linux: "77dcc8b63ad0eaa65bc4c710b88734228cb0d4884722f60200d10998c4c394f0" + sha256 cellar: :any_skip_relocation, x86_64_linux: "e238743363e2d2706f9cb5671d01bb89a8ce19832f95842b228f786ab156bd67" end depends_on "cmake" => :build From b900398b6fc8f0c88e6fea56dc20f1100cc52516 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 02:38:40 +0000 Subject: [PATCH 0621/1364] luau 0.673 --- Formula/l/luau.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/l/luau.rb b/Formula/l/luau.rb index a789797624f72..11789f5c92497 100644 --- a/Formula/l/luau.rb +++ b/Formula/l/luau.rb @@ -1,8 +1,8 @@ class Luau < Formula desc "Fast, safe, gradually typed embeddable scripting language derived from Lua" homepage "https://luau.org" - url "https://github.com/luau-lang/luau/archive/refs/tags/0.672.tar.gz" - sha256 "06dfc1485b6cda2ff6a78d6960ed750e37e93538ea645a510bca77e0b89d9fcc" + url "https://github.com/luau-lang/luau/archive/refs/tags/0.673.tar.gz" + sha256 "7587065619c1e63e781dcec895d9df9d8286730016d1ce2e51408f2b7e639314" license "MIT" version_scheme 1 head "https://github.com/luau-lang/luau.git", branch: "master" From 7f70586d04872934e89ed3533eb5cffa2de23468 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 02:42:44 +0000 Subject: [PATCH 0622/1364] onednn 3.8 --- Formula/o/onednn.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/o/onednn.rb b/Formula/o/onednn.rb index e4f9dcac806eb..7c606a8d73210 100644 --- a/Formula/o/onednn.rb +++ b/Formula/o/onednn.rb @@ -1,8 +1,8 @@ class Onednn < Formula desc "Basic building blocks for deep learning applications" homepage "https://www.oneapi.io/open-source/" - url "https://github.com/oneapi-src/oneDNN/archive/refs/tags/v3.7.3.tar.gz" - sha256 "071f289dc961b43a3b7c8cbe8a305290a7c5d308ec4b2f586397749abdc88296" + url "https://github.com/oneapi-src/oneDNN/archive/refs/tags/v3.8.tar.gz" + sha256 "06c11b9e4d25ddaaec219f0e93f6bdbbbc27dcf8eb992f76b768a2a056a087a9" license "Apache-2.0" head "https://github.com/oneapi-src/onednn.git", branch: "master" From 4c60976cb345e312989a06169ce9cb59513a38eb Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 02:45:47 +0000 Subject: [PATCH 0623/1364] petsc 3.23.2 --- Formula/p/petsc.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/p/petsc.rb b/Formula/p/petsc.rb index d5f5cd2ee505c..17dde2dced732 100644 --- a/Formula/p/petsc.rb +++ b/Formula/p/petsc.rb @@ -1,8 +1,8 @@ class Petsc < Formula desc "Portable, Extensible Toolkit for Scientific Computation (real)" homepage "https://petsc.org/" - url "https://web.cels.anl.gov/projects/petsc/download/release-snapshots/petsc-3.23.1.tar.gz" - sha256 "f729885710c3b42b818fdb525cbd7e1b8c95c1cc25139a44968aa0e7f9e75418" + url "https://web.cels.anl.gov/projects/petsc/download/release-snapshots/petsc-3.23.2.tar.gz" + sha256 "030ec6c4e9ed885457a6155f20b6f914593a1cd960b28706521a19a9cdadd5e2" license "BSD-2-Clause" livecheck do From c130521f54a4a1282678cff329a27ac1df907cb4 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 02:45:57 +0000 Subject: [PATCH 0624/1364] petsc-complex 3.23.2 --- Formula/p/petsc-complex.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/p/petsc-complex.rb b/Formula/p/petsc-complex.rb index 48d7475b7c019..66dee0b65bb07 100644 --- a/Formula/p/petsc-complex.rb +++ b/Formula/p/petsc-complex.rb @@ -1,8 +1,8 @@ class PetscComplex < Formula desc "Portable, Extensible Toolkit for Scientific Computation (complex)" homepage "https://petsc.org/" - url "https://web.cels.anl.gov/projects/petsc/download/release-snapshots/petsc-3.23.1.tar.gz" - sha256 "f729885710c3b42b818fdb525cbd7e1b8c95c1cc25139a44968aa0e7f9e75418" + url "https://web.cels.anl.gov/projects/petsc/download/release-snapshots/petsc-3.23.2.tar.gz" + sha256 "030ec6c4e9ed885457a6155f20b6f914593a1cd960b28706521a19a9cdadd5e2" license "BSD-2-Clause" livecheck do From 466ad1db0e80a1b3b7193a94fdd848b1dbbdbd4a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 02:54:39 +0000 Subject: [PATCH 0625/1364] luau: update 0.673 bottle. --- Formula/l/luau.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/l/luau.rb b/Formula/l/luau.rb index 11789f5c92497..7c349c63822a9 100644 --- a/Formula/l/luau.rb +++ b/Formula/l/luau.rb @@ -13,13 +13,13 @@ class Luau < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "70621e8c15537003b9cb3e3a8f03e1686eff56f561553002b9f53915c6bb812c" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "c17d4f0b9b71cf22efc29175d5a747d3463e3ea60c8f4923d872a41d820d9dfc" - sha256 cellar: :any_skip_relocation, arm64_ventura: "6ec5cd35d5f5735f4b367fb1b3482e700ca68299b84fc9e409baa3f84b623b90" - sha256 cellar: :any_skip_relocation, sonoma: "1c11923598f257557997aff8eb7bfdfb3bf1d40565e068f2c520c82afdb58f47" - sha256 cellar: :any_skip_relocation, ventura: "ad8630447184d6df173be27cc349d945be032c35f4a579d8709b451ead0f247f" - sha256 cellar: :any_skip_relocation, arm64_linux: "513b731d7b905f4f79bad6e356f92013729e068acdccaaa6947cddb6e912a7e0" - sha256 cellar: :any_skip_relocation, x86_64_linux: "417bac8eaebb7dcaa72df7e239fe1b38f685d7df974e3b0d7e36c57b134a290e" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "8389f4f6ca16c43f280b76c6300c8a3efcdc9d7b836022c26da67ddc85774d17" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "bf325cbc685f669853db8d14a710844c2738ed7f89f7c1e7d2d3b5687a913ad0" + sha256 cellar: :any_skip_relocation, arm64_ventura: "7d396499134fe9ef7773e4131d2e05408f4fed3dde55f1b9e29c3c7ec216859c" + sha256 cellar: :any_skip_relocation, sonoma: "96eb28dd46713ba04521675f7963c67b6d7990eb35104ac054ba95165b255992" + sha256 cellar: :any_skip_relocation, ventura: "10354dd9e6fadef0747e17c0007f8a5f514de3aa3981a4b2a76cd36d5a259806" + sha256 cellar: :any_skip_relocation, arm64_linux: "81815c5c2d2b7d87dd42a5a00eb9e2d3ab67c348da55851ec8be35360661a702" + sha256 cellar: :any_skip_relocation, x86_64_linux: "4750f18ba0da6dbd39a4c31ed8d89cd367e773695f28a1f56fcbde6bb640c3fe" end depends_on "cmake" => :build From 0d47a4d4ee6d4078959300c311e86a16d013c37b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 02:57:16 +0000 Subject: [PATCH 0626/1364] victorialogs 1.22.2 --- Formula/v/victorialogs.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/v/victorialogs.rb b/Formula/v/victorialogs.rb index 881455f43ac49..52336324674a2 100644 --- a/Formula/v/victorialogs.rb +++ b/Formula/v/victorialogs.rb @@ -1,8 +1,8 @@ class Victorialogs < Formula desc "Open source user-friendly database for logs from VictoriaMetrics" homepage "https://docs.victoriametrics.com/victorialogs/" - url "https://github.com/VictoriaMetrics/VictoriaMetrics/archive/refs/tags/v1.22.1-victorialogs.tar.gz" - sha256 "f4ecd43d942490370b437d709712159a1c6f7228dcd66c143f8034f75be0a84c" + url "https://github.com/VictoriaMetrics/VictoriaMetrics/archive/refs/tags/v1.22.2-victorialogs.tar.gz" + sha256 "a2e9abf336cb0a299d611ca9c7955212b4d6f316bf1ef37e2c098bbf4e47a998" license "Apache-2.0" # There are tags like `pmm-6401-v1.89.1` in the upstream repo. They don't From bf5bb2ef99998585687675cac5c42059c77f284e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 14:47:29 +0000 Subject: [PATCH 0627/1364] snapcraft 8.9.1 --- Formula/s/snapcraft.rb | 41 ++++++++++++++++++++--------------------- 1 file changed, 20 insertions(+), 21 deletions(-) diff --git a/Formula/s/snapcraft.rb b/Formula/s/snapcraft.rb index 09cf6784b393d..7d8370275eecf 100644 --- a/Formula/s/snapcraft.rb +++ b/Formula/s/snapcraft.rb @@ -5,10 +5,9 @@ class Snapcraft < Formula homepage "https://snapcraft.io/" # Use git checkout so setuptools-scm and update-python-resources works url "https://github.com/canonical/snapcraft.git", - tag: "8.8.1", - revision: "f16a1aedf29e02a4a5589678c1d76a1d698d6ef2" + tag: "8.9.1", + revision: "a434a624a5f905b5a2b7c03f352d5b6230d48a53" license "GPL-3.0-only" - revision 1 head "https://github.com/canonical/snapcraft.git", branch: "main" livecheck do @@ -84,8 +83,8 @@ class Snapcraft < Formula end resource "charset-normalizer" do - url "https://files.pythonhosted.org/packages/16/b0/572805e227f01586461c80e0fd25d65a2115599cc9dad142fee4b747c357/charset_normalizer-3.4.1.tar.gz" - sha256 "44251f18cd68a75b56585dd00dae26183e102cd5e0f9f1466e6df5da2ed64ea3" + url "https://files.pythonhosted.org/packages/e4/33/89c2ced2b67d1c2a61c19c6751aa8902d46ce3dacb23600a283619f5a12d/charset_normalizer-3.4.2.tar.gz" + sha256 "5baececa9ecba31eff645232d59845c07aa030f0c81ee70184a90d35099a0e63" end resource "click" do @@ -94,8 +93,8 @@ class Snapcraft < Formula end resource "craft-application" do - url "https://files.pythonhosted.org/packages/86/86/20bac2f1a4e45097c01040328ff8ffd5313533d03231db08435559c684c3/craft_application-4.10.0.tar.gz" - sha256 "7a9cda0e854877fb80464e03274e69b97540a618e0c53cbc500b6fce25b9b8c4" + url "https://files.pythonhosted.org/packages/0a/f5/b2f41e857a9e0999a1a279c2464afcdfb8b1af3671b3b3fa18c04c158a74/craft_application-5.2.0.tar.gz" + sha256 "9c21b61c9231be56037bdd497f1ea20942de492caaf04958ae852238372a2681" end resource "craft-archives" do @@ -114,8 +113,8 @@ class Snapcraft < Formula end resource "craft-parts" do - url "https://files.pythonhosted.org/packages/38/af/3a36df71dd40f0267e5f7c5d2b0dbe92886a5170475e3a9876dbf88b2eb4/craft_parts-2.8.0.tar.gz" - sha256 "689c0baf4465eed5366bd02580867973cb3285ae3dc43dc9842c87ec37fbd7bc" + url "https://files.pythonhosted.org/packages/38/e2/e447994c1436b0ae3a8c4987f96fa8d45b62330f363a6d77cf7e4f5bae16/craft_parts-2.10.0.tar.gz" + sha256 "62a0dbca7248769dc43ce1f8755aff65af1b2d1df1627ac27251325b4b9e5bce" end resource "craft-platforms" do @@ -124,8 +123,8 @@ class Snapcraft < Formula end resource "craft-providers" do - url "https://files.pythonhosted.org/packages/16/92/93e3f7adff46a338ae7087ffedab34dd116b329917735677f3205369b931/craft_providers-2.2.0.tar.gz" - sha256 "dda4df4f777fbc6fbb4fd72cb85ccd237d07875b80a5c95bc70ace3c22d26b07" + url "https://files.pythonhosted.org/packages/69/d9/5c9195dbd410c978ef8f7172ddef7ab86d10f501560ee49dcdae1497e8f4/craft_providers-2.3.0.tar.gz" + sha256 "8b9f60d587d118e35e6cf0c28ffffafe5c8e40e3e6c49da3b171a3d18a070ffa" end resource "craft-store" do @@ -269,8 +268,8 @@ class Snapcraft < Formula end resource "platformdirs" do - url "https://files.pythonhosted.org/packages/b6/2d/7d512a3913d60623e7eb945c6d1b4f0bddf1d0b7ada5225274c87e5b53d1/platformdirs-4.3.7.tar.gz" - sha256 "eb437d586b6a0986388f0d6f74aa0cde27b48d0e3d66843640bfb6bdcdb6e351" + url "https://files.pythonhosted.org/packages/fe/8b/3c73abc9c759ecd3f1f7ceff6685840859e8070c4d947c93fae71f6a0bf2/platformdirs-4.3.8.tar.gz" + sha256 "3d512d96e16bcb959a814c9f348431070822a6496326a4be0911c40b5a74c2bc" end resource "progressbar" do @@ -289,13 +288,13 @@ class Snapcraft < Formula end resource "pydantic" do - url "https://files.pythonhosted.org/packages/10/2e/ca897f093ee6c5f3b0bee123ee4465c50e75431c3d5b6a3b44a47134e891/pydantic-2.11.3.tar.gz" - sha256 "7471657138c16adad9322fe3070c0116dd6c3ad8d649300e3cbdfe91f4db4ec3" + url "https://files.pythonhosted.org/packages/77/ab/5250d56ad03884ab5efd07f734203943c8a8ab40d551e208af81d0257bf2/pydantic-2.11.4.tar.gz" + sha256 "32738d19d63a226a52eed76645a98ee07c1f410ee41d93b4afbfa85ed8111c2d" end resource "pydantic-core" do - url "https://files.pythonhosted.org/packages/17/19/ed6a078a5287aea7922de6841ef4c06157931622c89c2a47940837b5eecd/pydantic_core-2.33.1.tar.gz" - sha256 "bcc9c6fdb0ced789245b02b7d6603e17d1563064ddcfc36f046b61c0c05dd9df" + url "https://files.pythonhosted.org/packages/ad/88/5f2260bdfae97aabf98f1778d43f69574390ad787afb646292a638c923d4/pydantic_core-2.33.2.tar.gz" + sha256 "7cb8bc3605c29176e1b105350d2e6474142d7c1bd1d9327c4a9bdb46bf827acc" end resource "pyelftools" do @@ -379,8 +378,8 @@ class Snapcraft < Formula end resource "setuptools" do - url "https://files.pythonhosted.org/packages/bb/71/b6365e6325b3290e14957b2c3a804a529968c77a049b2ed40c095f749707/setuptools-79.0.1.tar.gz" - sha256 "128ce7b8f33c3079fd1b067ecbb4051a66e8526e7b65f6cec075dfc650ddfa88" + url "https://files.pythonhosted.org/packages/95/32/0cc40fe41fd2adb80a2f388987f4f8db3c866c69e33e0b4c8b093fdf700e/setuptools-80.4.0.tar.gz" + sha256 "5a78f61820bc088c8e4add52932ae6b8cf423da2aff268c23f813cfbb13b4006" end resource "simplejson" do @@ -434,8 +433,8 @@ class Snapcraft < Formula end resource "validators" do - url "https://files.pythonhosted.org/packages/64/07/91582d69320f6f6daaf2d8072608a4ad8884683d4840e7e4f3a9dbdcc639/validators-0.34.0.tar.gz" - sha256 "647fe407b45af9a74d245b943b18e6a816acf4926974278f6dd617778e1e781f" + url "https://files.pythonhosted.org/packages/53/66/a435d9ae49850b2f071f7ebd8119dd4e84872b01630d6736761e6e7fd847/validators-0.35.0.tar.gz" + sha256 "992d6c48a4e77c81f1b4daba10d16c3a9bb0dbb79b3a19ea847ff0928e70497a" end resource "wadllib" do From 1681ec7ed2dec74fadb5280412db53dd221e20a5 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 02:43:44 +0000 Subject: [PATCH 0628/1364] onnxruntime 1.22.0 --- Formula/o/onnxruntime.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Formula/o/onnxruntime.rb b/Formula/o/onnxruntime.rb index eb5d65b4eb374..d414945c01df0 100644 --- a/Formula/o/onnxruntime.rb +++ b/Formula/o/onnxruntime.rb @@ -2,8 +2,8 @@ class Onnxruntime < Formula desc "Cross-platform, high performance scoring engine for ML models" homepage "https://github.com/microsoft/onnxruntime" url "https://github.com/microsoft/onnxruntime.git", - tag: "v1.21.1", - revision: "8f7cce3a49fdbdac96e0868b75b7d0159db7ac7f" + tag: "v1.22.0", + revision: "f217402897f40ebba457e2421bc0a4702771968e" license "MIT" livecheck do @@ -39,7 +39,7 @@ class Onnxruntime < Formula # element_wise_ops.cc:708:32: error: no matching member function for call to 'min' # # https://github.com/microsoft/onnxruntime/blob/v#{version}/cmake/deps.txt#L25 - resource "eigen" do + resource "eigen3" do url "https://gitlab.com/libeigen/eigen/-/archive/1d8b82b0740839c0de7f1242a3585e3390ff5f33/eigen-1d8b82b0740839c0de7f1242a3585e3390ff5f33.tar.bz2" sha256 "37c2385d5b18471d46ac8c971ce9cf6a5a25d30112f5e4a2761a18c968faa202" end From bd9e88c5f8dfa0660d419ad689756fc5b2b76ab7 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 03:20:32 +0000 Subject: [PATCH 0629/1364] pixd: add 1.0.0 bottle. --- Formula/p/pixd.rb | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Formula/p/pixd.rb b/Formula/p/pixd.rb index 1d38b78db2c74..41cb4c5920b6a 100644 --- a/Formula/p/pixd.rb +++ b/Formula/p/pixd.rb @@ -5,6 +5,15 @@ class Pixd < Formula sha256 "011440a8d191e40a572910b0ce7a094e9b4ee75cf972abc6d30674348edf4158" license "MIT" + bottle do + sha256 cellar: :any_skip_relocation, arm64_sequoia: "c41c69c03c8f20507a9014e41e7e02cc6813abe0c919ae40a16f82e0b01fe899" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "d31f44763a25c242c3b0c55433e3c3615e61b1db85dd3729fab3f69468661b0b" + sha256 cellar: :any_skip_relocation, arm64_ventura: "04df14dafa37644469c807bd9d00fe86ff95186bb8e068fcbc01bc7b0ce95acb" + sha256 cellar: :any_skip_relocation, sonoma: "4ac1c7187b65cde2b4061710214b5a004b2f05f1d692b69d042327b9d9b319eb" + sha256 cellar: :any_skip_relocation, ventura: "f04e390bac553c784c3cc78f5b5a3113fe23c42e9ead74cd886014e87d72bb96" + sha256 cellar: :any_skip_relocation, x86_64_linux: "fa387cb2dd091d0b261fbe63ff989362f7f9269a0565f68ff1fe5acfceb16167" + end + def install bin.mkdir man1.mkpath From c85427d9596eff401254623002d8a36b65a32258 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 9 May 2025 16:59:35 +0000 Subject: [PATCH 0630/1364] gdal 3.11.0 --- Formula/g/gdal.rb | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/Formula/g/gdal.rb b/Formula/g/gdal.rb index 54690fcd0477f..12f09f7ff015c 100644 --- a/Formula/g/gdal.rb +++ b/Formula/g/gdal.rb @@ -1,10 +1,9 @@ class Gdal < Formula desc "Geospatial Data Abstraction Library" homepage "https://gdal.org/en/stable/" - url "https://github.com/OSGeo/gdal/releases/download/v3.10.3/gdal-3.10.3.tar.gz" - sha256 "e4bf7f104acbcb3e2d16c97fd1af2b92b28d0ba59d17d976e3ef08b794f4153b" + url "https://github.com/OSGeo/gdal/releases/download/v3.11.0/gdal-3.11.0.tar.gz" + sha256 "723d7b04e0f094be2636128d15165b45059ac5e53f143cbbd93280af0b347abd" license "MIT" - revision 1 livecheck do url "https://download.osgeo.org/gdal/CURRENT/" @@ -89,13 +88,6 @@ class Gdal < Formula conflicts_with "avce00", because: "both install a cpl_conv.h header" conflicts_with "cpl", because: "both install cpl_error.h" - # Fix for Poppler 25.05.0, remove in next release - # ref: https://github.com/OSGeo/gdal/issues/12269 - patch do - url "https://github.com/OSGeo/gdal/commit/a689e2189ff0a464f3150ed8b2dd5a3cc1194012.patch?full_index=1" - sha256 "b3eefe691d6f74c9128aed4c558b8c5d2122a56a93acbf5b424ca67e743c4fb9" - end - def python3 "python3.13" end From 91bf090ac7f36d63f9cc41b773a7bc9cb9ccd71b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 03:27:49 +0000 Subject: [PATCH 0631/1364] victorialogs: update 1.22.2 bottle. --- Formula/v/victorialogs.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/v/victorialogs.rb b/Formula/v/victorialogs.rb index 52336324674a2..5be7ff2a621dd 100644 --- a/Formula/v/victorialogs.rb +++ b/Formula/v/victorialogs.rb @@ -14,13 +14,13 @@ class Victorialogs < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "37a3b6316830c437c18532fe1c5eb2937c66cbdfaaa8b4ffdf5bf66d153184f5" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "2b1f60a0877aa376b60eff933b78fc52b7d525395ac7ae897c780a3a924bb692" - sha256 cellar: :any_skip_relocation, arm64_ventura: "edf0ba98cf2b85440c549aeb53fcfee43cd5ff6c6c1675f441e0d5b927745c38" - sha256 cellar: :any_skip_relocation, sonoma: "06f069fd0a6d656caa4af4ea13d64fc4d8893192cb281b0094d3fff5c4cafa00" - sha256 cellar: :any_skip_relocation, ventura: "a3d775c8d1bba7fd813694c1e5cc1de59766a125b1e9b1545b54067df39b95ad" - sha256 cellar: :any_skip_relocation, arm64_linux: "f0349535926725c2e645446363e80be3cbb1a104a8d93ff0fd721e96ab1e7d0a" - sha256 cellar: :any_skip_relocation, x86_64_linux: "a817cdb92c3e71a200cfe60fa448497bb0122fb1139d38c84d42767fa318417b" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "9577f4a0a1df19c12e4bc9d0a34ce0e3dc97b0d7ead48c87cd5a411c7ac800f0" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "8f7af0a79edbd056451caead83ad35c56c6e2a1ab67ea0e3e2078f0234880a4b" + sha256 cellar: :any_skip_relocation, arm64_ventura: "57fce423daf59802ed2fa6227549083f676135a15d7d5eb2663f4069041b193a" + sha256 cellar: :any_skip_relocation, sonoma: "3060bf5487bda7b971a1d3ab2e648ce40155f7b80e140f9fa12f47a00042f607" + sha256 cellar: :any_skip_relocation, ventura: "90c3abc2b382a747f0f11b14d474f66e394b6ab3a6f5b9532afde1b0cf050ca7" + sha256 cellar: :any_skip_relocation, arm64_linux: "9954ca0b118c4da6fdbde2339e115381c81b00ce490b7e5815d902e63e52179d" + sha256 cellar: :any_skip_relocation, x86_64_linux: "f36b946055a52021122e11efd41494fbd2e9b6ceb77a85cbb3bfc09bc797cbc8" end depends_on "go" => :build From 3e93204646b83c2505aa6b535cee201d7e92816c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 03:49:56 +0000 Subject: [PATCH 0632/1364] vulkan-headers: update 1.4.315 bottle. --- Formula/v/vulkan-headers.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/v/vulkan-headers.rb b/Formula/v/vulkan-headers.rb index 8f48d2b058d4f..7af68327b60bb 100644 --- a/Formula/v/vulkan-headers.rb +++ b/Formula/v/vulkan-headers.rb @@ -12,7 +12,7 @@ class VulkanHeaders < Formula end bottle do - sha256 cellar: :any_skip_relocation, all: "e0fdfa71d9efe84ef911b80e149b9e84b3e24bbb9a5494f61bb76c42d21a6c22" + sha256 cellar: :any_skip_relocation, all: "139b1706725982bdf168904c597ee0549a1303d47e70acb0553d4e3ba8999c90" end depends_on "cmake" => :build From b883518f47f59dcf78bf34514cb45e18ebb2069a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 03:49:56 +0000 Subject: [PATCH 0633/1364] vulkan-loader: update 1.4.315 bottle. --- Formula/v/vulkan-loader.rb | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Formula/v/vulkan-loader.rb b/Formula/v/vulkan-loader.rb index 4ba4e9028aaf2..60752e013f1a7 100644 --- a/Formula/v/vulkan-loader.rb +++ b/Formula/v/vulkan-loader.rb @@ -12,14 +12,14 @@ class VulkanLoader < Formula end bottle do - sha256 arm64_sequoia: "596c8bd8f28488df4bb06d56ad5a691dbf73926d3f124649591b978792acfcc4" - sha256 arm64_sonoma: "2c125f1610a562a89e23bf99fadc32f0bbe428ab51dd964ad946a53c697778c0" - sha256 arm64_ventura: "aa4c386986fbf9b82f1311d2bd1089c0f3af0441947583bd53579c5aa5974c0c" - sha256 sequoia: "e2ba1fccc5b2c19389e2e575c12de4403bcf3e4122f1714ca9403d4a00ffbdb1" - sha256 sonoma: "27868e1b2db58f4f6d4c466ba1ebc3e9763ae71ade76f8c743c14e97d1330e17" - sha256 ventura: "67d829de9eee5eab2d9ec2c4aa2e04e19c3424777e049f1873ff6bdce8059e29" - sha256 arm64_linux: "12ec33a2f9c8c722b4856c540b937bc0ef3ca43e2ccba0f6ee786b8c117e5f93" - sha256 x86_64_linux: "c921ea0a86444bfd4dfae863b5584d6ac8bb7f7b6aae40de98aafc761ac5f08e" + sha256 arm64_sequoia: "0455210ef4e4353264dfb7ec09e976849d4c0c6972c06ad649c65df896e39f13" + sha256 arm64_sonoma: "07e31cbbd92ae92fe84d38fb61c2085ece8ad8a001e6ff0a34b56a9311135c65" + sha256 arm64_ventura: "770b9fd325f4662b432699822be2604f7bf2fae50f6f47c1dd7dcddb73b87f07" + sha256 sequoia: "d3ce67754d2675ecade1138641de023afb727035edabf6bbd23d9f9fddd4403e" + sha256 sonoma: "94c30eaec50d6a52782e59bbd88cbd5528d9f698ec697c92983d3a4f64ac83b2" + sha256 ventura: "ff43bc6b2dde9a5160c1c42c50e0c430410b84db1cd200ed393631321b41c5df" + sha256 arm64_linux: "8437afe28588115823f7fe2d072d7bcce3e378da62c64c83ba81750e7899697e" + sha256 x86_64_linux: "05c1ec291015aaee957f6ca7726a63b06b5219ca9c6518dbaf35111860ad8626" end depends_on "cmake" => :build From cb62c638403ba05b24e596cb91081e4d2bd5a6e0 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 03:49:56 +0000 Subject: [PATCH 0634/1364] vulkan-tools: update 1.4.315 bottle. --- Formula/v/vulkan-tools.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/v/vulkan-tools.rb b/Formula/v/vulkan-tools.rb index b0fc1c69e6e9b..41f94c8a9bc2d 100644 --- a/Formula/v/vulkan-tools.rb +++ b/Formula/v/vulkan-tools.rb @@ -12,13 +12,13 @@ class VulkanTools < Formula end bottle do - sha256 arm64_sequoia: "159f11d327656b13876eb551a7c20e60bca06eb58a61f60d4eba18e6b3f96290" - sha256 arm64_sonoma: "b862668fb437539141141610664949281a721b2258c6f2509c8460f15c3976b0" - sha256 arm64_ventura: "dd8f35202428007b8bc3bb30ef47bd8aba5e885a920fca449086c1adabec23ad" - sha256 cellar: :any, sonoma: "431a576a4629ebea5065ec1ea774928f413ef4abe9e72769944701cdad25df6e" - sha256 cellar: :any, ventura: "1e7b81a1e4f7f0f8adbfbc45e2e4cdc14caa1f8cd98f6e78fb0b5f5b61c010d1" - sha256 arm64_linux: "3f27b401e0fda20f1d41288ef8009f64ee238c65f1a839d1918debc4b0f400bf" - sha256 x86_64_linux: "85d1364ded0830331760d27e16252b7b962bded67572888e8e4884817351e8b7" + sha256 arm64_sequoia: "1c80a678fe1319054402e3e01b285c702129c74a41172c2460e99c5deaa18f10" + sha256 arm64_sonoma: "35f97c5df3a5765f02b723c15379d045aea6beee3f2805595d4f28732eafa290" + sha256 arm64_ventura: "5f839e25ffa15425202589961e1814958d5d2f7e50236539f82ae1aeb5799adc" + sha256 cellar: :any, sonoma: "115fb1ac792348c5f2862a81f73ee663b3eb5bdf81011dd676f3cb963b547c2e" + sha256 cellar: :any, ventura: "0911d06c18b7a4fe3ecda4d1fcc39e8b91046eec4a1ba497f5dce6d54de46557" + sha256 arm64_linux: "c6190caa8e621ed579b40ec456e4afbdf35284d03a6cabe6a955d1a6413bb126" + sha256 x86_64_linux: "68e3723283c7d52034b096c979bc5efd98ac6de33b85f876cfb136450a50d05d" end depends_on "cmake" => :build From 2cea89ba729cfd140bab0d39d1964f3b605f4387 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 03:49:56 +0000 Subject: [PATCH 0635/1364] vulkan-utility-libraries: update 1.4.315 bottle. --- Formula/v/vulkan-utility-libraries.rb | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Formula/v/vulkan-utility-libraries.rb b/Formula/v/vulkan-utility-libraries.rb index 27154660c3b8f..60ad1978cddc0 100644 --- a/Formula/v/vulkan-utility-libraries.rb +++ b/Formula/v/vulkan-utility-libraries.rb @@ -12,14 +12,14 @@ class VulkanUtilityLibraries < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "fcd71a1c9e5db2127b037da77c275f19ba3cf711fbde10225346fdde06d68708" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "9ebe94328deaa4bdaf025e674528f047bdacd40a922d146a23da10f42d37aa25" - sha256 cellar: :any_skip_relocation, arm64_ventura: "3c52966242dc8074c767c401b917b8515fe8973a552f40e643aa8d5fca3a704e" - sha256 cellar: :any_skip_relocation, sequoia: "b779012cf29931f9928dbcf413148c3f157c194012c07f9ad2f97f1ceb837798" - sha256 cellar: :any_skip_relocation, sonoma: "65bdef34d26851dedc836977ecd7b989d95a6bfcb10fd5cc04a4965166ff6886" - sha256 cellar: :any_skip_relocation, ventura: "0035e9a835a7ceea28f14f4e55a41daa1175e53d97bee9d1c578c0ed1f041d3d" - sha256 cellar: :any_skip_relocation, arm64_linux: "42ef7d823f4f3e09cb280b8b02ddbcd6d6e1894af168d7e14eddda4a8a18ce4a" - sha256 cellar: :any_skip_relocation, x86_64_linux: "a0a58f22985ef063169532a8f6484d776d8ef2273ffb2721b3ca7169189f9214" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "430a6d084381bc40283d2ed0193edc06339953545970118fd835b50ad8a1c894" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "b2507831b7fade01eff30b6c5adf75276596cd90fe146303fa6eef42e257dec6" + sha256 cellar: :any_skip_relocation, arm64_ventura: "6fa51bb86d75707fb1148e7b1577b0c1f33d94064cf8d651c47d1255072b402f" + sha256 cellar: :any_skip_relocation, sequoia: "22dee361200e0841a441e58d8cb75aaa317d7a7aeae890a305eb1e6ada470268" + sha256 cellar: :any_skip_relocation, sonoma: "59acc433977030d86da36a83b21110f5548ff27aaca4aafc0d313d31b1d7f9d6" + sha256 cellar: :any_skip_relocation, ventura: "aa5cc824b07ff98470dabcf86b5dabe77fcf6c4bc90c3b60fd82e47b71026eb3" + sha256 cellar: :any_skip_relocation, arm64_linux: "382e1027cbfa43cd178653756f5b86b6cb32fe82f26ae85fd5e1b50873a0c284" + sha256 cellar: :any_skip_relocation, x86_64_linux: "f816283989e9175523cfc18ef793fb71c3a017231cfd6e2fdc096a892b7b6a18" end depends_on "cmake" => :build From a43c407f6f176a8c8ad4e0404ebb994a5f7a0547 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 04:18:08 +0000 Subject: [PATCH 0636/1364] onednn: update 3.8 bottle. --- Formula/o/onednn.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/o/onednn.rb b/Formula/o/onednn.rb index 7c606a8d73210..ea6ef7d771940 100644 --- a/Formula/o/onednn.rb +++ b/Formula/o/onednn.rb @@ -12,13 +12,13 @@ class Onednn < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "897eb5eb032e542e77238210a905478fb2e1de29495468e82ad7ebd59eb231fe" - sha256 cellar: :any, arm64_sonoma: "378c5d953705ce41530e38773daa6cba1ff2d002adba27f9dd73c14a9aba6263" - sha256 cellar: :any, arm64_ventura: "7f9363bd89ea070cd29b4b3ab7ebed3930cc40a62b744875edbc78d01607a3d6" - sha256 cellar: :any, sonoma: "0e8bf0bd266267c53d160d507c956519b5a0da368d97d98074e27c4c1bd7fbba" - sha256 cellar: :any, ventura: "85bb546408984a91677aeb31de34b932a318f95932d745f4bca2fa9c16e0544a" - sha256 cellar: :any_skip_relocation, arm64_linux: "e48d6a3c5e111e292dab316cf54ea767ee150825453e249e50a8b0be72b2edd7" - sha256 cellar: :any_skip_relocation, x86_64_linux: "2035a5fe53e43eecde496ae023f3210d05d2d4d1d1200b7e4160c866f9b43cde" + sha256 cellar: :any, arm64_sequoia: "e42d753c017a4e5500215f1da35107ac56151e25a9ea7666938c8a725114c73d" + sha256 cellar: :any, arm64_sonoma: "1e3f1a23fad88728134a6ac98434186de4a4636ed53b823ca215b5971e7882d6" + sha256 cellar: :any, arm64_ventura: "7eb34b92c93de40314a520bbeef8864e32f6a69f8a88d38a7d54968cf9db44fd" + sha256 cellar: :any, sonoma: "fbd866baa63a125581698f932aa553624b2a83c709a208da762882017d0615e8" + sha256 cellar: :any, ventura: "253634f300fd2d1a6271892b82db065b67da14a8fa68784f654852fb208f2e06" + sha256 cellar: :any_skip_relocation, arm64_linux: "95dd950079e37cacfd9b163a17c6b69d33723bb453a862bf2513166d9cdc0501" + sha256 cellar: :any_skip_relocation, x86_64_linux: "291943a184e27b72f6701a76a9a13bd3178b0aaee19ee8cbda4daabdf76c465f" end depends_on "cmake" => :build From 0688f69d87aad19f461f9c95f9d9029e7f2222d4 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 04:18:49 +0000 Subject: [PATCH 0637/1364] petsc: update 3.23.2 bottle. --- Formula/p/petsc.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/p/petsc.rb b/Formula/p/petsc.rb index 17dde2dced732..a6f206c5d5e62 100644 --- a/Formula/p/petsc.rb +++ b/Formula/p/petsc.rb @@ -11,13 +11,13 @@ class Petsc < Formula end bottle do - sha256 arm64_sequoia: "cc71a834280ee31ff6fd6b7c53aabb2cbc2c77fb2a758c0d91643028918b9dd7" - sha256 arm64_sonoma: "0dbc12416e09286618c5a7a4c5d4e3ae2dfbe6d9d945dbe18d6095d628dc61c1" - sha256 arm64_ventura: "5118ce4044125a4e744de89bf5c1054bceb74c64101deb7e43558c197ccc6690" - sha256 sonoma: "fc282e28829f376ea840aceff683259866a6b334887c5cea5349a32b25f797ca" - sha256 ventura: "ff1e2f86e5715d925b5cb79bb9e8a794d482642e21cba4227b42b97761b57c5a" - sha256 arm64_linux: "da3c985bc7bca8428a5f43103ebeed005a453cf69b53b3ada0e21fd515795b52" - sha256 x86_64_linux: "d15ea3e6ba53fc8b1935a95af82d947a6e77ccff26c2df457ec0295f6466142d" + sha256 arm64_sequoia: "30f809bb0a45ea8c480fd142bdb792126bf30840a09168a2beb027e5740865e4" + sha256 arm64_sonoma: "5c30a449eaac70cb7ce18cdd5bb3084a2332519ea7a83a7f3dd1265b203cd18c" + sha256 arm64_ventura: "5c9d667058c338be9d5a16a534d5755e78a7ada3e07473cee0573e373aa1eb14" + sha256 sonoma: "9b2b984b308c2db93b72a20dccf338045209b1c6370fda60cf918db60b5dd1e8" + sha256 ventura: "9e3bbc2b27248c5a3cc0ccf661165471a5fd7a25de5f9c059a73e21a44cee79b" + sha256 arm64_linux: "4096ce20d5653589e1b69b1519d4475b889cfdcb6b653b3b701a4e1b1d22cefb" + sha256 x86_64_linux: "310208cedc18ec2c344faf805aab8c60c89ebd709f268ceb4fc39cc070d96d19" end depends_on "fftw" From a5e85df7d19658854011c7343b6d3f74290b54d0 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 04:19:23 +0000 Subject: [PATCH 0638/1364] petsc-complex: update 3.23.2 bottle. --- Formula/p/petsc-complex.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/p/petsc-complex.rb b/Formula/p/petsc-complex.rb index 66dee0b65bb07..56c1cbc139b77 100644 --- a/Formula/p/petsc-complex.rb +++ b/Formula/p/petsc-complex.rb @@ -10,13 +10,13 @@ class PetscComplex < Formula end bottle do - sha256 arm64_sequoia: "155c0a7566667a05fc16a0090369606b285c8f1cdc58745297067761b265e95e" - sha256 arm64_sonoma: "6ff43660151b49a346949f68eae30509ea4f58e4c024ee15419004d575483230" - sha256 arm64_ventura: "65e8ea31274905aa341a102dafb771dd2a87449989ddbfa75251cb65e16b77c7" - sha256 sonoma: "5974f4cb71112464a6a14936a53e931d5081f36a9d8ca8fab057137d07dce067" - sha256 ventura: "63985b225ff02fb4d317ad5cad3e45dac079bece26e7c5324d89e440bf0ef4e1" - sha256 arm64_linux: "207cf367ea4af7658e9da59d3270cbdaab04d41ec0c021c1890e82ac994c41eb" - sha256 x86_64_linux: "853226ecbad3e960b0eaf8660e134eee7ba4d860dea66da657cad1707ec994a4" + sha256 arm64_sequoia: "a270b9d18b5a43f2634ad7f54b52f77e94a4fa6f8e508d007ec4005ff4ed37be" + sha256 arm64_sonoma: "a5aa4fa9f8aadfd3aca5d07e71f354adf20584999fc6e73ae8132561964d712f" + sha256 arm64_ventura: "6681b2335e439eb559c3d2e8ab36aa6e1c6c45c3d0e158e5527e6df76798fefd" + sha256 sonoma: "2dddcf28ca47cc094ea334791a5553feec054490d61b0afbc450ef9f01745f53" + sha256 ventura: "1bd27a81d27a325abc1b591bacad34f8d49ce565f42fe825b9696dc066b182e0" + sha256 arm64_linux: "e55c7ec714461d45d135da91d7ea4b6fd2905ba220ad4b12dca6bff45cb640cd" + sha256 x86_64_linux: "d866af1bda598550a5c096b6ab1c1b6b702ed4b2a13fc35debbd894b4d3d4ee3" end depends_on "fftw" From a73088c85bad0047677c62df059404e71f86bfdd Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 04:51:46 +0000 Subject: [PATCH 0639/1364] snapcraft: update 8.9.1 bottle. --- Formula/s/snapcraft.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/s/snapcraft.rb b/Formula/s/snapcraft.rb index 7d8370275eecf..ac95bddbaff68 100644 --- a/Formula/s/snapcraft.rb +++ b/Formula/s/snapcraft.rb @@ -16,12 +16,12 @@ class Snapcraft < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "9f5b53aca62e53ffceea2516be7f4bdb51fcd4f7240c6b32eb53a8ca1d06a14c" - sha256 cellar: :any, arm64_sonoma: "e53e316829963af8b4614f6eb01df3526cb9f8f7b83f293a54c4ffb809cb8e03" - sha256 cellar: :any, arm64_ventura: "a6c8ada91d164868ef19d8424dfc5568d3e0d7864626f88e888b5b49c74f5c97" - sha256 cellar: :any, sonoma: "d5e46fc724992e97b6713c2b1d99a52873b9bed2fff3406bbf05ff4c47f98444" - sha256 cellar: :any, ventura: "d4e4bdfd88d2f131dd3388030a7acda899637e0768a59472c8ae60792b5d3648" - sha256 cellar: :any_skip_relocation, x86_64_linux: "168cc401d0ca12c64622005028eccfa872f84a0c6904a6d3aec4920139e38dc5" + sha256 cellar: :any, arm64_sequoia: "d4af1b551f044d338799c5a3c00c74e57e28bcf8c27667f957afe9dc577e426d" + sha256 cellar: :any, arm64_sonoma: "030a3a605f2a4811a3498bb0f316579d6e1b00ca03f8b34bce76625d8b5d97af" + sha256 cellar: :any, arm64_ventura: "121cc78cac09991f79a84bd7db68da674751a37e4e17f9eb5bc8ee89d152cedb" + sha256 cellar: :any, sonoma: "dda2737f0b583b0385491073fee7fe249ed549c5710b97033506e348e58acfb4" + sha256 cellar: :any, ventura: "e828c346984b224b9bec260fe3704e95a3ad8006636070cfd108e980d0b1efa5" + sha256 cellar: :any_skip_relocation, x86_64_linux: "a544ba8e4fb9a5a31be7102df3185dac8e96803d54e442c35326a51e2dc258d4" end depends_on "rust" => :build # for pydantic_core From 324829636210eb825d7f131aa62bc36a472faa03 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 04:57:16 +0000 Subject: [PATCH 0640/1364] ddns-go 6.9.2 --- Formula/d/ddns-go.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/d/ddns-go.rb b/Formula/d/ddns-go.rb index 2f39b13581852..d64ed01ff61ab 100644 --- a/Formula/d/ddns-go.rb +++ b/Formula/d/ddns-go.rb @@ -1,8 +1,8 @@ class DdnsGo < Formula desc "Simple and easy-to-use DDNS" homepage "https://github.com/jeessy2/ddns-go" - url "https://github.com/jeessy2/ddns-go/archive/refs/tags/v6.9.1.tar.gz" - sha256 "cb15bd2a4fb48eac138920685ec3fd1088b8c8fe9e67adeea83e6ca720e83cef" + url "https://github.com/jeessy2/ddns-go/archive/refs/tags/v6.9.2.tar.gz" + sha256 "a7023da2082182df5cf5547601048e7624cf13c988068697ff07ddcd3dfa5e60" license "MIT" head "https://github.com/jeessy2/ddns-go.git", branch: "master" From a481568d848e868220e7364971b53e91c3c4c287 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 04:59:52 +0000 Subject: [PATCH 0641/1364] exploitdb 2025-05-10 --- Formula/e/exploitdb.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/e/exploitdb.rb b/Formula/e/exploitdb.rb index 0b79a8f480ed9..02d98a2d5aae0 100644 --- a/Formula/e/exploitdb.rb +++ b/Formula/e/exploitdb.rb @@ -2,8 +2,8 @@ class Exploitdb < Formula desc "Database of public exploits and corresponding vulnerable software" homepage "https://www.exploit-db.com/" url "https://gitlab.com/exploit-database/exploitdb.git", - tag: "2025-05-07", - revision: "3cc98cadb33d5314ae66bf3d4f5a6a65238a62a1" + tag: "2025-05-10", + revision: "9044a602bb29912cd292b973d24d388017fea83f" license "GPL-2.0-or-later" head "https://gitlab.com/exploit-database/exploitdb.git", branch: "main" From 2dba1667d6425466135a25975d154a2ed2f52490 Mon Sep 17 00:00:00 2001 From: Daeho Ro Date: Sat, 10 May 2025 14:01:05 +0900 Subject: [PATCH 0642/1364] fiona: revision bump (gdal 3.11.0) --- Formula/f/fiona.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/f/fiona.rb b/Formula/f/fiona.rb index c262df2e2f4bf..bd9d4492ec54e 100644 --- a/Formula/f/fiona.rb +++ b/Formula/f/fiona.rb @@ -6,6 +6,7 @@ class Fiona < Formula url "https://files.pythonhosted.org/packages/51/e0/71b63839cc609e1d62cea2fc9774aa605ece7ea78af823ff7a8f1c560e72/fiona-1.10.1.tar.gz" sha256 "b00ae357669460c6491caba29c2022ff0acfcbde86a95361ea8ff5cd14a86b68" license "BSD-3-Clause" + revision 1 bottle do sha256 cellar: :any, arm64_sequoia: "4788e6cf99582a5fcf1e4abce4daf43ff504482a19193e84804aab2a55b252f9" From 8202c4b6d30b30464536d7f7bbce769d8a616ae1 Mon Sep 17 00:00:00 2001 From: Daeho Ro Date: Sat, 10 May 2025 13:57:33 +0900 Subject: [PATCH 0643/1364] gmt: revision bump (gdal 3.11.0) --- Formula/g/gmt.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/g/gmt.rb b/Formula/g/gmt.rb index cc1b3cf48aedc..c38c1a1641989 100644 --- a/Formula/g/gmt.rb +++ b/Formula/g/gmt.rb @@ -2,7 +2,7 @@ class Gmt < Formula desc "Tools for manipulating and plotting geographic and Cartesian data" homepage "https://www.generic-mapping-tools.org/" license "LGPL-3.0-or-later" - revision 4 + revision 5 head "https://github.com/GenericMappingTools/gmt.git", branch: "master" stable do From 94d169f3fcb65fc4589e58eafa65cca842aac6e6 Mon Sep 17 00:00:00 2001 From: Daeho Ro Date: Sat, 10 May 2025 13:58:09 +0900 Subject: [PATCH 0644/1364] mapnik: revision bump (gdal 3.11.0) --- Formula/m/mapnik.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/m/mapnik.rb b/Formula/m/mapnik.rb index 301aa9e93ec94..c7527cbed0c43 100644 --- a/Formula/m/mapnik.rb +++ b/Formula/m/mapnik.rb @@ -6,7 +6,7 @@ class Mapnik < Formula tag: "v4.0.7", revision: "d9d4288bea04c5ef9925c03db353cf5f308e06ad" license "LGPL-2.1-or-later" - revision 1 + revision 2 head "https://github.com/mapnik/mapnik.git", branch: "master" livecheck do From 61017f02c88b6baed0111adacc794ef5065a7493 Mon Sep 17 00:00:00 2001 From: Daeho Ro Date: Sat, 10 May 2025 13:58:37 +0900 Subject: [PATCH 0645/1364] mapserver: revision bump (gdal 3.11.0) --- Formula/m/mapserver.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/m/mapserver.rb b/Formula/m/mapserver.rb index 825d6e2658a7d..4da3f2de7823e 100644 --- a/Formula/m/mapserver.rb +++ b/Formula/m/mapserver.rb @@ -4,6 +4,7 @@ class Mapserver < Formula url "https://download.osgeo.org/mapserver/mapserver-8.4.0.tar.gz" sha256 "b0cb3612cd58458cca0808b117c16b9415b3231af39aefb90d668e8b8b188e2c" license "MIT" + revision 1 livecheck do url "https://mapserver.org/download.html" From 93d70bc3dec7c3d53e5e60f2f206cb276c780381 Mon Sep 17 00:00:00 2001 From: Daeho Ro Date: Sat, 10 May 2025 13:58:59 +0900 Subject: [PATCH 0646/1364] osmcoastline: revision bump (gdal 3.11.0) --- Formula/o/osmcoastline.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/o/osmcoastline.rb b/Formula/o/osmcoastline.rb index 0996b6bf4ef17..f36b567d644c1 100644 --- a/Formula/o/osmcoastline.rb +++ b/Formula/o/osmcoastline.rb @@ -4,6 +4,7 @@ class Osmcoastline < Formula url "https://github.com/osmcode/osmcoastline/archive/refs/tags/v2.4.1.tar.gz" sha256 "3a76ed8c8481e5499c8fedbba3b6af4f33f73bbbfc4e6154ea50fe48ae7054a9" license "GPL-3.0-or-later" + revision 1 bottle do sha256 cellar: :any, arm64_sequoia: "dc16d9bbd13a4f77009a7bb0c87a2461dbbf0f004a57676da70803435096cb00" From e88c286f7eeff1f226914b651dbb76305c34e3b5 Mon Sep 17 00:00:00 2001 From: Daeho Ro Date: Sat, 10 May 2025 13:59:17 +0900 Subject: [PATCH 0647/1364] pdal: revision bump (gdal 3.11.0) --- Formula/p/pdal.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/p/pdal.rb b/Formula/p/pdal.rb index 056da738b2e0c..30e4afd550ef3 100644 --- a/Formula/p/pdal.rb +++ b/Formula/p/pdal.rb @@ -4,6 +4,7 @@ class Pdal < Formula url "https://github.com/PDAL/PDAL/releases/download/2.8.4/PDAL-2.8.4-src.tar.bz2" sha256 "c27dc79af0b26f9cb3209b694703e9d576f1b0c8c05b36206fd5e310494e75b5" license "BSD-3-Clause" + revision 1 head "https://github.com/PDAL/PDAL.git", branch: "master" livecheck do From 4ebf97db1d9bfcfbb0cbb3f153b852750e9cfa5b Mon Sep 17 00:00:00 2001 From: Daeho Ro Date: Sat, 10 May 2025 13:59:47 +0900 Subject: [PATCH 0648/1364] postgis: revision bump (gdal 3.11.0) --- Formula/p/postgis.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/p/postgis.rb b/Formula/p/postgis.rb index 4c09fd991b55b..24b7789d07bbe 100644 --- a/Formula/p/postgis.rb +++ b/Formula/p/postgis.rb @@ -4,7 +4,7 @@ class Postgis < Formula url "https://download.osgeo.org/postgis/source/postgis-3.5.2.tar.gz" sha256 "fb9f95d56e3aaef6a296473c76a3b99005ac41864d486c197cd478c9b14f791a" license "GPL-2.0-or-later" - revision 1 + revision 2 livecheck do url "https://download.osgeo.org/postgis/source/" From 62a8a8bd5d830558cf32ca96dc0c932e14ec69e9 Mon Sep 17 00:00:00 2001 From: Daeho Ro Date: Sat, 10 May 2025 14:01:27 +0900 Subject: [PATCH 0649/1364] rasterio: revision bump (gdal 3.11.0) --- Formula/r/rasterio.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/r/rasterio.rb b/Formula/r/rasterio.rb index 8ff0b5edd1dab..0eb1d0c6c7e3c 100644 --- a/Formula/r/rasterio.rb +++ b/Formula/r/rasterio.rb @@ -6,6 +6,7 @@ class Rasterio < Formula url "https://files.pythonhosted.org/packages/de/19/ab4326e419b543da623ce4191f68e3f36a4d9adc64f3df5c78f044d8d9ca/rasterio-1.4.3.tar.gz" sha256 "201f05dbc7c4739dacb2c78a1cf4e09c0b7265b0a4d16ccbd1753ce4f2af350a" license "BSD-3-Clause" + revision 1 bottle do sha256 cellar: :any, arm64_sequoia: "78c22b105ddfe5627305ac933da41a879b078f0678696837dc34453bd4a9aaf1" From 835f44e77ffd9075d9a89728ee8dc81514ae2c58 Mon Sep 17 00:00:00 2001 From: Daeho Ro Date: Sat, 10 May 2025 14:00:14 +0900 Subject: [PATCH 0650/1364] simple-tiles: revision bump (gdal 3.11.0) --- Formula/s/simple-tiles.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/s/simple-tiles.rb b/Formula/s/simple-tiles.rb index 7322fec2928a6..bb406b941692d 100644 --- a/Formula/s/simple-tiles.rb +++ b/Formula/s/simple-tiles.rb @@ -4,7 +4,7 @@ class SimpleTiles < Formula url "https://github.com/propublica/simple-tiles/archive/refs/tags/v0.6.2.tar.gz" sha256 "343ae52a0b20ee091b14bc145b7c78fed13b7272acd827626283b70f178dfa34" license "MIT" - revision 5 + revision 6 head "https://github.com/propublica/simple-tiles.git", branch: "master" bottle do From cb42fb670a2f901e0cf6f6165abbe5f8aad85ff1 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 05:09:54 +0000 Subject: [PATCH 0651/1364] mihomo 1.19.6 --- Formula/m/mihomo.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/m/mihomo.rb b/Formula/m/mihomo.rb index 9481353e9cdb2..6401b1053f438 100644 --- a/Formula/m/mihomo.rb +++ b/Formula/m/mihomo.rb @@ -1,8 +1,8 @@ class Mihomo < Formula desc "Another rule-based tunnel in Go, formerly known as ClashMeta" homepage "https://wiki.metacubex.one" - url "https://github.com/MetaCubeX/mihomo/archive/refs/tags/v1.19.5.tar.gz" - sha256 "2c40a5b53cc500b846cf966f21eeacea070a4377833e7dff07b63a53f7213db8" + url "https://github.com/MetaCubeX/mihomo/archive/refs/tags/v1.19.6.tar.gz" + sha256 "dec17f340decaa7971117ba908e39e4a9e311e8012dad9200bd517bdd405f1cf" license "GPL-3.0-or-later" head "https://github.com/MetaCubeX/mihomo.git", branch: "main" From 5e5728cdd153a43c0cc2bcf59adc5d8beb501c10 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 05:10:07 +0000 Subject: [PATCH 0652/1364] mill 0.12.11 --- Formula/m/mill.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/m/mill.rb b/Formula/m/mill.rb index 26f3a88a2b3d3..633ada97b8491 100644 --- a/Formula/m/mill.rb +++ b/Formula/m/mill.rb @@ -1,8 +1,8 @@ class Mill < Formula desc "Fast, scalable JVM build tool" homepage "https://mill-build.org/" - url "https://search.maven.org/remotecontent?filepath=com/lihaoyi/mill-dist/0.12.10/mill-dist-0.12.10.jar" - sha256 "4c44b0212173e177ff1789209da4d06e2fee56b73be5b79aae287c9b274fa873" + url "https://search.maven.org/remotecontent?filepath=com/lihaoyi/mill-dist/0.12.11/mill-dist-0.12.11.jar" + sha256 "567a44bee9006ac943f8cbec18c38637c544144726cdc699aa4f3584ed52ae93" license "MIT" livecheck do From c18dd35b3aef5e12b15ecdfee3929b412ea39182 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 05:18:25 +0000 Subject: [PATCH 0653/1364] ddns-go: update 6.9.2 bottle. --- Formula/d/ddns-go.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/d/ddns-go.rb b/Formula/d/ddns-go.rb index d64ed01ff61ab..2294967ce5534 100644 --- a/Formula/d/ddns-go.rb +++ b/Formula/d/ddns-go.rb @@ -7,12 +7,12 @@ class DdnsGo < Formula head "https://github.com/jeessy2/ddns-go.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "a787941ec42f72413838a5254cfe166b6cb155a90d1622fd69e4bd97e710a4ec" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "a787941ec42f72413838a5254cfe166b6cb155a90d1622fd69e4bd97e710a4ec" - sha256 cellar: :any_skip_relocation, arm64_ventura: "a787941ec42f72413838a5254cfe166b6cb155a90d1622fd69e4bd97e710a4ec" - sha256 cellar: :any_skip_relocation, sonoma: "ec8463584b8adcb13e34e979e43ac70aca33b83c6f0caf532505bd3c37b8ffd2" - sha256 cellar: :any_skip_relocation, ventura: "ec8463584b8adcb13e34e979e43ac70aca33b83c6f0caf532505bd3c37b8ffd2" - sha256 cellar: :any_skip_relocation, x86_64_linux: "b8547d73012bb21152a5a6c5279284792786215386d46e26ceaafb9afa951614" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "fc24e60f6bf8ba052d5016b91a1a2fd641109533abc6675981768bcc3fc94eae" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "fc24e60f6bf8ba052d5016b91a1a2fd641109533abc6675981768bcc3fc94eae" + sha256 cellar: :any_skip_relocation, arm64_ventura: "fc24e60f6bf8ba052d5016b91a1a2fd641109533abc6675981768bcc3fc94eae" + sha256 cellar: :any_skip_relocation, sonoma: "ff9b6a366a6941c647d53b0ceff396013255716f4274471eb3c3fd4bd6ff326f" + sha256 cellar: :any_skip_relocation, ventura: "ff9b6a366a6941c647d53b0ceff396013255716f4274471eb3c3fd4bd6ff326f" + sha256 cellar: :any_skip_relocation, x86_64_linux: "af465f7c258449f1ae6c65227a87977cbc67218e12d0ace1ff1bfb49adb09430" end depends_on "go" => :build From 722b72e28597d819ae895c74d14fa7dbf6f6d2d9 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 05:26:58 +0000 Subject: [PATCH 0654/1364] z3 4.15.0 --- Formula/z/z3.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/z/z3.rb b/Formula/z/z3.rb index b012e4a00221f..5983b9b9cd0a5 100644 --- a/Formula/z/z3.rb +++ b/Formula/z/z3.rb @@ -1,8 +1,8 @@ class Z3 < Formula desc "High-performance theorem prover" homepage "https://github.com/Z3Prover/z3" - url "https://github.com/Z3Prover/z3/archive/refs/tags/z3-4.14.1.tar.gz" - sha256 "81a02c2c64c64d6c3df233f59186b95627990ada0c4c2fc901c9c25a7072672a" + url "https://github.com/Z3Prover/z3/archive/refs/tags/z3-4.15.0.tar.gz" + sha256 "16aa2c02ff34a902a38bddc29f6f720deb1fb6c6987c45ccb782430300f5ccc5" license "MIT" head "https://github.com/Z3Prover/z3.git", branch: "master" From c95c1970c503c6b58ced35fd8f5b6aa67234e51d Mon Sep 17 00:00:00 2001 From: Daniel Salzman Date: Tue, 15 Apr 2025 13:00:12 +0200 Subject: [PATCH 0655/1364] knot: upgrade to 3.4.6 knot: disable optimized KRU to fix compilation issues --- Formula/k/knot.rb | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/Formula/k/knot.rb b/Formula/k/knot.rb index ddc5ae4500026..a5b6778fbc3fd 100644 --- a/Formula/k/knot.rb +++ b/Formula/k/knot.rb @@ -1,8 +1,8 @@ class Knot < Formula desc "High-performance authoritative-only DNS server" homepage "https://www.knot-dns.cz/" - url "https://knot-dns.nic.cz/release/knot-3.4.5.tar.xz" - sha256 "359af70afafa7ccaa18439a7c1eb35270ff9eece81d0756ae4ca716b1433cb4b" + url "https://knot-dns.nic.cz/release/knot-3.4.6.tar.xz" + sha256 "d19c5a1ff94b4f26027d635de108dbfc88f5652be86ccb3ba9a44ee9be0e5839" license all_of: ["GPL-3.0-or-later", "0BSD", "BSD-3-Clause", "LGPL-2.0-or-later", "MIT"] livecheck do @@ -40,10 +40,15 @@ class Knot < Formula uses_from_macos "libedit" - def install - # https://gitlab.nic.cz/knot/knot-dns/-/blob/master/src/knot/modules/rrl/kru-avx2.c - ENV.runtime_cpu_detection if Hardware::CPU.intel? + # Fix 'knot/modules/rrl/./kru.inc.c:250:7: error: always_inline function' on macOS 13 and 14, + # see https://github.com/Homebrew/homebrew-core/pull/219163. + # Remove in next release. + patch do + url "https://gitlab.nic.cz/knot/knot-dns/-/commit/509d9d82b51c58ea572dccb09f4fdbe1a3c2571e.diff" + sha256 "c9b0d2dd5dddbe3d2fc0b817bbc3171f34fb73d0b099bf2b52cf101f4d0239ff" + end + def install system "autoreconf", "--force", "--install", "--verbose" if build.head? system "./configure", "--disable-silent-rules", "--with-configdir=#{etc}", From 8058d057fb3d67cd5b1a2bbd8e9717f01822057f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 06:25:39 +0000 Subject: [PATCH 0656/1364] mihomo: update 1.19.6 bottle. --- Formula/m/mihomo.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/m/mihomo.rb b/Formula/m/mihomo.rb index 6401b1053f438..3ce9ace2b4b1a 100644 --- a/Formula/m/mihomo.rb +++ b/Formula/m/mihomo.rb @@ -7,13 +7,13 @@ class Mihomo < Formula head "https://github.com/MetaCubeX/mihomo.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "eb3469b43eb09a6da49d4b92e9af7c4918d973cb41099e859afaf58442dd9d5b" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "07d259831b4a10e8705607b6b8efdcfb6b663ebd6703f6405c94fbb268284277" - sha256 cellar: :any_skip_relocation, arm64_ventura: "5d7f8cfbdf9e2718c7ca321b50dbdb3d5acd554022fadfee346c0fc4dc8e2313" - sha256 cellar: :any_skip_relocation, sonoma: "857987534228946dbd55e3a797774a48848ae1d17a476f46dd35ea3578b1086e" - sha256 cellar: :any_skip_relocation, ventura: "e2e7725db034986cdecc1832063fc655c5548287fd2b0a62a7d0ce867f85f487" - sha256 cellar: :any_skip_relocation, arm64_linux: "06787de0535f23ad8e2c110b1693a20e82b5b162156f68028738171e05bee806" - sha256 cellar: :any_skip_relocation, x86_64_linux: "1a611c564dadf8431a43c6c5e207fc15b14591a60e909d9368a254f1fad79bdc" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "3d80d373d9cd9fe1d302a865702de94b2bc8b248f9c847a127e7d0bda66594a2" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "8f4bf472eaa651f9e6811e8e31cf4b2e0d5dcfa8af7905c425da5e6fe02043ae" + sha256 cellar: :any_skip_relocation, arm64_ventura: "cf35e253f6a9eb8c9c963131dd4d2aefd5c771f61be799073e43eb47be476a22" + sha256 cellar: :any_skip_relocation, sonoma: "079866d1d1ab1b705cf1b00196165fbb514d74b2a2e965b4404a4e2383612bd6" + sha256 cellar: :any_skip_relocation, ventura: "47b4543764fbaad2699fd5e9b75ed8b3b5a934a49428f37345da72d97e37510d" + sha256 cellar: :any_skip_relocation, arm64_linux: "d8e0d28916ab714cd5bac83732035f0d66fe97376cdf9aa16b40a743483e871f" + sha256 cellar: :any_skip_relocation, x86_64_linux: "3752ace0dc9f84a660029046d503a4ae9a2fbe1d3516bd3cb26cfae62fde9e5b" end depends_on "go" => :build From 173c655e46604b00e75258edab63caaa70e7eedf Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 06:26:27 +0000 Subject: [PATCH 0657/1364] onnxruntime: update 1.22.0 bottle. --- Formula/o/onnxruntime.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/o/onnxruntime.rb b/Formula/o/onnxruntime.rb index d414945c01df0..ab1ffc66125e4 100644 --- a/Formula/o/onnxruntime.rb +++ b/Formula/o/onnxruntime.rb @@ -12,13 +12,13 @@ class Onnxruntime < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "78b9ede16b9d0070fac13e1488784a261fe72becf0c7f6e804e1c84b3f5e0d20" - sha256 cellar: :any, arm64_sonoma: "7e47087d8d44448cac5cc0c874c15a682d1d26dd88b6f6316f7f07bd14c099d1" - sha256 cellar: :any, arm64_ventura: "4d0d8c17c8adaf6ae8b159a5b916f50441645b3d480013694bf48e19924673eb" - sha256 cellar: :any, sonoma: "8ebebef4e2bff7e443e224197ad8289fdfc433ecee150134db179913614ff793" - sha256 cellar: :any, ventura: "fa79992a2da673bb3108612a6cd4f00547b2fd057cb07861ba2579a2a96018e5" - sha256 cellar: :any_skip_relocation, arm64_linux: "66b2d4863921c6c07e149cdbdc6f794d5d67cc450088202eaa23bb896698d178" - sha256 cellar: :any_skip_relocation, x86_64_linux: "88ab5861089e1bbbe14f68fbd7b4cdda7342c7290289895713b107027892660a" + sha256 cellar: :any, arm64_sequoia: "3f86b87a8fb5510d6f8c05918ba95c9d5c8ed00daa61cb01bb189d6523ae6f92" + sha256 cellar: :any, arm64_sonoma: "a4351dd4c5f4fe151b0053d8d3826e9456271cfab20dfeed65e2f8fb4f981e17" + sha256 cellar: :any, arm64_ventura: "031529e7abd12c6d314a8bb9b02b9411134c593aeeb203afa798381954a430ae" + sha256 cellar: :any, sonoma: "989b25e16644e5e6ca672ffd17dc03d4db442a22315d5b7ee6072f8c329e380a" + sha256 cellar: :any, ventura: "1e370da96913bbf6a18d94ecf11e80eeef02eac9bf238d05cbee11f4b8e212fc" + sha256 cellar: :any_skip_relocation, arm64_linux: "6d8de910a50997637a731b2cd3af8525524f8e398bda38b0fc285bdd82acae46" + sha256 cellar: :any_skip_relocation, x86_64_linux: "421226c4a5e4c1f469d12197715dddf281b167fe6c4db790a2280eec9d0e7f0d" end depends_on "boost" => :build From 9899cbd57d9bfa1c7d827f74eb6e46e0f57ecddb Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 06:26:41 +0000 Subject: [PATCH 0658/1364] exploitdb: update 2025-05-10 bottle. --- Formula/e/exploitdb.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/e/exploitdb.rb b/Formula/e/exploitdb.rb index 02d98a2d5aae0..8f2d622bace6c 100644 --- a/Formula/e/exploitdb.rb +++ b/Formula/e/exploitdb.rb @@ -8,13 +8,13 @@ class Exploitdb < Formula head "https://gitlab.com/exploit-database/exploitdb.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "cb48d945be77242f0abe6ade1fce2db3b0de03ea72be7f7c60c6d1be08673998" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "b91e977b191fc0c2381293fa1c79c85f98c00da0ad50d6031fd7997829dfe048" - sha256 cellar: :any_skip_relocation, arm64_ventura: "8aac67546f712c41db6de767cf4186bed7c53fcef70df6f176758eb7a4ee35d1" - sha256 cellar: :any_skip_relocation, sonoma: "38a677a8c4669ed4a668c5f4230ce2fbe170bc340aa01c76f3907cac5e28280a" - sha256 cellar: :any_skip_relocation, ventura: "24706df204a0a1a8b0e70c47f66241fe44db06c381574a4fdd143d7058a8391d" - sha256 cellar: :any_skip_relocation, arm64_linux: "50252f0832b45e409847586a701a4554eed61e3b4c5117ea044d6332ff28a071" - sha256 cellar: :any_skip_relocation, x86_64_linux: "6e31034f5572a70985e42ab166d66b9127d24243ac50cad7a34bdb7c04fb08f5" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "fb4bc75819f2b413522022f2a472728f304902a8cceaa7c34761683fbf9fd863" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "6b87dc0cee9627c691c87175b6ec64d1f31641280a02d3db6c7fe5a3b376a1d3" + sha256 cellar: :any_skip_relocation, arm64_ventura: "f3d87dabaacddd39e481fe16a58fe86aa737eb53916eb0014a751ebf2eb2386c" + sha256 cellar: :any_skip_relocation, sonoma: "6fa5af57578726fdfa4545127bbefc1d7766dcf5fcca774800fb7aefd087119f" + sha256 cellar: :any_skip_relocation, ventura: "a69cdda37465fb5dd9d8913391fa5333dbd3a7ba281abde0d922fa79a10a45d7" + sha256 cellar: :any_skip_relocation, arm64_linux: "dacaa43405a1e6b2813c142fde0aa0bfbb134d89d4d12829934a872732afe01b" + sha256 cellar: :any_skip_relocation, x86_64_linux: "6c51e3b8af23ad8f54f3baf1e97308d00f2f840ef8215652c5d8849aafb89233" end def install From 5cb637c8bb24a92a1a4832644accddfea01d2c3e Mon Sep 17 00:00:00 2001 From: botantony Date: Sat, 10 May 2025 09:39:52 +0200 Subject: [PATCH 0659/1364] autobump: add KDE formulae Signed-off-by: botantony --- .github/autobump.txt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/autobump.txt b/.github/autobump.txt index da6f15c60ff1b..267de5dafdc7f 100644 --- a/.github/autobump.txt +++ b/.github/autobump.txt @@ -1002,6 +1002,7 @@ exim exiv2 exodriver exploitdb +extra-cmake-modules exult eza f2 @@ -1733,6 +1734,7 @@ kamel kanata kapacitor kapp +karchive karmadactl kaskade katago @@ -1742,6 +1744,7 @@ kcat kcgi kcov kcptun +kdoctools kea keep-sorted keeper-commander @@ -1754,6 +1757,7 @@ keyring kfr khal ki +ki18n kickstart kics killport @@ -1785,6 +1789,7 @@ krep krew ksh93 ksops +ktexttemplate ktfmt ktor kty @@ -3600,6 +3605,7 @@ tgui thanos the-way theharvester +threadweaver threatcl thrift thriftgo From beb3de47bf677530e174b0b1cf694cea9949f432 Mon Sep 17 00:00:00 2001 From: botantony Date: Sat, 10 May 2025 09:40:03 +0200 Subject: [PATCH 0660/1364] extra-cmake-modules 6.14.0 Signed-off-by: botantony --- Formula/e/extra-cmake-modules.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/e/extra-cmake-modules.rb b/Formula/e/extra-cmake-modules.rb index 9481e431d76e6..7c1569017dafc 100644 --- a/Formula/e/extra-cmake-modules.rb +++ b/Formula/e/extra-cmake-modules.rb @@ -1,8 +1,8 @@ class ExtraCmakeModules < Formula desc "Extra modules and scripts for CMake" homepage "https://api.kde.org/frameworks/extra-cmake-modules/html/index.html" - url "https://download.kde.org/stable/frameworks/6.13/extra-cmake-modules-6.13.0.tar.xz" - sha256 "7006017c00c817ff4c056995146d271791d1487a398d39ea6cac1cd59a8bf402" + url "https://download.kde.org/stable/frameworks/6.14/extra-cmake-modules-6.14.0.tar.xz" + sha256 "d02cbbb3269b39680884abf6f14ba68f448570c554173f5249da3b8761784c13" license all_of: ["BSD-2-Clause", "BSD-3-Clause", "MIT"] head "https://invent.kde.org/frameworks/extra-cmake-modules.git", branch: "master" From 008ea38331a95084b6abc268a0d160779a4fe7b8 Mon Sep 17 00:00:00 2001 From: botantony Date: Sat, 10 May 2025 09:40:09 +0200 Subject: [PATCH 0661/1364] karchive 6.14.0 Signed-off-by: botantony --- Formula/k/karchive.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/k/karchive.rb b/Formula/k/karchive.rb index 093fa37be6dbe..74af8a8cb4010 100644 --- a/Formula/k/karchive.rb +++ b/Formula/k/karchive.rb @@ -1,8 +1,8 @@ class Karchive < Formula desc "Reading, creating, and manipulating file archives" homepage "https://api.kde.org/frameworks/karchive/html/index.html" - url "https://download.kde.org/stable/frameworks/6.13/karchive-6.13.0.tar.xz" - sha256 "3c9b5dcf3abdfe2761e2153d70d9d667f1ff0fd2f6c80addba7549da954fcc90" + url "https://download.kde.org/stable/frameworks/6.14/karchive-6.14.0.tar.xz" + sha256 "2cb2f54cb9f8132daf688a5d4acd7f4bec40203b01551ff06e6da1e9f87f0ef9" license all_of: [ "BSD-2-Clause", "LGPL-2.0-only", From 8e8b1d6db4df20d24e48ed066e8981caec24e187 Mon Sep 17 00:00:00 2001 From: botantony Date: Sat, 10 May 2025 09:40:15 +0200 Subject: [PATCH 0662/1364] kdoctools 6.14.0 Signed-off-by: botantony --- Formula/k/kdoctools.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/k/kdoctools.rb b/Formula/k/kdoctools.rb index 7c2c042d9aa10..cf996f6831be6 100644 --- a/Formula/k/kdoctools.rb +++ b/Formula/k/kdoctools.rb @@ -1,8 +1,8 @@ class Kdoctools < Formula desc "Create documentation from DocBook" homepage "https://api.kde.org/frameworks/kdoctools/html/index.html" - url "https://download.kde.org/stable/frameworks/6.13/kdoctools-6.13.0.tar.xz" - sha256 "b5c5c025d269c839477f3f264c097af074e73f2b07ad1a8683367f395d2acaad" + url "https://download.kde.org/stable/frameworks/6.14/kdoctools-6.14.0.tar.xz" + sha256 "acb9c761e8e10c30f2c32061f64096965459a0513250edf4432f40831a0f536e" license all_of: [ "BSD-3-Clause", "GPL-2.0-or-later", From 45452e4de28ec18ce9627ba0f51fadfa92580fa5 Mon Sep 17 00:00:00 2001 From: botantony Date: Sat, 10 May 2025 09:40:22 +0200 Subject: [PATCH 0663/1364] ki18n 6.14.0 Signed-off-by: botantony --- Formula/k/ki18n.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/k/ki18n.rb b/Formula/k/ki18n.rb index 2aa5866c69c2f..78c49bea926a4 100644 --- a/Formula/k/ki18n.rb +++ b/Formula/k/ki18n.rb @@ -1,8 +1,8 @@ class Ki18n < Formula desc "KDE Gettext-based UI text internationalization" homepage "https://api.kde.org/frameworks/ki18n/html/index.html" - url "https://download.kde.org/stable/frameworks/6.13/ki18n-6.13.0.tar.xz" - sha256 "008c0a32235dc2a7d3aa2fa9a98a540f1b4baf6ab5efd14839a11fda6e746a14" + url "https://download.kde.org/stable/frameworks/6.14/ki18n-6.14.0.tar.xz" + sha256 "2a5135412caf0a07eba4eeb60867ac6929df1c83c145ae757a6a1230f842e669" license all_of: [ "BSD-3-Clause", "LGPL-2.0-or-later", From eb11936759755dbeecfd6680798b48e88b0c0b98 Mon Sep 17 00:00:00 2001 From: botantony Date: Sat, 10 May 2025 09:40:29 +0200 Subject: [PATCH 0664/1364] ktexttemplate 6.14.0 Signed-off-by: botantony --- Formula/k/ktexttemplate.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/k/ktexttemplate.rb b/Formula/k/ktexttemplate.rb index 4f164b66d936d..3e1f11d9f254c 100644 --- a/Formula/k/ktexttemplate.rb +++ b/Formula/k/ktexttemplate.rb @@ -1,8 +1,8 @@ class Ktexttemplate < Formula desc "Libraries for text templating with Qt" homepage "https://api.kde.org/frameworks/ktexttemplate/html/index.html" - url "https://download.kde.org/stable/frameworks/6.13/ktexttemplate-6.13.0.tar.xz" - sha256 "4050ce76de38acb8104d8c0b6e7ecb38bf28ff4d65499ec911fb316f383f92d9" + url "https://download.kde.org/stable/frameworks/6.14/ktexttemplate-6.14.0.tar.xz" + sha256 "65a908aa573e40cf9884a9d42a4b8d5574baf2f402a19764cda2cccde27c897a" license "LGPL-2.1-or-later" head "https://invent.kde.org/frameworks/ktexttemplate.git", branch: "master" From a7d2f1521646e0924cf9f1fbaf17017196401fdc Mon Sep 17 00:00:00 2001 From: botantony Date: Sat, 10 May 2025 09:40:35 +0200 Subject: [PATCH 0665/1364] threadweaver 6.14.0 Signed-off-by: botantony --- Formula/t/threadweaver.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/t/threadweaver.rb b/Formula/t/threadweaver.rb index c27d40df3b353..b7f0b7e6caaa4 100644 --- a/Formula/t/threadweaver.rb +++ b/Formula/t/threadweaver.rb @@ -1,8 +1,8 @@ class Threadweaver < Formula desc "Helper for multithreaded programming" homepage "https://api.kde.org/frameworks/threadweaver/html/index.html" - url "https://download.kde.org/stable/frameworks/6.13/threadweaver-6.13.0.tar.xz" - sha256 "64a162f49fd25263dd992b3e70854b7a7b3bcd15114bb67095bb513c4097e39a" + url "https://download.kde.org/stable/frameworks/6.14/threadweaver-6.14.0.tar.xz" + sha256 "a8f71f7e69751e36dbc7fce9581f55b66844bc68df6af2e8a94c22c8fe9870ae" license "LGPL-2.0-or-later" head "https://invent.kde.org/frameworks/threadweaver.git", branch: "master" From d59ecd2e9a0e89baaa7ecf4e3eec93c0ac0862d2 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 07:51:35 +0000 Subject: [PATCH 0666/1364] cdk8s 2.200.66 --- Formula/c/cdk8s.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/cdk8s.rb b/Formula/c/cdk8s.rb index e6679457a754a..62c017b7562fc 100644 --- a/Formula/c/cdk8s.rb +++ b/Formula/c/cdk8s.rb @@ -1,8 +1,8 @@ class Cdk8s < Formula desc "Define k8s native apps and abstractions using object-oriented programming" homepage "https://cdk8s.io/" - url "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.200.65.tgz" - sha256 "5378b51d304240ef134a7ac7429e33d8e421c63fc32b6c59aaf146bb37819334" + url "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.200.66.tgz" + sha256 "97c21346efae05e1b7d8cd1472953ab1ad6cdca8e3ec2451787edec20913f3e6" license "Apache-2.0" bottle do From a11238f235844cbec1eb66aed29975c8e1403595 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 07:56:06 +0000 Subject: [PATCH 0667/1364] fabric-ai 1.4.187 --- Formula/f/fabric-ai.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/f/fabric-ai.rb b/Formula/f/fabric-ai.rb index e5bf8aacc1074..b871a7f98a425 100644 --- a/Formula/f/fabric-ai.rb +++ b/Formula/f/fabric-ai.rb @@ -1,8 +1,8 @@ class FabricAi < Formula desc "Open-source framework for augmenting humans using AI" homepage "https://danielmiessler.com/p/fabric-origin-story" - url "https://github.com/danielmiessler/fabric/archive/refs/tags/v1.4.186.tar.gz" - sha256 "da6e2aeaf7dc83dadd2b808f92c925cd948d1cff9f9a53b9e17d9331ea888343" + url "https://github.com/danielmiessler/fabric/archive/refs/tags/v1.4.187.tar.gz" + sha256 "8fd72bce8929735586f475037c9517dea058efb08d371976805b88d3f90a62cd" license "MIT" head "https://github.com/danielmiessler/fabric.git", branch: "main" From b2c985d4f6cf03567329a2ec82415d64867828ba Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 08:00:32 +0000 Subject: [PATCH 0668/1364] jackett 0.22.1887 --- Formula/j/jackett.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/j/jackett.rb b/Formula/j/jackett.rb index 141407a5f2efe..ad8952a2dea9b 100644 --- a/Formula/j/jackett.rb +++ b/Formula/j/jackett.rb @@ -1,8 +1,8 @@ class Jackett < Formula desc "API Support for your favorite torrent trackers" homepage "https://github.com/Jackett/Jackett" - url "https://github.com/Jackett/Jackett/archive/refs/tags/v0.22.1884.tar.gz" - sha256 "1daa2aa7519c61047e8fc0298b9bbdfddca4b346a35d483848e11497b73abdf0" + url "https://github.com/Jackett/Jackett/archive/refs/tags/v0.22.1887.tar.gz" + sha256 "60f9cb232b142035720ab10b24eda5f7a7a615c1b1fc1f7c22597802e7e27eb4" license "GPL-2.0-only" head "https://github.com/Jackett/Jackett.git", branch: "master" From 2da0307cf728cc127d2e6ad1ba52236c61d75280 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 08:00:42 +0000 Subject: [PATCH 0669/1364] jaguar 1.51.0 --- Formula/j/jaguar.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/j/jaguar.rb b/Formula/j/jaguar.rb index ee0fe60d70df5..a263310e5583c 100644 --- a/Formula/j/jaguar.rb +++ b/Formula/j/jaguar.rb @@ -1,8 +1,8 @@ class Jaguar < Formula desc "Live reloading for your ESP32" homepage "https://toitlang.org/" - url "https://github.com/toitlang/jaguar/archive/refs/tags/v1.50.3.tar.gz" - sha256 "d3ce88689b316cae68f52a74cd8d3644be736ff3d8f2f6635c0cd2790d72b942" + url "https://github.com/toitlang/jaguar/archive/refs/tags/v1.51.0.tar.gz" + sha256 "87cd58bca9d8ff4d6be6c22a3b5c62b76aab81e8298cd3cd5f7b265f5947e5f3" license "MIT" head "https://github.com/toitlang/jaguar.git", branch: "main" From d591e2d177a25fea6e15f4e9bf1697fc5f4722d5 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 08:01:28 +0000 Subject: [PATCH 0670/1364] jxl-oxide 0.12.1 --- Formula/j/jxl-oxide.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/j/jxl-oxide.rb b/Formula/j/jxl-oxide.rb index e586f89fa6202..478e1cbaab972 100644 --- a/Formula/j/jxl-oxide.rb +++ b/Formula/j/jxl-oxide.rb @@ -1,8 +1,8 @@ class JxlOxide < Formula desc "JPEG XL decoder" homepage "https://github.com/tirr-c/jxl-oxide" - url "https://github.com/tirr-c/jxl-oxide/archive/refs/tags/0.12.0.tar.gz" - sha256 "82675a4e831274415f0086f24afa8e97a701a6bba6f5c69baeeec0d924ca4542" + url "https://github.com/tirr-c/jxl-oxide/archive/refs/tags/0.12.1.tar.gz" + sha256 "3890560466a54d9cfeb76f9b881abb7666f9ae72be74fcd7c38b8d58f36d1212" license any_of: ["MIT", "Apache-2.0"] bottle do From 9b0aa8f8fb8eecdc59a1450b32b56f594033d332 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 08:02:30 +0000 Subject: [PATCH 0671/1364] kubetui 1.7.1 --- Formula/k/kubetui.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/k/kubetui.rb b/Formula/k/kubetui.rb index 723f519675515..042879af19131 100644 --- a/Formula/k/kubetui.rb +++ b/Formula/k/kubetui.rb @@ -1,8 +1,8 @@ class Kubetui < Formula desc "TUI tool for monitoring and exploration of Kubernetes resources" homepage "https://github.com/sarub0b0/kubetui" - url "https://github.com/sarub0b0/kubetui/archive/refs/tags/v1.7.0.tar.gz" - sha256 "1aead11c607c9fcd359dccf2b52c96d223ee32909a06495d9091bd6f531aa407" + url "https://github.com/sarub0b0/kubetui/archive/refs/tags/v1.7.1.tar.gz" + sha256 "9789a466d85ff336d2485e772a3b47a0d1ff0b8869e6bf868005eb8daca611f4" license "MIT" head "https://github.com/sarub0b0/kubetui.git", branch: "main" From 9614572dc040df9bd69d7622d485f562d08a4125 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 08:06:25 +0000 Subject: [PATCH 0672/1364] mkdocs-material 9.6.13 --- Formula/m/mkdocs-material.rb | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/Formula/m/mkdocs-material.rb b/Formula/m/mkdocs-material.rb index 448a96574ec1c..53965bc03ed3e 100644 --- a/Formula/m/mkdocs-material.rb +++ b/Formula/m/mkdocs-material.rb @@ -2,8 +2,8 @@ class MkdocsMaterial < Formula include Language::Python::Virtualenv desc "Material Design theme for MkDocs" homepage "https://squidfunk.github.io/mkdocs-material/" - url "https://files.pythonhosted.org/packages/2d/ef/25fc10dbbb8faeeeb10ed7734d84a347cd2ec5d7200733f11c5553c02608/mkdocs_material-9.6.12.tar.gz" - sha256 "add6a6337b29f9ea7912cb1efc661de2c369060b040eb5119855d794ea85b473" + url "https://files.pythonhosted.org/packages/2c/7d/fbf31a796feb2a796194b587153c5fa9e722720e9d3e338168402dde73ed/mkdocs_material-9.6.13.tar.gz" + sha256 "7bde7ebf33cfd687c1c86c08ed8f6470d9a5ba737bd89e7b3e5d9f94f8c72c16" license "MIT" bottle do @@ -32,13 +32,13 @@ class MkdocsMaterial < Formula end resource "certifi" do - url "https://files.pythonhosted.org/packages/1c/ab/c9f1e32b7b1bf505bf26f0ef697775960db7932abeb7b516de930ba2705f/certifi-2025.1.31.tar.gz" - sha256 "3d5da6925056f6f18f119200434a4780a94263f10d1c21d032a6f6b2baa20651" + url "https://files.pythonhosted.org/packages/e8/9e/c05b3920a3b7d20d3d3310465f50348e5b3694f4f88c6daf736eef3024c4/certifi-2025.4.26.tar.gz" + sha256 "0a816057ea3cdefcef70270d2c515e4506bbc954f417fa5ade2021213bb8f0c6" end resource "charset-normalizer" do - url "https://files.pythonhosted.org/packages/16/b0/572805e227f01586461c80e0fd25d65a2115599cc9dad142fee4b747c357/charset_normalizer-3.4.1.tar.gz" - sha256 "44251f18cd68a75b56585dd00dae26183e102cd5e0f9f1466e6df5da2ed64ea3" + url "https://files.pythonhosted.org/packages/e4/33/89c2ced2b67d1c2a61c19c6751aa8902d46ce3dacb23600a283619f5a12d/charset_normalizer-3.4.2.tar.gz" + sha256 "5baececa9ecba31eff645232d59845c07aa030f0c81ee70184a90d35099a0e63" end resource "click" do @@ -97,8 +97,8 @@ class MkdocsMaterial < Formula end resource "packaging" do - url "https://files.pythonhosted.org/packages/d0/63/68dbb6eb2de9cb10ee4c9c14a0148804425e13c4fb20d61cce69f53106da/packaging-24.2.tar.gz" - sha256 "c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f" + url "https://files.pythonhosted.org/packages/a1/d4/1fc4078c65507b51b96ca8f8c3ba19e6a61c8253c72794544580a7b6c24d/packaging-25.0.tar.gz" + sha256 "d443872c98d677bf60f6a1f2f8c1cb748e8fe762d2bf9d3148b5599295b0fc4f" end resource "paginate" do @@ -112,8 +112,8 @@ class MkdocsMaterial < Formula end resource "platformdirs" do - url "https://files.pythonhosted.org/packages/b6/2d/7d512a3913d60623e7eb945c6d1b4f0bddf1d0b7ada5225274c87e5b53d1/platformdirs-4.3.7.tar.gz" - sha256 "eb437d586b6a0986388f0d6f74aa0cde27b48d0e3d66843640bfb6bdcdb6e351" + url "https://files.pythonhosted.org/packages/fe/8b/3c73abc9c759ecd3f1f7ceff6685840859e8070c4d947c93fae71f6a0bf2/platformdirs-4.3.8.tar.gz" + sha256 "3d512d96e16bcb959a814c9f348431070822a6496326a4be0911c40b5a74c2bc" end resource "pygments" do @@ -122,8 +122,8 @@ class MkdocsMaterial < Formula end resource "pymdown-extensions" do - url "https://files.pythonhosted.org/packages/7c/44/e6de2fdc880ad0ec7547ca2e087212be815efbc9a425a8d5ba9ede602cbb/pymdown_extensions-10.14.3.tar.gz" - sha256 "41e576ce3f5d650be59e900e4ceff231e0aed2a88cf30acaee41e02f063a061b" + url "https://files.pythonhosted.org/packages/08/92/a7296491dbf5585b3a987f3f3fc87af0e632121ff3e490c14b5f2d2b4eb5/pymdown_extensions-10.15.tar.gz" + sha256 "0e5994e32155f4b03504f939e501b981d306daf7ec2aa1cd2eb6bd300784f8f7" end resource "python-dateutil" do @@ -137,8 +137,8 @@ class MkdocsMaterial < Formula end resource "pyyaml-env-tag" do - url "https://files.pythonhosted.org/packages/fb/8e/da1c6c58f751b70f8ceb1eb25bc25d524e8f14fe16edcce3f4e3ba08629c/pyyaml_env_tag-0.1.tar.gz" - sha256 "70092675bda14fdec33b31ba77e7543de9ddc88f2e5b99160396572d11525bdb" + url "https://files.pythonhosted.org/packages/c2/95/32c8c79d784552ed687c676924381c0dc88b2a0248b50a32f4b5ac0ba03c/pyyaml_env_tag-1.0.tar.gz" + sha256 "bc952534a872b583f66f916e2dd83e7a7b9087847f4afca6d9c957c48b258ed2" end resource "requests" do From 5c3c717d65b91b9914c8d8477b20f493e47dbb78 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 08:08:32 +0000 Subject: [PATCH 0673/1364] codecov-cli: bump python resources --- Formula/c/codecov-cli.rb | 33 +++++++++++++++++---------------- 1 file changed, 17 insertions(+), 16 deletions(-) diff --git a/Formula/c/codecov-cli.rb b/Formula/c/codecov-cli.rb index 15eb5aabc4fa2..67f3c4e09a375 100644 --- a/Formula/c/codecov-cli.rb +++ b/Formula/c/codecov-cli.rb @@ -6,6 +6,7 @@ class CodecovCli < Formula url "https://files.pythonhosted.org/packages/64/e3/d5e09f0431304bc495dd84b1f846c801d08639bc3a8e8c3544d4c8348c52/codecov_cli-10.4.0.tar.gz" sha256 "714618fc7797fb1e369e3c9e23125d323ff0bc4d1bf8cdeace5d8c7562398c4a" license "Apache-2.0" + revision 1 head "https://github.com/codecov/codecov-cli.git", branch: "main" bottle do @@ -28,13 +29,13 @@ class CodecovCli < Formula end resource "certifi" do - url "https://files.pythonhosted.org/packages/1c/ab/c9f1e32b7b1bf505bf26f0ef697775960db7932abeb7b516de930ba2705f/certifi-2025.1.31.tar.gz" - sha256 "3d5da6925056f6f18f119200434a4780a94263f10d1c21d032a6f6b2baa20651" + url "https://files.pythonhosted.org/packages/e8/9e/c05b3920a3b7d20d3d3310465f50348e5b3694f4f88c6daf736eef3024c4/certifi-2025.4.26.tar.gz" + sha256 "0a816057ea3cdefcef70270d2c515e4506bbc954f417fa5ade2021213bb8f0c6" end resource "charset-normalizer" do - url "https://files.pythonhosted.org/packages/16/b0/572805e227f01586461c80e0fd25d65a2115599cc9dad142fee4b747c357/charset_normalizer-3.4.1.tar.gz" - sha256 "44251f18cd68a75b56585dd00dae26183e102cd5e0f9f1466e6df5da2ed64ea3" + url "https://files.pythonhosted.org/packages/e4/33/89c2ced2b67d1c2a61c19c6751aa8902d46ce3dacb23600a283619f5a12d/charset_normalizer-3.4.2.tar.gz" + sha256 "5baececa9ecba31eff645232d59845c07aa030f0c81ee70184a90d35099a0e63" end resource "click" do @@ -43,13 +44,13 @@ class CodecovCli < Formula end resource "h11" do - url "https://files.pythonhosted.org/packages/f5/38/3af3d3633a34a3316095b39c8e8fb4853a28a536e55d347bd8d8e9a14b03/h11-0.14.0.tar.gz" - sha256 "8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d" + url "https://files.pythonhosted.org/packages/01/ee/02a2c011bdab74c6fb3c75474d40b3052059d95df7e73351460c8588d963/h11-0.16.0.tar.gz" + sha256 "4e35b956cf45792e4caa5885e69fba00bdbc6ffafbfa020300e549b208ee5ff1" end resource "httpcore" do - url "https://files.pythonhosted.org/packages/6a/41/d7d0a89eb493922c37d343b607bc1b5da7f5be7e383740b4753ad8943e90/httpcore-1.0.7.tar.gz" - sha256 "8551cb62a169ec7162ac7be8d4817d561f60e08eaa485234898414bb5a8a0b4c" + url "https://files.pythonhosted.org/packages/06/94/82699a10bca87a5556c9c59b5963f2d039dbd239f25bc2a63907a05a14cb/httpcore-1.0.9.tar.gz" + sha256 "6e34463af53fd2ab5d807f399a9b45ea31c3dfa2276f15a2c3f00afff6e176e8" end resource "httpx" do @@ -63,8 +64,8 @@ class CodecovCli < Formula end resource "ijson" do - url "https://files.pythonhosted.org/packages/6c/83/28e9e93a3a61913e334e3a2e78ea9924bb9f9b1ac45898977f9d9dd6133f/ijson-3.3.0.tar.gz" - sha256 "7f172e6ba1bee0d4c8f8ebd639577bfe429dee0f3f96775a067b8bae4492d8a0" + url "https://files.pythonhosted.org/packages/a3/4f/1cfeada63f5fce87536651268ddf5cca79b8b4bbb457aee4e45777964a0a/ijson-3.4.0.tar.gz" + sha256 "5f74dcbad9d592c428d3ca3957f7115a42689ee7ee941458860900236ae9bb13" end resource "pyyaml" do @@ -88,13 +89,13 @@ class CodecovCli < Formula end resource "sentry-sdk" do - url "https://files.pythonhosted.org/packages/85/2f/a0f732270cc7c1834f5ec45539aec87c360d5483a8bd788217a9102ccfbd/sentry_sdk-2.25.1.tar.gz" - sha256 "f9041b7054a7cf12d41eadabe6458ce7c6d6eea7a97cfe1b760b6692e9562cf0" + url "https://files.pythonhosted.org/packages/cf/b6/a92ae6fa6d7e6e536bc586776b1669b84fb724dfe21b8ff08297f2d7c969/sentry_sdk-2.27.0.tar.gz" + sha256 "90f4f883f9eff294aff59af3d58c2d1b64e3927b28d5ada2b9b41f5aeda47daf" end resource "setuptools" do - url "https://files.pythonhosted.org/packages/a9/5a/0db4da3bc908df06e5efae42b44e75c81dd52716e10192ff36d0c1c8e379/setuptools-78.1.0.tar.gz" - sha256 "18fd474d4a82a5f83dac888df697af65afa82dec7323d09c3e37d1f14288da54" + url "https://files.pythonhosted.org/packages/95/32/0cc40fe41fd2adb80a2f388987f4f8db3c866c69e33e0b4c8b093fdf700e/setuptools-80.4.0.tar.gz" + sha256 "5a78f61820bc088c8e4add52932ae6b8cf423da2aff268c23f813cfbb13b4006" end resource "sniffio" do @@ -113,8 +114,8 @@ class CodecovCli < Formula end resource "urllib3" do - url "https://files.pythonhosted.org/packages/aa/63/e53da845320b757bf29ef6a9062f5c669fe997973f966045cb019c3f4b66/urllib3-2.3.0.tar.gz" - sha256 "f8c5449b3cf0861679ce7e0503c7b44b5ec981bec0d1d3795a07f1ba96f0204d" + url "https://files.pythonhosted.org/packages/8a/78/16493d9c386d8e60e442a35feac5e00f0913c0f4b7c217c11e8ec2ff53e0/urllib3-2.4.0.tar.gz" + sha256 "414bc6535b787febd7567804cc015fee39daab8ad86268f1310a9250697de466" end resource "wrapt" do From 1127e91926b63da40bf4dd059e18ec4228dbefff Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 08:10:02 +0000 Subject: [PATCH 0674/1364] glances: bump python resources --- Formula/g/glances.rb | 72 ++++++++++++++++++++++---------------------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/Formula/g/glances.rb b/Formula/g/glances.rb index 890e46c3f8937..9988b8ef23890 100644 --- a/Formula/g/glances.rb +++ b/Formula/g/glances.rb @@ -6,7 +6,7 @@ class Glances < Formula url "https://files.pythonhosted.org/packages/e0/df/96cd0ff650bd491a73815171131304d9c0d15d90ef44fed26324558aabf0/glances-4.3.1.tar.gz" sha256 "952c4985b9c1ff9d9ebd23760a2dd124fa2315cf02acfa68f3b7e1c51e087c8c" license "LGPL-3.0-or-later" - revision 1 + revision 2 bottle do sha256 cellar: :any, arm64_sequoia: "e405ad4fd6dffd84a9b06971602adadbde40d6b5215d1bbb3462a0f2cdfbd4dc" @@ -50,8 +50,8 @@ class Glances < Formula end resource "charset-normalizer" do - url "https://files.pythonhosted.org/packages/16/b0/572805e227f01586461c80e0fd25d65a2115599cc9dad142fee4b747c357/charset_normalizer-3.4.1.tar.gz" - sha256 "44251f18cd68a75b56585dd00dae26183e102cd5e0f9f1466e6df5da2ed64ea3" + url "https://files.pythonhosted.org/packages/e4/33/89c2ced2b67d1c2a61c19c6751aa8902d46ce3dacb23600a283619f5a12d/charset_normalizer-3.4.2.tar.gz" + sha256 "5baececa9ecba31eff645232d59845c07aa030f0c81ee70184a90d35099a0e63" end resource "chevron" do @@ -85,8 +85,8 @@ class Glances < Formula end resource "elasticsearch" do - url "https://files.pythonhosted.org/packages/26/ad/d76e88811e68d7bdd976c0ff6027e7c3b544a949c8d3de052adc5765e1a6/elasticsearch-9.0.0.tar.gz" - sha256 "c075ccdc7d5697e2a842a88418efdb6cf6732d7a62c77a25d60184db23fd1464" + url "https://files.pythonhosted.org/packages/39/58/0081e189ef83dd1f11cb600df842bffb8eaa05c097cb1672c5bd335b46c2/elasticsearch-9.0.1.tar.gz" + sha256 "76f9b519cfd15a860f615a94ba90dcb9543b721306bc5144ecc15f0b4d5d2781" end resource "fastapi" do @@ -105,18 +105,18 @@ class Glances < Formula end resource "h11" do - url "https://files.pythonhosted.org/packages/f5/38/3af3d3633a34a3316095b39c8e8fb4853a28a536e55d347bd8d8e9a14b03/h11-0.14.0.tar.gz" - sha256 "8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d" + url "https://files.pythonhosted.org/packages/01/ee/02a2c011bdab74c6fb3c75474d40b3052059d95df7e73351460c8588d963/h11-0.16.0.tar.gz" + sha256 "4e35b956cf45792e4caa5885e69fba00bdbc6ffafbfa020300e549b208ee5ff1" end resource "ibm-cloud-sdk-core" do - url "https://files.pythonhosted.org/packages/23/c0/2511acb45026c747627690c96dfffbab35856b89b9446aceba0aa4b5350d/ibm_cloud_sdk_core-3.22.1.tar.gz" - sha256 "096dd22c146848a87053f8f2bfbd5dfdf089eefe81ee1c448ca22c4304751dfd" + url "https://files.pythonhosted.org/packages/ac/99/b126b89c3905dd85d0f35f20252c058999fd452a162566b05641f219e9ea/ibm_cloud_sdk_core-3.23.0.tar.gz" + sha256 "393cb7c8e747d2706f495bc29ae54871979ab2f2e7cb907cd4d4d4f011a92d93" end resource "ibmcloudant" do - url "https://files.pythonhosted.org/packages/e0/05/babeb40966772fa92ed29e6149be94a05e7924d9dd4a6ede94fff7c33c21/ibmcloudant-0.10.1.tar.gz" - sha256 "65e51ce000727c159b26a78cb8d6476106286f1c06af1376c72f10e0954b36b6" + url "https://files.pythonhosted.org/packages/be/12/20225ed23d654b09b0e4e174df567d57118c722e57b1d565e691728aad2b/ibmcloudant-0.10.2.tar.gz" + sha256 "a48c809576ce851f55670e2b19289fee9189db32730d0be957cadac01f545a19" end resource "idna" do @@ -130,8 +130,8 @@ class Glances < Formula end resource "importlib-metadata" do - url "https://files.pythonhosted.org/packages/33/08/c1395a292bb23fd03bdf572a1357c5a733d3eecbab877641ceacab23db6e/importlib_metadata-8.6.1.tar.gz" - sha256 "310b41d755445d74569f993ccfc22838295d9fe005425094fad953d7f15c8580" + url "https://files.pythonhosted.org/packages/76/66/650a33bd90f786193e4de4b3ad86ea60b53c89b669a5c7be931fac31cdb0/importlib_metadata-8.7.0.tar.gz" + sha256 "d13b81ad223b890aa16c5471f2ac3056cf76c5f10f82d6f9292f0b415f389000" end resource "influxdb" do @@ -150,8 +150,8 @@ class Glances < Formula end resource "kafka-python" do - url "https://files.pythonhosted.org/packages/3e/d1/cab466a0eaa79046bfa5c7ea733d06d35d6d351865aa47c7ff579eba1b77/kafka_python-2.1.5.tar.gz" - sha256 "6765c25440046cdadeb9c31469566be259d50802d27d4f8aae86d9ae755b78e2" + url "https://files.pythonhosted.org/packages/81/e1/e84f846614195c01c9e98db6e58bd18eaa7baaa01e78d95b0522d03e8c66/kafka_python-2.2.6.tar.gz" + sha256 "b18a15e614864afedd514cc75f203cc3555bb85b915326c9fce0e49a80ca441f" end resource "markupsafe" do @@ -170,13 +170,13 @@ class Glances < Formula end resource "nvidia-ml-py" do - url "https://files.pythonhosted.org/packages/ad/6e/7b0c9b88c7d520fb8639024a1a3b6dd1db03bf2c17ae85040c8758d2eb6f/nvidia_ml_py-12.570.86.tar.gz" - sha256 "0508d4a0c7b6d015cf574530b95a62ed4fc89da3b8b47e1aefe6777db170ec8b" + url "https://files.pythonhosted.org/packages/d2/4d/6f017814ed5ac28e08e1b8a62e3a258957da27582c89b7f8f8b15ac3d2e7/nvidia_ml_py-12.575.51.tar.gz" + sha256 "6490e93fea99eb4e966327ae18c6eec6256194c921f23459c8767aee28c54581" end resource "packaging" do - url "https://files.pythonhosted.org/packages/d0/63/68dbb6eb2de9cb10ee4c9c14a0148804425e13c4fb20d61cce69f53106da/packaging-24.2.tar.gz" - sha256 "c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f" + url "https://files.pythonhosted.org/packages/a1/d4/1fc4078c65507b51b96ca8f8c3ba19e6a61c8253c72794544580a7b6c24d/packaging-25.0.tar.gz" + sha256 "d443872c98d677bf60f6a1f2f8c1cb748e8fe762d2bf9d3148b5599295b0fc4f" end resource "paho-mqtt" do @@ -230,13 +230,13 @@ class Glances < Formula end resource "pydantic" do - url "https://files.pythonhosted.org/packages/10/2e/ca897f093ee6c5f3b0bee123ee4465c50e75431c3d5b6a3b44a47134e891/pydantic-2.11.3.tar.gz" - sha256 "7471657138c16adad9322fe3070c0116dd6c3ad8d649300e3cbdfe91f4db4ec3" + url "https://files.pythonhosted.org/packages/77/ab/5250d56ad03884ab5efd07f734203943c8a8ab40d551e208af81d0257bf2/pydantic-2.11.4.tar.gz" + sha256 "32738d19d63a226a52eed76645a98ee07c1f410ee41d93b4afbfa85ed8111c2d" end resource "pydantic-core" do - url "https://files.pythonhosted.org/packages/17/19/ed6a078a5287aea7922de6841ef4c06157931622c89c2a47940837b5eecd/pydantic_core-2.33.1.tar.gz" - sha256 "bcc9c6fdb0ced789245b02b7d6603e17d1563064ddcfc36f046b61c0c05dd9df" + url "https://files.pythonhosted.org/packages/ad/88/5f2260bdfae97aabf98f1778d43f69574390ad787afb646292a638c923d4/pydantic_core-2.33.2.tar.gz" + sha256 "7cb8bc3605c29176e1b105350d2e6474142d7c1bd1d9327c4a9bdb46bf827acc" end resource "pygal" do @@ -255,8 +255,8 @@ class Glances < Formula end resource "pymongo" do - url "https://files.pythonhosted.org/packages/f4/2c/6f26578242b10ba075be5dca5886e0a594e806a0a317d79634f6d3c1d193/pymongo-4.12.0.tar.gz" - sha256 "d9f74a5cf3fccdb72211e33e07a6c05ac09cd0d7c99d21db5c2473fcfdd03152" + url "https://files.pythonhosted.org/packages/85/27/3634b2e8d88ad210ee6edac69259c698aefed4a79f0f7356cd625d5c423c/pymongo-4.12.1.tar.gz" + sha256 "8921bac7f98cccb593d76c4d8eaa1447e7d537ba9a2a202973e92372a05bd1eb" end resource "pysmart-smartx" do @@ -284,16 +284,16 @@ class Glances < Formula sha256 "37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3" end - resource "pyzmq" do - url "https://files.pythonhosted.org/packages/b1/11/b9213d25230ac18a71b39b3723494e57adebe36e066397b961657b3b41c1/pyzmq-26.4.0.tar.gz" - sha256 "4bd13f85f80962f91a651a7356fe0472791a5f7a92f227822b5acf44795c626d" - end - resource "pytz" do url "https://files.pythonhosted.org/packages/f8/bf/abbd3cdfb8fbc7fb3d4d38d320f2441b1e7cbe29be4f23797b4a2b5d8aac/pytz-2025.2.tar.gz" sha256 "360b9e3dbb49a209c21ad61809c7fb453643e048b38924c765813546746e81c3" end + resource "pyzmq" do + url "https://files.pythonhosted.org/packages/b1/11/b9213d25230ac18a71b39b3723494e57adebe36e066397b961657b3b41c1/pyzmq-26.4.0.tar.gz" + sha256 "4bd13f85f80962f91a651a7356fe0472791a5f7a92f227822b5acf44795c626d" + end + resource "reactivex" do url "https://files.pythonhosted.org/packages/ef/63/f776322df4d7b456446eff78c4e64f14c3c26d57d46b4e06c18807d5d99c/reactivex-4.0.4.tar.gz" sha256 "e912e6591022ab9176df8348a653fe8c8fa7a301f26f9931c9d8c78a650e04e8" @@ -305,8 +305,8 @@ class Glances < Formula end resource "setuptools" do - url "https://files.pythonhosted.org/packages/a9/5a/0db4da3bc908df06e5efae42b44e75c81dd52716e10192ff36d0c1c8e379/setuptools-78.1.0.tar.gz" - sha256 "18fd474d4a82a5f83dac888df697af65afa82dec7323d09c3e37d1f14288da54" + url "https://files.pythonhosted.org/packages/95/32/0cc40fe41fd2adb80a2f388987f4f8db3c866c69e33e0b4c8b093fdf700e/setuptools-80.4.0.tar.gz" + sha256 "5a78f61820bc088c8e4add52932ae6b8cf423da2aff268c23f813cfbb13b4006" end resource "sniffio" do @@ -345,8 +345,8 @@ class Glances < Formula end resource "uvicorn" do - url "https://files.pythonhosted.org/packages/86/37/dd92f1f9cedb5eaf74d9999044306e06abe65344ff197864175dbbd91871/uvicorn-0.34.1.tar.gz" - sha256 "af981725fc4b7ffc5cb3b0e9eda6258a90c4b52cb2a83ce567ae0a7ae1757afc" + url "https://files.pythonhosted.org/packages/a6/ae/9bbb19b9e1c450cf9ecaef06463e40234d98d95bf572fab11b4f19ae5ded/uvicorn-0.34.2.tar.gz" + sha256 "0e929828f6186353a80b58ea719861d2629d766293b6d19baf086ba31d4f3328" end resource "wifi" do @@ -355,8 +355,8 @@ class Glances < Formula end resource "zeroconf" do - url "https://files.pythonhosted.org/packages/85/3d/872026a00b364f74144a8103f036fb23562e94461295ecbc7b10783f14b9/zeroconf-0.146.5.tar.gz" - sha256 "e2907ce4c12b02c0e05082f3e0fce75cbac82deecb53c02ce118d50a594b48a5" + url "https://files.pythonhosted.org/packages/e2/78/f681afade2a4e7a9ade696cf3d3dcd9905e28720d74c16cafb83b5dd5c0a/zeroconf-0.147.0.tar.gz" + sha256 "f517375de6bf2041df826130da41dc7a3e8772176d3076a5da58854c7d2e8d7a" end resource "zipp" do From 881c7721634389997a1a56162b30090178e93e8f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 08:35:45 +0000 Subject: [PATCH 0675/1364] fabric-ai: update 1.4.187 bottle. --- Formula/f/fabric-ai.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/f/fabric-ai.rb b/Formula/f/fabric-ai.rb index b871a7f98a425..ef681302764b0 100644 --- a/Formula/f/fabric-ai.rb +++ b/Formula/f/fabric-ai.rb @@ -7,12 +7,12 @@ class FabricAi < Formula head "https://github.com/danielmiessler/fabric.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "da025b9cd9ac25f7f6ca1a5b6b4c1c493d0f12029bc6070de29a56fda46fd8b4" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "da025b9cd9ac25f7f6ca1a5b6b4c1c493d0f12029bc6070de29a56fda46fd8b4" - sha256 cellar: :any_skip_relocation, arm64_ventura: "da025b9cd9ac25f7f6ca1a5b6b4c1c493d0f12029bc6070de29a56fda46fd8b4" - sha256 cellar: :any_skip_relocation, sonoma: "52da71eeaba4af147e02f8790b0fc3e106d82d82742eedf902c607e1fcb44663" - sha256 cellar: :any_skip_relocation, ventura: "52da71eeaba4af147e02f8790b0fc3e106d82d82742eedf902c607e1fcb44663" - sha256 cellar: :any_skip_relocation, x86_64_linux: "6cee86730e7ce4394005d4949a198137d4868b1364eecf26bad569cc03780cd3" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "a23e09110127e9fc4fd37d8e6652ede363b8e8c5decbe72fc9648bccba6a1eef" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "a23e09110127e9fc4fd37d8e6652ede363b8e8c5decbe72fc9648bccba6a1eef" + sha256 cellar: :any_skip_relocation, arm64_ventura: "a23e09110127e9fc4fd37d8e6652ede363b8e8c5decbe72fc9648bccba6a1eef" + sha256 cellar: :any_skip_relocation, sonoma: "d50764b2ab10315e410f2781943021e507f48a6f4673f7bf8351106791ba2d43" + sha256 cellar: :any_skip_relocation, ventura: "d50764b2ab10315e410f2781943021e507f48a6f4673f7bf8351106791ba2d43" + sha256 cellar: :any_skip_relocation, x86_64_linux: "ee351914d9ab336f52757f5d9afacd051c4c06f7d8b840b9b0d43f5c395bd915" end depends_on "go" => :build From 893dd96c57f8486bcf21ce7eb3d278416f6cc3e7 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 08:37:43 +0000 Subject: [PATCH 0676/1364] kubetui: update 1.7.1 bottle. --- Formula/k/kubetui.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/k/kubetui.rb b/Formula/k/kubetui.rb index 042879af19131..254380824ccb9 100644 --- a/Formula/k/kubetui.rb +++ b/Formula/k/kubetui.rb @@ -7,13 +7,13 @@ class Kubetui < Formula head "https://github.com/sarub0b0/kubetui.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "caab723bd87835d56584343054751b248811bc58d2cc38c60f15734ae8fad9de" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "40b807b05e82b8ddc11aaf4b2c86ffeeb16100d413b0c11e18371b48fcff9cb6" - sha256 cellar: :any_skip_relocation, arm64_ventura: "f477d181b77060691f2373efdd1bca3a7fe09af0d5e55a51e90bb462fb73446e" - sha256 cellar: :any_skip_relocation, sonoma: "810ca3742faf25f03acbbf0c75dc0fc1051fa1a51029cb620eff8cff04b2783d" - sha256 cellar: :any_skip_relocation, ventura: "3524664a3c26ba0e069fe8eab5c662ee94b8e23d7f4ac2824938bb532d663428" - sha256 cellar: :any_skip_relocation, arm64_linux: "2c33490fa379e38bce16f708d4dde95ea77de2250d319e352dd736606070faa3" - sha256 cellar: :any_skip_relocation, x86_64_linux: "64b0711c87e8e99e4e901a390ce2a2dbf78d51c52475f2417c4e6ae7db917435" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "3c299dc728b56a5c5528f1b947cbf2a330a7cdef295c85c9d2849f42aab011f3" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "9bb4850601fc8e85a69e2274bd08399c3db48664fe4d4e5a4e75ae365602dced" + sha256 cellar: :any_skip_relocation, arm64_ventura: "12e4b37cb9d80f27ae380fabaa506e3cd45eaff1f5c131ddb0797e51561d2842" + sha256 cellar: :any_skip_relocation, sonoma: "1047745793b341dd3f759571538e2dc00664fe8c6057128edd2551da8ebc65ee" + sha256 cellar: :any_skip_relocation, ventura: "f94b9c90dd1d9ab5358f6a1090234b58340b7beaf58b6e9833da9ceb089178ab" + sha256 cellar: :any_skip_relocation, arm64_linux: "d806a43449d52f2a516e7d7fd778ad4615541ce6c26b30306df34e964ab602c6" + sha256 cellar: :any_skip_relocation, x86_64_linux: "490708ebb34caeb214dfff4efcb2d19be630e23cb25bd1cb427bb3b0c9b75431" end depends_on "rust" => :build From 213755d23a12007d3194dc1048977904897407c2 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 08:38:40 +0000 Subject: [PATCH 0677/1364] jaguar: update 1.51.0 bottle. --- Formula/j/jaguar.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/j/jaguar.rb b/Formula/j/jaguar.rb index a263310e5583c..44381cfd8c824 100644 --- a/Formula/j/jaguar.rb +++ b/Formula/j/jaguar.rb @@ -12,12 +12,12 @@ class Jaguar < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "e052bb835cbf63e00b24e4d1340c2b2baafbbd0aac7d5547ea2a9831375bf111" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "e052bb835cbf63e00b24e4d1340c2b2baafbbd0aac7d5547ea2a9831375bf111" - sha256 cellar: :any_skip_relocation, arm64_ventura: "e052bb835cbf63e00b24e4d1340c2b2baafbbd0aac7d5547ea2a9831375bf111" - sha256 cellar: :any_skip_relocation, sonoma: "dc869fa3693126de9a69d7c22d065b9835fcb45e1c5e03d5c30d4631a0394343" - sha256 cellar: :any_skip_relocation, ventura: "dc869fa3693126de9a69d7c22d065b9835fcb45e1c5e03d5c30d4631a0394343" - sha256 cellar: :any_skip_relocation, x86_64_linux: "bb8600e7dac9b0a31a6adf44cfa655e91d761e20bf7457259530a9767b00aae0" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "963d22d8a13fae117c811c0ca722640d4a2b3d3bbd47dba0029fe1d2f7291404" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "963d22d8a13fae117c811c0ca722640d4a2b3d3bbd47dba0029fe1d2f7291404" + sha256 cellar: :any_skip_relocation, arm64_ventura: "963d22d8a13fae117c811c0ca722640d4a2b3d3bbd47dba0029fe1d2f7291404" + sha256 cellar: :any_skip_relocation, sonoma: "88a4001106d27e68ae85e818910ad7c269fb4211d43f2e2be41143f785b77eec" + sha256 cellar: :any_skip_relocation, ventura: "88a4001106d27e68ae85e818910ad7c269fb4211d43f2e2be41143f785b77eec" + sha256 cellar: :any_skip_relocation, x86_64_linux: "d13bc01462df5a7e34f7390b3d86b4ef2ee0b121687a9c2b1a7459c985277e42" end depends_on "go" => :build From 16a844a2e9bc8aa875405dc10bd0127acba65227 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 08:39:18 +0000 Subject: [PATCH 0678/1364] jackett: update 0.22.1887 bottle. --- Formula/j/jackett.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/j/jackett.rb b/Formula/j/jackett.rb index ad8952a2dea9b..96f5472266e14 100644 --- a/Formula/j/jackett.rb +++ b/Formula/j/jackett.rb @@ -7,12 +7,12 @@ class Jackett < Formula head "https://github.com/Jackett/Jackett.git", branch: "master" bottle do - sha256 cellar: :any, arm64_sequoia: "a23f43453c4fdc39a9a2ff3f4a4e040d7762e55ba1840fd7db486a58e2f369f9" - sha256 cellar: :any, arm64_sonoma: "bcb3a5785e77b2a8224198a49c285e172b2440efcc97888369a701948e926664" - sha256 cellar: :any, arm64_ventura: "b8b970489d6c94401040d7555b8f5189cf3c23aad8b613312e44265713e60501" - sha256 cellar: :any, ventura: "499c0ada3b485f168b0a092dda14b1731ed9be9c7190c1144c180d1d7d379797" - sha256 cellar: :any_skip_relocation, arm64_linux: "85bb948d83e83702681c0ca43741839c67eceb165b9c172b3afb5c6f69989e25" - sha256 cellar: :any_skip_relocation, x86_64_linux: "0943761f7482e893c1758bcb6394501aec5514eeed4e9b45d4ad022ac3926b06" + sha256 cellar: :any, arm64_sequoia: "c3b47bc385bd5743e99d9448fe5a7a8f11736cb872228cbb43523fb944d9b75f" + sha256 cellar: :any, arm64_sonoma: "f3b6f80fda9df8ad4f99ae46d3101ef2dbb60aad0660681406b1ab229f83229d" + sha256 cellar: :any, arm64_ventura: "37d1b8cc509d1a03f34025c7449d86c4791b2791b7bab3487c05b5c3992df225" + sha256 cellar: :any, ventura: "2b4d417c633623d081aa743887044da476509bb85f7971e317ce18ce2352fb2b" + sha256 cellar: :any_skip_relocation, arm64_linux: "2224f7329b754a7694711cddbbf42f681ff34b13328ba4d7e4e7456f51f67c50" + sha256 cellar: :any_skip_relocation, x86_64_linux: "2fdd58cb324091b71a43b48c1ab77ea51aab2f071c5851091ebb1443d1760854" end depends_on "dotnet@8" From 419e61672d8e18a0651ba7a51113ac3705164496 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 08:41:49 +0000 Subject: [PATCH 0679/1364] cdk8s: update 2.200.66 bottle. --- Formula/c/cdk8s.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/cdk8s.rb b/Formula/c/cdk8s.rb index 62c017b7562fc..4d7ec815976dd 100644 --- a/Formula/c/cdk8s.rb +++ b/Formula/c/cdk8s.rb @@ -6,13 +6,13 @@ class Cdk8s < Formula license "Apache-2.0" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "9778b3f564877d8ccc0d0e796e468f5e6f798e04b7fa97326e07a8460e5da171" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "9778b3f564877d8ccc0d0e796e468f5e6f798e04b7fa97326e07a8460e5da171" - sha256 cellar: :any_skip_relocation, arm64_ventura: "9778b3f564877d8ccc0d0e796e468f5e6f798e04b7fa97326e07a8460e5da171" - sha256 cellar: :any_skip_relocation, sonoma: "772b6a81abc6c83098a3ab7120f27f5381dea66d1d0090228b8d6e942b4379a2" - sha256 cellar: :any_skip_relocation, ventura: "772b6a81abc6c83098a3ab7120f27f5381dea66d1d0090228b8d6e942b4379a2" - sha256 cellar: :any_skip_relocation, arm64_linux: "9778b3f564877d8ccc0d0e796e468f5e6f798e04b7fa97326e07a8460e5da171" - sha256 cellar: :any_skip_relocation, x86_64_linux: "9778b3f564877d8ccc0d0e796e468f5e6f798e04b7fa97326e07a8460e5da171" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "147a7e20740ab649da4fa7478a4c2fae9b11eca085c9c883edea2a5a730252ac" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "147a7e20740ab649da4fa7478a4c2fae9b11eca085c9c883edea2a5a730252ac" + sha256 cellar: :any_skip_relocation, arm64_ventura: "147a7e20740ab649da4fa7478a4c2fae9b11eca085c9c883edea2a5a730252ac" + sha256 cellar: :any_skip_relocation, sonoma: "9ba5542fe1169e0e2cc08179ffd43917f3e5926064fee9fafa3f3c16fb44df36" + sha256 cellar: :any_skip_relocation, ventura: "9ba5542fe1169e0e2cc08179ffd43917f3e5926064fee9fafa3f3c16fb44df36" + sha256 cellar: :any_skip_relocation, arm64_linux: "147a7e20740ab649da4fa7478a4c2fae9b11eca085c9c883edea2a5a730252ac" + sha256 cellar: :any_skip_relocation, x86_64_linux: "147a7e20740ab649da4fa7478a4c2fae9b11eca085c9c883edea2a5a730252ac" end depends_on "node" From fd45cc2a44011933bdc86d98ca414966cb8305e7 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 08:42:13 +0000 Subject: [PATCH 0680/1364] jxl-oxide: update 0.12.1 bottle. --- Formula/j/jxl-oxide.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/j/jxl-oxide.rb b/Formula/j/jxl-oxide.rb index 478e1cbaab972..9e4310156fce0 100644 --- a/Formula/j/jxl-oxide.rb +++ b/Formula/j/jxl-oxide.rb @@ -6,13 +6,13 @@ class JxlOxide < Formula license any_of: ["MIT", "Apache-2.0"] bottle do - sha256 cellar: :any, arm64_sequoia: "3f8185ea9bbeedc96ea608745f1ba4133cfa4078c9e3dda166b9bc37ac44e862" - sha256 cellar: :any, arm64_sonoma: "e1a3dd72449d34d70ad5e648cbf29be4178d2a92dcb958815605d9787424110b" - sha256 cellar: :any, arm64_ventura: "849149fbaac0a4ae8fc499b0139a9888f466e7ed5bcd7f6cd3628270a3793470" - sha256 cellar: :any, sonoma: "02e376f6ada9698cf63dfe5630df5cd6ade1116c01870c9972cb5d8a50333e23" - sha256 cellar: :any, ventura: "d39d584caa351aacaad3b41767a494e38dcb1e9d2e176ca5cf30a3769288d3cd" - sha256 cellar: :any_skip_relocation, arm64_linux: "17a5c36a075a6a3955d3d14a0bea81f8bbc11285c64b56337e7df989c2b58349" - sha256 cellar: :any_skip_relocation, x86_64_linux: "879165782c8fd51a7ecd86a3bc20cd14d003f9d2766edd89bc9b12824a694940" + sha256 cellar: :any, arm64_sequoia: "b188404b4c48300b956a953cb97f1692f445c05d02ea4555f773e940154d0f40" + sha256 cellar: :any, arm64_sonoma: "58a03c09bec35c08d488bd283d3dcc6f6e2567354089c106653019db717f655f" + sha256 cellar: :any, arm64_ventura: "cea0e98577bbdffa68cf3cdf2d39f28829f0b51c8652463c46e89b6a48fcc69d" + sha256 cellar: :any, sonoma: "b14d65394d38fabe23d9f156cab070ffc63df25eebb4c5af34314866ae1ce39d" + sha256 cellar: :any, ventura: "258b1dce5745ac33ef2b8e475ce278d929bdeddff8a5dc55c006eea31a8385e9" + sha256 cellar: :any_skip_relocation, arm64_linux: "13463c6085217ae5fb756f9689f2a06339a40f2974349ccafdf336aa0b532e09" + sha256 cellar: :any_skip_relocation, x86_64_linux: "810e036adb1d2a6c6e1c72b5144c304521aab51a229da36c0ed3e115d0748f39" end depends_on "rust" => :build From 064499bb2710d00cc6f8ad28f6c4fdc277496bb3 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 10:50:58 +0000 Subject: [PATCH 0681/1364] bacon 3.13.0 --- Formula/b/bacon.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/b/bacon.rb b/Formula/b/bacon.rb index d549dd704bfb8..80154ab3118ad 100644 --- a/Formula/b/bacon.rb +++ b/Formula/b/bacon.rb @@ -1,8 +1,8 @@ class Bacon < Formula desc "Background rust code check" homepage "https://dystroy.org/bacon/" - url "https://github.com/Canop/bacon/archive/refs/tags/v3.12.0.tar.gz" - sha256 "729d4672793369a2de7e120232e39c656f15745e4403cb7af6bafc17a6781b4c" + url "https://github.com/Canop/bacon/archive/refs/tags/v3.13.0.tar.gz" + sha256 "016a980181d90f38b7bc2227997a68afd0144c0cf2004dbfdf6dc165147dfcc5" license "AGPL-3.0-or-later" head "https://github.com/Canop/bacon.git", branch: "main" From 1385a6dfe8ca379339e9c98b0f2800029879bc2e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 10:52:14 +0000 Subject: [PATCH 0682/1364] bold 0.2.0 --- Formula/b/bold.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/b/bold.rb b/Formula/b/bold.rb index 368b0a9f7fc60..c61e05438554b 100644 --- a/Formula/b/bold.rb +++ b/Formula/b/bold.rb @@ -1,8 +1,8 @@ class Bold < Formula desc "Drop-in replacement for Apple system linker ld" homepage "https://github.com/kubkon/bold" - url "https://github.com/kubkon/bold/archive/refs/tags/v0.1.0.tar.gz" - sha256 "2496f04e47c9d5e17ef273b26519abf429b5c3e3df6d264f2941735088253ec0" + url "https://github.com/kubkon/bold/archive/refs/tags/v0.2.0.tar.gz" + sha256 "7b12aceeabe32249784347f3bb1befde6dcf621668d0352497ee8ef8c381d9ee" license "MIT" bottle do From f4e894f961ad6c2122d344f57b2462c3698e3ba7 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 11:05:26 +0000 Subject: [PATCH 0683/1364] kubetail 0.5.2 --- Formula/k/kubetail.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/k/kubetail.rb b/Formula/k/kubetail.rb index ec047210da549..242af4d241851 100644 --- a/Formula/k/kubetail.rb +++ b/Formula/k/kubetail.rb @@ -1,8 +1,8 @@ class Kubetail < Formula desc "Logging tool for Kubernetes with a real-time web dashboard" homepage "https://www.kubetail.com/" - url "https://github.com/kubetail-org/kubetail/archive/refs/tags/cli/v0.5.1.tar.gz" - sha256 "01cb656a34d22fc60284da29b11fd5ae5496e3f0933d5d51b68d0a8ab5cf7b75" + url "https://github.com/kubetail-org/kubetail/archive/refs/tags/cli/v0.5.2.tar.gz" + sha256 "f36ac19fb74e4af6420ed72c37d502c68cf671556dac24a91cb1597c94a80812" license "Apache-2.0" head "https://github.com/kubetail-org/kubetail.git", branch: "main" From 2b18c0f52c6f0f4e9dea5399476456bdf8d92341 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 11:08:40 +0000 Subject: [PATCH 0684/1364] lizard-analyzer 1.17.29 --- Formula/l/lizard-analyzer.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/l/lizard-analyzer.rb b/Formula/l/lizard-analyzer.rb index 9d2f9c09c3491..ef5b827e330aa 100644 --- a/Formula/l/lizard-analyzer.rb +++ b/Formula/l/lizard-analyzer.rb @@ -3,8 +3,8 @@ class LizardAnalyzer < Formula desc "Extensible Cyclomatic Complexity Analyzer" homepage "https://github.com/terryyin/lizard" - url "https://files.pythonhosted.org/packages/77/6c/8a1398d452eef48916e39053092ec66912bc5a1a1510ce4a2624ac4552e3/lizard-1.17.28.tar.gz" - sha256 "e34b0a955de2d836c6f74642b71320cb92f13e218f34dd1bbe43cd929dca2b23" + url "https://files.pythonhosted.org/packages/3f/c3/14260a583813cdb160eb715b30ae3013f4c107bca6464208b56cb2cce31c/lizard-1.17.29.tar.gz" + sha256 "067eaa90366b7b3db8c3c2b4fb7af29fda8943ac6457d8207d5b9842c7e96b0c" license "MIT" bottle do From 0ceaf02a0e8935d489532b3f72624561bba4e1e4 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 11:11:02 +0000 Subject: [PATCH 0685/1364] mu 1.12.11 --- Formula/m/mu.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/m/mu.rb b/Formula/m/mu.rb index 3961d7b331ee2..fd5b0aa7740ee 100644 --- a/Formula/m/mu.rb +++ b/Formula/m/mu.rb @@ -4,8 +4,8 @@ class Mu < Formula desc "Tool for searching e-mail messages stored in the maildir-format" homepage "https://www.djcbsoftware.nl/code/mu/" - url "https://github.com/djcb/mu/releases/download/v1.12.10/mu-1.12.10.tar.xz" - sha256 "b6dbcd1cb970d31ab71bd743e7c1bc928c96b28eb31fb6b5354c0fa13ec6da7a" + url "https://github.com/djcb/mu/releases/download/v1.12.11/mu-1.12.11.tar.xz" + sha256 "c6e463f4936edc7f2c0a0b0d038183783b35430b35887b79301072bf1d5e9daf" license "GPL-3.0-or-later" head "https://github.com/djcb/mu.git", branch: "master" From 58fdf7b626f7a8a9c4dc6f94659c1c8f2259b26b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 11:16:01 +0000 Subject: [PATCH 0686/1364] pixi-pack 0.6.3 --- Formula/p/pixi-pack.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/p/pixi-pack.rb b/Formula/p/pixi-pack.rb index 9dbe44b08df9b..d78dce889b8cb 100644 --- a/Formula/p/pixi-pack.rb +++ b/Formula/p/pixi-pack.rb @@ -1,8 +1,8 @@ class PixiPack < Formula desc "Pack and unpack conda environments created with pixi" homepage "https://pixi.sh/latest/advanced/production_deployment/#pixi-pack" - url "https://github.com/quantco/pixi-pack/archive/refs/tags/v0.6.2.tar.gz" - sha256 "b43c2e227e265e5ff7436e8ec7a6be1df85931cc85a0b4a717be6c26c2760305" + url "https://github.com/quantco/pixi-pack/archive/refs/tags/v0.6.3.tar.gz" + sha256 "4f15c9f2e7774e2a35f7af383096f57d757f06ed09ee4f0390dbabb3c51167e6" license "BSD-3-Clause" head "https://github.com/quantco/pixi-pack.git", branch: "main" From 151a46133c0c7b6a9934001ab311926b6079615f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 11:30:33 +0000 Subject: [PATCH 0687/1364] mkdocs-material: update 9.6.13 bottle. --- Formula/m/mkdocs-material.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/m/mkdocs-material.rb b/Formula/m/mkdocs-material.rb index 53965bc03ed3e..9cb4f8cab3899 100644 --- a/Formula/m/mkdocs-material.rb +++ b/Formula/m/mkdocs-material.rb @@ -7,13 +7,13 @@ class MkdocsMaterial < Formula license "MIT" bottle do - sha256 cellar: :any, arm64_sequoia: "2e3e87d5368052333e0fc82d6c63a52d5f5bc350e64fe11b505797c9eeef5506" - sha256 cellar: :any, arm64_sonoma: "d12c0dc527439a0a9fbc4010cdcbbeb52ae8a58d38b0b893c2d1316b7ec2afc3" - sha256 cellar: :any, arm64_ventura: "ee79aa6d72d95e233fe215d07552f318a3428a2d5b0d1a7cafbbee77d2bf6538" - sha256 cellar: :any, sonoma: "eb43cffcee9ec4345dd48e64e3bff90e8a08fdae84a5d2188010652503d72beb" - sha256 cellar: :any, ventura: "004b32d533a1ba9043f1d2c3b6573d636dfe5358a9327358daae97af9966df45" - sha256 cellar: :any_skip_relocation, arm64_linux: "003cc82c4ab728eefe3e6573983a0a8f4daf84188e3992957b57b12e9f2256d6" - sha256 cellar: :any_skip_relocation, x86_64_linux: "25f0db9716e9bc15aa3ba89a8ce2d121393ad9d62aee332533862980d89278b6" + sha256 cellar: :any, arm64_sequoia: "f621f1152c315ec1533d7c4042983692bccb8d5bff8f63f7cb3bcc6e74d4fbea" + sha256 cellar: :any, arm64_sonoma: "5c06e8c5d627f69dbc8bf69590eccbd8bfd3c544f538dde539ec8e656ea281a5" + sha256 cellar: :any, arm64_ventura: "01062062b3e91228cbd14857b313ff68bde352d91af3ddc55a26a47871ec053e" + sha256 cellar: :any, sonoma: "83f4d5feab4869bab14274257c926c9b12ba00f9c2a60f0a30b30e37db0d121e" + sha256 cellar: :any, ventura: "ccc1a7ebfc0a8623edf19b3ca50d964b14416650ef5fa9b85c6bc05cf99a0d31" + sha256 cellar: :any_skip_relocation, arm64_linux: "36251dcba78b7d2155ba610effdb8c3964bc3103a25760c9f25593d4c0fb369c" + sha256 cellar: :any_skip_relocation, x86_64_linux: "52e3cbbf7b2ff89505bfd3feec42fb57ce05a5bf8358dc4942df7f50ca4d0f73" end depends_on "libyaml" From 5e845efe401c4b28ebbdca6f2ff54cbfa720d818 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 11:31:06 +0000 Subject: [PATCH 0688/1364] kubetail: update 0.5.2 bottle. --- Formula/k/kubetail.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/k/kubetail.rb b/Formula/k/kubetail.rb index 242af4d241851..4381a76ed0cd4 100644 --- a/Formula/k/kubetail.rb +++ b/Formula/k/kubetail.rb @@ -12,13 +12,13 @@ class Kubetail < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "08d770b4d12bd517933aca0f6b2bd726f0c691ede02c39d47e1c8417cdd8f684" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "d5c3095d69430a00d0877718b93b625cd99f9ae787d557492a70b9be22c2f3cb" - sha256 cellar: :any_skip_relocation, arm64_ventura: "54f5d4415eb6539f14e4ffddc9a7cd59279940967777a228942555d85b863b53" - sha256 cellar: :any_skip_relocation, sonoma: "f61968b3fd9acc2936f34a2cfa85fba3446cffd0cb8ef89a0ef47cd0294e6b7d" - sha256 cellar: :any_skip_relocation, ventura: "9dc6117fba929c990705e30769265392bf0dae429178a24143e208119599ed29" - sha256 cellar: :any_skip_relocation, arm64_linux: "1b05ca7aa7db0ac311354a9613bd0e525f3fd15af8f785a7219c722b1f1b2c4c" - sha256 cellar: :any_skip_relocation, x86_64_linux: "1a7dddd44511afaa60c30ade85e78a833237afecb20bc4eccb76dce97b44817e" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "a2490fe856a4252f468f27f8ac3d32fe7bb516c54be9245111d9608154a27fae" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "5167a0a9556507c375dba31b910d4cd795462e001c349302d913e7ae33fa0651" + sha256 cellar: :any_skip_relocation, arm64_ventura: "b4d3799b17f3d45b6a8c8ab73c23973ccd8d8129bf0d664074fd17bb002cc5a3" + sha256 cellar: :any_skip_relocation, sonoma: "264d170fa4bf75842f8520eefc1fe998a59fcc131ec9e4006c0b2f6dc0a3d5ee" + sha256 cellar: :any_skip_relocation, ventura: "2ba02f03b5a154ee821e8bb9f726666463ae46d28ec3332d2bf9eb2240cb1058" + sha256 cellar: :any_skip_relocation, arm64_linux: "066547ad5f42888e3cdd37962f5af0b33c97c2627d4fc14b8aa8050966e6d463" + sha256 cellar: :any_skip_relocation, x86_64_linux: "63c08373568ad38527a4a7dcdff763a1dd843b2127e41beddeb9a6814c947094" end depends_on "go" => :build From 21196172dedd8e24a1603127880f19a43cc88fb8 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 11:31:25 +0000 Subject: [PATCH 0689/1364] lizard-analyzer: update 1.17.29 bottle. --- Formula/l/lizard-analyzer.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/l/lizard-analyzer.rb b/Formula/l/lizard-analyzer.rb index ef5b827e330aa..42228e87332b8 100644 --- a/Formula/l/lizard-analyzer.rb +++ b/Formula/l/lizard-analyzer.rb @@ -8,7 +8,7 @@ class LizardAnalyzer < Formula license "MIT" bottle do - sha256 cellar: :any_skip_relocation, all: "a1383705ac3e4f00996c7fca02da9c6dd5242f5b1826f95c48e818164a789f28" + sha256 cellar: :any_skip_relocation, all: "4b0b1941a1e26373bbceb0e8b045e1c439ad24133099f7a9561949eb4851a1f8" end depends_on "python@3.13" From dd2dc65edc821dd31772ab16cbd17f53382fc9e4 Mon Sep 17 00:00:00 2001 From: John Whitington Date: Mon, 5 May 2025 15:48:12 +0100 Subject: [PATCH 0690/1364] cpdf 2.8.1 (new formula) Simplify test Co-authored-by: Anton Melnikov Test which writes a file. Re-instate version test --- Formula/c/cpdf.rb | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 Formula/c/cpdf.rb diff --git a/Formula/c/cpdf.rb b/Formula/c/cpdf.rb new file mode 100644 index 0000000000000..a174793680f9b --- /dev/null +++ b/Formula/c/cpdf.rb @@ -0,0 +1,45 @@ +class Cpdf < Formula + desc "PDF Command-line Tools" + homepage "https://github.com/johnwhitington/cpdf-source" + url "https://github.com/johnwhitington/cpdf-source/archive/refs/tags/v2.8.1.tar.gz" + sha256 "bdd7caf1e5e55e65e4ece96eeeb3e5894c195ca5a9a274ddc27ac50a321d5c75" + license "AGPL-3.0-only" + + depends_on "ocaml-findlib" => :build + depends_on "camlpdf" + depends_on "ocaml" + + def install + # For OCamlmakefile + ENV.deparallelize + + # Work around for https://github.com/Homebrew/homebrew-test-bot/issues/805 + if ENV["HOMEBREW_GITHUB_ACTIONS"] && !(Formula["ocaml-findlib"].etc/"findlib.conf").exist? + ENV["OCAMLFIND_CONF"] = Formula["ocaml-findlib"].opt_libexec/"findlib.conf" + end + + ENV["OCAMLFIND_DESTDIR"] = lib/"ocaml" + + (lib/"ocaml").mkpath + cp Formula["ocaml"].opt_lib/"ocaml/Makefile.config", lib/"ocaml" + + # install in #{lib}/ocaml not #{HOMEBREW_PREFIX}/lib/ocaml + inreplace lib/"ocaml/Makefile.config" do |s| + s.change_make_var! "prefix", prefix + end + + system "make" + (lib/"ocaml/stublibs").mkpath # `make install` assumes this directory exists + system "make", "install", "STDLIBDIR=#{lib}/ocaml" + + rm lib/"ocaml/Makefile.config" # avoid conflict with ocaml + + bin.install "cpdf" + end + + test do + system bin/"cpdf", "-create-pdf", "-o", "out.pdf" + assert_match version.to_s, shell_output(bin/"cpdf") + assert_path_exists testpath/"out.pdf" + end +end From d882ce4a2679125dfded16737af2bc2fbc46943c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 13:51:15 +0000 Subject: [PATCH 0691/1364] bkmr 4.21.3 --- Formula/b/bkmr.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/b/bkmr.rb b/Formula/b/bkmr.rb index d910b2f360316..b6f27fa8cf662 100644 --- a/Formula/b/bkmr.rb +++ b/Formula/b/bkmr.rb @@ -1,8 +1,8 @@ class Bkmr < Formula desc "Unified CLI Tool for Bookmark, Snippet, and Knowledge Management" homepage "https://github.com/sysid/bkmr" - url "https://github.com/sysid/bkmr/archive/refs/tags/v4.21.1.tar.gz" - sha256 "7ccf8e94d44e8ed3048f713274cacf14e1a8eb7fa36af607fa9ab08430c70769" + url "https://github.com/sysid/bkmr/archive/refs/tags/v4.21.3.tar.gz" + sha256 "1566dc703ec500efe11028e45904952e3f6c6e6daffb15fc84d7e8a3fc3e36e6" license "BSD-3-Clause" head "https://github.com/sysid/bkmr.git", branch: "main" From 907eee21c6fe30eec7dbc03240b68d0879aca40e Mon Sep 17 00:00:00 2001 From: sergey kryazhev Date: Sat, 10 May 2025 16:53:03 +0300 Subject: [PATCH 0692/1364] lgeneral: remove unused sdl2_mixer dependency lgeneral is based on legacy SDL1 and uses sdl12-compat as a bridge to SDL2. However, sdl12-compat does not support sound. The game is built without sound support, so sdl2_mixer is unused. Removing it has no impact on functionality and saves space by avoiding unnecessary sdl2_mixer dependencies. --- Formula/l/lgeneral.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/l/lgeneral.rb b/Formula/l/lgeneral.rb index ae313cf3c32a9..daeb91d1db864 100644 --- a/Formula/l/lgeneral.rb +++ b/Formula/l/lgeneral.rb @@ -23,7 +23,6 @@ class Lgeneral < Formula depends_on "gettext" depends_on "sdl12-compat" depends_on "sdl2" - depends_on "sdl2_mixer" def install # Applied in community , to remove in next release @@ -48,6 +47,7 @@ def caveats https://sourceforge.net/projects/lgeneral/files/lgeneral-data/pg-data.tar.gz/download To install use: lgc-pg -s -d #{opt_pkgshare} + ⚠️ Note: Sound and music are not supported in this build EOS end From 05d57d2ad54d0e21a717057814373b2dd67e8bd0 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 13:55:01 +0000 Subject: [PATCH 0693/1364] commitizen 4.7.0 --- Formula/c/commitizen.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/commitizen.rb b/Formula/c/commitizen.rb index 403c5379e3b27..0c99b4e8ad1ce 100644 --- a/Formula/c/commitizen.rb +++ b/Formula/c/commitizen.rb @@ -3,8 +3,8 @@ class Commitizen < Formula desc "Defines a standard way of committing rules and communicating it" homepage "https://commitizen-tools.github.io/commitizen/" - url "https://files.pythonhosted.org/packages/32/0a/0e503a0ade507cd9383209a375f20851e3bdfa7e75b517fe91430ea096d6/commitizen-4.6.3.tar.gz" - sha256 "c97d48a49d84bea27496737e43fdea5ccc87e1e2d288b0a071bf97292548ffd9" + url "https://files.pythonhosted.org/packages/f3/7a/2c2a781b3e227f528b19e1144efcfdd61f7414bf9cf84ba6bbdc215f3427/commitizen-4.7.0.tar.gz" + sha256 "ef95f2ef354b438dce7c6164e5d47d10cc377df666ee65a116bcfcb146bb0c0a" license "MIT" head "https://github.com/commitizen-tools/commitizen.git", branch: "master" From e0ebfc5ab1c0f45b37a89057bc824dd2c6f5fe44 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 14:09:11 +0000 Subject: [PATCH 0694/1364] codecov-cli: update 10.4.0_1 bottle. --- Formula/c/codecov-cli.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/codecov-cli.rb b/Formula/c/codecov-cli.rb index 67f3c4e09a375..5e0ccc683306d 100644 --- a/Formula/c/codecov-cli.rb +++ b/Formula/c/codecov-cli.rb @@ -10,13 +10,13 @@ class CodecovCli < Formula head "https://github.com/codecov/codecov-cli.git", branch: "main" bottle do - sha256 cellar: :any, arm64_sequoia: "8f1910ad435424c4de45245d64789fe9f90e64358eed0fcbf7a56571a9f80e50" - sha256 cellar: :any, arm64_sonoma: "c3215e3c96fb633ea2c786616663dfe8c6475c72a178987cef0ab6f507a95714" - sha256 cellar: :any, arm64_ventura: "791b011c7c98ccf8388fea6554f963333e1278cc72a522fd13519f6b40015b26" - sha256 cellar: :any, sonoma: "9d879b452569cf69e73731a3bb11324054903f4484f9fd63f0abbfa2f4136900" - sha256 cellar: :any, ventura: "a5da85bc62076fadef094740ae27af5eb107e1e992c294c348e164f0b4ea77a7" - sha256 cellar: :any_skip_relocation, arm64_linux: "ca209f27ce09c8ea94af8f6659a9314abf81d5af69ee65a5c19e2bbb062a0e86" - sha256 cellar: :any_skip_relocation, x86_64_linux: "44ddcc6d3c4c90111d481cf3785be3c935f0686a0ad8536ba1ab8af662e3b80d" + sha256 cellar: :any, arm64_sequoia: "f3b874bb7bf12ed69bb360119d6ff2b9660898c8eeef73ca119743af92755412" + sha256 cellar: :any, arm64_sonoma: "8c48ca48c74a5d66bd8ab5875fb1276fa1435fe50cfc652263b3afab98ca8e54" + sha256 cellar: :any, arm64_ventura: "72fb2e9fbe3185c1eca5d5f40df1738d091ee74cba1119fce057a2e919bcae9c" + sha256 cellar: :any, sonoma: "9aea021f9dad7ccab24d3663acd85d695975bc92078a25e533385726cfb773e8" + sha256 cellar: :any, ventura: "bb0a4661063229256f6206b16001c2439eae988d1849526ff62896e222192c8b" + sha256 cellar: :any_skip_relocation, arm64_linux: "a41dbdef0f4bbf15afbb6fbb2482dff8b4d0c7728f44610c09b0f3e685ac9637" + sha256 cellar: :any_skip_relocation, x86_64_linux: "2f4aacde43fa4dc077f5766d2d56c2975ab7d3b46c6c17733d1c7d9d905a7357" end depends_on "rust" => :build From a81312c86f8ecad03e51634cb906ac71a3ba506b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 14:09:38 +0000 Subject: [PATCH 0695/1364] pixi-pack: update 0.6.3 bottle. --- Formula/p/pixi-pack.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/p/pixi-pack.rb b/Formula/p/pixi-pack.rb index d78dce889b8cb..5c10b5f504429 100644 --- a/Formula/p/pixi-pack.rb +++ b/Formula/p/pixi-pack.rb @@ -7,13 +7,13 @@ class PixiPack < Formula head "https://github.com/quantco/pixi-pack.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "7aed6ef2a54dc1fe2657bcd8ffe50ef2a84c4f2d6600add31773a549683f45df" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "6445360dd2f9b6aa00fc44b47d98b2f85b55fbc32dfe4529cff48819130c4e15" - sha256 cellar: :any_skip_relocation, arm64_ventura: "4faea5fff4fdcb650859d8401131d75e03a6a201cd0e55c42482bff27119089f" - sha256 cellar: :any_skip_relocation, sonoma: "92dc3faa6139f4c53b391872a56ffbcadb37e935c4130b78fb9336b91a3191bc" - sha256 cellar: :any_skip_relocation, ventura: "2593d3e4df6e4ce837c4863b08aa59ff76966ded5c601192798080fe9f4040db" - sha256 cellar: :any_skip_relocation, arm64_linux: "f318b3add8215af33b50cef27eadbc95c61d5b7b5b0f8930cdec8afa2a24ff4b" - sha256 cellar: :any_skip_relocation, x86_64_linux: "2d6b95356e2b2c51e3012731f6f036c58c14858df71cbb734c566d92817fbf1e" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "edf82a94827ce2e30869196e6ff1dbd2599b84047ef03abb11538da3e6f35ca3" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "bedce2a0e5bf122eda97d7179ce19789bd6f1b8a8d22a310f51e01c61535d6c2" + sha256 cellar: :any_skip_relocation, arm64_ventura: "c88bd57431b3e58ad24df5b2e15b07dce3da244c026b97f01d0a945a1176671c" + sha256 cellar: :any_skip_relocation, sonoma: "4377ce4d994420cfba8150b89143026388642fddb5c061f7a50b74c6b722ee79" + sha256 cellar: :any_skip_relocation, ventura: "9e92c8ac3a054e1eff7589af48114ceaad48ea27b628236e29b137dd1ecf1b68" + sha256 cellar: :any_skip_relocation, arm64_linux: "6908500382eb71c055d9bfe470809877ad2c88e4b8b918448df8c80d95c0529f" + sha256 cellar: :any_skip_relocation, x86_64_linux: "6db4add9ea67aa8017f1b1ebfa5619892c49c1b2e0de8e0e13e7e9b9294fb785" end depends_on "cmake" => :build From fc4e0d88c2a0645853d0326188c940c6538c6247 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 14:09:44 +0000 Subject: [PATCH 0696/1364] glances: update 4.3.1_2 bottle. --- Formula/g/glances.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/g/glances.rb b/Formula/g/glances.rb index 9988b8ef23890..15c447313dd3b 100644 --- a/Formula/g/glances.rb +++ b/Formula/g/glances.rb @@ -9,13 +9,13 @@ class Glances < Formula revision 2 bottle do - sha256 cellar: :any, arm64_sequoia: "e405ad4fd6dffd84a9b06971602adadbde40d6b5215d1bbb3462a0f2cdfbd4dc" - sha256 cellar: :any, arm64_sonoma: "e24d2fe284d6a26947659e7210e1afa748f23530bdb7b8a9d927e4585d7cc8fc" - sha256 cellar: :any, arm64_ventura: "47f571b2fd3f6c48352675ff9db1d3ab0c3e4c6f0e272d742e3e33e6d7a2db18" - sha256 cellar: :any, sonoma: "c7f200fb4c795ab75f337e3d3cbda72f8cf80612fd06cf38c8a4dade45523f31" - sha256 cellar: :any, ventura: "538f57c5525f351bf4be7d6745ba374a50d2db1110057e5d235e81a53a918b37" - sha256 cellar: :any_skip_relocation, arm64_linux: "6296a72dc96a6face7ed4544e321936a9b71a883f277761e238f92e12d0aed83" - sha256 cellar: :any_skip_relocation, x86_64_linux: "c35d444de24c77b57755a5472e88923a1c8186657e6da89f96cc04f8f6533cd5" + sha256 cellar: :any, arm64_sequoia: "37a41ae98dffda4f559f05f55d71d0086fd1a2ac613c006ee3ff3b6cb1e9ac71" + sha256 cellar: :any, arm64_sonoma: "aae20b66df0135a2f23b6a61566c0513cfd545cabc4db79417589aabf1af1924" + sha256 cellar: :any, arm64_ventura: "d7fcbb651eca41a607261f4ffb2877c2d5ecb1e0111ecec4c4d1e0d86f52dd14" + sha256 cellar: :any, sonoma: "d3a0f2f5b659d8e3bb16fc9ff840daeca35dd26a49ad1bf3ffd4473f04d0d221" + sha256 cellar: :any, ventura: "e5dd307c41b7190a03383c883c3002ae99d7ee4fa849bafe2362aab49a4ea53f" + sha256 cellar: :any_skip_relocation, arm64_linux: "6b9feb3745aa87f7af6e2c63b3594af5ddb9810cf2a2f03716c42a39c2562f0d" + sha256 cellar: :any_skip_relocation, x86_64_linux: "1a1fe10103dd128f84d43172f6e6980ad753ccdb8ee6f331e1432852ee2b5cb9" end depends_on "cmake" => :build # for pyzmq From 2f7a066fcbc4c3cd9ca5db9864251ad8e72161fd Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 14:09:51 +0000 Subject: [PATCH 0697/1364] bacon: update 3.13.0 bottle. --- Formula/b/bacon.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/b/bacon.rb b/Formula/b/bacon.rb index 80154ab3118ad..2c7da61f3d412 100644 --- a/Formula/b/bacon.rb +++ b/Formula/b/bacon.rb @@ -7,13 +7,13 @@ class Bacon < Formula head "https://github.com/Canop/bacon.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "1938e8afa580247ae121c4a04fa55966ebf9dc1b03dd1b4af1bac58c154c969e" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "23009702417125eb10fe54513b0d1a8ad2d961344c3849b4bd95074250d047ac" - sha256 cellar: :any_skip_relocation, arm64_ventura: "1fee05e3379620cd24a134b7dadc988969c33587ff4c683754b8d7f4cdb7d983" - sha256 cellar: :any_skip_relocation, sonoma: "7ae982afd40edd0eb55179ce3b9c3bf3d1c363f67945eb32a2de3f20e5c22ef7" - sha256 cellar: :any_skip_relocation, ventura: "3be5ae926f0cd88cdda979059a69f7e4c3ccb0837147c39de11878a2f1c204ec" - sha256 cellar: :any_skip_relocation, arm64_linux: "8ce5cf7a45afd55c5ef30ea28ab12b7af68ee17a4a55fedb3de0eb1a39af1241" - sha256 cellar: :any_skip_relocation, x86_64_linux: "375c8f7853e306f9b914b7b340662bbdece1b5b39d9e766e1332cbfa36a4a0bf" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "22465bcf695cb7aadae179165fc3bd3a063b0940d193f30dd61ab65bc9b99ba8" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "af4bdb76a9b73a75cb3c239e541706a1f89e08e28fa912a9d62998f0d4c861e2" + sha256 cellar: :any_skip_relocation, arm64_ventura: "6fac6bac88b34924e61df7b230863490a8d6e2dd3fe65d649de4632510949ed4" + sha256 cellar: :any_skip_relocation, sonoma: "eb3ac0bf72bf3f24195c5ec7d9e1bd336e6a367bc4d8a39e6a3858de91077e19" + sha256 cellar: :any_skip_relocation, ventura: "3e06862328aa759b5f85ff1f2f6cb0b62dbdcbaa8f47f14f0e5f5a74b484000f" + sha256 cellar: :any_skip_relocation, arm64_linux: "b1e5fa783e642cb874e8acf99d1c757ad220db88739569be5d24a7383a655332" + sha256 cellar: :any_skip_relocation, x86_64_linux: "e232a179a601ea7b9e37cacfa2af5286723ed78670aacfc482f4c83da7d50e49" end depends_on "pkgconf" => :build From 228308d590b5ade6dfba62c5668fed4db1fdd7e5 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 14:10:10 +0000 Subject: [PATCH 0698/1364] mu: update 1.12.11 bottle. --- Formula/m/mu.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/m/mu.rb b/Formula/m/mu.rb index fd5b0aa7740ee..964b5f2c9bfbd 100644 --- a/Formula/m/mu.rb +++ b/Formula/m/mu.rb @@ -18,13 +18,13 @@ class Mu < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "441e0c79b12144a900a3dc81f428d70ee8e2d16c8f18ca59a50013cd6d391b0a" - sha256 cellar: :any, arm64_sonoma: "7b5394c87a53e0798472cbaa097088fc9668fc977a45396000fe303a6d20f73e" - sha256 cellar: :any, arm64_ventura: "9b2dc0a3d8f213d1942779a68c1562f132bcc711faeef46c64ee91470dde4459" - sha256 cellar: :any, sonoma: "d7f4b9504d391fbeeea49c6a1ce8c56a0becbce56a890b0ed0cbff1c4bebd97a" - sha256 cellar: :any, ventura: "1a59cbc535ee622b096f786c0ffcc03034bfff333b4fc3b3a9b8b3cce082aeed" - sha256 arm64_linux: "4dfe913b8a1b0630524cad06fdbd53220afbc0937c409cfad8785cd831c8b459" - sha256 x86_64_linux: "aa9093eac2d02675e6a744fb68fb6035a469306f1aed905df7e06c2eeca0a729" + sha256 cellar: :any, arm64_sequoia: "e49a9a1faec9d09e51fd82bd1428f536bab37ae41446c469b0db4f153c49cdf5" + sha256 cellar: :any, arm64_sonoma: "444bfab5ed4d65febfd676d59e00b8de3b6b58418c1de8f5f6497a2869473d21" + sha256 cellar: :any, arm64_ventura: "ccc8d27a9f9303f1a276a63de329f09d51f6a5b6c8f401c101f416472909092b" + sha256 cellar: :any, sonoma: "0bd5ed64c5018490820f6e665e42cced0b6a1c4f4b00aa97f355baf31b422185" + sha256 cellar: :any, ventura: "28239f6e4b080a37103b0449219db681c1fb2c77adbeabbf751f7b36411fa9e6" + sha256 arm64_linux: "691b2119acd7c04413b29a07de72c046e19dfa24b66f74b6a62e1f75edee4a9d" + sha256 x86_64_linux: "de514ad234daf1ff4026f6cf26efd26b90dabb8f08a679124b9949ece069cb2f" end depends_on "emacs" => :build From ce6f12b220925f0ee73624605d6280ed6fbcb5ea Mon Sep 17 00:00:00 2001 From: Tatsuya Kyushima <49891479+kyu08@users.noreply.github.com> Date: Sat, 10 May 2025 23:10:11 +0900 Subject: [PATCH 0699/1364] fzf-make 0.59.0 Created by https://github.com/mislav/bump-homebrew-formula-action --- Formula/f/fzf-make.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/f/fzf-make.rb b/Formula/f/fzf-make.rb index 9288473807e12..812b928d9d345 100644 --- a/Formula/f/fzf-make.rb +++ b/Formula/f/fzf-make.rb @@ -1,8 +1,8 @@ class FzfMake < Formula desc "Fuzzy finder with preview window for make, pnpm, & yarn" homepage "https://github.com/kyu08/fzf-make" - url "https://github.com/kyu08/fzf-make/archive/refs/tags/v0.58.0.tar.gz" - sha256 "54496764a55d6cbd3ab76135dab7b0b07384a698c70d19ba8a6abfdb7d9d2792" + url "https://github.com/kyu08/fzf-make/archive/refs/tags/v0.59.0.tar.gz" + sha256 "9180cd307891aa36647d64c2eaaa492850e15c4af035086c7465cfcf0a1fa362" license "MIT" head "https://github.com/kyu08/fzf-make.git", branch: "main" From adcc168d51959692ebbf8aee6a13ba9b17dc5547 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 14:10:12 +0000 Subject: [PATCH 0700/1364] bold: update 0.2.0 bottle. --- Formula/b/bold.rb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Formula/b/bold.rb b/Formula/b/bold.rb index c61e05438554b..7740f92f0f858 100644 --- a/Formula/b/bold.rb +++ b/Formula/b/bold.rb @@ -6,11 +6,11 @@ class Bold < Formula license "MIT" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "a1deba05b1a4ab3d20a443e7b5a11f63b6cfc44f2996c41dce352fbdc48e78db" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "75029020d0fa32ee7573f9c730b9bbb09a6c98fb310dee951b284df022dfd3b6" - sha256 cellar: :any_skip_relocation, arm64_ventura: "5e4087ae6dc9a698588838f127ed739eaa55d899b143efd5079b40a613db6d1b" - sha256 cellar: :any_skip_relocation, sonoma: "2539d42202287085cf3e89c7e06fce587166465fbb8df8ba4fa23cf8bde298d1" - sha256 cellar: :any_skip_relocation, ventura: "84a0a90973ee9a14a971d3c700f64bd164167518bcb978830080d5361c13ba5c" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "166e358558a1248b63764912648a742d9852058095fa8291e6ba5104f1f47145" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "153a08515b6fa639c3245055e773893ee95b9653c87bec5b822734090585afe2" + sha256 cellar: :any_skip_relocation, arm64_ventura: "5d93e1830b77efb82fa671a2b52a50403292ce2cf991bc9abf2c04a22b57e324" + sha256 cellar: :any_skip_relocation, sonoma: "c63ee99bb85ab7dc35e04f09613b7ce775e1933ef264bb10bdf9a5127f2ff7d1" + sha256 cellar: :any_skip_relocation, ventura: "c9f50e5f314cfaeb955778838e303f508167ac884b48846ff1c31c786dcd5644" end depends_on "zig" => :build From 70a5d7c8f3db0285255382522bfac5c27b44cf84 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 14:12:01 +0000 Subject: [PATCH 0701/1364] extra-cmake-modules: update 6.14.0 bottle. --- Formula/e/extra-cmake-modules.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/e/extra-cmake-modules.rb b/Formula/e/extra-cmake-modules.rb index 7c1569017dafc..cedca09d7744b 100644 --- a/Formula/e/extra-cmake-modules.rb +++ b/Formula/e/extra-cmake-modules.rb @@ -12,7 +12,7 @@ class ExtraCmakeModules < Formula end bottle do - sha256 cellar: :any_skip_relocation, all: "0c37d13377114d6e9c44a575a7e6a222453e1e74342ccc1bbd0e856e8c467174" + sha256 cellar: :any_skip_relocation, all: "74f5b1484e0f27a2ff8bfa0fcfb734d1003bdc86d4a1a56c6ea045df19e049ef" end depends_on "cmake" => [:build, :test] From 391347b8d5850db2d3d2a9d86e69a4a10449c720 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 14:12:01 +0000 Subject: [PATCH 0702/1364] karchive: update 6.14.0 bottle. --- Formula/k/karchive.rb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Formula/k/karchive.rb b/Formula/k/karchive.rb index 74af8a8cb4010..6b4c6fafcfba2 100644 --- a/Formula/k/karchive.rb +++ b/Formula/k/karchive.rb @@ -17,11 +17,11 @@ class Karchive < Formula end bottle do - sha256 cellar: :any, arm64_sonoma: "3b748c031f3b2bc94dca70bb3c8737b4c3307e5f557cc6b32753450f5b69f975" - sha256 cellar: :any, arm64_ventura: "b5085b9a6cd57d98c18dadd7357f6f1cd2e61609dd4e760788dad53c091e81b4" - sha256 cellar: :any, sonoma: "5e1bd739ed5c7a4fcc3d4a74e0274712dac8f921d16a85e3f81197f607656a3d" - sha256 cellar: :any, ventura: "80c34464afd5b140e5d2e8b7be722294c648dd9418476a79f0987f1e11c058f3" - sha256 cellar: :any_skip_relocation, x86_64_linux: "e2a9928a587360ec5414ada4d9fd7a1ca345c481ebbec2bb62e11a7a8d2fe6ef" + sha256 cellar: :any, arm64_sonoma: "0e651267de4d5b6c51562e4ce989ae9b721ef8dbac1fe4168d395a3d16fe4622" + sha256 cellar: :any, arm64_ventura: "d665606c22c83b6fa3e20cdd68457958e73779acd85047e58b7d6c0614adffb0" + sha256 cellar: :any, sonoma: "f57c761c61d43cc49670e32d5e4e1046ca0db4b20130aa5c93a3e98d59dea51d" + sha256 cellar: :any, ventura: "ebba0a022d8b60093901ee21fb0a756d49b302064f8a4f02e743034f5e1e15a9" + sha256 cellar: :any_skip_relocation, x86_64_linux: "e1a2d679c1073e15fbe05c9a16d675077b606a39b637775a6f8399725e1e3182" end depends_on "cmake" => [:build, :test] From e0438d5e41765989189e62d5a8d5e6d126dfbd6c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 14:12:01 +0000 Subject: [PATCH 0703/1364] kdoctools: update 6.14.0 bottle. --- Formula/k/kdoctools.rb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Formula/k/kdoctools.rb b/Formula/k/kdoctools.rb index cf996f6831be6..ade754803c0f3 100644 --- a/Formula/k/kdoctools.rb +++ b/Formula/k/kdoctools.rb @@ -17,11 +17,11 @@ class Kdoctools < Formula end bottle do - sha256 cellar: :any, arm64_sonoma: "1d75032998cfa585a09323bccac8d4e0936de5da1c946297191170cab4db6f6c" - sha256 cellar: :any, arm64_ventura: "6eab9000674adac896b2c28ac1bbfd3230089dd5629e3c0331302ba38a7041ce" - sha256 cellar: :any, sonoma: "3386422ff9e8906e9af14064226ea6b0cde71ba0c8d5ec6de8468faf6451e278" - sha256 cellar: :any, ventura: "f400c423d3343bc5c87d7b3846a7caaecf9cef49832497b46bb1c75db2c677f0" - sha256 cellar: :any_skip_relocation, x86_64_linux: "b3a59bc24b71c5124e3f91bd8f00068765985f1f27651643f9f7f5a7c4ff0edc" + sha256 cellar: :any, arm64_sonoma: "8b4a91f87bf8f1c209c052c502b13cac6dc72d54473c86b05303114c8e0388bc" + sha256 cellar: :any, arm64_ventura: "67a86914bb79cdc6281b39c2773aada61c7f1265ef0148de75669c13920a1e8a" + sha256 cellar: :any, sonoma: "3f8b2ced702ccee1bd044d7aa489dfa5b98d9eeda82c92c6bc649851496bc74c" + sha256 cellar: :any, ventura: "56a3d3e6d77ec3a6a517d6a469f1ac136573a29153f8b7021e5c55d67b740526" + sha256 cellar: :any_skip_relocation, x86_64_linux: "99af23b7ef2bcb011b0d31bb265cace00fd5603a4d602aee7dc6954fb74df70e" end depends_on "cmake" => [:build, :test] From f7ad39ed164982f01943fd53ba334e74ac9680fa Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 14:12:01 +0000 Subject: [PATCH 0704/1364] ki18n: update 6.14.0 bottle. --- Formula/k/ki18n.rb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Formula/k/ki18n.rb b/Formula/k/ki18n.rb index 78c49bea926a4..8799b05861df8 100644 --- a/Formula/k/ki18n.rb +++ b/Formula/k/ki18n.rb @@ -16,11 +16,11 @@ class Ki18n < Formula end bottle do - sha256 arm64_sonoma: "72fdcc46ed2b7ea2a8548f3163a7d781f3bad0719792c68f2ea5da0083473567" - sha256 arm64_ventura: "18457ffdadb31e7cbce2eeb907d5b271dae6920b1be29652bcdeec1dc510028b" - sha256 sonoma: "c6c8c4fe3fc3e7aab92ba1ec0e7d40c98fa1cc885e506a22807751f331ee407f" - sha256 ventura: "b1a0440b694490f692187e3cd0996012f797c8c788f6b280b5b22985eef51ff3" - sha256 x86_64_linux: "0929b4f9450dc0e2a12e15303e14e466fcdd9ac70d9038181554544053ab3616" + sha256 arm64_sonoma: "813a3949fbec80841d7cdc7c13cf389843827da1de60ad2f41ad1d3090967403" + sha256 arm64_ventura: "30ab036fee1e082ef2a20a60f62b1cc556bbb50777fc0094767a74ab5bad50d2" + sha256 sonoma: "00a85043356ed0e53aaa97b53201afe7a1e2930d4c135a03f0a340f021affee1" + sha256 ventura: "97f1d16b5670dd1cf927ad43f8100ca94352c18809a2d3a8150b6b99deb1a9fa" + sha256 x86_64_linux: "481f2625a6848c04d8bd956f54d0d9ff15530e11df285c0480382367718ae105" end depends_on "cmake" => [:build, :test] From 6bfeb8429afc2f1acd521ba5187d3d186e7b392b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 14:12:01 +0000 Subject: [PATCH 0705/1364] bkmr: update 4.21.3 bottle. --- Formula/b/bkmr.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/b/bkmr.rb b/Formula/b/bkmr.rb index b6f27fa8cf662..38d3291264eb3 100644 --- a/Formula/b/bkmr.rb +++ b/Formula/b/bkmr.rb @@ -7,13 +7,13 @@ class Bkmr < Formula head "https://github.com/sysid/bkmr.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "628a34799de07ce3180c8b215629a5e993af0e86afcbd86af0dc0130334e36a5" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "f2d03001aaae2728e3696f3568baafc36bc3f12a66dd80b8a39d97d538efa27f" - sha256 cellar: :any_skip_relocation, arm64_ventura: "cd25dbe8424ff8e219d9e290eb8e4538762c64dbfac6754c021312a9da4e87a9" - sha256 cellar: :any_skip_relocation, sonoma: "62bcd03bd152d69a9996c4fa882f3b450264f654f74c3b9ba65c24a30f652f56" - sha256 cellar: :any_skip_relocation, ventura: "35707aae7413aa30ef8a9f79408f2e1d0f779a8463030fcd5bb0e4e9613974ed" - sha256 cellar: :any_skip_relocation, arm64_linux: "99617a8659e382415e12b2d4b30f76737e1ac400125437696678468a6c9564d1" - sha256 cellar: :any_skip_relocation, x86_64_linux: "9af678309cc0397e3a315d11afc880b39ec28d328b34d7e3c2b3b71b8ce90a00" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "1eece03b8fdfbf998c5b6fa34404db71137baf585f1e3673c9b30029baacdad0" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "3418423b456b8be2af7bf63de8180adb41a76d2cc4aac97fb6e491bcadcad75b" + sha256 cellar: :any_skip_relocation, arm64_ventura: "cc7b1b1b11a0a5fda8711e9107a24eb66fa918c59c4594cc7938d81fa10d649d" + sha256 cellar: :any_skip_relocation, sonoma: "3860c732d974c3afc326d0e607b6d85976151ef954ab05179d33b3922405f283" + sha256 cellar: :any_skip_relocation, ventura: "5496b10cca26c85c90671193d5238fe2234054d915f4db1a3ece1397e02e29b6" + sha256 cellar: :any_skip_relocation, arm64_linux: "b6bac12c7ba573a72b9a7e3b769d77866291fdb369408e9a6c7dce7dfeb0270d" + sha256 cellar: :any_skip_relocation, x86_64_linux: "36201b543cd529f86a830c62d56a188331b68e0a53179d93027f1b38d466697b" end depends_on "rust" => :build From a49ffcfd472adeaafcadbc3ae470932732d2d5ae Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 14:12:02 +0000 Subject: [PATCH 0706/1364] ktexttemplate: update 6.14.0 bottle. --- Formula/k/ktexttemplate.rb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Formula/k/ktexttemplate.rb b/Formula/k/ktexttemplate.rb index 3e1f11d9f254c..c1e5c018a1f28 100644 --- a/Formula/k/ktexttemplate.rb +++ b/Formula/k/ktexttemplate.rb @@ -7,11 +7,11 @@ class Ktexttemplate < Formula head "https://invent.kde.org/frameworks/ktexttemplate.git", branch: "master" bottle do - sha256 arm64_sonoma: "655ad3df02220fc7317d9d71559e5cff0880eced7fc0a62654503b591d048702" - sha256 arm64_ventura: "d055359a679dd99aa0781fc7b7b210df700fe83918b3cfb83aa04206a356029c" - sha256 sonoma: "c03f5a056c61739e301b10c129e2d9a90ce32ed0a5c92d79d35262ce4cf6b77f" - sha256 ventura: "153e03a6b14dd347a0f117731ae3c884a7111b5410bc158d20cb72b30db021f6" - sha256 x86_64_linux: "30b855d90cc6d84315b665cffcd9b1e01a05e89cc177b57f1c139039ca290372" + sha256 arm64_sonoma: "ef59740aa92c1579775fdcc04836fe979eda07145aac1557767a18f187b0bf02" + sha256 arm64_ventura: "a77f2e54f701f0edb1f9ba10a01e496ca680605fbf34d0e279b5d944d133cea6" + sha256 sonoma: "a2e80acb4e2facfc78451ffd8aaef4439803477db57519d80986c35e03b30efb" + sha256 ventura: "0082012c54a68652ab1ed417a5853634d4b1e4170715d48743eb28b55e1eea43" + sha256 x86_64_linux: "010e0dcbd03bf87200e3a485d8ef23177dcfc017c7b4b0b0cc7e7888a1446b1a" end depends_on "cmake" => [:build, :test] From e2f8c0f5e9a90c0d820e182deb1b06e968ade8a7 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 14:12:02 +0000 Subject: [PATCH 0707/1364] threadweaver: update 6.14.0 bottle. --- Formula/t/threadweaver.rb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Formula/t/threadweaver.rb b/Formula/t/threadweaver.rb index b7f0b7e6caaa4..b8b8ed7f732a1 100644 --- a/Formula/t/threadweaver.rb +++ b/Formula/t/threadweaver.rb @@ -12,11 +12,11 @@ class Threadweaver < Formula end bottle do - sha256 cellar: :any, arm64_sonoma: "d9f0804cba23a4f13fb09083c1a7c89dfc7a979f4c975e4d831c4f4bbaf21a4e" - sha256 cellar: :any, arm64_ventura: "99ecc9ad2cc3b0659040a9e013cf5c83f91d22c978f7f002e5b3e5c136e585b2" - sha256 cellar: :any, sonoma: "e14a93ea95628016accb0943e694f9d530f07fea55dfe3660bd31e67ca06d9aa" - sha256 cellar: :any, ventura: "04ac562b04774c9dba77947ce7e512b3df45c3536a0a317c810c4f0ec09776c5" - sha256 cellar: :any_skip_relocation, x86_64_linux: "40d9ed107f3b7adad5200b2d78965148e5eca8ab6b134b9696fbae2b1569adfc" + sha256 cellar: :any, arm64_sonoma: "db99103e12c52aa1baa725a84329513887518c445cb9077bd2e351ad64ffbff0" + sha256 cellar: :any, arm64_ventura: "4329f62cbe8f7a8f10d206a07a72933e87f462891130454c7b8658ea41f6ac32" + sha256 cellar: :any, sonoma: "a9de67fc538a6c36e6df6161d80ed51046a4ba85be4f4a75c41872f930bebe62" + sha256 cellar: :any, ventura: "3eb5bbfe73a9e135e78d047d7f91d733d45f3ebd6399cfa821110888235d3376" + sha256 cellar: :any_skip_relocation, x86_64_linux: "c179eda9421fe0b32826fe9499efead7588d0b273d69751b87f04fb2d00cf20d" end depends_on "cmake" => [:build, :test] From a98542453a54fc4d877258a17aa470fc35fb5894 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 14:24:39 +0000 Subject: [PATCH 0708/1364] vercel-cli 41.7.4 --- Formula/v/vercel-cli.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/v/vercel-cli.rb b/Formula/v/vercel-cli.rb index 3c14c99722281..762d7f9061a8f 100644 --- a/Formula/v/vercel-cli.rb +++ b/Formula/v/vercel-cli.rb @@ -1,8 +1,8 @@ class VercelCli < Formula desc "Command-line interface for Vercel" homepage "https://vercel.com/home" - url "https://registry.npmjs.org/vercel/-/vercel-41.7.3.tgz" - sha256 "b4c6fb69535108ab5cbc8f47abe582afad9c71c9a6e06ce3aea5b18fa7e54964" + url "https://registry.npmjs.org/vercel/-/vercel-41.7.4.tgz" + sha256 "4e97f7e7ad953fca34c1e38f21417a9fc3e0725e155511e825e7aa09da51246a" license "Apache-2.0" bottle do From 8edb52609c8088d2e8218b192d57e5187ad2b3da Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 14:32:02 +0000 Subject: [PATCH 0709/1364] fzf-make: update 0.59.0 bottle. --- Formula/f/fzf-make.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/f/fzf-make.rb b/Formula/f/fzf-make.rb index 812b928d9d345..c4c3d424f4385 100644 --- a/Formula/f/fzf-make.rb +++ b/Formula/f/fzf-make.rb @@ -7,13 +7,13 @@ class FzfMake < Formula head "https://github.com/kyu08/fzf-make.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "8617ca6580060a598d7b855382271906f7e427e66fbcc9b6cb914c0a425d09cb" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "b4d28928aee0e73b62cdb09567ab660c5ce38c88941199caccd4865a6fb2ffb5" - sha256 cellar: :any_skip_relocation, arm64_ventura: "117f6aa1fbe29e37979c73def722124a87ae5e235b3267221113bab3bdef16e4" - sha256 cellar: :any_skip_relocation, sonoma: "bbfb21e4f3924237e1679cfb8d6ca7a057e0e69b2776c7f4e21102072d6cb9b7" - sha256 cellar: :any_skip_relocation, ventura: "1c50504540ea917bdbe077051d6d253ce8223b0866ce87265fb845899b912813" - sha256 cellar: :any_skip_relocation, arm64_linux: "2e5070510f3b3c845e55c4de6ee7096705afd07e5c09a0ab7b15745e22b6ab98" - sha256 cellar: :any_skip_relocation, x86_64_linux: "e4bd94ed3ca50c09d5b7f78335e5917eab12a56379a3c76ddbc690bbbabce5ab" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "3850f3f10ed072ca5a32632d8ff30facca0a1451fa7985b0d1457a62ecb26a12" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "1d96bd0af5ed0ad7f926520a65af855f1d015d126c20246d67a27f73722ce398" + sha256 cellar: :any_skip_relocation, arm64_ventura: "436207deec610aeeff7bccb5474bf4367a79f4c60c244732b5047f7631d5e5d5" + sha256 cellar: :any_skip_relocation, sonoma: "f77618dc381dd4d3ddb894d0b731a0be9d00defa91cb9ebc494e6b29ff91b91e" + sha256 cellar: :any_skip_relocation, ventura: "77cf7b11497455cccee8aed61b63b772d90b5e1f4d02f501837fe72f87083b13" + sha256 cellar: :any_skip_relocation, arm64_linux: "74abd65d3fa1ada9db6bfc3def38fe0364d2c579657e5407966b3155949a552a" + sha256 cellar: :any_skip_relocation, x86_64_linux: "af0a033a910b3821c5ae3b38e0ce872b6df1f5263d1512598f34f10fd774b8b3" end depends_on "rust" => :build From ac691de19a5fb1c33417fccafd3b9ecd1d471da5 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 14:36:51 +0000 Subject: [PATCH 0710/1364] commitizen: update 4.7.0 bottle. --- Formula/c/commitizen.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/commitizen.rb b/Formula/c/commitizen.rb index 0c99b4e8ad1ce..e559467c81ff0 100644 --- a/Formula/c/commitizen.rb +++ b/Formula/c/commitizen.rb @@ -9,13 +9,13 @@ class Commitizen < Formula head "https://github.com/commitizen-tools/commitizen.git", branch: "master" bottle do - sha256 cellar: :any, arm64_sequoia: "bcbe80666c716ce2ec6f6805f74bd0abc6e9ff504fb2dd63e533d00bd265ef79" - sha256 cellar: :any, arm64_sonoma: "6b1c565f1902e1e599f3674f09256cdaf702b99307e25d7e577333bb0e5eb3be" - sha256 cellar: :any, arm64_ventura: "a47b764427ac74a8a376e83f750a136f2241825d6c6f02a626b8221eb656164d" - sha256 cellar: :any, sonoma: "0dda2bee7975624091911ba5d4107a6968b6b79eeb66df82a02ceb0cbdf81a81" - sha256 cellar: :any, ventura: "1415d960ff38837c8887b9039fd6332874cc9b0a2e94bbefd9dcabcaf9ed240d" - sha256 cellar: :any_skip_relocation, arm64_linux: "24e906d58b25d14739ed14073fefd6189e7266d83ee544d15dc44cbaf69f607a" - sha256 cellar: :any_skip_relocation, x86_64_linux: "6ad370bf16d45e478bdeaf6017314b9f0021743990eb56aedeaefbc829681388" + sha256 cellar: :any, arm64_sequoia: "a01f1d7e1c1d3555d6ca1c26baeca1798a8d6153f6db3bb1143356c68bea6e9f" + sha256 cellar: :any, arm64_sonoma: "1fb5367de4be0543281316fd3fbee6985110962cd4ff440e55bf9c4ed82608fe" + sha256 cellar: :any, arm64_ventura: "0d2f846b2df99148ae516d64c08f7e1e39dd3272e846fd4c57ce299af4a3e160" + sha256 cellar: :any, sonoma: "7ac807312d20fcbb0176c832afa39672dc10293c7f70bcc96ab91c596f0907d1" + sha256 cellar: :any, ventura: "9029e37e4a769024f872880ba5df3dfb9279a998de3d73a1d0f896ccbf2456de" + sha256 cellar: :any_skip_relocation, arm64_linux: "0727d61643c2c45d834ccc841071e97725794975790e535f17b692cee4ac5678" + sha256 cellar: :any_skip_relocation, x86_64_linux: "8d27e59e3f28d1f08b7a58f632be6cbddc860bf4333e8522ba9113f4719848be" end depends_on "libyaml" From 08ae37b6f7079bb776a36c3a18b9cd090ff1d65e Mon Sep 17 00:00:00 2001 From: kyu08 <49891479+kyu08@users.noreply.github.com> Date: Sat, 10 May 2025 23:42:44 +0900 Subject: [PATCH 0711/1364] fzf-make: update `desc` --- Formula/f/fzf-make.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/f/fzf-make.rb b/Formula/f/fzf-make.rb index 9288473807e12..d6e88b7e6e387 100644 --- a/Formula/f/fzf-make.rb +++ b/Formula/f/fzf-make.rb @@ -1,5 +1,5 @@ class FzfMake < Formula - desc "Fuzzy finder with preview window for make, pnpm, & yarn" + desc "Fuzzy finder with preview window for make, pnpm, yarn & just" homepage "https://github.com/kyu08/fzf-make" url "https://github.com/kyu08/fzf-make/archive/refs/tags/v0.58.0.tar.gz" sha256 "54496764a55d6cbd3ab76135dab7b0b07384a698c70d19ba8a6abfdb7d9d2792" From b1a0366215cd32a4faf4972d33fa6c524e4b9566 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 15:13:39 +0000 Subject: [PATCH 0712/1364] cpdf: add 2.8.1 bottle. --- Formula/c/cpdf.rb | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Formula/c/cpdf.rb b/Formula/c/cpdf.rb index a174793680f9b..2175752cc0e9f 100644 --- a/Formula/c/cpdf.rb +++ b/Formula/c/cpdf.rb @@ -5,6 +5,15 @@ class Cpdf < Formula sha256 "bdd7caf1e5e55e65e4ece96eeeb3e5894c195ca5a9a274ddc27ac50a321d5c75" license "AGPL-3.0-only" + bottle do + sha256 cellar: :any_skip_relocation, arm64_sequoia: "e97a2d112914e6eac5e522a8663deb1771ef04e8296fdf34db39558a0dadca23" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "8b36ddb34c391665d5337de6b63118487263285b5917528d4c52847510af548d" + sha256 cellar: :any_skip_relocation, arm64_ventura: "91772514307f75224ff0558fcc18999cf76cb7603851a5f94258e272bfb3a5a0" + sha256 cellar: :any_skip_relocation, sonoma: "5e63b9e7612e18c9c577aa502c7be73ee534e46650c51911372ab8ec032e0b8c" + sha256 cellar: :any_skip_relocation, ventura: "ede4654c045aea5a2aff498c6bd77f3ff8d284df6c7dfc5c5ed0bd491c96d188" + sha256 cellar: :any_skip_relocation, x86_64_linux: "4bcaa237cb5ad235f05cab8067bac39d4a57aa49195462872f409195a744b4aa" + end + depends_on "ocaml-findlib" => :build depends_on "camlpdf" depends_on "ocaml" From 2015a62ec84d5e718c4b76ae2480c62c5f4df92a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 15:16:58 +0000 Subject: [PATCH 0713/1364] lgeneral: update 1.4.4 bottle. --- Formula/l/lgeneral.rb | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/Formula/l/lgeneral.rb b/Formula/l/lgeneral.rb index daeb91d1db864..c77ba9210fd9f 100644 --- a/Formula/l/lgeneral.rb +++ b/Formula/l/lgeneral.rb @@ -6,18 +6,14 @@ class Lgeneral < Formula license "GPL-2.0-or-later" bottle do - rebuild 1 - sha256 arm64_sequoia: "d9c193de410ea328ab981c20bf225559f72b56eb10c9976c115f161766ba7556" - sha256 arm64_sonoma: "25fd2eb3ec6f1bf56aeedda2833e0b934b167b0532afd1b832f568018bd5249f" - sha256 arm64_ventura: "6814c4921c62261436537a16b3d945863fd8afa2e3f9702e1fe2b15d98ce9cc4" - sha256 arm64_monterey: "66e1e176e9fe55234aac274f8aab642aefaf71c8257576ef693eff1b21867f62" - sha256 arm64_big_sur: "262a595324361728d033438f3373024b1925557ed9e1d19f7a921aae9370eeb9" - sha256 sonoma: "89c8dda7ff7215ceb65ae56a8c9d65734f9b005265c5ddc0ff0f4debd4d361c3" - sha256 ventura: "237418ae7e4069b558b046d4b68044c3c307c28898ff00ca56a20aa97d13d542" - sha256 monterey: "bc51bd29569a83218f84748d31bac40cadff60a7caacaead3e499970aba25b37" - sha256 big_sur: "643779c73ca7a36a3db58993aa374f451bfb3e4c50bd699968137e77330acddf" - sha256 arm64_linux: "7218dd57f33b59765539d81c7ea93b6f34fb3011f900fb04de59c603f824b967" - sha256 x86_64_linux: "eefab1384276b2406cbdb286bfc730b3d434112f2d5ea8be6c3edb451d34f2e9" + rebuild 2 + sha256 arm64_sequoia: "0b33e1f556a20a71c72b472bbfa2fdd9461253d584cb97e47a9eb8173c376ea5" + sha256 arm64_sonoma: "0c3cbf2cd89161d1af99f75d4d33091f7732cc458861977f4a91eb96af230154" + sha256 arm64_ventura: "f256bf5c22611e15d3322bc501e1d877a4b2f8c1a471fe298399a255fc44490b" + sha256 sonoma: "a5f8cf09603365a6a8187b3d296d7dcba9ee1fb44993f5ef81285c145ef36995" + sha256 ventura: "7f2a5e68361f78343b88f04dae2b0ec5a0da7be4753f8c66bdcd54e02f8bd8ea" + sha256 arm64_linux: "bb380cd4fea9e821acc6f40ea22fe206fae58caed0b0ca7c437e0a03fdc4b44e" + sha256 x86_64_linux: "7839691573fb754a1c1b7e6befc77027256bcc1908b11268474e59de60de804d" end depends_on "gettext" From a92fc90eca21ee6ce0e5a2613892b754319eae2c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 15:18:41 +0000 Subject: [PATCH 0714/1364] vercel-cli: update 41.7.4 bottle. --- Formula/v/vercel-cli.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/v/vercel-cli.rb b/Formula/v/vercel-cli.rb index 762d7f9061a8f..8cecab06491b0 100644 --- a/Formula/v/vercel-cli.rb +++ b/Formula/v/vercel-cli.rb @@ -6,13 +6,13 @@ class VercelCli < Formula license "Apache-2.0" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "70a68095f657c43135aebfec4217d8d059f1b34fd8e2cfae94854266db2f6a11" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "70a68095f657c43135aebfec4217d8d059f1b34fd8e2cfae94854266db2f6a11" - sha256 cellar: :any_skip_relocation, arm64_ventura: "70a68095f657c43135aebfec4217d8d059f1b34fd8e2cfae94854266db2f6a11" - sha256 cellar: :any_skip_relocation, sonoma: "2d13fab60052c5082e1aaf6a1a6da62ba5eb7e88eae739044f426021881b5297" - sha256 cellar: :any_skip_relocation, ventura: "2d13fab60052c5082e1aaf6a1a6da62ba5eb7e88eae739044f426021881b5297" - sha256 cellar: :any_skip_relocation, arm64_linux: "5da41b861161393c81d1c7af9a280bcd49e6ff9cb2e02aa6c4e4137fc4983462" - sha256 cellar: :any_skip_relocation, x86_64_linux: "95056f4ed61642609f2e79b6ba79da8768a9026259e1a8c021f6edceb8ce90c0" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "6c15941524330c9e1952288e8c415f2fbafd3fd686cbb47578a0627983f498cf" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "6c15941524330c9e1952288e8c415f2fbafd3fd686cbb47578a0627983f498cf" + sha256 cellar: :any_skip_relocation, arm64_ventura: "6c15941524330c9e1952288e8c415f2fbafd3fd686cbb47578a0627983f498cf" + sha256 cellar: :any_skip_relocation, sonoma: "bb0713c34f4ffba016543b3770f1655440c6f4aa35484ecf8830ed4c677893c8" + sha256 cellar: :any_skip_relocation, ventura: "bb0713c34f4ffba016543b3770f1655440c6f4aa35484ecf8830ed4c677893c8" + sha256 cellar: :any_skip_relocation, arm64_linux: "8dcdc6278d27768cac9c57f7ee5c315f98a96002955a19a26b7248a574eeb457" + sha256 cellar: :any_skip_relocation, x86_64_linux: "5ce6d4bd8d3a9e086669e0ec7416a50e4195f99f97ee3b97f2cb11d1a41963e2" end depends_on "node" From 0603a3641194ff20fc78d21954dedf05fa98bb14 Mon Sep 17 00:00:00 2001 From: bishoy-at-pieces Date: Thu, 8 May 2025 22:47:50 +0300 Subject: [PATCH 0715/1364] pieces-cli: new formula --- Formula/p/pieces-cli.rb | 130 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 130 insertions(+) create mode 100644 Formula/p/pieces-cli.rb diff --git a/Formula/p/pieces-cli.rb b/Formula/p/pieces-cli.rb new file mode 100644 index 0000000000000..89e3530313395 --- /dev/null +++ b/Formula/p/pieces-cli.rb @@ -0,0 +1,130 @@ +class PiecesCli < Formula + include Language::Python::Virtualenv + + desc "Command-line tool for Pieces.app" + homepage "https://pieces.app/" + url "https://storage.googleapis.com/app-releases-production/pieces_cli/release/pieces_cli-1.14.0.tar.gz" + sha256 "f3cb1116d1d939aa6795fcbea8d91886a3c5e11c5dae350a547dfa52f6d4da22" + + license "MIT" + + livecheck do + url "https://builds.pieces.app/stages/production/pieces_cli/version" + strategy :json do |json| + json["version"] + end + end + + depends_on "libyaml" + depends_on "python@3.13" + + resource "aenum" do + url "https://files.pythonhosted.org/packages/d0/f8/33e75863394f42e429bb553e05fda7c59763f0fd6848de847a25b3fbccf6/aenum-3.1.15.tar.gz" + sha256 "8cbd76cd18c4f870ff39b24284d3ea028fbe8731a58df3aa581e434c575b9559" + end + + resource "markdown-it-py" do + url "https://files.pythonhosted.org/packages/38/71/3b932df36c1a044d397a1f92d1cf91ee0a503d91e470cbd670aa66b07ed0/markdown-it-py-3.0.0.tar.gz" + sha256 "e3f60a94fa066dc52ec76661e37c851cb232d92f9886b15cb560aaada2df8feb" + end + + resource "mdurl" do + url "https://files.pythonhosted.org/packages/d6/54/cfe61301667036ec958cb99bd3efefba235e65cdeb9c84d24a8293ba1d90/mdurl-0.1.2.tar.gz" + sha256 "bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba" + end + + resource "pieces-os-client" do + url "https://files.pythonhosted.org/packages/6e/18/a14106e311333ae6d1c2ff580af7fb27cc0b0a65aea8417f3d26704eabbd/pieces_os_client-4.2.0.tar.gz" + sha256 "764b1b16a0c3d90ac054a827f886bf8826c96bd075d586e58c70aa3f8f769290" + end + + resource "platformdirs" do + url "https://files.pythonhosted.org/packages/fe/8b/3c73abc9c759ecd3f1f7ceff6685840859e8070c4d947c93fae71f6a0bf2/platformdirs-4.3.8.tar.gz" + sha256 "3d512d96e16bcb959a814c9f348431070822a6496326a4be0911c40b5a74c2bc" + end + + resource "prompt-toolkit" do + url "https://files.pythonhosted.org/packages/bb/6e/9d084c929dfe9e3bfe0c6a47e31f78a25c54627d64a66e884a8bf5474f1c/prompt_toolkit-3.0.51.tar.gz" + sha256 "931a162e3b27fc90c86f1b48bb1fb2c528c2761475e57c9c06de13311c7b54ed" + end + + resource "pydantic" do + url "https://files.pythonhosted.org/packages/9a/57/5996c63f0deec09e9e901a2b838247c97c6844999562eac4e435bcb83938/pydantic-1.10.22.tar.gz" + sha256 "ee1006cebd43a8e7158fb7190bb8f4e2da9649719bff65d0c287282ec38dec6d" + end + + resource "pygments" do + url "https://files.pythonhosted.org/packages/7c/2d/c3338d48ea6cc0feb8446d8e6937e1408088a72a39937982cc6111d17f84/pygments-2.19.1.tar.gz" + sha256 "61c16d2a8576dc0649d9f39e089b5f02bcd27fba10d8fb4dcc28173f7a45151f" + end + + resource "pyperclip" do + url "https://files.pythonhosted.org/packages/30/23/2f0a3efc4d6a32f3b63cdff36cd398d9701d26cda58e3ab97ac79fb5e60d/pyperclip-1.9.0.tar.gz" + sha256 "b7de0142ddc81bfc5c7507eea19da920b92252b548b96186caf94a5e2527d310" + end + + resource "python-dateutil" do + url "https://files.pythonhosted.org/packages/66/c0/0c8b6ad9f17a802ee498c46e004a0eb49bc148f2fd230864601a86dcf6db/python-dateutil-2.9.0.post0.tar.gz" + sha256 "37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3" + end + + resource "pyyaml" do + url "https://files.pythonhosted.org/packages/54/ed/79a089b6be93607fa5cdaedf301d7dfb23af5f25c398d5ead2525b063e17/pyyaml-6.0.2.tar.gz" + sha256 "d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e" + end + + resource "rich" do + url "https://files.pythonhosted.org/packages/ab/3a/0316b28d0761c6734d6bc14e770d85506c986c85ffb239e688eeaab2c2bc/rich-13.9.4.tar.gz" + sha256 "439594978a49a09530cff7ebc4b5c7103ef57baf48d5ea3184f21d9a2befa098" + end + + resource "six" do + url "https://files.pythonhosted.org/packages/94/e7/b2c673351809dca68a0e064b6af791aa332cf192da575fd474ed7d6f16a2/six-1.17.0.tar.gz" + sha256 "ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81" + end + + resource "typing-extensions" do + url "https://files.pythonhosted.org/packages/f6/37/23083fcd6e35492953e8d2aaaa68b860eb422b34627b13f2ce3eb6106061/typing_extensions-4.13.2.tar.gz" + sha256 "e6c81219bd689f51865d9e372991c540bda33a0379d5573cddb9a3a23f7caaef" + end + + resource "urllib3" do + url "https://files.pythonhosted.org/packages/8a/78/16493d9c386d8e60e442a35feac5e00f0913c0f4b7c217c11e8ec2ff53e0/urllib3-2.4.0.tar.gz" + sha256 "414bc6535b787febd7567804cc015fee39daab8ad86268f1310a9250697de466" + end + + resource "wcwidth" do + url "https://files.pythonhosted.org/packages/6c/63/53559446a878410fc5a5974feb13d31d78d752eb18aeba59c7fef1af7598/wcwidth-0.2.13.tar.gz" + sha256 "72ea0c06399eb286d978fdedb6923a9eb47e1c486ce63e9b4e64fc18303972b5" + end + + resource "websocket-client" do + url "https://files.pythonhosted.org/packages/e6/30/fba0d96b4b5fbf5948ed3f4681f7da2f9f64512e1d303f94b4cc174c24a5/websocket_client-1.8.0.tar.gz" + sha256 "3239df9f44da632f96012472805d40a23281a991027ce11d2f45a6f24ac4c3da" + end + + def install + ENV["SOURCE_DATE_EPOCH"] = "1451574000" + + virtualenv_install_with_resources + end + test do + require "open3" + ## Most of the commands depends on PiecesOS so let's test the others + # Test the CLI version + assert_match version.to_s, shell_output("#{bin}/pieces --version --ignore-onboarding") + + # Try the list command (should ask to open PiecesOS) + list_output = shell_output("#{bin}/pieces --ignore-onboarding list", 2) + assert_match "Please make sure PiecesOS is running", list_output + + ### Test the feedback command + stdin, stdout, _stderr, _wait_thr = Open3.popen3("#{bin}/pieces --ignore-onboarding feedback") + stdin.puts "n" + stdin.close + + # Collect output + feedback_output = stdout.read + assert_match("Thank you for using Pieces CLI!", feedback_output) + end +end From f426b8092053fd61a1ecaa08e9a777d3445b339b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 15:55:21 +0000 Subject: [PATCH 0716/1364] pieces-cli: add 1.14.0 bottle. --- Formula/p/pieces-cli.rb | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Formula/p/pieces-cli.rb b/Formula/p/pieces-cli.rb index 89e3530313395..c15385bf6889a 100644 --- a/Formula/p/pieces-cli.rb +++ b/Formula/p/pieces-cli.rb @@ -15,6 +15,15 @@ class PiecesCli < Formula end end + bottle do + sha256 cellar: :any, arm64_sequoia: "4d9815455763b274a4d08e888875257af71212813fc7d0e492b3e06b79993231" + sha256 cellar: :any, arm64_sonoma: "88922a51c7c77e7bacf9eedcb4853105d13825d245eb0bb12821fe3c23a610b2" + sha256 cellar: :any, arm64_ventura: "093dff983a32c3a28d2d5602396222f2a373aa195fe647f281822f8b76c73c21" + sha256 cellar: :any, sonoma: "4a7f8b42c8f1cd1c9dbc5478aec25d9daeec2527a42f0a6def51805a49fd4655" + sha256 cellar: :any, ventura: "1d751ae27246eeacc08b539951dffb077c72f9eabbd8476139bb475ede98ebf5" + sha256 cellar: :any_skip_relocation, x86_64_linux: "9ee24ddbabab556682a2c0068b146f156ef3b7d25ad67946bcc5fb2ce0780f4d" + end + depends_on "libyaml" depends_on "python@3.13" From 1f6969f5d89bdd65940b0f89ccc69348bbe0e98c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 16:50:27 +0000 Subject: [PATCH 0717/1364] ab-av1 0.10.0 --- Formula/a/ab-av1.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/a/ab-av1.rb b/Formula/a/ab-av1.rb index ce1aea7835e72..1f103a1791ef1 100644 --- a/Formula/a/ab-av1.rb +++ b/Formula/a/ab-av1.rb @@ -1,8 +1,8 @@ class AbAv1 < Formula desc "AV1 re-encoding using ffmpeg, svt-av1 & vmaf" homepage "https://github.com/alexheretic/ab-av1" - url "https://github.com/alexheretic/ab-av1/archive/refs/tags/v0.9.4.tar.gz" - sha256 "dc5f94e477b447c2a944789872dc878c61ac59a149b260d35032f3f785c85dd1" + url "https://github.com/alexheretic/ab-av1/archive/refs/tags/v0.10.0.tar.gz" + sha256 "39f952847a7b57b0ad02f8c479ffcdc6de3fb86155375d2b0c3b5a14a212159f" license "MIT" head "https://github.com/alexheretic/ab-av1.git", branch: "main" From 9ed0b543ae9697c1cd2859621378c6b2e8814041 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 16:52:53 +0000 Subject: [PATCH 0718/1364] bagels 0.3.9 --- Formula/b/bagels.rb | 106 ++++++++++++++++++++++++-------------------- 1 file changed, 58 insertions(+), 48 deletions(-) diff --git a/Formula/b/bagels.rb b/Formula/b/bagels.rb index df2c7662aed06..4d3121f9a8273 100644 --- a/Formula/b/bagels.rb +++ b/Formula/b/bagels.rb @@ -3,8 +3,8 @@ class Bagels < Formula desc "Powerful expense tracker that lives in your terminal" homepage "https://github.com/EnhancedJax/Bagels" - url "https://files.pythonhosted.org/packages/62/2a/b8d02438c49943378181f59221fdf2c82f12f098ebe8bbc81ebe59b7c963/bagels-0.3.8.tar.gz" - sha256 "54a56145eae3ff7c55e55ecfefb91dab37711f0053ac68470d65da1bb2f572c9" + url "https://files.pythonhosted.org/packages/83/3a/67fef626e22bce29970a5666702a7b2664541753abeaed653a0a694dd295/bagels-0.3.9.tar.gz" + sha256 "fbb3bb64d7f6909864004866b00e112917738a6fdf470871ea77b4e2f67d2d28" license "GPL-3.0-or-later" bottle do @@ -23,13 +23,13 @@ class Bagels < Formula depends_on "python@3.13" resource "aiohappyeyeballs" do - url "https://files.pythonhosted.org/packages/bc/69/2f6d5a019bd02e920a3417689a89887b39ad1e350b562f9955693d900c40/aiohappyeyeballs-2.4.3.tar.gz" - sha256 "75cf88a15106a5002a8eb1dab212525c00d1f4c0fa96e551c9fbe6f09a621586" + url "https://files.pythonhosted.org/packages/26/30/f84a107a9c4331c14b2b586036f40965c128aa4fee4dda5d3d51cb14ad54/aiohappyeyeballs-2.6.1.tar.gz" + sha256 "c3f9d0113123803ccadfdf3f0faa505bc78e6a72d1cc4806cbd719826e943558" end resource "aiohttp" do - url "https://files.pythonhosted.org/packages/17/7e/16e57e6cf20eb62481a2f9ce8674328407187950ccc602ad07c685279141/aiohttp-3.10.10.tar.gz" - sha256 "0631dd7c9f0822cc61c88586ca76d5b5ada26538097d0f1df510b082bad3411a" + url "https://files.pythonhosted.org/packages/63/e7/fa1a8c00e2c54b05dc8cb5d1439f627f7c267874e3f7bb047146116020f9/aiohttp-3.11.18.tar.gz" + sha256 "ae856e1138612b7e412db63b7708735cff4d38d0399f6a5435d3dac2669f558a" end resource "aiohttp-jinja2" do @@ -38,8 +38,8 @@ class Bagels < Formula end resource "aiosignal" do - url "https://files.pythonhosted.org/packages/ae/67/0952ed97a9793b4958e5736f6d2b346b414a2cd63e82d05940032f45b32f/aiosignal-1.3.1.tar.gz" - sha256 "54cd96e15e1649b75d6c87526a6ff0b6c1b0dd3459f43d9ca11d48c339b68cfc" + url "https://files.pythonhosted.org/packages/ba/b5/6d55e80f6d8a08ce22b982eafa278d823b541c925f11ee774b0b9c43473d/aiosignal-1.3.2.tar.gz" + sha256 "a8c255c66fafb1e499c9351d0bf32ff2d8a0321595ebac3b93713656d2436f54" end resource "annotated-types" do @@ -48,28 +48,28 @@ class Bagels < Formula end resource "attrs" do - url "https://files.pythonhosted.org/packages/fc/0f/aafca9af9315aee06a89ffde799a10a582fe8de76c563ee80bbcdc08b3fb/attrs-24.2.0.tar.gz" - sha256 "5cfb1b9148b5b086569baec03f20d7b6bf3bcacc9a42bebf87ffaaca362f6346" + url "https://files.pythonhosted.org/packages/48/c8/6260f8ccc11f0917360fc0da435c5c9c7504e3db174d5a12a1494887b045/attrs-24.3.0.tar.gz" + sha256 "8f5c07333d543103541ba7be0e2ce16eeee8130cb0b3f9238ab904ce1e85baff" end resource "blinker" do - url "https://files.pythonhosted.org/packages/1e/57/a6a1721eff09598fb01f3c7cda070c1b6a0f12d63c83236edf79a440abcc/blinker-1.8.2.tar.gz" - sha256 "8f77b09d3bf7c795e969e9486f39c2c5e9c39d4ee07424be2bc594ece9642d83" + url "https://files.pythonhosted.org/packages/21/28/9b3f50ce0e048515135495f198351908d99540d69bfdc8c1d15b73dc55ce/blinker-1.9.0.tar.gz" + sha256 "b4ce2265a7abece45e7cc896e98dbebe6cead56bcf805a3d23136d145f5445bf" end resource "certifi" do - url "https://files.pythonhosted.org/packages/1c/ab/c9f1e32b7b1bf505bf26f0ef697775960db7932abeb7b516de930ba2705f/certifi-2025.1.31.tar.gz" - sha256 "3d5da6925056f6f18f119200434a4780a94263f10d1c21d032a6f6b2baa20651" + url "https://files.pythonhosted.org/packages/e8/9e/c05b3920a3b7d20d3d3310465f50348e5b3694f4f88c6daf736eef3024c4/certifi-2025.4.26.tar.gz" + sha256 "0a816057ea3cdefcef70270d2c515e4506bbc954f417fa5ade2021213bb8f0c6" end resource "charset-normalizer" do - url "https://files.pythonhosted.org/packages/56/31/7bcaf657fafb3c6db8c787a865434290b726653c912085fbd371e9b92e1c/charset-normalizer-2.0.12.tar.gz" - sha256 "2857e29ff0d34db842cd7ca3230549d1a697f96ee6d3fb071cfa6c7393832597" + url "https://files.pythonhosted.org/packages/e4/33/89c2ced2b67d1c2a61c19c6751aa8902d46ce3dacb23600a283619f5a12d/charset_normalizer-3.4.2.tar.gz" + sha256 "5baececa9ecba31eff645232d59845c07aa030f0c81ee70184a90d35099a0e63" end resource "click" do - url "https://files.pythonhosted.org/packages/96/d3/f04c7bfcf5c1862a2a5b845c6b2b360488cf47af55dfa79c98f6a6bf98b5/click-8.1.7.tar.gz" - sha256 "ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de" + url "https://files.pythonhosted.org/packages/b9/2e/0090cbf739cee7d23781ad4b89a9894a41538e4fcf4c31dcdd705b78eb8b/click-8.1.8.tar.gz" + sha256 "ed53c9d8990d83c2a27deae68e4ee337473f6330c040a31d4225c9574d16096a" end resource "click-default-group" do @@ -78,8 +78,13 @@ class Bagels < Formula end resource "frozenlist" do - url "https://files.pythonhosted.org/packages/8f/ed/0f4cec13a93c02c47ec32d81d11c0c1efbadf4a471e3f3ce7cad366cbbd3/frozenlist-1.5.0.tar.gz" - sha256 "81d5af29e61b9c8348e876d442253723928dce6433e0e76cd925cd83f1b4b817" + url "https://files.pythonhosted.org/packages/ee/f4/d744cba2da59b5c1d88823cf9e8a6c74e4659e2b27604ed973be2a0bf5ab/frozenlist-1.6.0.tar.gz" + sha256 "b99655c32c1c8e06d111e7f41c06c29a5318cb1835df23a45518e02a47c63b68" + end + + resource "greenlet" do + url "https://files.pythonhosted.org/packages/34/c1/a82edae11d46c0d83481aacaa1e578fea21d94a1ef400afd734d47ad95ad/greenlet-3.2.2.tar.gz" + sha256 "ad053d34421a2debba45aa3cc39acf454acbcd025b3fc1a9f8a0dee237abd485" end resource "idna" do @@ -128,18 +133,18 @@ class Bagels < Formula end resource "multidict" do - url "https://files.pythonhosted.org/packages/d6/be/504b89a5e9ca731cd47487e91c469064f8ae5af93b7259758dcfc2b9c848/multidict-6.1.0.tar.gz" - sha256 "22ae2ebf9b0c69d206c003e2f6a914ea33f0a932d4aa16f236afc049d9958f4a" + url "https://files.pythonhosted.org/packages/da/2c/e367dfb4c6538614a0c9453e510d75d66099edf1c4e69da1b5ce691a1931/multidict-6.4.3.tar.gz" + sha256 "3ada0b058c9f213c5f95ba301f922d402ac234f1111a7d8fd70f1b99f3c281ec" end resource "packaging" do - url "https://files.pythonhosted.org/packages/d0/63/68dbb6eb2de9cb10ee4c9c14a0148804425e13c4fb20d61cce69f53106da/packaging-24.2.tar.gz" - sha256 "c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f" + url "https://files.pythonhosted.org/packages/fb/2b/9b9c33ffed44ee921d0967086d653047286054117d584f1b1a7c22ceaf7b/packaging-23.2.tar.gz" + sha256 "048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5" end resource "platformdirs" do - url "https://files.pythonhosted.org/packages/13/fc/128cc9cb8f03208bdbf93d3aa862e16d376844a14f9a0ce5cf4507372de4/platformdirs-4.3.6.tar.gz" - sha256 "357fb2acbc885b0419afd3ce3ed34564c13c9b95c89360cd9563f73aa5e2b907" + url "https://files.pythonhosted.org/packages/fe/8b/3c73abc9c759ecd3f1f7ceff6685840859e8070c4d947c93fae71f6a0bf2/platformdirs-4.3.8.tar.gz" + sha256 "3d512d96e16bcb959a814c9f348431070822a6496326a4be0911c40b5a74c2bc" end resource "plotext" do @@ -148,23 +153,23 @@ class Bagels < Formula end resource "propcache" do - url "https://files.pythonhosted.org/packages/a9/4d/5e5a60b78dbc1d464f8a7bbaeb30957257afdc8512cbb9dfd5659304f5cd/propcache-0.2.0.tar.gz" - sha256 "df81779732feb9d01e5d513fad0122efb3d53bbc75f61b2a4f29a020bc985e70" + url "https://files.pythonhosted.org/packages/07/c8/fdc6686a986feae3541ea23dcaa661bd93972d3940460646c6bb96e21c40/propcache-0.3.1.tar.gz" + sha256 "40d980c33765359098837527e18eddefc9a24cea5b45e078a7f3bb5b032c6ecf" end resource "pydantic" do - url "https://files.pythonhosted.org/packages/a9/b7/d9e3f12af310e1120c21603644a1cd86f59060e040ec5c3a80b8f05fae30/pydantic-2.9.2.tar.gz" - sha256 "d155cef71265d1e9807ed1c32b4c8deec042a44a50a4188b25ac67ecd81a9c0f" + url "https://files.pythonhosted.org/packages/77/ab/5250d56ad03884ab5efd07f734203943c8a8ab40d551e208af81d0257bf2/pydantic-2.11.4.tar.gz" + sha256 "32738d19d63a226a52eed76645a98ee07c1f410ee41d93b4afbfa85ed8111c2d" end resource "pydantic-core" do - url "https://files.pythonhosted.org/packages/e2/aa/6b6a9b9f8537b872f552ddd46dd3da230367754b6f707b8e1e963f515ea3/pydantic_core-2.23.4.tar.gz" - sha256 "2584f7cf844ac4d970fba483a717dbe10c1c1c96a969bf65d61ffe94df1b2863" + url "https://files.pythonhosted.org/packages/ad/88/5f2260bdfae97aabf98f1778d43f69574390ad787afb646292a638c923d4/pydantic_core-2.33.2.tar.gz" + sha256 "7cb8bc3605c29176e1b105350d2e6474142d7c1bd1d9327c4a9bdb46bf827acc" end resource "pygments" do - url "https://files.pythonhosted.org/packages/8e/62/8336eff65bcbc8e4cb5d05b55faf041285951b6e80f33e2bff2024788f31/pygments-2.18.0.tar.gz" - sha256 "786ff802f32e91311bff3889f6e9a86e81505fe99f2735bb6d60ae0c5004f199" + url "https://files.pythonhosted.org/packages/7c/2d/c3338d48ea6cc0feb8446d8e6937e1408088a72a39937982cc6111d17f84/pygments-2.19.1.tar.gz" + sha256 "61c16d2a8576dc0649d9f39e089b5f02bcd27fba10d8fb4dcc28173f7a45151f" end resource "python-dateutil" do @@ -178,13 +183,13 @@ class Bagels < Formula end resource "requests" do - url "https://files.pythonhosted.org/packages/e9/23/384d9953bb968731212dc37af87cb75a885dc48e0615bd6a303577c4dc4b/requests-2.28.0.tar.gz" - sha256 "d568723a7ebd25875d8d1eaf5dfa068cd2fc8194b2e483d7b1f7c81918dbec6b" + url "https://files.pythonhosted.org/packages/63/70/2bf7780ad2d390a8d301ad0b550f1581eadbd9a20f896afe06353c2a2913/requests-2.32.3.tar.gz" + sha256 "55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760" end resource "rich" do - url "https://files.pythonhosted.org/packages/d9/e9/cf9ef5245d835065e6673781dbd4b8911d352fb770d56cf0879cf11b7ee1/rich-13.9.3.tar.gz" - sha256 "bc1e01b899537598cf02579d2b9f4a415104d3fc439313a7a2c165d76557a08e" + url "https://files.pythonhosted.org/packages/ab/3a/0316b28d0761c6734d6bc14e770d85506c986c85ffb239e688eeaab2c2bc/rich-13.9.4.tar.gz" + sha256 "439594978a49a09530cff7ebc4b5c7103ef57baf48d5ea3184f21d9a2befa098" end resource "six" do @@ -193,8 +198,8 @@ class Bagels < Formula end resource "sqlalchemy" do - url "https://files.pythonhosted.org/packages/50/65/9cbc9c4c3287bed2499e05033e207473504dc4df999ce49385fb1f8b058a/sqlalchemy-2.0.36.tar.gz" - sha256 "7f2767680b6d2398aea7082e45a774b2b0767b5c8d8ffb9c8b683088ea9b29c5" + url "https://files.pythonhosted.org/packages/68/c3/3f2bfa5e4dcd9938405fe2fab5b6ab94a9248a4f9536ea2fd497da20525f/sqlalchemy-2.0.40.tar.gz" + sha256 "d827099289c64589418ebbcaead0145cd19f4e3e8a93919a0100247af245fa00" end resource "textual" do @@ -208,8 +213,13 @@ class Bagels < Formula end resource "typing-extensions" do - url "https://files.pythonhosted.org/packages/df/db/f35a00659bc03fec321ba8bce9420de607a1d37f8342eee1863174c69557/typing_extensions-4.12.2.tar.gz" - sha256 "1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8" + url "https://files.pythonhosted.org/packages/f6/37/23083fcd6e35492953e8d2aaaa68b860eb422b34627b13f2ce3eb6106061/typing_extensions-4.13.2.tar.gz" + sha256 "e6c81219bd689f51865d9e372991c540bda33a0379d5573cddb9a3a23f7caaef" + end + + resource "typing-inspection" do + url "https://files.pythonhosted.org/packages/82/5c/e6082df02e215b846b4b8c0b887a64d7d08ffaba30605502639d44c06b82/typing_inspection-0.4.0.tar.gz" + sha256 "9765c87de36671694a67904bf2c96e395be9c6439bb6c87b5142569dcdd65122" end resource "uc-micro-py" do @@ -218,13 +228,13 @@ class Bagels < Formula end resource "urllib3" do - url "https://files.pythonhosted.org/packages/e4/e8/6ff5e6bc22095cfc59b6ea711b687e2b7ed4bdb373f7eeec370a97d7392f/urllib3-1.26.20.tar.gz" - sha256 "40c2dc0c681e47eb8f90e7e27bf6ff7df2e677421fd46756da1161c39ca70d32" + url "https://files.pythonhosted.org/packages/8a/78/16493d9c386d8e60e442a35feac5e00f0913c0f4b7c217c11e8ec2ff53e0/urllib3-2.4.0.tar.gz" + sha256 "414bc6535b787febd7567804cc015fee39daab8ad86268f1310a9250697de466" end resource "werkzeug" do - url "https://files.pythonhosted.org/packages/d4/f9/0ba83eaa0df9b9e9d1efeb2ea351d0677c37d41ee5d0f91e98423c7281c9/werkzeug-3.0.6.tar.gz" - sha256 "a8dd59d4de28ca70471a34cba79bed5f7ef2e036a76b3ab0835474246eb41f8d" + url "https://files.pythonhosted.org/packages/9f/69/83029f1f6300c5fb2471d621ab06f6ec6b3324685a2ce0f9777fd4a8b71e/werkzeug-3.1.3.tar.gz" + sha256 "60723ce945c19328679790e3282cc758aa4a6040e4bb330f53d30fa546d44746" end resource "xdg-base-dirs" do @@ -233,8 +243,8 @@ class Bagels < Formula end resource "yarl" do - url "https://files.pythonhosted.org/packages/23/52/e9766cc6c2eab7dd1e9749c52c9879317500b46fb97d4105223f86679f93/yarl-1.16.0.tar.gz" - sha256 "b6f687ced5510a9a2474bbae96a4352e5ace5fa34dc44a217b0537fec1db00b4" + url "https://files.pythonhosted.org/packages/62/51/c0edba5219027f6eab262e139f73e2417b0f4efffa23bf562f6e18f76ca5/yarl-1.20.0.tar.gz" + sha256 "686d51e51ee5dfe62dec86e4866ee0e9ed66df700d55c828a615640adc885307" end def install From 658aa7cc5570a5915db4fcc42a75a9e076b70ed1 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 17:11:01 +0000 Subject: [PATCH 0719/1364] ipv6calc 4.3.1 --- Formula/i/ipv6calc.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/i/ipv6calc.rb b/Formula/i/ipv6calc.rb index 34c22650e747b..bab8611b16ff4 100644 --- a/Formula/i/ipv6calc.rb +++ b/Formula/i/ipv6calc.rb @@ -1,8 +1,8 @@ class Ipv6calc < Formula desc "Small utility for manipulating IPv6 addresses" homepage "https://www.deepspace6.net/projects/ipv6calc.html" - url "https://github.com/pbiering/ipv6calc/archive/refs/tags/4.3.0.tar.gz" - sha256 "0255b811b09ddbfb4afdffe639b5eb91406a67134def5230d2c53ac80f8f4dd0" + url "https://github.com/pbiering/ipv6calc/archive/refs/tags/4.3.1.tar.gz" + sha256 "b1c5006edebaad3e2e286d12f70d136bf05658e9e8bda8d67ef7c477322a1a47" license "GPL-2.0-only" # Upstream creates stable version tags (e.g., `v1.2.3`) before a release but From e88df1e54cb2341df5b6604e025f108d146453dd Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 17:12:46 +0000 Subject: [PATCH 0720/1364] kubevpn 2.7.8 --- Formula/k/kubevpn.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/k/kubevpn.rb b/Formula/k/kubevpn.rb index 6d1dc2c11a991..17781a4c0ee40 100644 --- a/Formula/k/kubevpn.rb +++ b/Formula/k/kubevpn.rb @@ -1,8 +1,8 @@ class Kubevpn < Formula desc "Offers a Cloud-Native Dev Environment that connects to your K8s cluster network" homepage "https://www.kubevpn.dev" - url "https://github.com/kubenetworks/kubevpn/archive/refs/tags/v2.7.7.tar.gz" - sha256 "fe64007df8550de18b5358bd0f767c88accf7da3f068b74b21eda9d0673b503d" + url "https://github.com/kubenetworks/kubevpn/archive/refs/tags/v2.7.8.tar.gz" + sha256 "02e24ad6c1ec1b41aab74d92297f60f4ddb5f217c1b7cbdef5153cf8536042f4" license "MIT" head "https://github.com/kubenetworks/kubevpn.git", branch: "master" From ebd57b244a9a6ac70636a984db988739732de536 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 17:19:44 +0000 Subject: [PATCH 0721/1364] pmix 5.0.8 --- Formula/p/pmix.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/p/pmix.rb b/Formula/p/pmix.rb index 1dd30244b26bc..2d666b05b6185 100644 --- a/Formula/p/pmix.rb +++ b/Formula/p/pmix.rb @@ -4,8 +4,8 @@ class Pmix < Formula license "BSD-3-Clause" stable do - url "https://github.com/openpmix/openpmix/releases/download/v5.0.7/pmix-5.0.7.tar.bz2" - sha256 "b9e6ad482fcdcb58c9b9553ae56956b6d7df875d5605b6ecb96adaff16b2b07a" + url "https://github.com/openpmix/openpmix/releases/download/v5.0.8/pmix-5.0.8.tar.bz2" + sha256 "bf5f0a341d0ec7f465627a7570f4dcda3b931bc859256428a35f6c72f13462d0" # Fix -flat_namespace being used on Big Sur and later. patch do From 0d0772a95493649ea4b926ba34296e77383507bb Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 17:21:52 +0000 Subject: [PATCH 0722/1364] repomix 0.3.5 --- Formula/r/repomix.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/r/repomix.rb b/Formula/r/repomix.rb index 4bba79a35d62f..7c3fb175b5f2c 100644 --- a/Formula/r/repomix.rb +++ b/Formula/r/repomix.rb @@ -1,8 +1,8 @@ class Repomix < Formula desc "Pack repository contents into a single AI-friendly file" homepage "https://github.com/yamadashy/repomix" - url "https://registry.npmjs.org/repomix/-/repomix-0.3.4.tgz" - sha256 "5c244f33fbbe0c73f6c8e6378bb9dd5c568bf334fab312c6ab0864f6a8687d50" + url "https://registry.npmjs.org/repomix/-/repomix-0.3.5.tgz" + sha256 "59572010f92af2cf03abb553e6e58754bf5f64cbf45c9ee2f304581dff0de3f9" license "MIT" bottle do From db1ee57777ffb53c7a6f3f3485e2ce1f442a4c37 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 17:22:28 +0000 Subject: [PATCH 0723/1364] ipv6calc: update 4.3.1 bottle. --- Formula/i/ipv6calc.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/i/ipv6calc.rb b/Formula/i/ipv6calc.rb index bab8611b16ff4..572028248e98f 100644 --- a/Formula/i/ipv6calc.rb +++ b/Formula/i/ipv6calc.rb @@ -14,13 +14,13 @@ class Ipv6calc < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "cb1ee095ca6ad409d22a619adfdc84e0d40f129f1ded51d383fb96c1e5c7c264" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "f4a707eb3df85445eeed0e2207a8ff6fbcb5f52f5d555ce96d2bd4961072f885" - sha256 cellar: :any_skip_relocation, arm64_ventura: "e972c4a4e8ef9b74f037fae1a8f680a8d538bd4346833aada50510eadb2edde9" - sha256 cellar: :any_skip_relocation, sonoma: "72e53c7d306ea9905a00017c1432add44a8745edd47ea423003e4ba8691e3851" - sha256 cellar: :any_skip_relocation, ventura: "2d444dbeef51958c07a302782451deb9c14086f8d858e2f66adb95235464c8b1" - sha256 cellar: :any_skip_relocation, arm64_linux: "2ef806d99ae229bb9c228dcaf6d69e3991b40bb9cfa9f40b3e1c01b91151974d" - sha256 cellar: :any_skip_relocation, x86_64_linux: "c9ac597e58e860837e7db2fa2afc9f0a77260e613438b8fc37301f1f8643ef3f" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "c18e41361e9aabcc661d067201a8833b63fbe49e8727008e1ca90ecd482ab71b" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "690c2ac907040b2463b56df53423fa41b09d383a4b5019c24fe8797b17e56b2c" + sha256 cellar: :any_skip_relocation, arm64_ventura: "fef675752856ebfd976ee1db8411a7368cdbf5c1f009325e8aa1d19b554b327e" + sha256 cellar: :any_skip_relocation, sonoma: "b1cdd07c304ad39d3c522c811d36196e911a5e6fe89c736f1fa5f46795a7c58b" + sha256 cellar: :any_skip_relocation, ventura: "7049e2e4c58bf4a40bf002f74e19e7201fa2ea806cba87eb13934af4849d0873" + sha256 cellar: :any_skip_relocation, arm64_linux: "091b84ae00c4fe6cc017fbd4730e32f2699dceba70491456fba29c6687ccacc1" + sha256 cellar: :any_skip_relocation, x86_64_linux: "654016fe83fb602354bced323d6591b9a5a8ce2d48369b13cb17d32a4ac8305a" end uses_from_macos "perl" From b395628cdf19ed22fdc5c6cff4878d5fea876ef5 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 17:23:58 +0000 Subject: [PATCH 0724/1364] ab-av1: update 0.10.0 bottle. --- Formula/a/ab-av1.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/a/ab-av1.rb b/Formula/a/ab-av1.rb index 1f103a1791ef1..b5b37e0858f7b 100644 --- a/Formula/a/ab-av1.rb +++ b/Formula/a/ab-av1.rb @@ -7,13 +7,13 @@ class AbAv1 < Formula head "https://github.com/alexheretic/ab-av1.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "c75613d8101d4c8ca36c5cf3e9e7c19bc03ae852d7b4453ad539d9706c28adaf" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "d9a55c083674f1880aecd633382df71b1f0311355947ed0df059c49bc3bec33e" - sha256 cellar: :any_skip_relocation, arm64_ventura: "847e94448d75a54a23304210fc3c78974f8103a7341d582b92a4ed4fe46a1c87" - sha256 cellar: :any_skip_relocation, sonoma: "806cc8b716393aacf82fbdbf58ab4628c912a278d41ebf69ed22d9f192dd45c1" - sha256 cellar: :any_skip_relocation, ventura: "f5e3c1baafad271e2a01653e822d1b8d34e46c0f0c4d60367eecb0ae6645d2e9" - sha256 cellar: :any_skip_relocation, arm64_linux: "e78bed34fa05d4c60c1352e089a45337907f85f8a5cb8a84a2bff1d7cce32ab8" - sha256 cellar: :any_skip_relocation, x86_64_linux: "55433d1b895b1fd244736cb918f9c848c194124f02ffca52e1e7b13f13185ae5" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "060f38701c12fb3076daa6c3650b5f076a0a791cccdd8e2f918e782309107bb2" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "963a43238b7e963d22df60b7ca760d7d83e4f9458a4d004d5555845ae457be7f" + sha256 cellar: :any_skip_relocation, arm64_ventura: "57cc5515ec491fedb516b354bad3f922ce88d650f75859f55c0feb1686f5221d" + sha256 cellar: :any_skip_relocation, sonoma: "1ed32713e6a9fb378df42d26926080019a48247b51aa94079012b085d6bd3581" + sha256 cellar: :any_skip_relocation, ventura: "4f8320d095c6c437a01250cca9c25d90282ca14a58e7bb16da779aba41c2104e" + sha256 cellar: :any_skip_relocation, arm64_linux: "c1656f532d63538b01625323b25e6c511e496d70af2ea51d4c0a0b5812eb0187" + sha256 cellar: :any_skip_relocation, x86_64_linux: "0d1e08da32e54b4834d8983cd04761f47fed58302d278001ff0b718009ac7dc8" end depends_on "rust" => :build From dd88e60192dca998bd8e41ba41ed40436bf61349 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 17:28:15 +0000 Subject: [PATCH 0725/1364] kubevpn: update 2.7.8 bottle. --- Formula/k/kubevpn.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/k/kubevpn.rb b/Formula/k/kubevpn.rb index 17781a4c0ee40..144c9888233f5 100644 --- a/Formula/k/kubevpn.rb +++ b/Formula/k/kubevpn.rb @@ -7,13 +7,13 @@ class Kubevpn < Formula head "https://github.com/kubenetworks/kubevpn.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "b5e69973b89bae2e327e0685a575db39b02c00fe5dd5f24fa49c59a6d37036e8" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "ae10e62c889fcab222fab00ef4e50393d69f46312551b049199d40ade7bfb621" - sha256 cellar: :any_skip_relocation, arm64_ventura: "a68b8918815e25187521d02cf559f740257db843530068515f153d13a0472566" - sha256 cellar: :any_skip_relocation, sonoma: "1399ab1db5480e72ea16cff863d00a2432d19ea7a021da34452c73553041cef1" - sha256 cellar: :any_skip_relocation, ventura: "70977edba89edb6a0755931f364955ace82a7a6a8f017af95a2802fe45246d8a" - sha256 cellar: :any_skip_relocation, arm64_linux: "79f7e4fa628b3c8d31ba12947bd62aebffaba16fa08157c7294a39d8705aa942" - sha256 cellar: :any_skip_relocation, x86_64_linux: "5ac1452083238a17e768b58f5b1b1c1e8dc92385e7b939a3a925f71b7d66265e" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "803b8d578aa31c678f9bbc7c265d0efa3306241ff0a4df26103562d20b62f2c9" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "16ebf8d2038d5c7540b4848dbeaa685f52351bf39d82c2639d9616abf64c7709" + sha256 cellar: :any_skip_relocation, arm64_ventura: "90cac45ab4cc0d770e387247ce2dcf339b3d4f3cce11a776dd563548f9d71328" + sha256 cellar: :any_skip_relocation, sonoma: "113bfb129746dc5915972dc222764eaeb653248770544b803ee16bc01ecc7183" + sha256 cellar: :any_skip_relocation, ventura: "0fcbd6a96828290e795535d2ab365b6a674241f64759bfec895157a20c7c68a5" + sha256 cellar: :any_skip_relocation, arm64_linux: "ed4bdcdab3533b4ae2dec135dbcb8330dc84b1938a48e6c5226d9e69fb8b88b5" + sha256 cellar: :any_skip_relocation, x86_64_linux: "e839f9d886fead4ea60d5323f0e6697352e165d77ccc348789cedba1d0408351" end depends_on "go" => :build From 96f8d8f2809a72e79ba22125795ae8faf22ffca9 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 17:28:45 +0000 Subject: [PATCH 0726/1364] yoke 0.12.5 --- Formula/y/yoke.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/y/yoke.rb b/Formula/y/yoke.rb index e1a5576b234b1..fd9edf9af1b5d 100644 --- a/Formula/y/yoke.rb +++ b/Formula/y/yoke.rb @@ -3,8 +3,8 @@ class Yoke < Formula homepage "https://yokecd.github.io/docs/" # We use a git checkout since the build relies on tags for the version url "https://github.com/yokecd/yoke.git", - tag: "v0.12.4", - revision: "538b65d2880e96d3aec7415c2a6557300b44cb9a" + tag: "v0.12.5", + revision: "a0c8bdbcae945d402117b2f21b1f06a930798667" license "MIT" head "https://github.com/yokecd/yoke.git", branch: "main" From e08643b8fa366b53a93cb467f2f22f6dd9147795 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 17:33:12 +0000 Subject: [PATCH 0727/1364] bagels: update 0.3.9 bottle. --- Formula/b/bagels.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/b/bagels.rb b/Formula/b/bagels.rb index 4d3121f9a8273..b809c78d9f7f0 100644 --- a/Formula/b/bagels.rb +++ b/Formula/b/bagels.rb @@ -8,13 +8,13 @@ class Bagels < Formula license "GPL-3.0-or-later" bottle do - sha256 cellar: :any, arm64_sequoia: "d78bd44e68e810f5ebd7ad5ea2232a83866b0c56a47a8ba72c2837880ee5dab3" - sha256 cellar: :any, arm64_sonoma: "45f6ba14f5290cabdfe3ffeec501e76b2acca30031fd5a1e863fafdad30acc0f" - sha256 cellar: :any, arm64_ventura: "41db25047d2a1064a1abeb7e578c9b199c4ad7d447010b14962dca8741a08247" - sha256 cellar: :any, sonoma: "517c3aaa93ca73f17deb2cf4fee4b9b3257734f77064cd3495e8615e42ff61dd" - sha256 cellar: :any, ventura: "ee02ed93e7f474d81ee0bbb42f31dd9224f45c2a23cf8c06328976baaf6d5551" - sha256 cellar: :any_skip_relocation, arm64_linux: "2fdb6efbbbca1d62989b655b68e44de8913ed21b8c05b28a4ab998ef4eba83e4" - sha256 cellar: :any_skip_relocation, x86_64_linux: "c37d3db3e32d626dde9ff457111f9ac13a90fa7420cdfa1de1f03db7fcfdac89" + sha256 cellar: :any, arm64_sequoia: "3965ab39ce8b7928c55b3e775f9f3eb80a762a8d0389d06494f5c5b7783332f5" + sha256 cellar: :any, arm64_sonoma: "e7808dfef3745bed95d0054bd070d4b626b4a24b2e035db91a72f01d750d289c" + sha256 cellar: :any, arm64_ventura: "41cd8e74fd710b299efc54a6db869cf10522f8411136f8ace9e14294d28877b7" + sha256 cellar: :any, sonoma: "4a73292e823da0ecb9d193eac8a066529f0c32438fdff4f8837e8342f60edad9" + sha256 cellar: :any, ventura: "e157f0c22756bc01974c28d0b6141af3453234ea5b4bf5800c39324b5d0e31f1" + sha256 cellar: :any_skip_relocation, arm64_linux: "f0c520b26268b807954fa581c1820910a4266df65f0c3ad59973f3acc85aee52" + sha256 cellar: :any_skip_relocation, x86_64_linux: "69a2e7e185700ea158cf81c4c825e0f7854750e421eb360caa5cad9a7f720b79" end depends_on "rust" => :build # for pydantic_core From b8eb07dca7051f76def150af243d6c3ae5353c2e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 17:43:08 +0000 Subject: [PATCH 0728/1364] repomix: update 0.3.5 bottle. --- Formula/r/repomix.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/r/repomix.rb b/Formula/r/repomix.rb index 7c3fb175b5f2c..8f3948f43832b 100644 --- a/Formula/r/repomix.rb +++ b/Formula/r/repomix.rb @@ -6,13 +6,13 @@ class Repomix < Formula license "MIT" bottle do - sha256 cellar: :any, arm64_sequoia: "01f38582038053fdb36606ea64ee6f52d58ed1eb8638051f991f8694492ec954" - sha256 cellar: :any, arm64_sonoma: "01f38582038053fdb36606ea64ee6f52d58ed1eb8638051f991f8694492ec954" - sha256 cellar: :any, arm64_ventura: "01f38582038053fdb36606ea64ee6f52d58ed1eb8638051f991f8694492ec954" - sha256 cellar: :any, sonoma: "ae941817676c7912f4523e295e27d3a583094df778c0308ad6378600c8594bf1" - sha256 cellar: :any, ventura: "ae941817676c7912f4523e295e27d3a583094df778c0308ad6378600c8594bf1" - sha256 cellar: :any_skip_relocation, arm64_linux: "12c6959b9dcd9042e5fb8b5eeeb77c97d533b04f2db8682a6eba0d881e5562d4" - sha256 cellar: :any_skip_relocation, x86_64_linux: "135296a8fd8d6f1eed8b26086e3957fc2c8c2583e8ff0ccd36ff787ed89a7843" + sha256 cellar: :any, arm64_sequoia: "9098cc7d89f0e4533377e8922f56732721bac01332f1c4dd4c1f0b01d8239a4d" + sha256 cellar: :any, arm64_sonoma: "9098cc7d89f0e4533377e8922f56732721bac01332f1c4dd4c1f0b01d8239a4d" + sha256 cellar: :any, arm64_ventura: "9098cc7d89f0e4533377e8922f56732721bac01332f1c4dd4c1f0b01d8239a4d" + sha256 cellar: :any, sonoma: "e1ff9033bb637b42cd6dc0a78f56406bf8541f92e4b811321caaebb863b48255" + sha256 cellar: :any, ventura: "e1ff9033bb637b42cd6dc0a78f56406bf8541f92e4b811321caaebb863b48255" + sha256 cellar: :any_skip_relocation, arm64_linux: "b4316baec823d6b9ad195d20a19da2e2bcde63a73885f5a783fdfba6e9735b13" + sha256 cellar: :any_skip_relocation, x86_64_linux: "c64cd8b0731ab32e9b98105c9b251b28b12ecd3bbe59e0545b4d9ca0297d578b" end depends_on "node" From bd57b4192c00a53932df44b9a2783936df95d004 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 17:58:34 +0000 Subject: [PATCH 0729/1364] yoke: update 0.12.5 bottle. --- Formula/y/yoke.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/y/yoke.rb b/Formula/y/yoke.rb index fd9edf9af1b5d..763d1874cb93d 100644 --- a/Formula/y/yoke.rb +++ b/Formula/y/yoke.rb @@ -9,13 +9,13 @@ class Yoke < Formula head "https://github.com/yokecd/yoke.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "70a5e58196d80a2a4650b37b7b936975b8b291440edda6127e1862cd7c9da927" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "da027b507b7d3d43549da459aabc1328f7810025514d5c5478ac94e037b13956" - sha256 cellar: :any_skip_relocation, arm64_ventura: "9cea07ad47721c484f77b1eade886a77c1e7d248e42b230ecee2427a3b7a5707" - sha256 cellar: :any_skip_relocation, sonoma: "b91700f9bb7367ea34170638aae577f0e0cbfd06ade9129626537d15234d4617" - sha256 cellar: :any_skip_relocation, ventura: "5c5e4ca7aee3262cbe385a33733332471f6d2d84c4ee7b5e111f2b69925d49ee" - sha256 cellar: :any_skip_relocation, arm64_linux: "2ef2157ad06fd47d0e4f3550efa504f93bfb5ef6a2b86bc6dbbe77e6921bd485" - sha256 cellar: :any_skip_relocation, x86_64_linux: "0952584e9b3ff463497aa2e48905ded73cba564145bd801e1405d4e6d54e5ad1" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "274dc7dc5f8773d75342883aa2f5bbe973c84a5fefa53a7dd5824d96876e5afa" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "c25aa2600095fae32bffa43316b6854f5ccdee22675751747c60760c33c864dd" + sha256 cellar: :any_skip_relocation, arm64_ventura: "9bf43c585647026c85091b1248218415916e78e42884e8db857ebe0d4a845747" + sha256 cellar: :any_skip_relocation, sonoma: "a5d50d99fca4c829f53e5a16b1412451c46b96c495c55d970b22636a74aa893c" + sha256 cellar: :any_skip_relocation, ventura: "129926df54c4a05a8aa5e345ca941c2e5bc0ffcbde581ef317a3ec11fa3b974a" + sha256 cellar: :any_skip_relocation, arm64_linux: "303c9cae832c9b45d0568d2ad9c16a47e6c9d68f1c47bec5ad9a42ab331f4ee0" + sha256 cellar: :any_skip_relocation, x86_64_linux: "90859647f599334f7f16efa2e416e238dbe6c431ac1d76054184d447edd4c2c3" end depends_on "go" => :build From ac3f740cb5fd186c8f41135c48c041fe84bd5898 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Sat, 10 May 2025 13:59:14 -0400 Subject: [PATCH 0730/1364] alive2: revision bump (z3 4.15.0) Signed-off-by: Rui Chen --- Formula/a/alive2.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/a/alive2.rb b/Formula/a/alive2.rb index ef4ef8982e6a1..d7851b1aa76d2 100644 --- a/Formula/a/alive2.rb +++ b/Formula/a/alive2.rb @@ -5,7 +5,7 @@ class Alive2 < Formula tag: "v20.0", revision: "c0f5434f402ad91714ee0952f686cd0f524920ad" license "MIT" - revision 1 + revision 2 head "https://github.com/AliveToolkit/alive2.git", branch: "master" bottle do From 68d629768188f421c1cdf37ba4ecdf2c193b6bbf Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Sat, 10 May 2025 13:59:14 -0400 Subject: [PATCH 0731/1364] klee: revision bump (z3 4.15.0) Signed-off-by: Rui Chen --- Formula/k/klee.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/k/klee.rb b/Formula/k/klee.rb index 7547124dab410..2e44ca2a78740 100644 --- a/Formula/k/klee.rb +++ b/Formula/k/klee.rb @@ -7,7 +7,7 @@ class Klee < Formula url "https://github.com/klee/klee/archive/refs/tags/v3.1.tar.gz" sha256 "ae3d97209fa480ce6498ffaa7eaa7ecbbe22748c739cb7b2389391d0d9c940f7" license "NCSA" - revision 3 + revision 4 head "https://github.com/klee/klee.git", branch: "master" bottle do From 8a6a83ba129a9025c414f895394d4bbda32da5e3 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Sat, 10 May 2025 13:59:15 -0400 Subject: [PATCH 0732/1364] llvm: revision bump (z3 4.15.0) Signed-off-by: Rui Chen --- Formula/l/llvm.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/l/llvm.rb b/Formula/l/llvm.rb index ac065fcbe76ce..4da84c06bef28 100644 --- a/Formula/l/llvm.rb +++ b/Formula/l/llvm.rb @@ -6,6 +6,7 @@ class Llvm < Formula sha256 "a95365b02536ed4aef29b325c205dd89c268cba41503ab2fc05f81418613ab63" # The LLVM Project is under the Apache License v2.0 with LLVM Exceptions license "Apache-2.0" => { with: "LLVM-exception" } + revision 1 head "https://github.com/llvm/llvm-project.git", branch: "main" livecheck do From db81b766c5652d0d0680a4c3b38faf08c4390a65 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 18:03:09 +0000 Subject: [PATCH 0733/1364] mill: update 0.12.11 bottle. --- Formula/m/mill.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/m/mill.rb b/Formula/m/mill.rb index 633ada97b8491..2f6f7f331cc30 100644 --- a/Formula/m/mill.rb +++ b/Formula/m/mill.rb @@ -11,7 +11,7 @@ class Mill < Formula end bottle do - sha256 cellar: :any_skip_relocation, all: "52ad05722eb687cfa184cdb8d69de16fa2edfe8e730f3436a3943c51596e3818" + sha256 cellar: :any_skip_relocation, all: "317801b292e4332605d7dc2a06b20206cb33db9def24b1af80e451c5cef5afce" end depends_on "openjdk" From a194a71e0d451262761408071342f72530f0b48e Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Sat, 10 May 2025 14:08:19 -0400 Subject: [PATCH 0734/1364] runtime_cpu_detection_allowlist: remove `knot` --- style_exceptions/runtime_cpu_detection_allowlist.json | 1 - 1 file changed, 1 deletion(-) diff --git a/style_exceptions/runtime_cpu_detection_allowlist.json b/style_exceptions/runtime_cpu_detection_allowlist.json index c9e7f52ac7358..e80b155b962a8 100644 --- a/style_exceptions/runtime_cpu_detection_allowlist.json +++ b/style_exceptions/runtime_cpu_detection_allowlist.json @@ -14,7 +14,6 @@ "groestlcoin", "handbrake", "highway", - "knot", "libpq", "libvpx", "mariadb", From afc93fbd1b1a4dcef1f422801ac6ad9eec729a20 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 19:57:02 +0000 Subject: [PATCH 0735/1364] dua-cli 2.30.1 --- Formula/d/dua-cli.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/d/dua-cli.rb b/Formula/d/dua-cli.rb index fc6cc50eb5e1d..f29429b5f51f5 100644 --- a/Formula/d/dua-cli.rb +++ b/Formula/d/dua-cli.rb @@ -1,8 +1,8 @@ class DuaCli < Formula desc "View disk space usage and delete unwanted data, fast" homepage "https://lib.rs/crates/dua-cli" - url "https://github.com/Byron/dua-cli/archive/refs/tags/v2.30.0.tar.gz" - sha256 "8c5b0b30d9f2a5d7fef5621d8dd38690a4394d428206bb0473c2b48234d43331" + url "https://github.com/Byron/dua-cli/archive/refs/tags/v2.30.1.tar.gz" + sha256 "e7cb52b4dc6bf89a554b0f1292344eafceeace1cbf957a2c0942bf1201b404a9" license "MIT" bottle do From d0c85fab9ea4a7a86747b5013ae3bad8de7050fa Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 19:59:55 +0000 Subject: [PATCH 0736/1364] fonttools 4.58.0 --- Formula/f/fonttools.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/f/fonttools.rb b/Formula/f/fonttools.rb index 71521765a0d23..d82a87895f7c5 100644 --- a/Formula/f/fonttools.rb +++ b/Formula/f/fonttools.rb @@ -3,8 +3,8 @@ class Fonttools < Formula desc "Library for manipulating fonts" homepage "https://github.com/fonttools/fonttools" - url "https://files.pythonhosted.org/packages/03/2d/a9a0b6e3a0cf6bd502e64fc16d894269011930cabfc89aee20d1635b1441/fonttools-4.57.0.tar.gz" - sha256 "727ece10e065be2f9dd239d15dd5d60a66e17eac11aea47d447f9f03fdbc42de" + url "https://files.pythonhosted.org/packages/9a/cf/4d037663e2a1fe30fddb655d755d76e18624be44ad467c07412c2319ab97/fonttools-4.58.0.tar.gz" + sha256 "27423d0606a2c7b336913254bf0b1193ebd471d5f725d665e875c5e88a011a43" license "MIT" head "https://github.com/fonttools/fonttools.git", branch: "main" From cae874319433947482833318bfb212847a910708 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 20:04:20 +0000 Subject: [PATCH 0737/1364] jc 1.25.5 --- Formula/j/jc.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/j/jc.rb b/Formula/j/jc.rb index 0357c1ff3a3ef..64d99820bbb5d 100644 --- a/Formula/j/jc.rb +++ b/Formula/j/jc.rb @@ -3,8 +3,8 @@ class Jc < Formula desc "Serializes the output of command-line tools to structured JSON output" homepage "https://github.com/kellyjonbrazil/jc" - url "https://files.pythonhosted.org/packages/5b/82/146ef4c94297ef87c6a732c92dd57761bea2c2179e1b8ca8a6b9b8dd6ff7/jc-1.25.4.tar.gz" - sha256 "a32eaf029c56b582dadae48895f20784d0f84f2fa28a8e2b32f377a8bffa8b39" + url "https://files.pythonhosted.org/packages/1b/da/f6ec6a79f8dea70671f41d7162cfefdfe97e9c5b6c2227c1737183c05cd6/jc-1.25.5.tar.gz" + sha256 "f8ac0e4bc427b0ee8a3bdb07a254cc9df6b6036cd440f6c425e2e519cdbda78a" license "MIT" bottle do @@ -21,13 +21,13 @@ class Jc < Formula depends_on "python@3.13" resource "pygments" do - url "https://files.pythonhosted.org/packages/8e/62/8336eff65bcbc8e4cb5d05b55faf041285951b6e80f33e2bff2024788f31/pygments-2.18.0.tar.gz" - sha256 "786ff802f32e91311bff3889f6e9a86e81505fe99f2735bb6d60ae0c5004f199" + url "https://files.pythonhosted.org/packages/7c/2d/c3338d48ea6cc0feb8446d8e6937e1408088a72a39937982cc6111d17f84/pygments-2.19.1.tar.gz" + sha256 "61c16d2a8576dc0649d9f39e089b5f02bcd27fba10d8fb4dcc28173f7a45151f" end resource "ruamel-yaml" do - url "https://files.pythonhosted.org/packages/29/81/4dfc17eb6ebb1aac314a3eb863c1325b907863a1b8b1382cdffcb6ac0ed9/ruamel.yaml-0.18.6.tar.gz" - sha256 "8b27e6a217e786c6fbe5634d8f3f11bc63e0f80f6a5890f28863d9c45aac311b" + url "https://files.pythonhosted.org/packages/ea/46/f44d8be06b85bc7c4d8c95d658be2b68f27711f279bf9dd0612a5e4794f5/ruamel.yaml-0.18.10.tar.gz" + sha256 "20c86ab29ac2153f80a428e1254a8adf686d3383df04490514ca3b79a362db58" end resource "xmltodict" do From 6d707d788ce86fcc98015451503c963516dd15fc Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 20:09:06 +0000 Subject: [PATCH 0738/1364] llama.cpp 5340 --- Formula/l/llama.cpp.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/l/llama.cpp.rb b/Formula/l/llama.cpp.rb index a40c27f8afc45..8d20fda524131 100644 --- a/Formula/l/llama.cpp.rb +++ b/Formula/l/llama.cpp.rb @@ -3,8 +3,8 @@ class LlamaCpp < Formula homepage "https://github.com/ggerganov/llama.cpp" # CMake uses Git to generate version information. url "https://github.com/ggerganov/llama.cpp.git", - tag: "b5330", - revision: "17512a94d636c4b6c1332370acb3e5af3ca70918" + tag: "b5340", + revision: "15e6125a397f6086c1dfdf7584acdb7c730313dc" license "MIT" head "https://github.com/ggerganov/llama.cpp.git", branch: "master" From da13b124d0ea9723e46a8b40600eda800065da3d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 20:23:25 +0000 Subject: [PATCH 0739/1364] tenv 4.6.2 --- Formula/t/tenv.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/t/tenv.rb b/Formula/t/tenv.rb index b1e36f2bd2e93..c31730c64e927 100644 --- a/Formula/t/tenv.rb +++ b/Formula/t/tenv.rb @@ -1,8 +1,8 @@ class Tenv < Formula desc "OpenTofu / Terraform / Terragrunt / Atmos version manager" homepage "https://tofuutils.github.io/tenv/" - url "https://github.com/tofuutils/tenv/archive/refs/tags/v4.4.0.tar.gz" - sha256 "4ec009b0da3d1645d7ebd674b7f36ac92831946e8d5fff812c352fab041c1d39" + url "https://github.com/tofuutils/tenv/archive/refs/tags/v4.6.2.tar.gz" + sha256 "f3ebd348301163509d23c0cb6963c6f69bc9b942c54188c09605cd63f08475a0" license "Apache-2.0" head "https://github.com/tofuutils/tenv.git", branch: "main" From 2d44d99e771c73ae9b500beeaffa0583da35a6d2 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 20:27:20 +0000 Subject: [PATCH 0740/1364] xk6 0.19.3 --- Formula/x/xk6.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/x/xk6.rb b/Formula/x/xk6.rb index 0e1f2b895d6f8..c725362525828 100644 --- a/Formula/x/xk6.rb +++ b/Formula/x/xk6.rb @@ -1,8 +1,8 @@ class Xk6 < Formula desc "Build k6 with extensions" homepage "https://k6.io" - url "https://github.com/grafana/xk6/archive/refs/tags/v0.19.2.tar.gz" - sha256 "059ea134cb054fe3f8dca0af849ce7e3ed513a1cee244adb038921a3a78157df" + url "https://github.com/grafana/xk6/archive/refs/tags/v0.19.3.tar.gz" + sha256 "fccebf5dee0f6a74b8d1d1d2871085fc8c7c0287ca7d12941c8880f440c77bf7" license "Apache-2.0" head "https://github.com/grafana/xk6.git", branch: "master" From 69e9abeb59e0ea84400382168bb193a84fdaa477 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 20:48:58 +0000 Subject: [PATCH 0741/1364] llama.cpp: update 5340 bottle. --- Formula/l/llama.cpp.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/l/llama.cpp.rb b/Formula/l/llama.cpp.rb index 8d20fda524131..6623a8d821c7b 100644 --- a/Formula/l/llama.cpp.rb +++ b/Formula/l/llama.cpp.rb @@ -19,13 +19,13 @@ class LlamaCpp < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "7ab32ff555aedd9df502e8187ef4c12d8a8996a9f4d0564d3145d3b8d7abf066" - sha256 cellar: :any, arm64_sonoma: "323094cc4ee06cd29eb3d827aece056d80ce0e5f1c778101fcaf779c7179277f" - sha256 cellar: :any, arm64_ventura: "ef80869f84da914b0772d925de9fa46c27bc6538adbb4790b8c09c54dea8b953" - sha256 cellar: :any, sonoma: "a97391572f5fd9e91f19a84a4e6a2999c4b5314802559cf892d33a1b40475f21" - sha256 cellar: :any, ventura: "64e0e9993e49d8d99d08d55ace66af248fa520f684b2a6a10b9ca2d599fbf0c1" - sha256 cellar: :any_skip_relocation, arm64_linux: "b6bdbe5a3f9cba60cc5881f13e3545d7bec59b5ecdc1649af54d092e6b8d3d42" - sha256 cellar: :any_skip_relocation, x86_64_linux: "475279f8af86160ed5ccca31563481353b3b5c465c581c2334956aea21a96731" + sha256 cellar: :any, arm64_sequoia: "357559f45a8fee286719365cff5c7db67e7816584ef0e4e562a03fdfe9dba3cf" + sha256 cellar: :any, arm64_sonoma: "646f23bb911f091f0fdd03256fdd76ce4a740cc6d1969aa5b18ba8f60ac0948d" + sha256 cellar: :any, arm64_ventura: "e74f06ad796c15728f008e63bf532159e44408d581a2299a277381d5a11763f1" + sha256 cellar: :any, sonoma: "97ff8f5ca8040183ad25de6f2f3617bbe82037e0dbc2730a3d6efe14b84ad1e1" + sha256 cellar: :any, ventura: "10d7e01c1284ade2351e101a0ee2949ca3e9b5084969151a2faeedf5211b2a87" + sha256 cellar: :any_skip_relocation, arm64_linux: "a99df8bf7051146c282c1209da3f1356da4669780859a15179b0b6f40e4e7632" + sha256 cellar: :any_skip_relocation, x86_64_linux: "80cd7db614f2b0f3a58a24a938651977b852949552872e747ed87cb3d8572e3d" end depends_on "cmake" => :build From 90430097a6ce60ac256bfb7858a4f9ef801e5bea Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 20:48:59 +0000 Subject: [PATCH 0742/1364] jc: update 1.25.5 bottle. --- Formula/j/jc.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/j/jc.rb b/Formula/j/jc.rb index 64d99820bbb5d..6d505eb98f51c 100644 --- a/Formula/j/jc.rb +++ b/Formula/j/jc.rb @@ -8,13 +8,13 @@ class Jc < Formula license "MIT" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "0de81faab274ebbfa4289870a9ab9497059ec7a76af0e6f95ce5efc0ca3e9b8e" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "0de81faab274ebbfa4289870a9ab9497059ec7a76af0e6f95ce5efc0ca3e9b8e" - sha256 cellar: :any_skip_relocation, arm64_ventura: "0de81faab274ebbfa4289870a9ab9497059ec7a76af0e6f95ce5efc0ca3e9b8e" - sha256 cellar: :any_skip_relocation, sonoma: "cab2ae0a9da71eb21e2b0a553ced8f03953a277f74bcb97ce58ca207ab752224" - sha256 cellar: :any_skip_relocation, ventura: "cab2ae0a9da71eb21e2b0a553ced8f03953a277f74bcb97ce58ca207ab752224" - sha256 cellar: :any_skip_relocation, arm64_linux: "e7a804ec72d181a9e05a1fcb095e633260203f0c3d6d30d57cc601f789064545" - sha256 cellar: :any_skip_relocation, x86_64_linux: "0de81faab274ebbfa4289870a9ab9497059ec7a76af0e6f95ce5efc0ca3e9b8e" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "d283b769ba50e6f01a9771f33f2df071c8dea6f80ddeb3e73e25cae1ca371ab6" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "d283b769ba50e6f01a9771f33f2df071c8dea6f80ddeb3e73e25cae1ca371ab6" + sha256 cellar: :any_skip_relocation, arm64_ventura: "d283b769ba50e6f01a9771f33f2df071c8dea6f80ddeb3e73e25cae1ca371ab6" + sha256 cellar: :any_skip_relocation, sonoma: "de7d28f7e778744293e40308f5e155665433ce7117ce070b857b9f5c0d17b4a1" + sha256 cellar: :any_skip_relocation, ventura: "de7d28f7e778744293e40308f5e155665433ce7117ce070b857b9f5c0d17b4a1" + sha256 cellar: :any_skip_relocation, arm64_linux: "d283b769ba50e6f01a9771f33f2df071c8dea6f80ddeb3e73e25cae1ca371ab6" + sha256 cellar: :any_skip_relocation, x86_64_linux: "d283b769ba50e6f01a9771f33f2df071c8dea6f80ddeb3e73e25cae1ca371ab6" end depends_on "libyaml" From e68651269b9683f30d2588365eb1d0ac358827f9 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 20:49:03 +0000 Subject: [PATCH 0743/1364] tenv: update 4.6.2 bottle. --- Formula/t/tenv.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/t/tenv.rb b/Formula/t/tenv.rb index c31730c64e927..03fc35ee90084 100644 --- a/Formula/t/tenv.rb +++ b/Formula/t/tenv.rb @@ -12,13 +12,13 @@ class Tenv < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "095ede69e3d74d32267576839572e168f9b9c98489bdc4ae6f69c3902afeaea0" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "095ede69e3d74d32267576839572e168f9b9c98489bdc4ae6f69c3902afeaea0" - sha256 cellar: :any_skip_relocation, arm64_ventura: "095ede69e3d74d32267576839572e168f9b9c98489bdc4ae6f69c3902afeaea0" - sha256 cellar: :any_skip_relocation, sonoma: "2511e98d81309fc37be0304b54cfc44d9c1b7bcca08015cbea0539a7df55b45c" - sha256 cellar: :any_skip_relocation, ventura: "2511e98d81309fc37be0304b54cfc44d9c1b7bcca08015cbea0539a7df55b45c" - sha256 cellar: :any_skip_relocation, arm64_linux: "d8cba15f2557329865c7d849f741829e260b2a00cc9c695841888689be2bf539" - sha256 cellar: :any_skip_relocation, x86_64_linux: "4295099b88e34e39a1ced6dc712ac6e2851492a885e533735e5f3547fc6638c0" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "3e6ce7e9bad09e8bd50992c95b5f8d35ac5b28e8700fee5ac514fa3d779ee9b5" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "3e6ce7e9bad09e8bd50992c95b5f8d35ac5b28e8700fee5ac514fa3d779ee9b5" + sha256 cellar: :any_skip_relocation, arm64_ventura: "3e6ce7e9bad09e8bd50992c95b5f8d35ac5b28e8700fee5ac514fa3d779ee9b5" + sha256 cellar: :any_skip_relocation, sonoma: "5b1b9b245f934dffae30508c0379a5c2bd32af1178a490b1dedd3dcd1c3920a3" + sha256 cellar: :any_skip_relocation, ventura: "5b1b9b245f934dffae30508c0379a5c2bd32af1178a490b1dedd3dcd1c3920a3" + sha256 cellar: :any_skip_relocation, arm64_linux: "9bb14dcad2a77055f27f37602e94053a2778063390e7343321543059c08c936b" + sha256 cellar: :any_skip_relocation, x86_64_linux: "24a700c655d9d5e746c6b3aa2a7f6919e1125a35a937ed091d77e0ce82f3d487" end depends_on "go" => :build From 0b499a739713d939a48759cf895c75d710e4f799 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 20:49:05 +0000 Subject: [PATCH 0744/1364] xk6: update 0.19.3 bottle. --- Formula/x/xk6.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/x/xk6.rb b/Formula/x/xk6.rb index c725362525828..5da198cd98ae0 100644 --- a/Formula/x/xk6.rb +++ b/Formula/x/xk6.rb @@ -12,12 +12,12 @@ class Xk6 < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "b05a9d6fe9a247dbcf2cba5a0a8e2fe1eaea1197198f9e3efed7a41e935cbe1c" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "b05a9d6fe9a247dbcf2cba5a0a8e2fe1eaea1197198f9e3efed7a41e935cbe1c" - sha256 cellar: :any_skip_relocation, arm64_ventura: "b05a9d6fe9a247dbcf2cba5a0a8e2fe1eaea1197198f9e3efed7a41e935cbe1c" - sha256 cellar: :any_skip_relocation, sonoma: "a2d5e3b42e6c29a404211e6e1691fb032ab2e14aab8628fab10fc437c5d6fd60" - sha256 cellar: :any_skip_relocation, ventura: "a2d5e3b42e6c29a404211e6e1691fb032ab2e14aab8628fab10fc437c5d6fd60" - sha256 cellar: :any_skip_relocation, x86_64_linux: "9394c2e3bd325835bcd1d0eb8cd8ee9d0413fb381c945d62a622bd1c53867e16" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "0da126ae5c448fc6a25b3dbec8f9129fb6a4a406e911c5ea7fdb2b463c0c5357" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "0da126ae5c448fc6a25b3dbec8f9129fb6a4a406e911c5ea7fdb2b463c0c5357" + sha256 cellar: :any_skip_relocation, arm64_ventura: "0da126ae5c448fc6a25b3dbec8f9129fb6a4a406e911c5ea7fdb2b463c0c5357" + sha256 cellar: :any_skip_relocation, sonoma: "76a469f970cdcd8554fe478843337fc65bd1c229522b4dd5c08e9584a304074f" + sha256 cellar: :any_skip_relocation, ventura: "76a469f970cdcd8554fe478843337fc65bd1c229522b4dd5c08e9584a304074f" + sha256 cellar: :any_skip_relocation, x86_64_linux: "a308d515bcd1e4f59dd392f705e9cf36dbf8526bad6d3aec0b9e7af56867f46e" end depends_on "go" From a0ead8740000071781d2b0aecaacdfc7704813b8 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 20:49:06 +0000 Subject: [PATCH 0745/1364] fonttools: update 4.58.0 bottle. --- Formula/f/fonttools.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/f/fonttools.rb b/Formula/f/fonttools.rb index d82a87895f7c5..8ea0b350b4335 100644 --- a/Formula/f/fonttools.rb +++ b/Formula/f/fonttools.rb @@ -9,13 +9,13 @@ class Fonttools < Formula head "https://github.com/fonttools/fonttools.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "0bcab45edee79e069d02ee940ec0f75956ec84bffedaf905c9f9bab1a3b12fe4" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "6d998181d00fc650f37eaba9b60e586c0d14326370de1efde8232428635cead3" - sha256 cellar: :any_skip_relocation, arm64_ventura: "a0bc508444fe4d4fac252804e51e1126c3c390a8e0bf37b38f20fd96e1ed6d96" - sha256 cellar: :any_skip_relocation, sonoma: "9b83bfbf26a37cab5243519b0efc97142a737a8b1f225ffd23b3a17e585bb11c" - sha256 cellar: :any_skip_relocation, ventura: "09eed9216730c07039bcbd44277e51a3d3440665f03a8d394b3c67c65bb96496" - sha256 cellar: :any_skip_relocation, arm64_linux: "77f83536bf774f78ff15cf658ad545acf8c167763bbeed5ab01ef2fa6d7680b7" - sha256 cellar: :any_skip_relocation, x86_64_linux: "9aa3d1366e4830060a1ba3dc81238281b45c9ca517d6a7360748c61b757c7ee9" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "76a1a9680f6bcfab95e385afae9ac6162142826bef7ffc989d005bbf944ad7df" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "a0abbdcc42053b7c7d8b0c651912ec59666e1a2e6b6a7a6c3ad6166360681f46" + sha256 cellar: :any_skip_relocation, arm64_ventura: "eba7206836e65baae244be6df16b3f57c5a1741d57e08a8df6187d80d64f5e09" + sha256 cellar: :any_skip_relocation, sonoma: "871424abb8cc936572afdd002060e594a35266a1dca75163cb0029117da7d58d" + sha256 cellar: :any_skip_relocation, ventura: "0f8f9eed4f7bb5a960ffeaad9410f4502d005089818c65bf0579726a95070600" + sha256 cellar: :any_skip_relocation, arm64_linux: "2abf1e12789897aaed9e64ab22d7305af5053f25f62650a2e52d3a0a31740a21" + sha256 cellar: :any_skip_relocation, x86_64_linux: "a136b349acac3ac28b172d5bf3185247380e30a67ff249df2361241c42d1f364" end depends_on "python@3.13" From 88b8d9b64ea649f526c7f67d1fa53fc36357d41a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 20:49:14 +0000 Subject: [PATCH 0746/1364] dua-cli: update 2.30.1 bottle. --- Formula/d/dua-cli.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/d/dua-cli.rb b/Formula/d/dua-cli.rb index f29429b5f51f5..65f8e92f4d743 100644 --- a/Formula/d/dua-cli.rb +++ b/Formula/d/dua-cli.rb @@ -6,13 +6,13 @@ class DuaCli < Formula license "MIT" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "1b528c9dffdcbc18ae5049aef0673938dc00e69367d30105ce86e558cb191479" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "0ac15f4abc82f154d03f8e384da9ce1af37e36f71f84136bf157c92b650b8c5e" - sha256 cellar: :any_skip_relocation, arm64_ventura: "fa3b62f2e9141eb656bc8359d59223c9b317d681759d15f7348523c733900ef9" - sha256 cellar: :any_skip_relocation, sonoma: "a4dadef8ebfb0cefe0b24968ed83b472738f481c5f4ff80eb9ed7600d9b3f7d6" - sha256 cellar: :any_skip_relocation, ventura: "f67e8a8625f1400c26d60ff0b98b895d2054960c1fe4e5d8ec21d5cd0057cc4d" - sha256 cellar: :any_skip_relocation, arm64_linux: "29d03a6054e45da5e5e48b6e76faf2597990cfd19e8e51be57b30e808d3a50f9" - sha256 cellar: :any_skip_relocation, x86_64_linux: "572a6d480fa4c74ebdaf6e22138573d94f2169e49717b4441e9384e3a0e14c45" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "757cc4d0c36a61b8997cafc441891febe9aebfab9c31061da3bb6eeee57ed6b6" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "0c0cafb929368a37b064bbe654badfec69e81591bc64fc709a884206f4ec5201" + sha256 cellar: :any_skip_relocation, arm64_ventura: "ba47ae7e44a346ed1e8e93d10a4ddb9e231105ed277416c555543c42d1d0a104" + sha256 cellar: :any_skip_relocation, sonoma: "8092bcc37112ec20f690a9e41bbf8712d7ce85c3b63d33d9bbd4096c2e9d0ade" + sha256 cellar: :any_skip_relocation, ventura: "87ed8692edf0f3ed5e72ea186dd201f1fadb8c81ed0730878e9ed1154f4f4505" + sha256 cellar: :any_skip_relocation, arm64_linux: "f0634654442c4307b6cbdf27f43736b8f407848294163718a68c7cdaf8eaed16" + sha256 cellar: :any_skip_relocation, x86_64_linux: "6222a1aa0caf02ceba9a9786a816bb99f4291e39507b38d399c4fc5b1b2ed2ce" end depends_on "rust" => :build From cab92cb1537677522752a5fc8dd898c5f6856921 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 20:49:34 +0000 Subject: [PATCH 0747/1364] tmuxai: add 1.0.3 bottle. --- Formula/t/tmuxai.rb | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Formula/t/tmuxai.rb b/Formula/t/tmuxai.rb index 245a6f1561b5a..4a9d1f381ee76 100644 --- a/Formula/t/tmuxai.rb +++ b/Formula/t/tmuxai.rb @@ -5,6 +5,15 @@ class Tmuxai < Formula sha256 "731bd76515d3ddef1d8c9582c5e35fb382c3137a97b72802c4ea8b1da859c97e" license "Apache-2.0" + bottle do + sha256 cellar: :any_skip_relocation, arm64_sequoia: "55d4a8c91e2772bf0159ed9f63a255087d1e21dc3cf12ede72887b6e17adc04e" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "55d4a8c91e2772bf0159ed9f63a255087d1e21dc3cf12ede72887b6e17adc04e" + sha256 cellar: :any_skip_relocation, arm64_ventura: "55d4a8c91e2772bf0159ed9f63a255087d1e21dc3cf12ede72887b6e17adc04e" + sha256 cellar: :any_skip_relocation, sonoma: "fc419d5dcb50402bf071f00f9112b68da0c4ae2b4e4f5357e0ddbfc99268352e" + sha256 cellar: :any_skip_relocation, ventura: "fc419d5dcb50402bf071f00f9112b68da0c4ae2b4e4f5357e0ddbfc99268352e" + sha256 cellar: :any_skip_relocation, x86_64_linux: "77e46a4397400f17067529630e7f0761fb13ed7a9cfce5f69e27e2317f2f84df" + end + depends_on "go" => :build depends_on "tmux" From d4cd7995a45e8826e980d4f97e90e31cbd81745d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 11:24:17 +0000 Subject: [PATCH 0748/1364] tfsort 0.4.0 tfsort: update testdata location Signed-off-by: Rui Chen tfsort: update test Signed-off-by: Rui Chen --- Formula/t/tfsort.rb | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Formula/t/tfsort.rb b/Formula/t/tfsort.rb index a2193e7f0e9d9..9fbf50dd24310 100644 --- a/Formula/t/tfsort.rb +++ b/Formula/t/tfsort.rb @@ -1,8 +1,8 @@ class Tfsort < Formula desc "CLI to sort Terraform variables and outputs" homepage "https://github.com/AlexNabokikh/tfsort" - url "https://github.com/AlexNabokikh/tfsort/archive/refs/tags/v0.3.0.tar.gz" - sha256 "0fb2952c52d1f13fbf2a939d5bdd80b6bea3943f94f587ca73b04c6a107ab7c3" + url "https://github.com/AlexNabokikh/tfsort/archive/refs/tags/v0.4.0.tar.gz" + sha256 "b1efeee957a11314aa6dfe2cb9f6ae3e8ee8bed18351daaf7348b13bbd818d4c" license "Apache-2.0" head "https://github.com/AlexNabokikh/tfsort.git", branch: "master" @@ -22,14 +22,13 @@ def install system "go", "build", *std_go_args(ldflags:) # install testdata - pkgshare.install "tsort/testdata" + pkgshare.install "internal/hclsort/testdata" end test do cp_r pkgshare/"testdata/.", testpath - output = shell_output("#{bin}/tfsort invalid.tf 2>&1", 1) - assert_match "file invalid.tf is not a valid Terraform file", output + assert_empty shell_output("#{bin}/tfsort invalid.tf 2>&1") system bin/"tfsort", "valid.tofu" assert_equal (testpath/"expected.tofu").read, (testpath/"valid.tofu").read From eb4fb75a1756e2865d3d0ed1807ddcedce6807ac Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 22:49:49 +0000 Subject: [PATCH 0749/1364] ast-grep 0.38.0 --- Formula/a/ast-grep.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/a/ast-grep.rb b/Formula/a/ast-grep.rb index e7119748fa4a8..b29d521b6e9b0 100644 --- a/Formula/a/ast-grep.rb +++ b/Formula/a/ast-grep.rb @@ -1,8 +1,8 @@ class AstGrep < Formula desc "Code searching, linting, rewriting" homepage "https://github.com/ast-grep/ast-grep" - url "https://github.com/ast-grep/ast-grep/archive/refs/tags/0.37.0.tar.gz" - sha256 "e14b1bae8f81ceb10151e674992e914c39bac026ff89a53db1f3b90bda3c7ca8" + url "https://github.com/ast-grep/ast-grep/archive/refs/tags/0.38.0.tar.gz" + sha256 "1377cfcaaf0d42c9cb757ab92a91b2fd84404944b194030fda7b4d5180d6fb68" license "MIT" head "https://github.com/ast-grep/ast-grep.git", branch: "main" From 14dfc4f9dc3ec63038ef013eb3617fb8ae9f2c24 Mon Sep 17 00:00:00 2001 From: botantony Date: Sun, 11 May 2025 00:51:54 +0200 Subject: [PATCH 0750/1364] btop 1.4.3 --- Formula/b/btop.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/b/btop.rb b/Formula/b/btop.rb index a494263478e44..3bee1e957593f 100644 --- a/Formula/b/btop.rb +++ b/Formula/b/btop.rb @@ -1,8 +1,8 @@ class Btop < Formula desc "Resource monitor. C++ version and continuation of bashtop and bpytop" homepage "https://github.com/aristocratos/btop" - url "https://github.com/aristocratos/btop/archive/refs/tags/v1.4.2.tar.gz" - sha256 "c7c0fb625af269d47eed926784900c8e154fdf71703f4325cffdf26357338c85" + url "https://github.com/aristocratos/btop/archive/refs/tags/v1.4.3.tar.gz" + sha256 "81b133e59699a7fd89c5c54806e16452232f6452be9c14b3a634122e3ebed592" license "Apache-2.0" head "https://github.com/aristocratos/btop.git", branch: "main" From 09931a19c60accf94662eb094f1fe3b606cb0945 Mon Sep 17 00:00:00 2001 From: botantony Date: Sun, 11 May 2025 00:52:19 +0200 Subject: [PATCH 0751/1364] autobump: add btop Signed-off-by: botantony --- .github/autobump.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/autobump.txt b/.github/autobump.txt index b34d91fd5f5b5..ebcb2fb51a732 100644 --- a/.github/autobump.txt +++ b/.github/autobump.txt @@ -344,6 +344,7 @@ broot brotli brpc bruno-cli +btop btrfs-progs bubblewrap buf From 9a5042aee731e55c4db637f1289f07b73db01804 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 23:07:03 +0000 Subject: [PATCH 0752/1364] node-sass 1.88.0 --- Formula/n/node-sass.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/n/node-sass.rb b/Formula/n/node-sass.rb index 7fba9e1317151..f330d4a08d325 100644 --- a/Formula/n/node-sass.rb +++ b/Formula/n/node-sass.rb @@ -1,8 +1,8 @@ class NodeSass < Formula desc "JavaScript implementation of a Sass compiler" homepage "https://github.com/sass/dart-sass" - url "https://registry.npmjs.org/sass/-/sass-1.87.0.tgz" - sha256 "ee830f79071bcaf00c47d21366b25490eb7cfb1e024bb72106813b6060412f0e" + url "https://registry.npmjs.org/sass/-/sass-1.88.0.tgz" + sha256 "9e58589ea4c64b2a4d62b7732a07358ed5be3a3057c11e0e26ee2f514757da40" license "MIT" bottle do From b863e3d88abab7cec5ad7b8c1b30ddff6958c349 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 23:12:21 +0000 Subject: [PATCH 0753/1364] s3-backer 2.1.4 --- Formula/s/s3-backer.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/s/s3-backer.rb b/Formula/s/s3-backer.rb index a913668dd1521..4a3301778a131 100644 --- a/Formula/s/s3-backer.rb +++ b/Formula/s/s3-backer.rb @@ -2,8 +2,8 @@ class S3Backer < Formula desc "FUSE-based single file backing store via Amazon S3" homepage "https://github.com/archiecobbs/s3backer" # Release distributions listed at https://github.com/archiecobbs/s3backer/wiki/Downloads - url "https://s3.amazonaws.com/archie-public/s3backer/s3backer-2.1.3.tar.gz" - sha256 "b49a7cae66bc29e8104db889e7e63137748d4a3442d88ebad9fffa4705808a81" + url "https://s3.amazonaws.com/archie-public/s3backer/s3backer-2.1.4.tar.gz" + sha256 "0451471209cc872708e91b2784a4a1b9f3ca44c89a7bffb8f6145aed28c941e7" license "GPL-2.0-or-later" bottle do From be266e47be0711c65c52c8d031025bd42b39a06b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 23:14:15 +0000 Subject: [PATCH 0754/1364] spicetify-cli 2.40.7 --- Formula/s/spicetify-cli.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/s/spicetify-cli.rb b/Formula/s/spicetify-cli.rb index 6deb95986a548..34c46e394a857 100644 --- a/Formula/s/spicetify-cli.rb +++ b/Formula/s/spicetify-cli.rb @@ -1,8 +1,8 @@ class SpicetifyCli < Formula desc "Command-line tool to customize Spotify client" homepage "https://spicetify.app/" - url "https://github.com/spicetify/cli/archive/refs/tags/v2.40.6/v2.40.6.tar.gz" - sha256 "ca4e0c24f7077d9a43727ad63040d317ae9be39b167cdad010ed347ac28b2fd6" + url "https://github.com/spicetify/cli/archive/refs/tags/v2.40.7/v2.40.7.tar.gz" + sha256 "1d80637127ba66577e53014cf794d069346cf8051377d4085ce8d90a4ed44f71" license "LGPL-2.1-only" head "https://github.com/spicetify/cli.git", branch: "master" From 88aa70087a52a9e4a197c4af01b76c9f0e557928 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 01:19:10 +0000 Subject: [PATCH 0755/1364] btop: update 1.4.3 bottle. --- Formula/b/btop.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/b/btop.rb b/Formula/b/btop.rb index 3bee1e957593f..f2c4459874ada 100644 --- a/Formula/b/btop.rb +++ b/Formula/b/btop.rb @@ -7,13 +7,13 @@ class Btop < Formula head "https://github.com/aristocratos/btop.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "f54aa49bcb59a1631a295dbf1cf90d487e14f429fac1e208aed4ad906e7cb69c" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "b3b1d47b80a73e509b6a045a32cf13ed94b948193a2de93483bafa7613cf78af" - sha256 cellar: :any_skip_relocation, arm64_ventura: "379d95087b0a3fa4665848fa1a8276e55c891ed6c2cb6ed50a7b540f124ba2c0" - sha256 cellar: :any_skip_relocation, sonoma: "9dfee36207403d9197735cbd717d5476c7bb653d41a1e7e3f90b429a617ef753" - sha256 cellar: :any_skip_relocation, ventura: "39146fc5dbfbfaa025e06f07acc70c048d0336ceadf50527880cf3aa9bf712c4" - sha256 cellar: :any_skip_relocation, arm64_linux: "b0710e9ec2d181e4e072155499178432d52a5c42afd26674b066e693c62a24e7" - sha256 cellar: :any_skip_relocation, x86_64_linux: "512af0dc52a737d26afe93a056f5eb3dad2b17e1be4e014178c218c15577c70e" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "489cced3f7450b6cea1f2261a91ecfbdf1bac5d34345a048493eb3dddeacc851" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "b96231c24642d19ff74812f602d6bc01c968feb68bd02cdd5e2989ef757fd0c0" + sha256 cellar: :any_skip_relocation, arm64_ventura: "f915571ec57b88e6cf019b23f29bddb8dbe4826cfac1f5497936bbca0d1d4b15" + sha256 cellar: :any_skip_relocation, sonoma: "807770d8ad61da28c1383494f66c464d003d3cf78cb0cc0caa84d34c5b384582" + sha256 cellar: :any_skip_relocation, ventura: "9c59b21f9b75682d4643d9d3feddc7c0d3e22f64bbca95ffa350520242246e1d" + sha256 cellar: :any_skip_relocation, arm64_linux: "1affce02155f1b2919633db263d0e3e4934148a514c7bcece6c1289da20d2a23" + sha256 cellar: :any_skip_relocation, x86_64_linux: "97214938f020732369eb717dd8f967519d2131903f3cc10dd0041e6d1c0e1773" end depends_on "lowdown" => :build From b40cdfd2ba320493cdb36cd0b1a28174d719e875 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 01:23:02 +0000 Subject: [PATCH 0756/1364] node-sass: update 1.88.0 bottle. --- Formula/n/node-sass.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/n/node-sass.rb b/Formula/n/node-sass.rb index f330d4a08d325..fa0268b50e920 100644 --- a/Formula/n/node-sass.rb +++ b/Formula/n/node-sass.rb @@ -6,13 +6,13 @@ class NodeSass < Formula license "MIT" bottle do - sha256 arm64_sequoia: "88f940caf643d209b6e3c99944bafbcda5780688ddfd7ac15081c82f20bb2c1d" - sha256 arm64_sonoma: "52210a3b4730d4fae586b530af958ea1de474755d55ddec34afa70a15f7dd1d1" - sha256 arm64_ventura: "0c5ee075755227b7815721187cbec2a7403286d6c1b782f7b54af813260b2151" - sha256 sonoma: "dce846dd3df911f30142f3202be5eb0c490e85e23234a0b567fc5fa9d1cbe6db" - sha256 ventura: "e6ee4d4062a9178b06736bd8ea1646e0b97b600161292f0795703c40741a2fa1" - sha256 cellar: :any_skip_relocation, arm64_linux: "771939fe14146b5e642d6e616532ce234a239ba8368c2badb898399a28b8eeb3" - sha256 cellar: :any_skip_relocation, x86_64_linux: "3b982ccd48ba47429ea7c2db9e73ef88365c69c9a6b75c375bb30ac8109f9917" + sha256 arm64_sequoia: "9dc25f426b1655b48f60b8002b6838263f4c9ea271cd6d63b5d4b323190d19a4" + sha256 arm64_sonoma: "e8c398374be44a1bd27435bf607e25c52c73d7e54fe16cb53f60353357fa0fd1" + sha256 arm64_ventura: "bf6a7c1bcb90177fee697e4e3128efc147ebe186ba2c02ed795f232f82828623" + sha256 sonoma: "5ea2a19118f888cf4a38832367689651726e9f63a964a1d257e9a6111f8e7736" + sha256 ventura: "f2f40d4ef6622d78f4e780b547753a40d409079329395e4c8a4ff0f253384e6b" + sha256 cellar: :any_skip_relocation, arm64_linux: "922580385a4d68c74c5de7f38311d402682185bcfb1445e826cf6c7eed6c3a09" + sha256 cellar: :any_skip_relocation, x86_64_linux: "e179f3a0e920f9808ed203f902664dc58eddf305f6b977711aeafc71f156db25" end depends_on "node" From d4753266619d33c5b857d345beca46ed7ed7a1c0 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Sun, 11 May 2025 01:23:12 +0000 Subject: [PATCH 0757/1364] cpdf: update 2.8.1 bottle. --- Formula/c/cpdf.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/c/cpdf.rb b/Formula/c/cpdf.rb index 2175752cc0e9f..847c049da7500 100644 --- a/Formula/c/cpdf.rb +++ b/Formula/c/cpdf.rb @@ -11,6 +11,7 @@ class Cpdf < Formula sha256 cellar: :any_skip_relocation, arm64_ventura: "91772514307f75224ff0558fcc18999cf76cb7603851a5f94258e272bfb3a5a0" sha256 cellar: :any_skip_relocation, sonoma: "5e63b9e7612e18c9c577aa502c7be73ee534e46650c51911372ab8ec032e0b8c" sha256 cellar: :any_skip_relocation, ventura: "ede4654c045aea5a2aff498c6bd77f3ff8d284df6c7dfc5c5ed0bd491c96d188" + sha256 cellar: :any_skip_relocation, arm64_linux: "b190429b65b7f9dec51957e6f876901572d403a056db2bb37939b64b50d2df0f" sha256 cellar: :any_skip_relocation, x86_64_linux: "4bcaa237cb5ad235f05cab8067bac39d4a57aa49195462872f409195a744b4aa" end From 11cfc736c0e4a74748d954ea7d6de108c7105ec0 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 01:23:16 +0000 Subject: [PATCH 0758/1364] s3-backer: update 2.1.4 bottle. --- Formula/s/s3-backer.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/s/s3-backer.rb b/Formula/s/s3-backer.rb index 4a3301778a131..64702b78987c9 100644 --- a/Formula/s/s3-backer.rb +++ b/Formula/s/s3-backer.rb @@ -7,8 +7,8 @@ class S3Backer < Formula license "GPL-2.0-or-later" bottle do - sha256 cellar: :any_skip_relocation, arm64_linux: "ee382388c60623851403b783c23c973120a0a0e568ab99f9dcff7b1068d65d5b" - sha256 cellar: :any_skip_relocation, x86_64_linux: "60886e9f4d464c3050a711c732717fc833fa1364b60acbe1f07a15e2d13e8728" + sha256 cellar: :any_skip_relocation, arm64_linux: "54509b12da98f4375896e2914a44162745f0d629163de99578080af5976bbf34" + sha256 cellar: :any_skip_relocation, x86_64_linux: "0e0cff205bf0b253dc8dfc5127acf9db4375fc92d1d076750261c547d6eefc2f" end depends_on "pkgconf" => :build From aa8d2a300b4f72a6ed1983fb711a509e241d31a3 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 01:23:29 +0000 Subject: [PATCH 0759/1364] spicetify-cli: update 2.40.7 bottle. --- Formula/s/spicetify-cli.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/s/spicetify-cli.rb b/Formula/s/spicetify-cli.rb index 34c46e394a857..0b4c14d1d16d1 100644 --- a/Formula/s/spicetify-cli.rb +++ b/Formula/s/spicetify-cli.rb @@ -7,12 +7,12 @@ class SpicetifyCli < Formula head "https://github.com/spicetify/cli.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "813c1dc7dabc80d6489f2793f89551e0d17be26caf7254d0ddb34338228e49da" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "813c1dc7dabc80d6489f2793f89551e0d17be26caf7254d0ddb34338228e49da" - sha256 cellar: :any_skip_relocation, arm64_ventura: "813c1dc7dabc80d6489f2793f89551e0d17be26caf7254d0ddb34338228e49da" - sha256 cellar: :any_skip_relocation, sonoma: "f74c649b8fa0329ca7dd043d199bc1acee34f547d1ff96c7116ec73e1a43838e" - sha256 cellar: :any_skip_relocation, ventura: "f74c649b8fa0329ca7dd043d199bc1acee34f547d1ff96c7116ec73e1a43838e" - sha256 cellar: :any_skip_relocation, x86_64_linux: "21f423d4be7a19d3c8f1da9336c602ad853ccf57ca601f6d1b6eb82db3741be9" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "384628f34a946747e55d9de2dbf23153d090db9b368444d0b43bfbf83ba34eb0" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "384628f34a946747e55d9de2dbf23153d090db9b368444d0b43bfbf83ba34eb0" + sha256 cellar: :any_skip_relocation, arm64_ventura: "384628f34a946747e55d9de2dbf23153d090db9b368444d0b43bfbf83ba34eb0" + sha256 cellar: :any_skip_relocation, sonoma: "12fe28b9fa3d83a3a7d3b0a383d931085dc355b88345330e35b99f94f9f44d46" + sha256 cellar: :any_skip_relocation, ventura: "12fe28b9fa3d83a3a7d3b0a383d931085dc355b88345330e35b99f94f9f44d46" + sha256 cellar: :any_skip_relocation, x86_64_linux: "1dd17c77a278506beaf1da3a0d167fd711d2f2f19cb3c3dcbe83182d39eda6f0" end depends_on "go" => :build From b691053428d11691e5c9efc7a960e248080a8ec6 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Sun, 11 May 2025 01:23:31 +0000 Subject: [PATCH 0760/1364] hellwal: update 1.0.4 bottle. --- Formula/h/hellwal.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/h/hellwal.rb b/Formula/h/hellwal.rb index 382d4673852a6..a5fc796a49c1e 100644 --- a/Formula/h/hellwal.rb +++ b/Formula/h/hellwal.rb @@ -11,6 +11,7 @@ class Hellwal < Formula sha256 cellar: :any_skip_relocation, arm64_ventura: "232ae8888f812cc13028e638d484ce639187362e35f257ca73b4907c8682a2cd" sha256 cellar: :any_skip_relocation, sonoma: "ad61a0ce7e32d075464eaeb3eaadd263eadc50c1d03b9df920da1e8cbf81a72a" sha256 cellar: :any_skip_relocation, ventura: "419049de2bda47e54b8a8ab224c5ecdab29306522541e72e6cc43eb217bb8c1e" + sha256 cellar: :any_skip_relocation, arm64_linux: "fd029a9bca7810dfca9c45300f153a735d3ce5e7c93a2e532e2cbe4cd65a61f6" sha256 cellar: :any_skip_relocation, x86_64_linux: "6b23953290d7eb3c7c73158227ef69b2517986868324ec96ac69c0e71c75e207" end From 1ba843f5782aca42a7a2c8e1f47c891491b7b413 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Sun, 11 May 2025 01:23:55 +0000 Subject: [PATCH 0761/1364] pixd: update 1.0.0 bottle. --- Formula/p/pixd.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/p/pixd.rb b/Formula/p/pixd.rb index 41cb4c5920b6a..212910f426975 100644 --- a/Formula/p/pixd.rb +++ b/Formula/p/pixd.rb @@ -11,6 +11,7 @@ class Pixd < Formula sha256 cellar: :any_skip_relocation, arm64_ventura: "04df14dafa37644469c807bd9d00fe86ff95186bb8e068fcbc01bc7b0ce95acb" sha256 cellar: :any_skip_relocation, sonoma: "4ac1c7187b65cde2b4061710214b5a004b2f05f1d692b69d042327b9d9b319eb" sha256 cellar: :any_skip_relocation, ventura: "f04e390bac553c784c3cc78f5b5a3113fe23c42e9ead74cd886014e87d72bb96" + sha256 cellar: :any_skip_relocation, arm64_linux: "7f986efd6ff8664144233f39b4f3f2118b97b2387ee1373ad66e538c48a666d7" sha256 cellar: :any_skip_relocation, x86_64_linux: "fa387cb2dd091d0b261fbe63ff989362f7f9269a0565f68ff1fe5acfceb16167" end From 1191474bad91f42438d4ee7e67ec7afce7116471 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Sun, 11 May 2025 01:27:07 +0000 Subject: [PATCH 0762/1364] pieces-cli: update 1.14.0 bottle. --- Formula/p/pieces-cli.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/p/pieces-cli.rb b/Formula/p/pieces-cli.rb index c15385bf6889a..8d3d375b835dd 100644 --- a/Formula/p/pieces-cli.rb +++ b/Formula/p/pieces-cli.rb @@ -21,6 +21,7 @@ class PiecesCli < Formula sha256 cellar: :any, arm64_ventura: "093dff983a32c3a28d2d5602396222f2a373aa195fe647f281822f8b76c73c21" sha256 cellar: :any, sonoma: "4a7f8b42c8f1cd1c9dbc5478aec25d9daeec2527a42f0a6def51805a49fd4655" sha256 cellar: :any, ventura: "1d751ae27246eeacc08b539951dffb077c72f9eabbd8476139bb475ede98ebf5" + sha256 cellar: :any_skip_relocation, arm64_linux: "e95c04f61413041db78d96bb5420d465119792587fcd625d7a3882755b45e32e" sha256 cellar: :any_skip_relocation, x86_64_linux: "9ee24ddbabab556682a2c0068b146f156ef3b7d25ad67946bcc5fb2ce0780f4d" end From e5059586f38a6a9cc9304f427491d40e27bc6e45 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 01:29:39 +0000 Subject: [PATCH 0763/1364] ast-grep: update 0.38.0 bottle. --- Formula/a/ast-grep.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/a/ast-grep.rb b/Formula/a/ast-grep.rb index b29d521b6e9b0..f984078385958 100644 --- a/Formula/a/ast-grep.rb +++ b/Formula/a/ast-grep.rb @@ -7,13 +7,13 @@ class AstGrep < Formula head "https://github.com/ast-grep/ast-grep.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "55627b03f2793e676ccbc683b5ee4e98d632c4d81b12f299c12bda1438db0a16" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "5502731b6d2812e493a00057fda8cc37a1084ea4ea8d879519e41058bd552a21" - sha256 cellar: :any_skip_relocation, arm64_ventura: "6b054ccefb691d875027b99ff3872c7e25a246d3c9d50885b705fd7f9d82f8c3" - sha256 cellar: :any_skip_relocation, sonoma: "a95777f3ab60ba5d7c527210ec5dfe26d4debf671963603120a3ab403e984a70" - sha256 cellar: :any_skip_relocation, ventura: "4e6251ca7464dd5f0d0f333e0b635e8dcd1c367c26d04523a84903555f1a7503" - sha256 cellar: :any_skip_relocation, arm64_linux: "412eb6526c2e5733d8d6c423703f282243795ba5174dcb890ffe6be870ecfd0a" - sha256 cellar: :any_skip_relocation, x86_64_linux: "73c63217b8bf69634dd52f75cb8cb797e42ca352578634bdce9fe82d437d3b6b" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "36a215992af0c44e45c0f90351c5acc90bc4b62bd22409b1a972f42e58e0b2ff" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "13263be7447662bbe2c14f8ce41e3fc49608099f7620d3b4a6820a733511ad8e" + sha256 cellar: :any_skip_relocation, arm64_ventura: "17be0a136f276d11549ccd7b0f5599184f241136c2120a4d288bb904cc427d04" + sha256 cellar: :any_skip_relocation, sonoma: "2452cbfb4945c18a3671b8fcabee4c7b51d463dc1133a460c860fd5775caac7e" + sha256 cellar: :any_skip_relocation, ventura: "0e0ee05b1d44a1f52698143c95d694b55fd6ffef46f826d7a9ec08c296352fff" + sha256 cellar: :any_skip_relocation, arm64_linux: "a85d66ae3994b62a3f0dc3d178b5c2dd0d896b8331d912614dcfdb2cf5313b9b" + sha256 cellar: :any_skip_relocation, x86_64_linux: "4cf1ddc2d47731163d3d40bb1ddc197cf805e1ce4e524d8cd88eac7ae9bf0d1e" end depends_on "rust" => :build From 65b0cd8777cf3121de1f23e362461de3a7c6e46e Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Sun, 11 May 2025 01:31:22 +0000 Subject: [PATCH 0764/1364] dbhash: update 3.49.2 bottle. --- Formula/d/dbhash.rb | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Formula/d/dbhash.rb b/Formula/d/dbhash.rb index 8bb0931ac0a00..b14d6d7379c1e 100644 --- a/Formula/d/dbhash.rb +++ b/Formula/d/dbhash.rb @@ -13,13 +13,14 @@ class Dbhash < Formula no_autobump! because: :incompatible_version_format bottle do - sha256 cellar: :any, arm64_sequoia: "88764608e548191d287cbb49c35a1a7a15a74d3101384056a4056228a953df47" - sha256 cellar: :any, arm64_sonoma: "fd18905e491cf4908799fba763a5ef502d1cec96c30a3e88ab7b0e4061bcc91d" - sha256 cellar: :any, arm64_ventura: "06e32bde8bb0c06631d5255c52684e8f0f414e1b402805f48341f00338e0d417" - sha256 cellar: :any, sonoma: "91f666f5d3eb31817d0982b8ada162d6c757521368f68da458c0a299daa70a1a" - sha256 cellar: :any, ventura: "c16609885320710ae400fe53ea69225bc69bad698f9d08d6791b26293111ce55" - sha256 cellar: :any_skip_relocation, arm64_linux: "9b608c5cf65092c411815c0c8005bba6dfa860686a665e452e0705a0ef8794ef" - sha256 cellar: :any_skip_relocation, x86_64_linux: "ab54fca54a347b624a5c6d67c9964d547bf815a503264f854986e4b053c8a936" + sha256 cellar: :any, arm64_sequoia: "ae28f827d09d908f3da16c9b1a12433426a97dc60d0ac81c1911889ac927be36" + sha256 cellar: :any, arm64_sonoma: "2ace67ff9b9fb828fea069f75e3f145f34a75812064d5a2d4f2cab8f207645de" + sha256 cellar: :any, arm64_ventura: "87ba3e3253e6cc53ee7e85080ec87479ca03ab731f7016e9078678791299bd51" + sha256 cellar: :any, sequoia: "2c287f8b1f91100678360da7d0bcaf3104184abfa988a4f14898d0d46b0c49ed" + sha256 cellar: :any, sonoma: "1d86fbd5e946a7350314e97f83d11391b6fda2057847e6becde9e2794781eabd" + sha256 cellar: :any, ventura: "3cc8606a4715a6fe538c30e706f3ed3623abc9e717d5de82e1798cd85bcc474c" + sha256 cellar: :any_skip_relocation, arm64_linux: "d8230ee5aafbb5843b8b18bd00eedf66192bd21cc0c52eaca7ea5204417b5641" + sha256 cellar: :any_skip_relocation, x86_64_linux: "9c1b5ebde8a417626e5e7c5be1f91779587fa3e59f19b5fdd521a6c76be838a4" end uses_from_macos "tcl-tk" => :build From e0f06f704992e360230066012573996d8c0828de Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Sun, 11 May 2025 01:31:22 +0000 Subject: [PATCH 0765/1364] lemon: update 3.49.2 bottle. --- Formula/l/lemon.rb | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Formula/l/lemon.rb b/Formula/l/lemon.rb index 8786a68c87794..7b335b3d7bea6 100644 --- a/Formula/l/lemon.rb +++ b/Formula/l/lemon.rb @@ -13,13 +13,14 @@ class Lemon < Formula no_autobump! because: :incompatible_version_format bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "c14de55cd3a85bc71e62f7cdc37577a353250190103d0e5cbd49e8a753e6c995" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "a064a8eb15e229554511dfa3c5dd0603841fa1eaf1fb94e7f823fca54c73bed9" - sha256 cellar: :any_skip_relocation, arm64_ventura: "eb97625ffd1c21be1ae93fa6d808c88f1d9e03b6aa74f009bd0223394bda2efd" - sha256 cellar: :any_skip_relocation, sonoma: "8d2265afacdfd04a529a59f964642ab32c6cf471914821e4a402aa5965b5649c" - sha256 cellar: :any_skip_relocation, ventura: "6458b1dd31e4b39b419a9a1cb7354c565674bd7af709f274c74556bd65a53f00" - sha256 cellar: :any_skip_relocation, arm64_linux: "629d95550982e606bc6cedb92aa23813ec135218f4bf8db28dd7148238082099" - sha256 cellar: :any_skip_relocation, x86_64_linux: "5e0b6c41fed8092747d24c9311ca516223e76698790abc12d7d0eb83bf0b9882" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "7d2a76e2c08439261c82871c9f07dda15a0c3eb49630ff32722a76ecbdfe6544" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "281a30a1db4b546955430194d7b4875adb0b0b645c089f2bdc4eaefc4553dbb0" + sha256 cellar: :any_skip_relocation, arm64_ventura: "5e8b103446b7650c049ce821232303b5fc628e4f17753162d3ed5c22ed757c81" + sha256 cellar: :any_skip_relocation, sequoia: "acf3a9e67f1831df7b4ef3b2964c864d3a2f69c7101dfdbac049eb8fd2e3c727" + sha256 cellar: :any_skip_relocation, sonoma: "9362506ffa703973a49a3a8d9f5ff2d4b3fd1c50d18db55c9508ae96499a7d5f" + sha256 cellar: :any_skip_relocation, ventura: "6c80e973fc996f2f054c9e86ba23590a01496e2ba863a34e72eba8227f578b08" + sha256 cellar: :any_skip_relocation, arm64_linux: "4b29791edc131d0ea499c79cb006a49a40fbb1fdb998d74c6fcb2719ccf1e3aa" + sha256 cellar: :any_skip_relocation, x86_64_linux: "051ffd81a05525589d6b28b14a049dca4fb4f5e8f3ee0bff7764e47e809213cd" end # Submitted the patch via email to the upstream From 5f292f7ea8c90829998a43f09efdfa30152515d4 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Sun, 11 May 2025 01:31:23 +0000 Subject: [PATCH 0766/1364] sqldiff: update 3.49.2 bottle. --- Formula/s/sqldiff.rb | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Formula/s/sqldiff.rb b/Formula/s/sqldiff.rb index 2310df439db6c..7ae480753b6a7 100644 --- a/Formula/s/sqldiff.rb +++ b/Formula/s/sqldiff.rb @@ -13,13 +13,14 @@ class Sqldiff < Formula no_autobump! because: :incompatible_version_format bottle do - sha256 cellar: :any, arm64_sequoia: "8eba0a51124012d7330f891802419b11700906803414b596aae62b3707d87050" - sha256 cellar: :any, arm64_sonoma: "2c4b335a2e922b87c675dc1cd06d3406bb9ebab2006ad16cac4083c61646f062" - sha256 cellar: :any, arm64_ventura: "14e049ebfabb1d38f1ce2cf960566d284931ad843b7aa774ee6cd269004a313a" - sha256 cellar: :any, sonoma: "58c04ba1173ef52d826d7c99925cefb26a9312c90604788e46cfbd6186f2516a" - sha256 cellar: :any, ventura: "2c01bd54ef635172df1530cdacaca3388104c670000cf45e1d4246ecfecf5a54" - sha256 cellar: :any_skip_relocation, arm64_linux: "f13b0dd26fbb3500e5c847b9813ba246962b96d54863d4b0901b4527bf73e9b7" - sha256 cellar: :any_skip_relocation, x86_64_linux: "6cf0597f5ff054f828ba8e54b73d2ed6973bb207bbca63bd7b44cb5b0a2a547a" + sha256 cellar: :any, arm64_sequoia: "0ef62a84468fd2e58d2c5fd5ebdadb2171c3be8c29f893fb1275ba4d9204fc08" + sha256 cellar: :any, arm64_sonoma: "2fb3577dd9cce4cf52a5fb1c77b988b87b0f7cccf9fa2e41fa5eb45806760efa" + sha256 cellar: :any, arm64_ventura: "76813bf4ff104932e7abfcb8d77fe89cbb87f0effa2fef532830b19472428617" + sha256 cellar: :any, sequoia: "20eac7abca9782511b6173d380bc76b631340c0e2e4f42496f56191c85f433ce" + sha256 cellar: :any, sonoma: "23c11e3e7e84c7b809698ac48ca4a6ea1f24515328234bfffdd55860bec5eddd" + sha256 cellar: :any, ventura: "8bef608a453820084aa38325ce635802e9c97634045d9edfa1f76934915660ac" + sha256 cellar: :any_skip_relocation, arm64_linux: "2f605a3572f0f0da27a0b3e1834394af63e243360c4123e022547b36dca47d73" + sha256 cellar: :any_skip_relocation, x86_64_linux: "1d0cb48d7e011b83a067cfb5880ee3f9cc949996084ddcd7fd03b46893c3d68b" end uses_from_macos "tcl-tk" => :build From b15d5219aa649f92ee437e2c7b152975b41f40e7 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Sun, 11 May 2025 01:31:23 +0000 Subject: [PATCH 0767/1364] sqlite: update 3.49.2 bottle. --- Formula/s/sqlite.rb | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Formula/s/sqlite.rb b/Formula/s/sqlite.rb index 2c7427c98d582..5c20866730973 100644 --- a/Formula/s/sqlite.rb +++ b/Formula/s/sqlite.rb @@ -17,14 +17,14 @@ class Sqlite < Formula no_autobump! because: :incompatible_version_format bottle do - sha256 cellar: :any, arm64_sequoia: "757c3d60f4d35fe1c3336207d63992fc804fa6ddd2c40ebb84eb7bfa07bc69e1" - sha256 cellar: :any, arm64_sonoma: "49a9ba828b871d0aca0f9093478971763172c20c7c3184bab42b5f0dd579268f" - sha256 cellar: :any, arm64_ventura: "bc9452d380a2b553d773112d283f96386bf7acd7ba9f41186ef13b01e1e0f01f" - sha256 cellar: :any, sequoia: "e716021f04832c5efd6d6c54f6577062dd3e7c61338df31525853f69b17d2bab" - sha256 cellar: :any, sonoma: "d6447132dbe25963619d8113df0c519b97c0781cf0dad090e21571a0c1799a44" - sha256 cellar: :any, ventura: "313fe6fe6590c79082a7d92810214166a580d8f9c21616f3bcec568db1cf3a1a" - sha256 cellar: :any_skip_relocation, arm64_linux: "36f28aee864eb8512612ab12219811863e64780a1d37b22211939677c993cbb7" - sha256 cellar: :any_skip_relocation, x86_64_linux: "988cd498cfd373e932dadd1893ef46b8b2ef11cdb12f802260a362dbd3e8942b" + sha256 cellar: :any, arm64_sequoia: "efe9021681f4fc983b282f40ea62713f9cde2fae38436b4ee884737f76f56500" + sha256 cellar: :any, arm64_sonoma: "80fbe2514bdfccd2306a829b994e7b5d631345a11cfe62e26d56ca980bf6a49d" + sha256 cellar: :any, arm64_ventura: "c57fe253970bba86619d0ee62a5344074801de8260fcd7210d779973780d30d5" + sha256 cellar: :any, sequoia: "4ce1095909a4a45d39d691c537ec5d526531a64ea0effa27a2374a4de1f8c580" + sha256 cellar: :any, sonoma: "fbf7a928baca989555ec91e9469a3d96682865d53e0072da19aae63a1066f0a2" + sha256 cellar: :any, ventura: "67eb3623e2d69ad3896fee39f4c7a38e7121c1738af7f57baab47a72b17e2b7d" + sha256 cellar: :any_skip_relocation, arm64_linux: "9b3f3bf1656a66e99837807d73422ae8f3c51277907bd928d6cccb68e9853e3d" + sha256 cellar: :any_skip_relocation, x86_64_linux: "347e2e03572231f7045186c692844fe05fb33856c578af85eab861790385065c" end keg_only :provided_by_macos From b76542420ca95e63c45053a586b8fd05d5adcbf8 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Sun, 11 May 2025 01:31:23 +0000 Subject: [PATCH 0768/1364] sqlite-analyzer: update 3.49.2 bottle. --- Formula/s/sqlite-analyzer.rb | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Formula/s/sqlite-analyzer.rb b/Formula/s/sqlite-analyzer.rb index 012c2113a6597..533dfa48f11df 100644 --- a/Formula/s/sqlite-analyzer.rb +++ b/Formula/s/sqlite-analyzer.rb @@ -13,13 +13,14 @@ class SqliteAnalyzer < Formula no_autobump! because: :incompatible_version_format bottle do - sha256 cellar: :any, arm64_sequoia: "f7e90f78db2a0025da80a686bcbb01c17fc8b431484f328c8f88d66b457b8b7c" - sha256 cellar: :any, arm64_sonoma: "7bdc35d3236c57f446b3ebbe58c7bf55f1ad711c0da0ae1ce07cbb836c0ca4da" - sha256 cellar: :any, arm64_ventura: "e9e5c6d350669523acda14920728bace386c731cd473f1fb8f95af5ecd3065ee" - sha256 cellar: :any, sonoma: "4f2fb13b9d51a6f985574cada7882537cc5cd8a9953f61cc4717d41d8b1fc5e1" - sha256 cellar: :any, ventura: "3c5af2f67e1405c2e61fbb97b9c88a33d33f009dd54c21f42d1d68bf9fb87e43" - sha256 cellar: :any_skip_relocation, arm64_linux: "8ef51b37d8c80671fc13f132b8b28d07460aa41e3a74187ca6987af981964a3d" - sha256 cellar: :any_skip_relocation, x86_64_linux: "e6e818ebe8fa3521a71c173281e4c637ff4a632e0b230ab251cb72e1179c49d1" + sha256 cellar: :any, arm64_sequoia: "67cc3291707ff03543cd7dbf0b715f0f5401974dc0c922e0d98b01516028e20e" + sha256 cellar: :any, arm64_sonoma: "a454574109e0650c6a97eaaa1ccf74c0d97999fe4f7ef2a4f9323a6d4fe80cd8" + sha256 cellar: :any, arm64_ventura: "6f141f8745b047a8a0c9c1242e649b6ff4a10cf3e74306ec8849d82b62df16ea" + sha256 cellar: :any, sequoia: "6596e7af88be2d70ad921d0438ae32f48775af94c79ac73b8f57f41198846ab0" + sha256 cellar: :any, sonoma: "472ef3a7bca1791cd68980a792fb08218a77b149de4441d375cedfb6aee2cb15" + sha256 cellar: :any, ventura: "43d649c1b152794475d0a69aaf8db30b82db957d471fc7642fe35305b1d9684b" + sha256 cellar: :any_skip_relocation, arm64_linux: "2e5c92aaf3c647f76266750f705a223b9b5826c081c00f3c2495871070916361" + sha256 cellar: :any_skip_relocation, x86_64_linux: "f3371b2d5811117f606857e3f0ddb826affa2c2c140e8738e86037257eff2286" end uses_from_macos "sqlite" => :test From c947b11bcb38534b03af00e1b03f764936e66ccc Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Sun, 11 May 2025 01:32:00 +0000 Subject: [PATCH 0769/1364] girara: update 0.4.5 bottle. --- Formula/g/girara.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/g/girara.rb b/Formula/g/girara.rb index e2296da5ac353..bbfacfc7c88e1 100644 --- a/Formula/g/girara.rb +++ b/Formula/g/girara.rb @@ -16,6 +16,7 @@ class Girara < Formula sha256 arm64_ventura: "388b59083580d34bf7de60f3ef3bdf77dfb8eb4902f9b61084ab15c7a2b599e7" sha256 sonoma: "858bea2192e09d07c39586ffbcb5fad2d8fb2999ed89ef12c32fd0842d7e0c76" sha256 ventura: "a5effb75f802f10a8ce1c5f48d79183119ce88f8110ff3276f29d9cd557e8e00" + sha256 arm64_linux: "dee7dab31b8be5b1846d89d94362dee0c4f9f7510db1054658184ff87ef6e4ed" sha256 x86_64_linux: "3c368c1cf542567633f37aabdd1d7e2ff1c745c9885d8bbe827cbc0fab1404e9" end From 11621d4a8a7af62c8585493e77f2420cf2fd4845 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Sun, 11 May 2025 01:34:52 +0000 Subject: [PATCH 0770/1364] knot: update 3.4.6 bottle. --- Formula/k/knot.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/k/knot.rb b/Formula/k/knot.rb index a5b6778fbc3fd..3fdce94f01726 100644 --- a/Formula/k/knot.rb +++ b/Formula/k/knot.rb @@ -11,13 +11,13 @@ class Knot < Formula end bottle do - sha256 arm64_sequoia: "fb2a03707bca3a30c4920b387fc26b5bfea3a04194ed0373237d69dd8f5808b2" - sha256 arm64_sonoma: "70c3e6f73fc410caae5d8b61a229f8c26b678d3e7d92ced6eb7e385c79c95026" - sha256 arm64_ventura: "781ee000ccc02d1b49270855c65d622c24a44fbf7379e8bffc908155ef09e20a" - sha256 sonoma: "d35aeb28f9d0f3793e0d77c91e8a015584f252981cdfb33aa6f5c0b76820169c" - sha256 ventura: "a46e505e12ba13083f5211cbd0ddec4a1c92d434c4572c33dcc8274a746619f7" - sha256 arm64_linux: "9e36f319c1c0b26372ade4e49936fcf0e7db00aabae7ec187a789e6c382f6dc7" - sha256 x86_64_linux: "c58465073d06cb6ad06de3830b35f12650d5e1741e3026b18fad27277cbfbcb3" + sha256 arm64_sequoia: "62241ba2192c8ffce58930ecd47a88899eaccc4251bfb9f7ba23fe18f2e60c03" + sha256 arm64_sonoma: "94f5f562fe7533cb29fc2e53fb6f9308fe16b36b4f1cf41bb7caa273c16f0bfb" + sha256 arm64_ventura: "d7b76b9ed9be9a503cc6a21c5c896f0125411dbf119e4f225894f8d2a1d03867" + sha256 sonoma: "9d65336182f586b314fd29bfee25c8652839c3032f9f9afa405e02ae502c8d63" + sha256 ventura: "f2353253ac4781bbb3436823a9e56389edf0091d03874caa3157e042fb7cba2d" + sha256 arm64_linux: "719cc905109bf0ca8a68b009af89ba49a9e2b6f0caa1d90c82a845abd1d1ef55" + sha256 x86_64_linux: "8e0bf75312b54c8edd092dd36139829eaefb5b0f0160f5053d5b47d3a65dedf2" end head do From 8e42b297b14704c3292ce60a41be87c342e44d20 Mon Sep 17 00:00:00 2001 From: Mike Fiedler Date: Sat, 10 May 2025 22:04:59 -0400 Subject: [PATCH 0771/1364] zizmor, update location Refs: https://github.com/zizmorcore/zizmor/issues/758 --- Formula/z/zizmor.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/z/zizmor.rb b/Formula/z/zizmor.rb index f5ed33691d4a7..b99231171db36 100644 --- a/Formula/z/zizmor.rb +++ b/Formula/z/zizmor.rb @@ -1,7 +1,7 @@ class Zizmor < Formula desc "Find security issues in GitHub Actions setups" - homepage "https://woodruffw.github.io/zizmor/" - url "https://github.com/woodruffw/zizmor/archive/refs/tags/v1.7.0.tar.gz" + homepage "https://docs.zizmor.sh/" + url "https://github.com/zizmorcore/zizmor/archive/refs/tags/v1.7.0.tar.gz" sha256 "9564db26f6e134a8f23f6d92c48a25c7cf457fed5de5ac76643cd45abf098129" license "MIT" From 1f2c8280ae85d80c6065dd54f25e409c894470c5 Mon Sep 17 00:00:00 2001 From: botantony Date: Sun, 11 May 2025 04:05:57 +0200 Subject: [PATCH 0772/1364] tass64 1.60.3243 --- Formula/t/tass64.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/t/tass64.rb b/Formula/t/tass64.rb index 0c457f312d5a7..90369eb255aa9 100644 --- a/Formula/t/tass64.rb +++ b/Formula/t/tass64.rb @@ -1,8 +1,8 @@ class Tass64 < Formula desc "Multi pass optimizing macro assembler for the 65xx series of processors" homepage "https://tass64.sourceforge.net/" - url "https://downloads.sourceforge.net/project/tass64/source/64tass-1.59.3120-src.zip" - sha256 "a89a7b79ad234c6ea51a1c9d6c472d0f3827d01b2501b3f30cd0af9541423eef" + url "https://downloads.sourceforge.net/project/tass64/source/64tass-1.60.3243-src.zip" + sha256 "9d83be3d23a2c55e085b7c7a7856c2f96080447ea120a6a8c21a217ed76427f0" license all_of: ["GPL-2.0-or-later", "LGPL-2.0-or-later", "LGPL-2.1-only", "MIT"] bottle do From 427197748849340657f11fc1e643bdf7708a811a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 02:14:01 +0000 Subject: [PATCH 0773/1364] tfsort: update 0.4.0 bottle. --- Formula/t/tfsort.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/t/tfsort.rb b/Formula/t/tfsort.rb index 9fbf50dd24310..5aa3429b074fb 100644 --- a/Formula/t/tfsort.rb +++ b/Formula/t/tfsort.rb @@ -7,12 +7,12 @@ class Tfsort < Formula head "https://github.com/AlexNabokikh/tfsort.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "a9e96459085e375e9e275166fc1f74db6f2852c8fbfe51ec5111b8d05d7885de" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "a9e96459085e375e9e275166fc1f74db6f2852c8fbfe51ec5111b8d05d7885de" - sha256 cellar: :any_skip_relocation, arm64_ventura: "a9e96459085e375e9e275166fc1f74db6f2852c8fbfe51ec5111b8d05d7885de" - sha256 cellar: :any_skip_relocation, sonoma: "5ab204f1c18c71186e2309b3c6af78d3ab6898e68928948191e0b405ff68c481" - sha256 cellar: :any_skip_relocation, ventura: "5ab204f1c18c71186e2309b3c6af78d3ab6898e68928948191e0b405ff68c481" - sha256 cellar: :any_skip_relocation, x86_64_linux: "9a9db22f4974fdb7edac5af591e89afbe81fa9f14a77d89dc1a59648d8e56814" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "59fe21c616a425dfa59d7a05b1cea91427d43b853641492804a8aba4d7ee202d" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "59fe21c616a425dfa59d7a05b1cea91427d43b853641492804a8aba4d7ee202d" + sha256 cellar: :any_skip_relocation, arm64_ventura: "59fe21c616a425dfa59d7a05b1cea91427d43b853641492804a8aba4d7ee202d" + sha256 cellar: :any_skip_relocation, sonoma: "c9e422de4603bda51a952451bd408bd01c2962be21e9a514ad10c5359946bcbd" + sha256 cellar: :any_skip_relocation, ventura: "c9e422de4603bda51a952451bd408bd01c2962be21e9a514ad10c5359946bcbd" + sha256 cellar: :any_skip_relocation, x86_64_linux: "3f719d148a0502350a980736ff85a2ad01fd2fb9fe07c79ad8e9f6a0a7101d8d" end depends_on "go" => :build From 89f33938c03807d901d135a89efc1cb5768f471f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 02:23:04 +0000 Subject: [PATCH 0774/1364] tass64: update 1.60.3243 bottle. --- Formula/t/tass64.rb | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/Formula/t/tass64.rb b/Formula/t/tass64.rb index 90369eb255aa9..c2269e8052db2 100644 --- a/Formula/t/tass64.rb +++ b/Formula/t/tass64.rb @@ -6,17 +6,13 @@ class Tass64 < Formula license all_of: ["GPL-2.0-or-later", "LGPL-2.0-or-later", "LGPL-2.1-only", "MIT"] bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "486369e3e99fbd90b74d4db304c6a817af75affb2bb4f2dceae3fc72a0e942e5" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "d9ab17c0cf37a48c51e51973648c4bf753512e1eccaa58c384d1d9329466977f" - sha256 cellar: :any_skip_relocation, arm64_ventura: "48e41ebee6b426610d59bfd3e89e2eb8204cfeabe63c7eb6375c04ac5388e6a5" - sha256 cellar: :any_skip_relocation, arm64_monterey: "4e91e45d0c55cd2072eb2889604bcfd11ec41fb10671f496ae156bc3c4904f67" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "ec1bcc71132e8154a294e50addb333794d81ad7eec1cab561528a03d9a9c5ae0" - sha256 cellar: :any_skip_relocation, sonoma: "f6ee486f80e6f446267b23f318762f652420854e45449a120bcf936bf737a71e" - sha256 cellar: :any_skip_relocation, ventura: "b07344cbe03d5b5915e20ac2cde5c9b616f798e5b3589af1bbbad1cb41a6c414" - sha256 cellar: :any_skip_relocation, monterey: "ec7db292d9285cced213210e4f158879caaf401589ecdf8c5f194f936ae2578c" - sha256 cellar: :any_skip_relocation, big_sur: "fa71a39e484f20215d6e016a3a1347d88680e342d808b25acc66fd940ff1b0e5" - sha256 cellar: :any_skip_relocation, arm64_linux: "05feb338b83843857b1dbd68a9c53f2481d5b466eabe1035b03bf54a73fdd7ed" - sha256 cellar: :any_skip_relocation, x86_64_linux: "68e1053e5cf4f9509b8de27497354e8640573e12a31fa265c048272e9aa539a0" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "d23f98e527d005deb40dd737df7e79ddcaa192953a55effa2fbaa9907b0ce9cb" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "26ba4c9a64c5b1d8aaba7e1c56d886471187bfb5a7bc07a96f1b07c6959a6489" + sha256 cellar: :any_skip_relocation, arm64_ventura: "3bf1f29a383055486a8cdd26b701e4a82b05a948a9416d1547fee27ff1b42377" + sha256 cellar: :any_skip_relocation, sonoma: "507d0e2c74ee13cfdb580822c62d9cd5954b817bb5900e337ea64607c5e1dab1" + sha256 cellar: :any_skip_relocation, ventura: "1a174fd0558e49d58a058ba6359b261bce98721d85d0cac0e212196151cb1f31" + sha256 cellar: :any_skip_relocation, arm64_linux: "fc863e3da3c692f65b8aaa4e941d6b65c70192b2b7f065b2bc4df9011ae69e54" + sha256 cellar: :any_skip_relocation, x86_64_linux: "78bccbf88389de622f3d3aaee67eb4c065904c84aa87bc74b62a8ae17aa53012" end def install From 29f510df5d50602ccc58dc1219584bfd53a6ed95 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 02:26:53 +0000 Subject: [PATCH 0775/1364] aws-sso-cli 2.0.0 --- Formula/a/aws-sso-cli.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/a/aws-sso-cli.rb b/Formula/a/aws-sso-cli.rb index afb87e08ed662..13e119b413a94 100644 --- a/Formula/a/aws-sso-cli.rb +++ b/Formula/a/aws-sso-cli.rb @@ -1,8 +1,8 @@ class AwsSsoCli < Formula desc "Securely manage AWS API credentials using AWS SSO" homepage "https://synfinatic.github.io/aws-sso-cli/" - url "https://github.com/synfinatic/aws-sso-cli/archive/refs/tags/v1.17.0.tar.gz" - sha256 "60e1c76b652f8c005f45e1755a6ecf16772f05e43a11f7ad26d27aef762c28b6" + url "https://github.com/synfinatic/aws-sso-cli/archive/refs/tags/v2.0.0.tar.gz" + sha256 "8a994f14daf5284fcbe6112c0d224e033b8e737c1dfcbef234017a2abe1ac4d7" license "GPL-3.0-only" head "https://github.com/synfinatic/aws-sso-cli.git", branch: "main" From 4f6fe9c27f05aa015e52ab13c58867456b346d92 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 02:43:04 +0000 Subject: [PATCH 0776/1364] luv 1.51.0-0 --- Formula/l/luv.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/l/luv.rb b/Formula/l/luv.rb index f32ba6ca8ae5e..0749f112af313 100644 --- a/Formula/l/luv.rb +++ b/Formula/l/luv.rb @@ -1,8 +1,8 @@ class Luv < Formula desc "Bare libuv bindings for lua" homepage "https://github.com/luvit/luv" - url "https://github.com/luvit/luv/archive/refs/tags/1.50.0-1.tar.gz" - sha256 "bb4f0570571e40c1d2a7644f6f9c1309a6ccdb19bf4d397e8d7bfd0c6b88e613" + url "https://github.com/luvit/luv/archive/refs/tags/1.51.0-0.tar.gz" + sha256 "61f49840c067a8dec288dc841ea5cc20e81852d295068805c4ca1d744c82da7d" license "Apache-2.0" head "https://github.com/luvit/luv.git", branch: "master" From a0456c1f6df0e4b77d0b34e56754131dd1edc437 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 02:43:36 +0000 Subject: [PATCH 0777/1364] markdownlint-cli2 0.18.0 --- Formula/m/markdownlint-cli2.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/m/markdownlint-cli2.rb b/Formula/m/markdownlint-cli2.rb index b610e4f1925f2..c4907f4903de3 100644 --- a/Formula/m/markdownlint-cli2.rb +++ b/Formula/m/markdownlint-cli2.rb @@ -1,8 +1,8 @@ class MarkdownlintCli2 < Formula desc "Fast, flexible, config-based cli for linting Markdown/CommonMark files" homepage "https://github.com/DavidAnson/markdownlint-cli2" - url "https://registry.npmjs.org/markdownlint-cli2/-/markdownlint-cli2-0.17.2.tgz" - sha256 "ccb69c7c76a64e948100aefd5c63239ebf4c1ba3424342b7d81f3ec06d0d81a6" + url "https://registry.npmjs.org/markdownlint-cli2/-/markdownlint-cli2-0.18.0.tgz" + sha256 "566de56262f44a57b42e1c826ea2c4aa079f64e4311998209ec6ce28e227ec13" license "MIT" bottle do From bc02924d953b22cc0ab8ac6fff67e0ce5ef89709 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 02:49:05 +0000 Subject: [PATCH 0778/1364] pixi-pack 0.6.4 --- Formula/p/pixi-pack.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/p/pixi-pack.rb b/Formula/p/pixi-pack.rb index 5c10b5f504429..54ef9cc1a1b13 100644 --- a/Formula/p/pixi-pack.rb +++ b/Formula/p/pixi-pack.rb @@ -1,8 +1,8 @@ class PixiPack < Formula desc "Pack and unpack conda environments created with pixi" homepage "https://pixi.sh/latest/advanced/production_deployment/#pixi-pack" - url "https://github.com/quantco/pixi-pack/archive/refs/tags/v0.6.3.tar.gz" - sha256 "4f15c9f2e7774e2a35f7af383096f57d757f06ed09ee4f0390dbabb3c51167e6" + url "https://github.com/quantco/pixi-pack/archive/refs/tags/v0.6.4.tar.gz" + sha256 "f0f7c8afc6f8a15e714323e7e437a15b9e9130953670570359eef13a997d1bdd" license "BSD-3-Clause" head "https://github.com/quantco/pixi-pack.git", branch: "main" From 5d0a4aac4362cb83b123ac2c265638ec2d977b1d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 02:52:33 +0000 Subject: [PATCH 0779/1364] aws-sso-cli: update 2.0.0 bottle. --- Formula/a/aws-sso-cli.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/a/aws-sso-cli.rb b/Formula/a/aws-sso-cli.rb index 13e119b413a94..1bf177b2a9488 100644 --- a/Formula/a/aws-sso-cli.rb +++ b/Formula/a/aws-sso-cli.rb @@ -7,14 +7,12 @@ class AwsSsoCli < Formula head "https://github.com/synfinatic/aws-sso-cli.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "4d361605d74a8ec19f5a983a00f636f3a55dbfd2eda3bdbe7a787191f2794b93" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "914ff263326925c0aeffa103d0429f0ca536952a0eb2cb67df10fb8754ee8238" - sha256 cellar: :any_skip_relocation, arm64_ventura: "9f1a770539479dda48289f4bb66e3256dba65d7ee94e49c8121b60e3536b1bf1" - sha256 cellar: :any_skip_relocation, arm64_monterey: "298cdc26302183335e4c7469c7360d352b445484db107c5e378b04e36ac8dd18" - sha256 cellar: :any_skip_relocation, sonoma: "d908014d68ce36bd8867a0101f9100fad7548072fc31c70b8c50caf89bca18fc" - sha256 cellar: :any_skip_relocation, ventura: "8066124dd646b5d629165a30ea6cdce65a8603d20e1a45ce207c7007e82f4f33" - sha256 cellar: :any_skip_relocation, monterey: "cc472c92adc84d883059d20463dfc5fd82874f1fb13808f6dbb63398893d4722" - sha256 cellar: :any_skip_relocation, x86_64_linux: "d801f3502f41111b88cb851ac284ec9151757a4cce6cbbd347b2eee802d91f00" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "4b9fd58bc39c986a20efc08e5df37994681bf3dac203ffb46f1f339259380879" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "6d492eace65bc2fb63751ac9295d23deb58b069c839c4a9bd4ae34a365296785" + sha256 cellar: :any_skip_relocation, arm64_ventura: "a05fc92c44cfecbf666d53eece42ca995f7843172557622c450d4f7faadc15f8" + sha256 cellar: :any_skip_relocation, sonoma: "11bc8478f9d2ac373265949e2b55fb3e8178fe40ee55386d4b2d07b19e16edd5" + sha256 cellar: :any_skip_relocation, ventura: "0c7d6289c62d9ecd13374c0a8aa89c05d59e0bc2a3400a4c4d21d2139b8bcac0" + sha256 cellar: :any_skip_relocation, x86_64_linux: "42866f0177ad09637c6fd11c92e9035a35ecdb25e949de3a73e2e6ac63e52e80" end depends_on "go" => :build From c2f9c1d738ab4eaa4ba183342617a5f3c1f4647c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 02:58:19 +0000 Subject: [PATCH 0780/1364] universal-ctags p6.1.20250511.0 --- Formula/u/universal-ctags.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Formula/u/universal-ctags.rb b/Formula/u/universal-ctags.rb index 04de43a74fde9..88af9afaf9115 100644 --- a/Formula/u/universal-ctags.rb +++ b/Formula/u/universal-ctags.rb @@ -1,9 +1,9 @@ class UniversalCtags < Formula desc "Maintained ctags implementation" homepage "https://ctags.io/" - url "https://github.com/universal-ctags/ctags/archive/refs/tags/p6.1.20250504.0.tar.gz" - version "p6.1.20250504.0" - sha256 "c679a89dea4a8a3dbe2cb797bcd545e0893df72fae8560e8f02362637431aec8" + url "https://github.com/universal-ctags/ctags/archive/refs/tags/p6.1.20250511.0.tar.gz" + version "p6.1.20250511.0" + sha256 "97573f69636766a3f5a3b485fbd3a79311964fa2e4b92a459051310090c0fbd2" license "GPL-2.0-only" head "https://github.com/universal-ctags/ctags.git", branch: "master" From c867ea47e0eb91e2f9c1c1d255818477dbfdd039 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 02:58:38 +0000 Subject: [PATCH 0781/1364] markdownlint-cli2: update 0.18.0 bottle. --- Formula/m/markdownlint-cli2.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/m/markdownlint-cli2.rb b/Formula/m/markdownlint-cli2.rb index c4907f4903de3..153fcf6c76e91 100644 --- a/Formula/m/markdownlint-cli2.rb +++ b/Formula/m/markdownlint-cli2.rb @@ -6,7 +6,7 @@ class MarkdownlintCli2 < Formula license "MIT" bottle do - sha256 cellar: :any_skip_relocation, all: "6dd35d273aa4bc97d734e19e131f7f4097f8b630a8e1971cf9de830667d9ef59" + sha256 cellar: :any_skip_relocation, all: "303e9b596fafdd3297aa78236f7d71d85a07bdf9deaeaa708f4874d2941b73ef" end depends_on "node" From e672ef48205797726719385337c3c0ef1171d473 Mon Sep 17 00:00:00 2001 From: silverprizelee Date: Sun, 11 May 2025 12:11:34 +0900 Subject: [PATCH 0782/1364] mise --- Formula/m/mise.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/m/mise.rb b/Formula/m/mise.rb index 8f8c97f4e966f..2247b1c386a91 100644 --- a/Formula/m/mise.rb +++ b/Formula/m/mise.rb @@ -1,8 +1,8 @@ class Mise < Formula desc "Polyglot runtime manager (asdf rust clone)" homepage "https://mise.jdx.dev/" - url "https://github.com/jdx/mise/archive/refs/tags/v2025.5.2.tar.gz" - sha256 "7f25802b23c229a1bc0c5d63723fb8acd7a3781c888cbd81e04e0ea3d3476f9c" + url "https://github.com/jdx/mise/archive/refs/tags/v2025.5.3.tar.gz" + sha256 "0f2a627dc5a6c3a859c05d21dcecd50a26f2fcb050faf3dba43c8fb0c6b4ec8f" license "MIT" head "https://github.com/jdx/mise.git", branch: "main" From f5799d200734dfb909b7fc16272bc5e25bb4deca Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 03:14:33 +0000 Subject: [PATCH 0783/1364] pixi-pack: update 0.6.4 bottle. --- Formula/p/pixi-pack.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/p/pixi-pack.rb b/Formula/p/pixi-pack.rb index 54ef9cc1a1b13..adce8b552adff 100644 --- a/Formula/p/pixi-pack.rb +++ b/Formula/p/pixi-pack.rb @@ -7,13 +7,13 @@ class PixiPack < Formula head "https://github.com/quantco/pixi-pack.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "edf82a94827ce2e30869196e6ff1dbd2599b84047ef03abb11538da3e6f35ca3" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "bedce2a0e5bf122eda97d7179ce19789bd6f1b8a8d22a310f51e01c61535d6c2" - sha256 cellar: :any_skip_relocation, arm64_ventura: "c88bd57431b3e58ad24df5b2e15b07dce3da244c026b97f01d0a945a1176671c" - sha256 cellar: :any_skip_relocation, sonoma: "4377ce4d994420cfba8150b89143026388642fddb5c061f7a50b74c6b722ee79" - sha256 cellar: :any_skip_relocation, ventura: "9e92c8ac3a054e1eff7589af48114ceaad48ea27b628236e29b137dd1ecf1b68" - sha256 cellar: :any_skip_relocation, arm64_linux: "6908500382eb71c055d9bfe470809877ad2c88e4b8b918448df8c80d95c0529f" - sha256 cellar: :any_skip_relocation, x86_64_linux: "6db4add9ea67aa8017f1b1ebfa5619892c49c1b2e0de8e0e13e7e9b9294fb785" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "da11e187c8b12f4b031f7a973dca314cc56fc06a39331728b7d4c06ef5192355" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "10259f011466b9f5ff5fb38f99352696c2b653161b5b69c3a42f5c81fdd534e8" + sha256 cellar: :any_skip_relocation, arm64_ventura: "d5cb97266044d45744aeaf63baff5221267c56af821ebf756dea12225c25186c" + sha256 cellar: :any_skip_relocation, sonoma: "6553a1b2c3a246d2a2372376411658484ff15eb634e3d761be72d904b53d6542" + sha256 cellar: :any_skip_relocation, ventura: "64220c1a2e2c0f17fa9c9b5d1bfde6ccab7e2168ca1f40832a882e42be31436a" + sha256 cellar: :any_skip_relocation, arm64_linux: "a36c83baacd059e2120d0b6cbe4b6895a21b6c77ed890014b63ee99bdc89f9e1" + sha256 cellar: :any_skip_relocation, x86_64_linux: "2ca7ab72018759fc9df103b39507512e366ded4c7bfeae26708f259cc8c9a756" end depends_on "cmake" => :build From 01099121056a72b2620927d79cc2640deaf57d8f Mon Sep 17 00:00:00 2001 From: William Melody Date: Sat, 10 May 2025 21:40:41 -0700 Subject: [PATCH 0784/1364] nb 7.18.1 --- Formula/n/nb.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/n/nb.rb b/Formula/n/nb.rb index 274f886e12aba..a002c29ed2036 100644 --- a/Formula/n/nb.rb +++ b/Formula/n/nb.rb @@ -1,8 +1,8 @@ class Nb < Formula desc "Command-line and local web note-taking, bookmarking, and archiving" homepage "https://xwmx.github.io/nb" - url "https://github.com/xwmx/nb/archive/refs/tags/7.18.0.tar.gz" - sha256 "7bcf153933d071e157b36846a00a7a2cee4b5066289968803b88b8e33f54ab5f" + url "https://github.com/xwmx/nb/archive/refs/tags/7.18.1.tar.gz" + sha256 "0987af3509d0e7f1ebfb37f75b090e2475a423fbfd7e957bb8f023b6cd054b15" license "AGPL-3.0-or-later" head "https://github.com/xwmx/nb.git", branch: "master" From c1ae2ec8790d3f824fb4c482f3693e2a6c9caebf Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 05:01:06 +0000 Subject: [PATCH 0785/1364] gat 0.23.2 --- Formula/g/gat.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/g/gat.rb b/Formula/g/gat.rb index 05ec6548e0bef..6fa7b14acf247 100644 --- a/Formula/g/gat.rb +++ b/Formula/g/gat.rb @@ -1,8 +1,8 @@ class Gat < Formula desc "Cat alternative written in Go" homepage "https://github.com/koki-develop/gat" - url "https://github.com/koki-develop/gat/archive/refs/tags/v0.23.1.tar.gz" - sha256 "a3f9d4452ff42e2f39ad972bad8debef8d71f0cf697bf6939ae1e66cfd56db61" + url "https://github.com/koki-develop/gat/archive/refs/tags/v0.23.2.tar.gz" + sha256 "da1ed0c5bce7c5fc23ddc3996b7716baef361d64a38cc26dc8749511f7aef2b5" license "MIT" head "https://github.com/koki-develop/gat.git", branch: "main" From 86956ca7950bf444dfbd119a70489984a63be2a5 Mon Sep 17 00:00:00 2001 From: Patrick Linnane Date: Sat, 10 May 2025 22:02:03 -0700 Subject: [PATCH 0786/1364] nerdlog 1.6.0 (new formula) Signed-off-by: Patrick Linnane --- .github/autobump.txt | 1 + Formula/n/nerdlog.rb | 43 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100644 Formula/n/nerdlog.rb diff --git a/.github/autobump.txt b/.github/autobump.txt index ebcb2fb51a732..6c36e70e3a7ad 100644 --- a/.github/autobump.txt +++ b/.github/autobump.txt @@ -2462,6 +2462,7 @@ neovim-qt nerdctl nerdfetch nerdfix +nerdlog nest nestopia-ue netaddr diff --git a/Formula/n/nerdlog.rb b/Formula/n/nerdlog.rb new file mode 100644 index 0000000000000..4a406630b243f --- /dev/null +++ b/Formula/n/nerdlog.rb @@ -0,0 +1,43 @@ +class Nerdlog < Formula + desc "TUI log viewer with timeline histogram and no central server" + homepage "https://dmitryfrank.com/projects/nerdlog/article" + url "https://github.com/dimonomid/nerdlog/archive/refs/tags/v1.6.0.tar.gz" + sha256 "bc1c6ed6faf38de98c94c3cb321bcfa3b369c759cb8708ac08ab4ef4178ff762" + license "BSD-2-Clause" + head "https://github.com/dimonomid/nerdlog.git", branch: "master" + + depends_on "go" => :build + + on_linux do + depends_on "libx11" + end + + def install + ldflags = %W[ + -s -w + -X github.com/dimonomid/nerdlog/version.version=#{version} + -X github.com/dimonomid/nerdlog/version.commit=Homebrew + -X github.com/dimonomid/nerdlog/version.date=#{time.iso8601} + -X github.com/dimonomid/nerdlog/version.builtBy=Homebrew + ] + system "go", "build", *std_go_args(ldflags:), "./cmd/nerdlog" + end + + test do + require "pty" + ENV["TERM"] = "xterm" + + PTY.spawn(bin/"nerdlog") do |r, _w, pid| + sleep 2 + Process.kill("TERM", pid) + begin + output = r.read + assert_match "Edit query params", output + rescue Errno::EIO + # GNU/Linux raises EIO when read is done on closed pty + end + end + + assert_match version.to_s, shell_output("#{bin}/nerdlog --version") + end +end From 49604e2e88a4ceb838976f970be05a34ebb48ddf Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 05:15:36 +0000 Subject: [PATCH 0787/1364] php-code-sniffer 3.13.0 --- Formula/p/php-code-sniffer.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Formula/p/php-code-sniffer.rb b/Formula/p/php-code-sniffer.rb index 705d176de194e..03161bd5006c4 100644 --- a/Formula/p/php-code-sniffer.rb +++ b/Formula/p/php-code-sniffer.rb @@ -1,8 +1,8 @@ class PhpCodeSniffer < Formula desc "Check coding standards in PHP, JavaScript and CSS" homepage "https://github.com/PHPCSStandards/PHP_CodeSniffer" - url "https://github.com/PHPCSStandards/PHP_CodeSniffer/releases/download/3.12.2/phpcs.phar" - sha256 "5549f650025d12a6ee6bf1b7dc4685f3f92fe18897b77b456bb126d020477405" + url "https://github.com/PHPCSStandards/PHP_CodeSniffer/releases/download/3.13.0/phpcs.phar" + sha256 "6f0a11d596aa6d6dba3d07d7375371adbeffa83a619f85f4bac49a7fd5a0baa2" license "BSD-3-Clause" bottle do @@ -12,8 +12,8 @@ class PhpCodeSniffer < Formula depends_on "php" resource "phpcbf.phar" do - url "https://github.com/PHPCSStandards/PHP_CodeSniffer/releases/download/3.12.2/phpcbf.phar" - sha256 "0f4db6b61f407fa6179840ef4fd1c77191988c61534807a7c34d34782ad258b9" + url "https://github.com/PHPCSStandards/PHP_CodeSniffer/releases/download/3.13.0/phpcbf.phar" + sha256 "8c977a5fa4d4cd013775873962872fab44c2c3fa6599544783f4c2559b3cc0f8" livecheck do formula :parent From 3ceb0dff9fd446a6d1b18fa49fde685e07eb7765 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 05:40:23 +0000 Subject: [PATCH 0788/1364] universal-ctags: update p6.1.20250511.0 bottle. --- Formula/u/universal-ctags.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/u/universal-ctags.rb b/Formula/u/universal-ctags.rb index 88af9afaf9115..b4bb05c947f10 100644 --- a/Formula/u/universal-ctags.rb +++ b/Formula/u/universal-ctags.rb @@ -13,13 +13,13 @@ class UniversalCtags < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "b16d59ef38e624b0ca3ee328b945b272b59c484bf9b267a5e3a87989094e514b" - sha256 cellar: :any, arm64_sonoma: "ab792eb4b53da1deda249246f72174b27185a0d6205e532441e5249054d725f5" - sha256 cellar: :any, arm64_ventura: "063e85f3c579c83f51142200b42b38f4c5b72a248f2f57b10d9be7f7f65a515c" - sha256 cellar: :any, sonoma: "d316a70a3930734d8946cb3a9ca54825ebc64a7c4c53d5305cd9354bb15039c1" - sha256 cellar: :any, ventura: "de36a6188715552f7207ec00445e70957c12ea5c4b951cfebe382851c38e855f" - sha256 cellar: :any_skip_relocation, arm64_linux: "5ae4315a9b7e8e0057b4cfe29106547e565303a985b75c5070622535aea09d0b" - sha256 cellar: :any_skip_relocation, x86_64_linux: "6d05f78f75e9c48668d1f2c764a72a442cb9473c81f3cf62e3d47d42248449b8" + sha256 cellar: :any, arm64_sequoia: "5d39ede94ca382814fca5ed562ee3539563a122c755853e71e8c547df08c7164" + sha256 cellar: :any, arm64_sonoma: "ff793daa4f92117c1a174b61507a5a7a16047003477041b6ac71eb82af357ed5" + sha256 cellar: :any, arm64_ventura: "ec76e1a177549c123031fa767e81b8d328001a82922563bb522924c122f48957" + sha256 cellar: :any, sonoma: "3dd774fd951c7eb62cc4e3cd9c49a39a1703054d113b21a286738be3c4e4a90a" + sha256 cellar: :any, ventura: "f4f652013de6a5ac5e63e68b9010e53dfdab61e133b9e822aa69bdc52e5b4e81" + sha256 cellar: :any_skip_relocation, arm64_linux: "7c106cc7736c45aff08ec2e5e808376d491ce945da7d9966db4a3033662de2e3" + sha256 cellar: :any_skip_relocation, x86_64_linux: "11bc01139084b84733d37b82010f2387374e332189145a3dac61b6075c731d65" end depends_on "autoconf" => :build From 4eba40b4f6d0200db058c185d6e25a87ec57b7c0 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 05:41:25 +0000 Subject: [PATCH 0789/1364] mise: update 2025.5.3 bottle. --- Formula/m/mise.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/m/mise.rb b/Formula/m/mise.rb index 2247b1c386a91..2ee1374f1983d 100644 --- a/Formula/m/mise.rb +++ b/Formula/m/mise.rb @@ -14,13 +14,13 @@ class Mise < Formula no_autobump! because: :bumped_by_upstream bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "e7808861ea94a0198da796d79e4d49f1dba7a2ca0d0967a22e33755501aec41b" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "0258e28d246558a8bba2f66cbf9d793288c58e5865b5def91c8ec706a58a6911" - sha256 cellar: :any_skip_relocation, arm64_ventura: "4d31c366b75090b2dddf6d8e6580c0208c9620571bed2c58274c4f282d9d4173" - sha256 cellar: :any_skip_relocation, sonoma: "3fe6b3c4137754bb452608f08f16b01919c1b080311e3bab97100a69c9113727" - sha256 cellar: :any_skip_relocation, ventura: "84896f0bf24b2c501e9d24357ac2405d9e0a2f03e8c14cf8ca018b80ccb23f54" - sha256 cellar: :any_skip_relocation, arm64_linux: "42d4c3b69f9c89a8186f452b8353c60f1c2ba525e8d4621739d03b418db058b7" - sha256 cellar: :any_skip_relocation, x86_64_linux: "a0c52dc2f73720be27cdab24a22f9a0f4dae04319355b13620f1d31ccf482314" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "2053354aea761f0d80e9e56699c729fd131ca92560f80a11b1847f846fdfd305" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "c60a2eda542291d0dcf069f6831041c6d7ce669ddba86bfad079fe374b879f6f" + sha256 cellar: :any_skip_relocation, arm64_ventura: "532c31f390fa8a9bca0c74abc4a63ac54f66e144c4abf0eb0cf67dc009f24407" + sha256 cellar: :any_skip_relocation, sonoma: "ae69bca75ba408a9b35da70ef45fa51ddd67559c29241fd5a6e99e964fd3eab1" + sha256 cellar: :any_skip_relocation, ventura: "8e5581b4bddb12b23e51b6512333a198e93b45352a88f0d6414631a95e41f9e9" + sha256 cellar: :any_skip_relocation, arm64_linux: "a3338a36c4024daa8ea859756ef463811ae6b095742b97030604b22ba9ad560b" + sha256 cellar: :any_skip_relocation, x86_64_linux: "379632610bbffe7c7b0f17633446322cd000ce330df11caa51c61dfd4ad7578a" end depends_on "pkgconf" => :build From fb40eab4230069fcd7a7f3993803ed687e7615f9 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 05:42:33 +0000 Subject: [PATCH 0790/1364] nb: update 7.18.1 bottle. --- Formula/n/nb.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/n/nb.rb b/Formula/n/nb.rb index a002c29ed2036..cbbf7eec6392b 100644 --- a/Formula/n/nb.rb +++ b/Formula/n/nb.rb @@ -7,13 +7,13 @@ class Nb < Formula head "https://github.com/xwmx/nb.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "4615634ddfad9d1846d30af0705cb403a9f37532f07040d8cb9892ad26714139" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "4615634ddfad9d1846d30af0705cb403a9f37532f07040d8cb9892ad26714139" - sha256 cellar: :any_skip_relocation, arm64_ventura: "4615634ddfad9d1846d30af0705cb403a9f37532f07040d8cb9892ad26714139" - sha256 cellar: :any_skip_relocation, sonoma: "4ffc5aa7d8a5325d94b28c59ae9e2d4716cf28f8424ebf7c51f2bfc5adf3ab68" - sha256 cellar: :any_skip_relocation, ventura: "4ffc5aa7d8a5325d94b28c59ae9e2d4716cf28f8424ebf7c51f2bfc5adf3ab68" - sha256 cellar: :any_skip_relocation, arm64_linux: "4615634ddfad9d1846d30af0705cb403a9f37532f07040d8cb9892ad26714139" - sha256 cellar: :any_skip_relocation, x86_64_linux: "4615634ddfad9d1846d30af0705cb403a9f37532f07040d8cb9892ad26714139" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "a3cc1d2c55baa403321ec065f3ddf3e5ffc3381d9ace622a370968ceb88947ea" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "a3cc1d2c55baa403321ec065f3ddf3e5ffc3381d9ace622a370968ceb88947ea" + sha256 cellar: :any_skip_relocation, arm64_ventura: "a3cc1d2c55baa403321ec065f3ddf3e5ffc3381d9ace622a370968ceb88947ea" + sha256 cellar: :any_skip_relocation, sonoma: "c17b46738352fc8c651614f1f68836681ba5b96ed8874fab56d6e94716a660f6" + sha256 cellar: :any_skip_relocation, ventura: "c17b46738352fc8c651614f1f68836681ba5b96ed8874fab56d6e94716a660f6" + sha256 cellar: :any_skip_relocation, arm64_linux: "a3cc1d2c55baa403321ec065f3ddf3e5ffc3381d9ace622a370968ceb88947ea" + sha256 cellar: :any_skip_relocation, x86_64_linux: "a3cc1d2c55baa403321ec065f3ddf3e5ffc3381d9ace622a370968ceb88947ea" end depends_on "bat" From fcc22a13e47c0473485e72d42c9294997d145363 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 05:43:46 +0000 Subject: [PATCH 0791/1364] gat: update 0.23.2 bottle. --- Formula/g/gat.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/g/gat.rb b/Formula/g/gat.rb index 6fa7b14acf247..8ab54e8c80161 100644 --- a/Formula/g/gat.rb +++ b/Formula/g/gat.rb @@ -7,12 +7,12 @@ class Gat < Formula head "https://github.com/koki-develop/gat.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "110cc16eac8d0d3dd7d01d0cfbf29617481ecd6e8d35a8c5e48dac75e5a89a90" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "110cc16eac8d0d3dd7d01d0cfbf29617481ecd6e8d35a8c5e48dac75e5a89a90" - sha256 cellar: :any_skip_relocation, arm64_ventura: "110cc16eac8d0d3dd7d01d0cfbf29617481ecd6e8d35a8c5e48dac75e5a89a90" - sha256 cellar: :any_skip_relocation, sonoma: "a9bdd38f26c59e7a489453fb1f218343f44d86c9094975d172ee15c4e5277d64" - sha256 cellar: :any_skip_relocation, ventura: "a9bdd38f26c59e7a489453fb1f218343f44d86c9094975d172ee15c4e5277d64" - sha256 cellar: :any_skip_relocation, x86_64_linux: "a8a8fd46aab555312e2c348f47f4b0732659ace2820e0f3abfbe50d249667d48" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "8d16c36137aa83ea1178baf17fcaf1d4f6314a823d325785c3bbcab26b29ab2c" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "8d16c36137aa83ea1178baf17fcaf1d4f6314a823d325785c3bbcab26b29ab2c" + sha256 cellar: :any_skip_relocation, arm64_ventura: "8d16c36137aa83ea1178baf17fcaf1d4f6314a823d325785c3bbcab26b29ab2c" + sha256 cellar: :any_skip_relocation, sonoma: "73244cf766606d7a54433593f594a4cc1b0f1edd1f238d3d73654e5f89b3096d" + sha256 cellar: :any_skip_relocation, ventura: "73244cf766606d7a54433593f594a4cc1b0f1edd1f238d3d73654e5f89b3096d" + sha256 cellar: :any_skip_relocation, x86_64_linux: "f99bbb6799cca56f700f95db4434c947d6addddcb659937b97666ffdbfa57e4b" end depends_on "go" => :build From 950f9ffc644eeca09d2b3d2bff910b59af1a7a87 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 05:45:05 +0000 Subject: [PATCH 0792/1364] php-code-sniffer: update 3.13.0 bottle. --- Formula/p/php-code-sniffer.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/p/php-code-sniffer.rb b/Formula/p/php-code-sniffer.rb index 03161bd5006c4..cbdf2c67f17a0 100644 --- a/Formula/p/php-code-sniffer.rb +++ b/Formula/p/php-code-sniffer.rb @@ -6,7 +6,7 @@ class PhpCodeSniffer < Formula license "BSD-3-Clause" bottle do - sha256 cellar: :any_skip_relocation, all: "d22ffb19a1c1b96b68c074f6749834f8594228d575edc5018c69712b13a4490a" + sha256 cellar: :any_skip_relocation, all: "4db99c2fc84c7763ef67075de9861770db967fd4af4dd9b45c5e9128e6ed64f6" end depends_on "php" From b67a3dca4da1f0023d4ed77ccd1f886af63d3a9c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 05:45:35 +0000 Subject: [PATCH 0793/1364] luv: update 1.51.0-0 bottle. --- Formula/l/luv.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/l/luv.rb b/Formula/l/luv.rb index 0749f112af313..2978008ebfcd4 100644 --- a/Formula/l/luv.rb +++ b/Formula/l/luv.rb @@ -7,13 +7,13 @@ class Luv < Formula head "https://github.com/luvit/luv.git", branch: "master" bottle do - sha256 cellar: :any, arm64_sequoia: "d90f24b39208b2d38575647b97796e59711e86da665350d2e04f1eba29014e2e" - sha256 cellar: :any, arm64_sonoma: "7a1f6cb24fb6cfb862bd44c23995326b0f45816e792522c9ff19bd9ea5ea1a71" - sha256 cellar: :any, arm64_ventura: "8e31ff6907a7e940f8b461fd5c8ea8896c546641d7038eb21d6da0e32ee4a004" - sha256 cellar: :any, sonoma: "5495b4d31f5856d371bf0fc4d7f5db89f6cb08dc1e0dfbfeb4f0903bd5eb28f1" - sha256 cellar: :any, ventura: "d0f47a32674eb2aae12ab50cd2ba3749a41ee581fadb3b4114477e9503385263" - sha256 cellar: :any_skip_relocation, arm64_linux: "46ec46647ebd9d2f08e136f88413081fcec19fe80536ee0f467a2ae14ca01169" - sha256 cellar: :any_skip_relocation, x86_64_linux: "da9083575ea116986d84c08971cc2f80011996968c2c7e3d02d0505c9407def6" + sha256 cellar: :any, arm64_sequoia: "645494821fe3ea9437886f9fae19acb1aecaa12e4de44188ca412e5699723c03" + sha256 cellar: :any, arm64_sonoma: "f7712722a40fb8b61d679db25c253c2a85f75dda7aa468d1896f66efb56b2b15" + sha256 cellar: :any, arm64_ventura: "ae484b1ae8dc52607dec941d0a7bd400f5f7690f9711eeca1d8faeca786522d9" + sha256 cellar: :any, sonoma: "cdfb1618a657456b48619a0b2a16021b819bf8254fe1347a45c1f90e11e75d4b" + sha256 cellar: :any, ventura: "dec71cd096c782dbf401af937315c0d77c1bb88c7803c94bcad51d3db358ae43" + sha256 cellar: :any_skip_relocation, arm64_linux: "2f2c03a600a7c1b36ef5fa75aed8ec902b3b7ccba2d985bb3258344a6e8455dc" + sha256 cellar: :any_skip_relocation, x86_64_linux: "9d770b219ac23b64adca73fc1fbc68543f03c88d0c5b6edd7f12865a718cb2a4" end depends_on "cmake" => :build From f53247120f11fd967d8ce19af5ff687e3dbdb7d3 Mon Sep 17 00:00:00 2001 From: botantony Date: Sun, 11 May 2025 08:51:46 +0200 Subject: [PATCH 0794/1364] puzzles 20250510 Signed-off-by: botantony --- Formula/p/puzzles.rb | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Formula/p/puzzles.rb b/Formula/p/puzzles.rb index 47152984727ff..6b1f53943653e 100644 --- a/Formula/p/puzzles.rb +++ b/Formula/p/puzzles.rb @@ -2,9 +2,9 @@ class Puzzles < Formula desc "Collection of one-player puzzle games" homepage "https://www.chiark.greenend.org.uk/~sgtatham/puzzles/" # Extract https://www.chiark.greenend.org.uk/~sgtatham/puzzles/puzzles.tar.gz to get the version number - url "https://www.chiark.greenend.org.uk/~sgtatham/puzzles/puzzles-20250303.7da4641.tar.gz" - version "20250303" - sha256 "7f0a61478ef3515f87f80be3728d0395bf784de1feb3abfcd4c53f1fe99b1009" + url "https://www.chiark.greenend.org.uk/~sgtatham/puzzles/puzzles-20250510.50985e9.tar.gz" + version "20250510" + sha256 "c402a196133e0d1c9fc082a831c016f189f7446baf830d533378337df5ec3f44" license "MIT" head "https://git.tartarus.org/simon/puzzles.git", branch: "main" @@ -17,6 +17,8 @@ class Puzzles < Formula regex(/version v?(\d{6,8})(?:\.[a-z0-9]+)?/i) end + no_autobump! because: :incompatible_version_format + bottle do sha256 cellar: :any_skip_relocation, arm64_sequoia: "ebccba95ecacd2f2ba9538066efb4482e3ccdd7404516e8509bae34076f8f8eb" sha256 cellar: :any_skip_relocation, arm64_sonoma: "289f9d000ad1d4fd14356d0a652ef929215d6d25419e7f65ff4c0b0d6e3c7bd8" From eeb4e05ceca14d657baf11596524ab8432f016a3 Mon Sep 17 00:00:00 2001 From: botantony Date: Sun, 11 May 2025 08:44:16 +0200 Subject: [PATCH 0795/1364] go-parquet-tools 1.29.0 --- Formula/g/go-parquet-tools.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Formula/g/go-parquet-tools.rb b/Formula/g/go-parquet-tools.rb index c01e041d4526f..75344cc684f5e 100644 --- a/Formula/g/go-parquet-tools.rb +++ b/Formula/g/go-parquet-tools.rb @@ -1,8 +1,8 @@ class GoParquetTools < Formula desc "Utility to deal with Parquet data" homepage "https://github.com/hangxie/parquet-tools" - url "https://github.com/hangxie/parquet-tools/archive/refs/tags/v1.28.3.tar.gz" - sha256 "d71530927d732460f9ea4f7696c7bb51334ce2e7024c5b77ac14d9baa090198b" + url "https://github.com/hangxie/parquet-tools/archive/refs/tags/v1.29.0.tar.gz" + sha256 "4e4a8617003438d5c8f4f0e5afd08808070757091781ee28d09a55f3f9eddd2c" license "BSD-3-Clause" head "https://github.com/hangxie/parquet-tools.git", branch: "main" @@ -36,6 +36,6 @@ def install resource("test-parquet").stage testpath output = shell_output("#{bin}/parquet-tools schema #{testpath}/good.parquet") - assert_match "name=Parquet_go_root", output + assert_match "name=parquet_go_root", output end end From acb4f1e791f27d6593f0ebd7060ef07f871b3e0e Mon Sep 17 00:00:00 2001 From: botantony Date: Sun, 11 May 2025 08:44:49 +0200 Subject: [PATCH 0796/1364] autobump: add go-parquet-tools Signed-off-by: botantony --- .github/autobump.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/autobump.txt b/.github/autobump.txt index ebcb2fb51a732..49039a566ba8c 100644 --- a/.github/autobump.txt +++ b/.github/autobump.txt @@ -1328,6 +1328,7 @@ go-camo go-critic go-feature-flag-relay-proxy go-md2man +go-parquet-tools go-size-analyzer go-task go@1.23 From f6d8123dbe51c21c0a70c1c1debb17b3660da6b5 Mon Sep 17 00:00:00 2001 From: Pavel Zwerschke Date: Thu, 8 May 2025 22:59:30 +0200 Subject: [PATCH 0797/1364] pixi-pack: 0.6.4 --- Formula/p/pixi-pack.rb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Formula/p/pixi-pack.rb b/Formula/p/pixi-pack.rb index 5c10b5f504429..c4781810aea57 100644 --- a/Formula/p/pixi-pack.rb +++ b/Formula/p/pixi-pack.rb @@ -1,8 +1,8 @@ class PixiPack < Formula desc "Pack and unpack conda environments created with pixi" homepage "https://pixi.sh/latest/advanced/production_deployment/#pixi-pack" - url "https://github.com/quantco/pixi-pack/archive/refs/tags/v0.6.3.tar.gz" - sha256 "4f15c9f2e7774e2a35f7af383096f57d757f06ed09ee4f0390dbabb3c51167e6" + url "https://github.com/quantco/pixi-pack/archive/refs/tags/v0.6.4.tar.gz" + sha256 "f0f7c8afc6f8a15e714323e7e437a15b9e9130953670570359eef13a997d1bdd" license "BSD-3-Clause" head "https://github.com/quantco/pixi-pack.git", branch: "main" @@ -28,6 +28,8 @@ class PixiPack < Formula def install system "cargo", "install", *std_cargo_args + + generate_completions_from_executable(bin/"pixi-pack", "completion", "-s") end test do From 01dc3b2dd9b96a001a3c7f9f98cad143a0930b74 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sat, 10 May 2025 11:11:49 +0000 Subject: [PATCH 0798/1364] neomutt 20250510 --- Formula/n/neomutt.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Formula/n/neomutt.rb b/Formula/n/neomutt.rb index bb3274b2aa178..b113fb3f147d5 100644 --- a/Formula/n/neomutt.rb +++ b/Formula/n/neomutt.rb @@ -1,8 +1,8 @@ class Neomutt < Formula desc "E-mail reader with support for Notmuch, NNTP and much more" homepage "https://neomutt.org/" - url "https://github.com/neomutt/neomutt/archive/refs/tags/20250113.tar.gz" - sha256 "cc7835e80fd72af104a8e146e009e93e687cefbc6c11725ee2ed11d7377486ff" + url "https://github.com/neomutt/neomutt/archive/refs/tags/20250510.tar.gz" + sha256 "12d225e270d8e16cda41d855880b9d938750a4f1d647f55c6353337d32ffd653" license "GPL-2.0-or-later" head "https://github.com/neomutt/neomutt.git", branch: "main" @@ -75,7 +75,7 @@ def install end test do - output = shell_output("#{bin}/neomutt -F /dev/null -Q debug_level") + output = shell_output("#{bin}/neomutt -F /dev/null -Q debug_level", 1) assert_equal "set debug_level = 0", output.chomp end end From f6c2879b6c9fcc75d8090b293b8bcfea0c5c6eef Mon Sep 17 00:00:00 2001 From: Sidney Markowitz Date: Sat, 10 May 2025 20:19:42 +1200 Subject: [PATCH 0799/1364] libsndfile: fix to build using cmake 4 --- Formula/lib/libsndfile.rb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Formula/lib/libsndfile.rb b/Formula/lib/libsndfile.rb index 1bbc4407e62e7..4348a8128bb83 100644 --- a/Formula/lib/libsndfile.rb +++ b/Formula/lib/libsndfile.rb @@ -38,12 +38,13 @@ def install -DBUILD_EXAMPLES=OFF -DCMAKE_INSTALL_RPATH=#{rpath} -DPYTHON_EXECUTABLE=#{which("python3")} + -DCMAKE_POLICY_VERSION_MINIMUM=3.5 ] - system "cmake", "-S", ".", "-B", "build", *std_cmake_args, "-DBUILD_SHARED_LIBS=ON", *args + 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", "static", *std_cmake_args, "-DBUILD_SHARED_LIBS=OFF", *args + system "cmake", "-S", ".", "-B", "static", "-DBUILD_SHARED_LIBS=OFF", *args, *std_cmake_args system "cmake", "--build", "static" lib.install "static/libsndfile.a" end From b694f2b46e63f2870a899d96243c5a29aacb4526 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 07:15:44 +0000 Subject: [PATCH 0800/1364] puzzles: update 20250510 bottle. --- Formula/p/puzzles.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/p/puzzles.rb b/Formula/p/puzzles.rb index 6b1f53943653e..89e01e249f57d 100644 --- a/Formula/p/puzzles.rb +++ b/Formula/p/puzzles.rb @@ -20,13 +20,13 @@ class Puzzles < Formula no_autobump! because: :incompatible_version_format bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "ebccba95ecacd2f2ba9538066efb4482e3ccdd7404516e8509bae34076f8f8eb" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "289f9d000ad1d4fd14356d0a652ef929215d6d25419e7f65ff4c0b0d6e3c7bd8" - sha256 cellar: :any_skip_relocation, arm64_ventura: "8739712b883278230ef68d1ac4c8ff6251305cde2207af405e0e44a596cdf664" - sha256 cellar: :any_skip_relocation, sonoma: "89f28aebcd427dfc2d99bae6913dee7e78676050914fab9497786a3d4892004d" - sha256 cellar: :any_skip_relocation, ventura: "2c7ee6196f9a1f5360aad8beec6a586f3f4273a54e8713b16b1fc17cd351130b" - sha256 arm64_linux: "ab9c8b395e4859f4cae0b6285bb610a6a0eab5d55981536cb2e2422b0af4bce6" - sha256 x86_64_linux: "bb29ef58af08fd4f4279715ced6378ddac8b8374fe4adda40d96a868125140e9" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "a94a28cf9dc9ca7cbec1ab74808672981c2c40dd21b89ecdd19cf2d00260bdd2" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "515e083fa1d0fcb584f74dec74cd784e31ae92523c10903fe181ccab4a7d8a19" + sha256 cellar: :any_skip_relocation, arm64_ventura: "be40088d9554a8121bd0555a7d1df3a18669487ef52f2d0a8ef2ac9d05204271" + sha256 cellar: :any_skip_relocation, sonoma: "5ad5e173488807df99da725c322be233be554ec44ce8e73ccfdb87242098a41f" + sha256 cellar: :any_skip_relocation, ventura: "00e496f4dddaa3f020d475333f7f70aea9fccbbf2de220b81ff03e467a40daf6" + sha256 arm64_linux: "530cf2016d72dd8892aac43b83aa3e2bbd8a846e6cb4eaf1ee507625beda518e" + sha256 x86_64_linux: "5d9cbc52dbfa1f6c465cd4426ea18d454f4349b6c2069d6936868fa7ea9af803" end depends_on "cmake" => :build From 6b4e92779ca221cffdba5f11c3634dbe9782b47a Mon Sep 17 00:00:00 2001 From: botantony Date: Sun, 11 May 2025 09:24:45 +0200 Subject: [PATCH 0801/1364] undercutf1 3.1.85 Signed-off-by: botantony --- Formula/u/undercutf1.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/u/undercutf1.rb b/Formula/u/undercutf1.rb index 483140f6e1501..f291b8f524b86 100644 --- a/Formula/u/undercutf1.rb +++ b/Formula/u/undercutf1.rb @@ -1,8 +1,8 @@ class Undercutf1 < Formula desc "F1 Live Timing TUI for all F1 sessions with variable delay to sync to your TV" homepage "https://github.com/JustAman62/undercut-f1" - url "https://github.com/JustAman62/undercut-f1/archive/refs/tags/v3.1.70.tar.gz" - sha256 "99a9afa66e9f97596ddacea0f1cc183736f6c3ab4f9f331380bcb015b0d91ccb" + url "https://github.com/JustAman62/undercut-f1/archive/refs/tags/v3.1.85.tar.gz" + sha256 "a3f1f6e5653b7babb66b95e6a149fe8cf755b511e43922e031c066d6fa2b8f58" license "GPL-3.0-only" head "https://github.com/JustAman62/undercut-f1.git", branch: "master" From 1019fed7f419233fd5e03805a92ab3a80d6f6b02 Mon Sep 17 00:00:00 2001 From: botantony Date: Sun, 11 May 2025 09:24:54 +0200 Subject: [PATCH 0802/1364] autobump: add undercutf1 Signed-off-by: botantony --- .github/autobump.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/autobump.txt b/.github/autobump.txt index ebcb2fb51a732..bf326e0484291 100644 --- a/.github/autobump.txt +++ b/.github/autobump.txt @@ -3727,6 +3727,7 @@ umka-lang unar unbound uncover +undercutf1 ungit uni uni-algo From f6a25879cdf01833f5a2a48218e3d6315c25f1a0 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 07:51:42 +0000 Subject: [PATCH 0803/1364] cdk8s 2.200.67 --- Formula/c/cdk8s.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/cdk8s.rb b/Formula/c/cdk8s.rb index 4d7ec815976dd..8da12edfb7e13 100644 --- a/Formula/c/cdk8s.rb +++ b/Formula/c/cdk8s.rb @@ -1,8 +1,8 @@ class Cdk8s < Formula desc "Define k8s native apps and abstractions using object-oriented programming" homepage "https://cdk8s.io/" - url "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.200.66.tgz" - sha256 "97c21346efae05e1b7d8cd1472953ab1ad6cdca8e3ec2451787edec20913f3e6" + url "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.200.67.tgz" + sha256 "9f6cc47b8597636e0e4159ce87450437a02f64262b4fd23f9eb2820d4555b49e" license "Apache-2.0" bottle do From 3551c802097ce1cb767ac5a7a7130ddb14e738a0 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 08:00:33 +0000 Subject: [PATCH 0804/1364] jackett 0.22.1888 --- Formula/j/jackett.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/j/jackett.rb b/Formula/j/jackett.rb index 96f5472266e14..860169e116eb9 100644 --- a/Formula/j/jackett.rb +++ b/Formula/j/jackett.rb @@ -1,8 +1,8 @@ class Jackett < Formula desc "API Support for your favorite torrent trackers" homepage "https://github.com/Jackett/Jackett" - url "https://github.com/Jackett/Jackett/archive/refs/tags/v0.22.1887.tar.gz" - sha256 "60f9cb232b142035720ab10b24eda5f7a7a615c1b1fc1f7c22597802e7e27eb4" + url "https://github.com/Jackett/Jackett/archive/refs/tags/v0.22.1888.tar.gz" + sha256 "d1ee56f16894031c23f4758201881266b4846ab3a25501501e31b016550f28b3" license "GPL-2.0-only" head "https://github.com/Jackett/Jackett.git", branch: "master" From 2a91ddc4764e608e0b8afb12c576c04231635711 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 08:09:29 +0000 Subject: [PATCH 0805/1364] phpunit 12.1.5 --- Formula/p/phpunit.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/p/phpunit.rb b/Formula/p/phpunit.rb index 2bda6a981af80..01d7c861b682b 100644 --- a/Formula/p/phpunit.rb +++ b/Formula/p/phpunit.rb @@ -1,8 +1,8 @@ class Phpunit < Formula desc "Programmer-oriented testing framework for PHP" homepage "https://phpunit.de" - url "https://phar.phpunit.de/phpunit-12.1.4.phar" - sha256 "4b4152817486715fd915675117c9dc270554827b2b27e52ff45741a1fd84406a" + url "https://phar.phpunit.de/phpunit-12.1.5.phar" + sha256 "913bd53647b3d78928335f12948b290a75a0970c43b599ba2c3922b77f93e6c5" license "BSD-3-Clause" livecheck do From 90a8f2643f4dbe14130c613a376a3f0d525b82af Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 08:10:01 +0000 Subject: [PATCH 0806/1364] pocketbase 0.28.0 --- Formula/p/pocketbase.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/p/pocketbase.rb b/Formula/p/pocketbase.rb index 08150d34cc592..3dd6ab4cbcc6f 100644 --- a/Formula/p/pocketbase.rb +++ b/Formula/p/pocketbase.rb @@ -1,8 +1,8 @@ class Pocketbase < Formula desc "Open source backend for your next project in 1 file" homepage "https://pocketbase.io/" - url "https://github.com/pocketbase/pocketbase/archive/refs/tags/v0.27.2.tar.gz" - sha256 "686998d1e4414eedff77034441e2a78143f21688dc0f4df1e09b8580e4a45df7" + url "https://github.com/pocketbase/pocketbase/archive/refs/tags/v0.28.0.tar.gz" + sha256 "3d17eb510f3d700a10b02fc4a6bacbe063b06e9241f30b036fec346b8d2e2923" license "MIT" bottle do From fe131f372e250e5f59a143a88376cbc209ab6d66 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 08:25:54 +0000 Subject: [PATCH 0807/1364] cdk8s: update 2.200.67 bottle. --- Formula/c/cdk8s.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/cdk8s.rb b/Formula/c/cdk8s.rb index 8da12edfb7e13..82c7c3a652202 100644 --- a/Formula/c/cdk8s.rb +++ b/Formula/c/cdk8s.rb @@ -6,13 +6,13 @@ class Cdk8s < Formula license "Apache-2.0" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "147a7e20740ab649da4fa7478a4c2fae9b11eca085c9c883edea2a5a730252ac" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "147a7e20740ab649da4fa7478a4c2fae9b11eca085c9c883edea2a5a730252ac" - sha256 cellar: :any_skip_relocation, arm64_ventura: "147a7e20740ab649da4fa7478a4c2fae9b11eca085c9c883edea2a5a730252ac" - sha256 cellar: :any_skip_relocation, sonoma: "9ba5542fe1169e0e2cc08179ffd43917f3e5926064fee9fafa3f3c16fb44df36" - sha256 cellar: :any_skip_relocation, ventura: "9ba5542fe1169e0e2cc08179ffd43917f3e5926064fee9fafa3f3c16fb44df36" - sha256 cellar: :any_skip_relocation, arm64_linux: "147a7e20740ab649da4fa7478a4c2fae9b11eca085c9c883edea2a5a730252ac" - sha256 cellar: :any_skip_relocation, x86_64_linux: "147a7e20740ab649da4fa7478a4c2fae9b11eca085c9c883edea2a5a730252ac" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "532e6adbddbb6f88d2f0647c65f85e93fd4dbea3d0286cbae36ec07fb07ebb46" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "532e6adbddbb6f88d2f0647c65f85e93fd4dbea3d0286cbae36ec07fb07ebb46" + sha256 cellar: :any_skip_relocation, arm64_ventura: "532e6adbddbb6f88d2f0647c65f85e93fd4dbea3d0286cbae36ec07fb07ebb46" + sha256 cellar: :any_skip_relocation, sonoma: "f7c0df011a61a990e334f9d68013764d2bd2e04de122bd3237f9cfc30cf2e92a" + sha256 cellar: :any_skip_relocation, ventura: "f7c0df011a61a990e334f9d68013764d2bd2e04de122bd3237f9cfc30cf2e92a" + sha256 cellar: :any_skip_relocation, arm64_linux: "532e6adbddbb6f88d2f0647c65f85e93fd4dbea3d0286cbae36ec07fb07ebb46" + sha256 cellar: :any_skip_relocation, x86_64_linux: "532e6adbddbb6f88d2f0647c65f85e93fd4dbea3d0286cbae36ec07fb07ebb46" end depends_on "node" From dc9b68a38f7bb649d1ea194a9a1a8bc2ebb3e3f2 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 08:27:03 +0000 Subject: [PATCH 0808/1364] jackett: update 0.22.1888 bottle. --- Formula/j/jackett.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/j/jackett.rb b/Formula/j/jackett.rb index 860169e116eb9..dad7555891827 100644 --- a/Formula/j/jackett.rb +++ b/Formula/j/jackett.rb @@ -7,12 +7,12 @@ class Jackett < Formula head "https://github.com/Jackett/Jackett.git", branch: "master" bottle do - sha256 cellar: :any, arm64_sequoia: "c3b47bc385bd5743e99d9448fe5a7a8f11736cb872228cbb43523fb944d9b75f" - sha256 cellar: :any, arm64_sonoma: "f3b6f80fda9df8ad4f99ae46d3101ef2dbb60aad0660681406b1ab229f83229d" - sha256 cellar: :any, arm64_ventura: "37d1b8cc509d1a03f34025c7449d86c4791b2791b7bab3487c05b5c3992df225" - sha256 cellar: :any, ventura: "2b4d417c633623d081aa743887044da476509bb85f7971e317ce18ce2352fb2b" - sha256 cellar: :any_skip_relocation, arm64_linux: "2224f7329b754a7694711cddbbf42f681ff34b13328ba4d7e4e7456f51f67c50" - sha256 cellar: :any_skip_relocation, x86_64_linux: "2fdd58cb324091b71a43b48c1ab77ea51aab2f071c5851091ebb1443d1760854" + sha256 cellar: :any, arm64_sequoia: "02434793de24b9083a01bd7125c1039463808995706e2609627bfb524cdfc57d" + sha256 cellar: :any, arm64_sonoma: "defa1fd2ec91dd50a23c94f80a40c29a22e71f189b916d17fafda02b461f20cd" + sha256 cellar: :any, arm64_ventura: "fa5dbda9e6b73e7dcc020c340c8567b75c95f9c0356367add531baaf1ccede7b" + sha256 cellar: :any, ventura: "207b3800a671ff073766aee46eb9547a5476fc6b2124bdf3f6f44b2a2504462c" + sha256 cellar: :any_skip_relocation, arm64_linux: "072a79a5f00015b65c9de331c0be8fb3066b781ebdcec77baa08caee1b19186c" + sha256 cellar: :any_skip_relocation, x86_64_linux: "ce6ee78435625e160733bcb2b55e89709d808f5f3db7f6a9a35a18b28af3a912" end depends_on "dotnet@8" From 905429c3925d89e2f9a91227b491b815646dbaed Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 08:27:32 +0000 Subject: [PATCH 0809/1364] pocketbase: update 0.28.0 bottle. --- Formula/p/pocketbase.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/p/pocketbase.rb b/Formula/p/pocketbase.rb index 3dd6ab4cbcc6f..164a9b4a20eac 100644 --- a/Formula/p/pocketbase.rb +++ b/Formula/p/pocketbase.rb @@ -6,13 +6,13 @@ class Pocketbase < Formula license "MIT" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "26b37f8644a3586102998890c0a50e103a8eb50354dfc4297dd09f250ff438d7" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "26b37f8644a3586102998890c0a50e103a8eb50354dfc4297dd09f250ff438d7" - sha256 cellar: :any_skip_relocation, arm64_ventura: "26b37f8644a3586102998890c0a50e103a8eb50354dfc4297dd09f250ff438d7" - sha256 cellar: :any_skip_relocation, sonoma: "ba654fc044c8dd16577bd42a9d537b53a8738b51166d5379f85c346fdf75246f" - sha256 cellar: :any_skip_relocation, ventura: "ba654fc044c8dd16577bd42a9d537b53a8738b51166d5379f85c346fdf75246f" - sha256 cellar: :any_skip_relocation, arm64_linux: "627b843857a2a3e22cad9e7a53bdc9a0571491cde1fb9987595e4c84d32bf1a3" - sha256 cellar: :any_skip_relocation, x86_64_linux: "02c32163324ea57aba62de1ef72d3a022411285fb3388c9bf2a193f3852d3e3b" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "7dd2a8a13e2299964fd85ef8f7a46d636032517c49c582cfa8dd42a9d2f2b8b5" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "7dd2a8a13e2299964fd85ef8f7a46d636032517c49c582cfa8dd42a9d2f2b8b5" + sha256 cellar: :any_skip_relocation, arm64_ventura: "7dd2a8a13e2299964fd85ef8f7a46d636032517c49c582cfa8dd42a9d2f2b8b5" + sha256 cellar: :any_skip_relocation, sonoma: "92bcf76893094c36c4cc7242bacbf749aa6aa882f0fe372e73df53e4ab00a5bc" + sha256 cellar: :any_skip_relocation, ventura: "92bcf76893094c36c4cc7242bacbf749aa6aa882f0fe372e73df53e4ab00a5bc" + sha256 cellar: :any_skip_relocation, arm64_linux: "b4112eefb4b85aba9ca152d656aa1771e69dd8fe68a3af9930349711b35db7ae" + sha256 cellar: :any_skip_relocation, x86_64_linux: "e94499c36a9e54394f52ce5640c986edcbbb100c869a9c1b55c8fc3ad71e835c" end depends_on "go" => :build From e06e8771170a4ac329fa8f5173672bb35e9facb8 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 08:58:40 +0000 Subject: [PATCH 0810/1364] phpunit: update 12.1.5 bottle. --- Formula/p/phpunit.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/p/phpunit.rb b/Formula/p/phpunit.rb index 01d7c861b682b..ac77d436d1567 100644 --- a/Formula/p/phpunit.rb +++ b/Formula/p/phpunit.rb @@ -12,7 +12,7 @@ class Phpunit < Formula end bottle do - sha256 cellar: :any_skip_relocation, all: "5c7bd5589eb66e7a45b32d46bdc43d8ed47d3f5f936eb443622f972aded4bd98" + sha256 cellar: :any_skip_relocation, all: "5e25f01a5f05c762bc6e41ea89dec7c3db1f3157a12ae3ecfb97da40a1e87348" end depends_on "php" => :test From 0e0481ab62e18992e84100f002f8912b8a2437c6 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 09:00:02 +0000 Subject: [PATCH 0811/1364] undercutf1: update 3.1.85 bottle. --- Formula/u/undercutf1.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/u/undercutf1.rb b/Formula/u/undercutf1.rb index f291b8f524b86..3db1864200031 100644 --- a/Formula/u/undercutf1.rb +++ b/Formula/u/undercutf1.rb @@ -7,12 +7,12 @@ class Undercutf1 < Formula head "https://github.com/JustAman62/undercut-f1.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "d15f3c92e58295630b9f958ec5d5b033e6ad9a66120da04245fdb5f1c17a4bed" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "b5de72159df4ff87fdb08da169196044f390a2e5b809b9bd1f565a2b99bfeff5" - sha256 cellar: :any_skip_relocation, arm64_ventura: "db29e0d5d38fd1ee455b22c7ab27d708adfeb4ee7d3678b45e463717ccd0eec6" - sha256 cellar: :any_skip_relocation, ventura: "de573df2e30566da948c3b5a5513e7bd6d36b6c3f9a537bd8e28d2afb10d928b" - sha256 cellar: :any_skip_relocation, arm64_linux: "b459e3f9a31fb2890cf4aa01480360155ea5ab13d1b8e226fcf00872949e04e0" - sha256 cellar: :any_skip_relocation, x86_64_linux: "84e3cf23b2b82aca2461119884fd10fc9f84a1b74e14601c789adfdb7a9654d6" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "825d3b2df028d04a8a40b52379f60c0091aadf4b6c2c9676463580733d5065fb" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "5dd46cb5beadb80637ef57922e00b63dfc33263d648f84444961332e2faa2ffd" + sha256 cellar: :any_skip_relocation, arm64_ventura: "0e9aae1b9825d5f73325af75caa3667d88d9d2d769bca1d17d7c244701f8e6a4" + sha256 cellar: :any_skip_relocation, ventura: "23374e22ef467d6f6fefc001aad9444b9a976e5e26437f21cb229a98706dffcf" + sha256 cellar: :any_skip_relocation, arm64_linux: "610c45cd962355221acfc31cfacf924b5e3e829e108ad19df5e35237b09613f7" + sha256 cellar: :any_skip_relocation, x86_64_linux: "c98ab303a8414436a23178238933fa3e25a501632a1bf1ef84ebdd92073b95b3" end depends_on "dotnet" From 8dd73db8ee4021129aacf7fe87ea14360ff51599 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 09:06:05 +0000 Subject: [PATCH 0812/1364] pixi-pack: update 0.6.4 bottle. --- Formula/p/pixi-pack.rb | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Formula/p/pixi-pack.rb b/Formula/p/pixi-pack.rb index c4781810aea57..ffdf952b9d947 100644 --- a/Formula/p/pixi-pack.rb +++ b/Formula/p/pixi-pack.rb @@ -7,13 +7,14 @@ class PixiPack < Formula head "https://github.com/quantco/pixi-pack.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "edf82a94827ce2e30869196e6ff1dbd2599b84047ef03abb11538da3e6f35ca3" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "bedce2a0e5bf122eda97d7179ce19789bd6f1b8a8d22a310f51e01c61535d6c2" - sha256 cellar: :any_skip_relocation, arm64_ventura: "c88bd57431b3e58ad24df5b2e15b07dce3da244c026b97f01d0a945a1176671c" - sha256 cellar: :any_skip_relocation, sonoma: "4377ce4d994420cfba8150b89143026388642fddb5c061f7a50b74c6b722ee79" - sha256 cellar: :any_skip_relocation, ventura: "9e92c8ac3a054e1eff7589af48114ceaad48ea27b628236e29b137dd1ecf1b68" - sha256 cellar: :any_skip_relocation, arm64_linux: "6908500382eb71c055d9bfe470809877ad2c88e4b8b918448df8c80d95c0529f" - sha256 cellar: :any_skip_relocation, x86_64_linux: "6db4add9ea67aa8017f1b1ebfa5619892c49c1b2e0de8e0e13e7e9b9294fb785" + rebuild 1 + sha256 cellar: :any_skip_relocation, arm64_sequoia: "d31fabaca7ad3e5ff43938eb6780118c3769f7f8da9b8ff77e9188840aca9c56" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "a345181ec3f97f756b4011ca0a0426a61215d994b2d2ae86330ea5e9840f254a" + sha256 cellar: :any_skip_relocation, arm64_ventura: "d1ca47df2d8a8b82a014fba811e3275eb00559cbd533cec1577336a7aeaadcc1" + sha256 cellar: :any_skip_relocation, sonoma: "f978e42fe8dd18c7efb1a170bcbdbfce8768c1e62e96b327f048f80c9c91f29f" + sha256 cellar: :any_skip_relocation, ventura: "e7c414a0fb061b803fa709ab7ee8325d1bc25c6cab58b0396b4c7cdef1650a55" + sha256 cellar: :any_skip_relocation, arm64_linux: "67692fc93c9bc0e68d0fa2d792574992821c1dcbedf5eae664a470c44e31f531" + sha256 cellar: :any_skip_relocation, x86_64_linux: "6af820f22d39ec80cd3a27099473eeafad8200fc6a5854f89c4c8040b5ccb943" end depends_on "cmake" => :build From 7b03c76e07f2a7a7d0393b9efa49edb03b6d43f4 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 09:55:30 +0000 Subject: [PATCH 0813/1364] go-parquet-tools: update 1.29.0 bottle. --- Formula/g/go-parquet-tools.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/g/go-parquet-tools.rb b/Formula/g/go-parquet-tools.rb index 75344cc684f5e..685d9efcf5147 100644 --- a/Formula/g/go-parquet-tools.rb +++ b/Formula/g/go-parquet-tools.rb @@ -7,12 +7,12 @@ class GoParquetTools < Formula head "https://github.com/hangxie/parquet-tools.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "1e202ec9f273af9ecba0159e3c8f82ab11f3f4dde657f38fc26e846ab1c59ecc" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "1e202ec9f273af9ecba0159e3c8f82ab11f3f4dde657f38fc26e846ab1c59ecc" - sha256 cellar: :any_skip_relocation, arm64_ventura: "1e202ec9f273af9ecba0159e3c8f82ab11f3f4dde657f38fc26e846ab1c59ecc" - sha256 cellar: :any_skip_relocation, sonoma: "cc4eef88fbb93fc3ecf371e6bc15e739d261599d826c4121a41b7f48c3f49984" - sha256 cellar: :any_skip_relocation, ventura: "cc4eef88fbb93fc3ecf371e6bc15e739d261599d826c4121a41b7f48c3f49984" - sha256 cellar: :any_skip_relocation, x86_64_linux: "ae48db02e01376961e43a83331de42f7c6677422db8490bb19b178b09b9c7ec3" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "df12d36c7c6313ede24c95d86374cb031d4a6575993f06a4c334c3a2d954563e" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "df12d36c7c6313ede24c95d86374cb031d4a6575993f06a4c334c3a2d954563e" + sha256 cellar: :any_skip_relocation, arm64_ventura: "df12d36c7c6313ede24c95d86374cb031d4a6575993f06a4c334c3a2d954563e" + sha256 cellar: :any_skip_relocation, sonoma: "6fad18b4e2380047f9dc48c1a736d16c8bab239476b926ceedff4044399bacfa" + sha256 cellar: :any_skip_relocation, ventura: "6fad18b4e2380047f9dc48c1a736d16c8bab239476b926ceedff4044399bacfa" + sha256 cellar: :any_skip_relocation, x86_64_linux: "b0f97cb8c7008d6acdeb3e668bf764fd2a1a380e156aab83b3b8136916263fb8" end depends_on "go" => :build From 3925c833351c2e91f3868e4336da17d59867abf5 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 11:03:30 +0000 Subject: [PATCH 0814/1364] libsidplayfp 2.14.0 --- Formula/lib/libsidplayfp.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/lib/libsidplayfp.rb b/Formula/lib/libsidplayfp.rb index 386530711c80b..e9727762ad069 100644 --- a/Formula/lib/libsidplayfp.rb +++ b/Formula/lib/libsidplayfp.rb @@ -1,8 +1,8 @@ class Libsidplayfp < Formula desc "Library to play Commodore 64 music" homepage "https://github.com/libsidplayfp/libsidplayfp" - url "https://github.com/libsidplayfp/libsidplayfp/releases/download/v2.13.1/libsidplayfp-2.13.1.tar.gz" - sha256 "adda6ce516d6a61e741bcf390d85a0afc72a51c9ff342ff93bb522d4af2f7cd4" + url "https://github.com/libsidplayfp/libsidplayfp/releases/download/v2.14.0/libsidplayfp-2.14.0.tar.gz" + sha256 "0f49c87c3a4791b9709d502e605274ee5c4c20eabfdea0340917d27cbd685f53" license "GPL-2.0-or-later" bottle do From 712a56886950fd6fcb51dd23d772511d9c648ab1 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 11:04:03 +0000 Subject: [PATCH 0815/1364] libxmp 4.6.3 --- Formula/lib/libxmp.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/lib/libxmp.rb b/Formula/lib/libxmp.rb index ec68a05b1dd56..d63f0ef437705 100644 --- a/Formula/lib/libxmp.rb +++ b/Formula/lib/libxmp.rb @@ -1,8 +1,8 @@ class Libxmp < Formula desc "C library for playback of module music (MOD, S3M, IT, etc)" homepage "https://xmp.sourceforge.net/" - url "https://downloads.sourceforge.net/project/xmp/libxmp/4.6.2/libxmp-4.6.2.tar.gz" - sha256 "acac1705be2c4fb4d2d70dc05759853ba6aab747a83de576b082784d46f5a4b9" + url "https://downloads.sourceforge.net/project/xmp/libxmp/4.6.3/libxmp-4.6.3.tar.gz" + sha256 "b189a2ff3f3eef0008512e0fb27c2cdc27480bc1066b82590a84d02548fab96d" license "LGPL-2.1-or-later" bottle do From 050f0e519b4005086103c72987c44270d9a05a92 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 11:04:12 +0000 Subject: [PATCH 0816/1364] libxmp-lite 4.6.3 --- Formula/lib/libxmp-lite.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/lib/libxmp-lite.rb b/Formula/lib/libxmp-lite.rb index e26b88245d3d2..7b74613c4ee05 100644 --- a/Formula/lib/libxmp-lite.rb +++ b/Formula/lib/libxmp-lite.rb @@ -1,8 +1,8 @@ class LibxmpLite < Formula desc "Lite libxmp" homepage "https://xmp.sourceforge.net/" - url "https://downloads.sourceforge.net/project/xmp/libxmp/4.6.2/libxmp-lite-4.6.2.tar.gz" - sha256 "f4d03ea076c4beecd1c834d07cf7adadb6e680ae45dcc9cf8aff279c4748d003" + url "https://downloads.sourceforge.net/project/xmp/libxmp/4.6.3/libxmp-lite-4.6.3.tar.gz" + sha256 "fa6465d8b911363ae602c7baaa625ca1f5223142d10bb4682029c4d2f630cb62" license "MIT" bottle do From dbd5f8c0071dc608d02a1beb60695b3291100d24 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 11:04:46 +0000 Subject: [PATCH 0817/1364] lume 0.2.13 --- Formula/l/lume.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/l/lume.rb b/Formula/l/lume.rb index 752df2bf61360..fc84c15580d17 100644 --- a/Formula/l/lume.rb +++ b/Formula/l/lume.rb @@ -1,8 +1,8 @@ class Lume < Formula desc "Create and manage Apple Silicon-native virtual machines" homepage "https://github.com/trycua/computer" - url "https://github.com/trycua/computer/archive/refs/tags/lume-v0.2.12.tar.gz" - sha256 "3739c2c9b5cb630759916f51e09748296a51817ca9419d497010dc6c7ddbd290" + url "https://github.com/trycua/computer/archive/refs/tags/lume-v0.2.13.tar.gz" + sha256 "985539e86707a4ab60b19445b69d5ae43d9f725b6f582137c07e069f33264505" license "MIT" head "https://github.com/trycua/computer.git", branch: "main" From e3881d5c54b3d72b38c8d093265c1947fe4c5a25 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 11:08:04 +0000 Subject: [PATCH 0818/1364] nuitka 2.7.2 --- Formula/n/nuitka.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/n/nuitka.rb b/Formula/n/nuitka.rb index 9d9c1c1a4dbf6..ff2ef1766d3e0 100644 --- a/Formula/n/nuitka.rb +++ b/Formula/n/nuitka.rb @@ -3,8 +3,8 @@ class Nuitka < Formula desc "Python compiler written in Python" homepage "https://nuitka.net" - url "https://files.pythonhosted.org/packages/18/f7/f1d87901ab90be0bc1dd96d9f899a07f626f5f2bebe3b09e475fdc4b7fdb/Nuitka-2.7.1.tar.gz" - sha256 "1e7ff9208f8d8262302a6eee05d299650f30813dbecb4501d365a712c3169209" + url "https://files.pythonhosted.org/packages/68/78/ccc32d807985cf9b8f8578f921ed087a7964280be0851142d31d5abfab1e/Nuitka-2.7.2.tar.gz" + sha256 "4e8d315d6cd5370ef346f1243849681170f649bc9f6e4c10310f58b60861ef1d" license "Apache-2.0" bottle do From e9428b07c176754ddfff57e010f2110c59d10013 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 11:17:34 +0000 Subject: [PATCH 0819/1364] timg 1.6.2 --- Formula/t/timg.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/t/timg.rb b/Formula/t/timg.rb index fe354369f8684..b8379a4242d57 100644 --- a/Formula/t/timg.rb +++ b/Formula/t/timg.rb @@ -1,8 +1,8 @@ class Timg < Formula desc "Terminal image and video viewer" homepage "https://timg.sh/" - url "https://github.com/hzeller/timg/archive/refs/tags/v1.6.1.tar.gz" - sha256 "08147c41ce4cea61b6c494ad746e743b7c4501cfd247bec5134e8ede773bf2af" + url "https://github.com/hzeller/timg/archive/refs/tags/v1.6.2.tar.gz" + sha256 "a5fb4443f55552d15a8b22b9ca4cb5874eb1a988d3b98fe31d61d19b2c7b9e56" license "GPL-2.0-only" head "https://github.com/hzeller/timg.git", branch: "main" From 9bfa1d844563dec30f49f9befb4481ed3e874e17 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 11:19:52 +0000 Subject: [PATCH 0820/1364] weechat 4.6.3 --- Formula/w/weechat.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/w/weechat.rb b/Formula/w/weechat.rb index 31ad879fe8062..922edd4b93da5 100644 --- a/Formula/w/weechat.rb +++ b/Formula/w/weechat.rb @@ -1,8 +1,8 @@ class Weechat < Formula desc "Extensible IRC client" homepage "https://weechat.org/" - url "https://weechat.org/files/src/weechat-4.6.2.tar.xz" - sha256 "0fa0242a18116fe27f746dbb822121805da6bb5dbd40750d42c63306e4896628" + url "https://weechat.org/files/src/weechat-4.6.3.tar.xz" + sha256 "5c0b5efa969b873c4be582019b18523ee403e7430b8223825bcdb44a89f5815d" license "GPL-3.0-or-later" head "https://github.com/weechat/weechat.git", branch: "master" From 248c100190be6927050409e1869f65fd9718b99f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 11:21:36 +0000 Subject: [PATCH 0821/1364] lume: update 0.2.13 bottle. --- Formula/l/lume.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/l/lume.rb b/Formula/l/lume.rb index fc84c15580d17..7d6cca2073223 100644 --- a/Formula/l/lume.rb +++ b/Formula/l/lume.rb @@ -12,8 +12,8 @@ class Lume < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "b83fbec4d9ed2c096c3747bdb81ed62ec8e0ace350168042fbe3f72bf3e3b39e" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "1b629c3c3d1389578de26ca4805f83adfa7bf7fbd136583c50c3a237c507c8be" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "994528c13cbc981ca743fd7325e0bb25393ee21a8889f34500733549b581e5ed" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "ba67e904fd2e56753a6379ba81e4e69df71e5428b49f1dfff6ecf3dbbf5d6a84" end depends_on xcode: ["16.0", :build] From c5eb724e362e2c88f87069c60b8da4d567609b2c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 11:22:02 +0000 Subject: [PATCH 0822/1364] libxmp-lite: update 4.6.3 bottle. --- Formula/lib/libxmp-lite.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/lib/libxmp-lite.rb b/Formula/lib/libxmp-lite.rb index 7b74613c4ee05..21d85c6c4d21d 100644 --- a/Formula/lib/libxmp-lite.rb +++ b/Formula/lib/libxmp-lite.rb @@ -6,13 +6,13 @@ class LibxmpLite < Formula license "MIT" bottle do - sha256 cellar: :any, arm64_sequoia: "2e2091326691e6f0279ca6338598108e450081a3a0aaab6156bd19fd59d4bd36" - sha256 cellar: :any, arm64_sonoma: "beae63567964648910ba8d03b52884ce2b3acfd1617083459b33fad2a18738b7" - sha256 cellar: :any, arm64_ventura: "3adcb85150babc53ba6c3a78a109515fbde4e97891606c629e3f6de81b688c56" - sha256 cellar: :any, sonoma: "83edec8369c8897c694717b3d7d6d24bf07757e6c1fb9337ec2671f770b8ec5e" - sha256 cellar: :any, ventura: "befdc733f863ccf59f13a7735514c87e4cbbd68a8f33ac46d6cc0ea2c0a6c4c3" - sha256 cellar: :any_skip_relocation, arm64_linux: "9c7649711ff0d41f54b9e91ccdc51a5b49b9d8c17d3d311e4abc0da5657a4e55" - sha256 cellar: :any_skip_relocation, x86_64_linux: "b494f34f5a002db0090ed95c00445921d774b8d757e3b72caf26cf79abd5f7d4" + sha256 cellar: :any, arm64_sequoia: "33f736a998df705e0a4c9cdecbbea17c46ddab5803f97e7834d121079e97b03e" + sha256 cellar: :any, arm64_sonoma: "ec6e0e00af014526d3f1f96741fb564e724354169f8c9798725c45f174793f50" + sha256 cellar: :any, arm64_ventura: "7d29fddef4290da3d16092ae368fe48e493fd7cab53734986ee72508e404607f" + sha256 cellar: :any, sonoma: "04ed96a9057040484ce1972869065a2fb281b17a34f987ba0518b49032f8d8af" + sha256 cellar: :any, ventura: "fb44f2c897a35488b9a0029a4f5df90e2f2943b3f9f3166a4ec4afaf1b079d6e" + sha256 cellar: :any_skip_relocation, arm64_linux: "122f92680e34ed0d76488a405c5e97e1b18280224b2870d1563f1fe6878e3297" + sha256 cellar: :any_skip_relocation, x86_64_linux: "3b188d2359801030bbd31a68715f74fd271898ea4dd537c3c12def7bdba7b0a5" end def install From b4fd198b602ae5f8c983f164c82a0346a6634021 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 11:32:20 +0000 Subject: [PATCH 0823/1364] nuitka: update 2.7.2 bottle. --- Formula/n/nuitka.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/n/nuitka.rb b/Formula/n/nuitka.rb index ff2ef1766d3e0..16d85cbc0ec33 100644 --- a/Formula/n/nuitka.rb +++ b/Formula/n/nuitka.rb @@ -8,13 +8,13 @@ class Nuitka < Formula license "Apache-2.0" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "72cb5e538d3db3c7742a6155606f13350c4605b89e1962c49e90864622f4451e" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "b24a4aba716029a2e0ea32cab4c9b6d1aeeba8e0a5363064e477b9862c00ed73" - sha256 cellar: :any_skip_relocation, arm64_ventura: "7651b076627740a40ca57fc53ee6f61ec69c38b20a8f554ec86d9cae77bb0a3c" - sha256 cellar: :any_skip_relocation, sonoma: "ffd348002bd119192b90c706aa459975854fdae9ce9f93d60d49645fcce0655b" - sha256 cellar: :any_skip_relocation, ventura: "2932404b16d1ca103de4b8ae9b225c509804b732a7186485ade31a1a59fdaacf" - sha256 cellar: :any_skip_relocation, arm64_linux: "dfb03a6085a4e87d2d32dcea1da2469ee0a06b7a6397a03af2eb47c882201a37" - sha256 cellar: :any_skip_relocation, x86_64_linux: "eddd2eacca381fe1130c455c7fc1937c4ce7f38263c62651b8a84c2cac2ccac1" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "062f4630395724bb0be3c1799ed0c6e1f2887f7ef5b6c9919b58173583680dc3" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "91fbdd7e80b8f51575f052129ccdf673b91c07fcfe3efbb518594c38ade7c0ee" + sha256 cellar: :any_skip_relocation, arm64_ventura: "9420362d1409f4f17d5f954b8f4081d44eeafeadc94bc96ade49e63c95e664cc" + sha256 cellar: :any_skip_relocation, sonoma: "6f2560ec5ea0546338d69824a80e2c5d5c1726ed4dabdc23ab0ce1c4b011e1c6" + sha256 cellar: :any_skip_relocation, ventura: "d92c27418d167b1488900a40e5c479c873f2b3f0b8f2d5adae76adff017c797d" + sha256 cellar: :any_skip_relocation, arm64_linux: "79864604721914928128417672eecd050cf323b35c5138a55c2edbd3da99656d" + sha256 cellar: :any_skip_relocation, x86_64_linux: "7e640923b82d797c84958752964a661bb34a019dfa851f293286aa06f324be20" end depends_on "ccache" From c420a58392ddcf07a4054102c44c3919eae7fe85 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 11:40:13 +0000 Subject: [PATCH 0824/1364] libxmp: update 4.6.3 bottle. --- Formula/lib/libxmp.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/lib/libxmp.rb b/Formula/lib/libxmp.rb index d63f0ef437705..97693952ffaf8 100644 --- a/Formula/lib/libxmp.rb +++ b/Formula/lib/libxmp.rb @@ -6,13 +6,13 @@ class Libxmp < Formula license "LGPL-2.1-or-later" bottle do - sha256 cellar: :any, arm64_sequoia: "cad29336b72066c119b14cdc151ed153791f48891205ad0c8165083e0a767e82" - sha256 cellar: :any, arm64_sonoma: "db3b303b12e4c78572f024758e708eb450a6f88f56c8f6235d4ca1f71f99a759" - sha256 cellar: :any, arm64_ventura: "33d0997205204bb8d3c5f8a94f7e0a53cbd81eb0b8cc0525a10f047642763054" - sha256 cellar: :any, sonoma: "ae85827745c2959cc955737668515f20db08780bf0dc4599f4d8a5dea77c1058" - sha256 cellar: :any, ventura: "f78dc6db1f4a004cb580e35d8cd32cf104a4de1796d90267f198dd50390828f2" - sha256 cellar: :any_skip_relocation, arm64_linux: "5947b7466e9f089143a4a1d8a4d223bd284234c06f8d160d0a157e55e99ee160" - sha256 cellar: :any_skip_relocation, x86_64_linux: "8bd56a6ee5dace91cadfbb3e015f92a98c334f39820eaf0240f47695702bcd8a" + sha256 cellar: :any, arm64_sequoia: "746c3d92562469f5200fe2bb32f18f43c7bac6416e4e6cfa4ceb825d10ee13c8" + sha256 cellar: :any, arm64_sonoma: "7bad2e453d99d72bf38ab45f8c843c3ca96f9e845a24493d889000afe5a1cbd9" + sha256 cellar: :any, arm64_ventura: "d69cfd7a46845980beb6169e957088d81259cbfc22149f86d0d81e47b8ea261c" + sha256 cellar: :any, sonoma: "c632e6c890ccb5aa8fd15b67323a25b197465771515088844cb6d3a9f739eae6" + sha256 cellar: :any, ventura: "dc9a1c17688c400188dbb91726bb2b8d4749ff477d494df1b1c8d6c4d8f010b1" + sha256 cellar: :any_skip_relocation, arm64_linux: "a6533f946457471d6fc7fe7fe7481085be039c7ac7bf4f0813939b21d9f74e34" + sha256 cellar: :any_skip_relocation, x86_64_linux: "9a650c8549008d6e0b13fc813e9988372a943b0a2a8859b303d755da69e5deea" end head do From d8830f227279f7ba0f79dfc586c8c88aee78fc87 Mon Sep 17 00:00:00 2001 From: botantony Date: Sun, 11 May 2025 13:49:51 +0200 Subject: [PATCH 0825/1364] fedify 1.5.2 --- Formula/f/fedify.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/f/fedify.rb b/Formula/f/fedify.rb index 34ec6a8eff03c..e962be51804ed 100644 --- a/Formula/f/fedify.rb +++ b/Formula/f/fedify.rb @@ -1,8 +1,8 @@ class Fedify < Formula desc "CLI toolchain for Fedify" homepage "https://fedify.dev/cli" - url "https://github.com/fedify-dev/fedify/archive/refs/tags/1.5.1.tar.gz" - sha256 "442e1001d0c53fca6dc5dcf73601afc54f65ea61d9e5468002f0af53b99acb47" + url "https://github.com/fedify-dev/fedify/archive/refs/tags/1.5.2.tar.gz" + sha256 "9bc5a6c36599b87f51f9d83d8fa314e0037e591fe64ecca6607d78e3d0200260" license "MIT" head "https://github.com/fedify-dev/fedify.git", branch: "main" From 463420f26b920a8e2e332926b26b10e7103b06e0 Mon Sep 17 00:00:00 2001 From: botantony Date: Sun, 11 May 2025 13:50:22 +0200 Subject: [PATCH 0826/1364] autobump: add fedify Signed-off-by: botantony --- .github/autobump.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/autobump.txt b/.github/autobump.txt index 5c62693590e83..a5c5991952a64 100644 --- a/.github/autobump.txt +++ b/.github/autobump.txt @@ -1051,6 +1051,7 @@ fdk-aac-encoder fdroidcl fdroidserver fdupes +fedify feh feishu2md felinks From 4508150b12970267d5ad0ca5564b0f59eb033ef1 Mon Sep 17 00:00:00 2001 From: botantony Date: Sun, 11 May 2025 13:56:23 +0200 Subject: [PATCH 0827/1364] marcli 1.2.0 --- Formula/m/marcli.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/m/marcli.rb b/Formula/m/marcli.rb index f5a9518f9c68a..c08f54e6ee83f 100644 --- a/Formula/m/marcli.rb +++ b/Formula/m/marcli.rb @@ -1,8 +1,8 @@ class Marcli < Formula desc "Parse MARC (ISO 2709) files" homepage "https://github.com/hectorcorrea/marcli" - url "https://github.com/hectorcorrea/marcli/archive/refs/tags/v1.1.0.tar.gz" - sha256 "9278cc6b36974cbf0ddea2869b577ae41ad03e1753e596d50e221ccf0db700ff" + url "https://github.com/hectorcorrea/marcli/archive/refs/tags/v1.2.0.tar.gz" + sha256 "673f3237baa843db13f671c5a2e3986aa272566a38835bdd042377327ff9d9cb" license "MIT" head "https://github.com/hectorcorrea/marcli.git", branch: "main" From 21fb62225aa21431efd8786b2787f3322b70d19e Mon Sep 17 00:00:00 2001 From: botantony Date: Sun, 11 May 2025 13:57:02 +0200 Subject: [PATCH 0828/1364] autobump: add marcli Signed-off-by: botantony --- .github/autobump.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/autobump.txt b/.github/autobump.txt index 5c62693590e83..bab3d1abe1387 100644 --- a/.github/autobump.txt +++ b/.github/autobump.txt @@ -2235,6 +2235,7 @@ mapcidr mapnik mapproxy mapserver +marcli mariadb mariadb-connector-c mariadb-connector-odbc From d2af325607c2754783cd1bfcf71ed48f2f478ad6 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 11:57:03 +0000 Subject: [PATCH 0829/1364] libsidplayfp: update 2.14.0 bottle. --- Formula/lib/libsidplayfp.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/lib/libsidplayfp.rb b/Formula/lib/libsidplayfp.rb index e9727762ad069..f16ad5329a7b2 100644 --- a/Formula/lib/libsidplayfp.rb +++ b/Formula/lib/libsidplayfp.rb @@ -6,13 +6,13 @@ class Libsidplayfp < Formula license "GPL-2.0-or-later" bottle do - sha256 cellar: :any, arm64_sequoia: "a08182d0154c8a2ee3d8612aefcbe99c9e031a01e8e611edb0788422ee55df8c" - sha256 cellar: :any, arm64_sonoma: "50df29ce9c4db2c980847477b517ed87fff0272b1daf6f736134e4f1a8d99d93" - sha256 cellar: :any, arm64_ventura: "468899ecea582754df6d155838978bc42e5d91b05b6ee528d97ae4b988d675d1" - sha256 cellar: :any, sonoma: "606df70c23d4ee651b101ffb72331c8a6a202925b982ba6f11a2ece3fae67a2b" - sha256 cellar: :any, ventura: "527afccbd807e0e9a5dd293c1ba31f0a3f6a7eb6383050a8fbd00496eade31cb" - sha256 cellar: :any_skip_relocation, arm64_linux: "7c7cf82e34aa6eb058860458f7d0eb622f8397f72868374977a3861bbe700ea1" - sha256 cellar: :any_skip_relocation, x86_64_linux: "ef7cde3a67b18b5c5f0cd13618046ceca62c785079d034adf2e61ce92b3e72ba" + sha256 cellar: :any, arm64_sequoia: "1079c7fdb8d53199b128d5022a0ad918cd937bbf1535e2b73f030e560540f783" + sha256 cellar: :any, arm64_sonoma: "6d3c978c8bab5665aa97a7d78f9c3f13865a87e01615c89f2b2a466ff6e61a65" + sha256 cellar: :any, arm64_ventura: "b4d96ddf0760fa704d6d183628e80b273a5f51c2115f4b8e70979856a965750e" + sha256 cellar: :any, sonoma: "a29f5db031283a1a9605d9c41d66f1d39f3dbfdb4a9b20c207b2651576241192" + sha256 cellar: :any, ventura: "f1fa12831c8b3bf2d5d6e633cc312a90bec47c5c3b3d2b72bdb1ad48a421727f" + sha256 cellar: :any_skip_relocation, arm64_linux: "a68214b7de4632c51b0db5bfce208238b948b4733635dbaf27da0aa0c302d4db" + sha256 cellar: :any_skip_relocation, x86_64_linux: "d98612cce385b91aec0ba7ae4c0ae1349be0eb4012bef57d872d92cff2dfdaa4" end head do From 1fdb701c41131750d55775a1a6d67c63af5e2e28 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 12:00:46 +0000 Subject: [PATCH 0830/1364] timg: update 1.6.2 bottle. --- Formula/t/timg.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/t/timg.rb b/Formula/t/timg.rb index b8379a4242d57..74ab95115875c 100644 --- a/Formula/t/timg.rb +++ b/Formula/t/timg.rb @@ -7,13 +7,13 @@ class Timg < Formula head "https://github.com/hzeller/timg.git", branch: "main" bottle do - sha256 cellar: :any, arm64_sequoia: "dd86d8ab997a80cb1e6067cf38c13b7eadfee02bd266e586bffbbfeade93554a" - sha256 cellar: :any, arm64_sonoma: "dddce59f7d705fe792f556cf2e148dada0ed503b432c695ca286ddb48d926367" - sha256 cellar: :any, arm64_ventura: "db65c04c43af07594e071cf569f6aa299936430a10e98de55f53d25c2e9fa177" - sha256 cellar: :any, sonoma: "8b9ddad7d1afa24b2d00ba104ef910e07faffce6a211d06ec478605fdbe272ed" - sha256 cellar: :any, ventura: "2decdb120bb52f7f2080c2526e9f227313d94ab8d6680478ff5de4e465afbcb2" - sha256 cellar: :any_skip_relocation, arm64_linux: "b542a752faf9ce910ac5b5c4c9737be3f5a570eef15305433da55a96d7623f32" - sha256 cellar: :any_skip_relocation, x86_64_linux: "3feaed8c8bd6d7ec821e675f9c9182bb29e0c514ddf2e6dd630ab41876cf74e0" + sha256 cellar: :any, arm64_sequoia: "5c8350f7fe1ed4dc4442b36edf9bed57cc7f91d8ed216a23e5b70fd5e094ca6b" + sha256 cellar: :any, arm64_sonoma: "68666166df0ec18cea0727596196fbde09525e366acbc96f280900dee189e1ab" + sha256 cellar: :any, arm64_ventura: "efa5d590ef38f66e6abc82b1d93d5b25b709d8a7ff300c339e82cb646c97cc42" + sha256 cellar: :any, sonoma: "2b7b02c5c71ea66fd8343fd1d2bd3a48921f5f141ab3475f3504daa7b1aca7f5" + sha256 cellar: :any, ventura: "6709b3b50e2e5b42fdc10979f0e54cbc8961f5cb4114689cdf2835738f4ebf72" + sha256 cellar: :any_skip_relocation, arm64_linux: "5382f40353ec7c2e43e38966dc4a859a5ef032f98a6858b76dd76e71cae8a1e1" + sha256 cellar: :any_skip_relocation, x86_64_linux: "d7b3b2f667e0ce20d21fba8ada97bc1d4c41a4d00171bdc67a4d7b56e062f6dd" end depends_on "cmake" => :build From d7908b0f42edbd654f276e877a6722b38c64a182 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 12:26:52 +0000 Subject: [PATCH 0831/1364] weechat: update 4.6.3 bottle. --- Formula/w/weechat.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/w/weechat.rb b/Formula/w/weechat.rb index 922edd4b93da5..e1e54c9a2ea3d 100644 --- a/Formula/w/weechat.rb +++ b/Formula/w/weechat.rb @@ -7,13 +7,13 @@ class Weechat < Formula head "https://github.com/weechat/weechat.git", branch: "master" bottle do - sha256 arm64_sequoia: "ef4df65a4d3c46b514c3f13fb8f0eb78c57cd4bb96bcb6afe96c6e5781ab0abf" - sha256 arm64_sonoma: "84007886ec2ea2f65a2b22be63148377af897248cb44110565703a39bf8d49b0" - sha256 arm64_ventura: "c6bc888393c338fc39d35757ada5db5ce05acda05ecd5eca6ca30c4c2eecb784" - sha256 sonoma: "f9b3076d67c5d3e1c9fe97908bfb8d7d76cbf39e4492c51696ae9a3a65bc57cb" - sha256 ventura: "1c1966de42bbc6b25addaa387cc9c971d4b47cdc4d8f6d0d9a84bf23fceb78f9" - sha256 arm64_linux: "18e5288c19916e6823679a5d034bc32638c5fd7b0f6a6a1cf09ee0b0565175e9" - sha256 x86_64_linux: "996588573056267eb6081a1726a4de3d7b03c8016db925124f5e4f608d8ab472" + sha256 arm64_sequoia: "b333b588588d4d5d7f7c14be493a09f0c541639add4e69f180fb74e9cb029fad" + sha256 arm64_sonoma: "34049148e5e982ce687c01fed23e89a6ae5eeccee8251f59e9fa3c787f42749c" + sha256 arm64_ventura: "650d7c6c78c2b7bb8310e5f8ef99e4e292bdc76e7a0059fa78b5c409f1c5f8d2" + sha256 sonoma: "14b00b6ab38361c24c665060103b64c7d9ecd5a3c6e01342d5cbfccd31f8cb22" + sha256 ventura: "1cac654fd2c809f30e6019a4b71b78592d587297c9e5e066dc34d8bafcaa6338" + sha256 arm64_linux: "3a38a63283d50f8d0eefc5fbc7bd0c65d8c8be35f5e00d0de3ca7c76c6700acb" + sha256 x86_64_linux: "39721b0a72bea7690cb0d0552ca338deb24f4336f64a0e3168a24cb19e340a45" end depends_on "asciidoctor" => :build From c3cc7c2bfbc2f8d23a6be4c6ebe67e6ff32bb247 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 12:27:35 +0000 Subject: [PATCH 0832/1364] fedify: update 1.5.2 bottle. --- Formula/f/fedify.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/f/fedify.rb b/Formula/f/fedify.rb index e962be51804ed..367e44b460af5 100644 --- a/Formula/f/fedify.rb +++ b/Formula/f/fedify.rb @@ -7,13 +7,13 @@ class Fedify < Formula head "https://github.com/fedify-dev/fedify.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "ce788ba6b69cb11ce056fbfdf2798a9bb268ede77b7cbb3db903cdea450e0d46" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "2d075a0ec602ea2e7de640989188605437625518e0616a19f2ba26dbccf57801" - sha256 cellar: :any_skip_relocation, arm64_ventura: "deaf0bf3958b02a028973a968a22283231076bab7e0d2dc6973fd4b0acc796a3" - sha256 cellar: :any_skip_relocation, sonoma: "a6bc970fe7c3bfad5d7e02f5ef232b87bf79e1f3408601709ff0053f266cd1ed" - sha256 cellar: :any_skip_relocation, ventura: "463bb00e0c97b41bd44a9c2948002b3643058d73f8c48fe497d66faac9384075" - sha256 cellar: :any_skip_relocation, arm64_linux: "91523f9e75e92884098b44661caf32852eead78991687d2e645c5e780e711790" - sha256 cellar: :any_skip_relocation, x86_64_linux: "a7a8252359da627dfd4e8199205e6765e70cbe4fb2605d170549d55decd88638" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "032fbf656a501284f5e83335ca390858841b8bc6b6b7bdbf96ff24b5e00da533" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "e4c24445bcf9a7046c0dd7f52041b811eb7a92f246092741b359d5643cda7047" + sha256 cellar: :any_skip_relocation, arm64_ventura: "3d90385744855e253da3a863a6f13998de3d1c2a6ac05b69dd830186fc9b95db" + sha256 cellar: :any_skip_relocation, sonoma: "ef9a0c28c4420eae01523f3167ec5a66ff939bbbf7b62c8fec42d732979a045d" + sha256 cellar: :any_skip_relocation, ventura: "5ac2f41532a4c9a0e157a3adffea357fb11fdb00166c742cdd1273f284e30db4" + sha256 cellar: :any_skip_relocation, arm64_linux: "0edf56ceec017df22d07ffdf39aae8eefd19cb8b61d29183b1488c2a4e510199" + sha256 cellar: :any_skip_relocation, x86_64_linux: "200b8247edce833fcf9fbca01ccd46b5b2e58b395b18f4bd38d9d0036a290de6" end depends_on "deno" => :build From 8b154557ad506f91792b4b06af01ef8c2631d7fe Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 12:27:37 +0000 Subject: [PATCH 0833/1364] nerdlog: add 1.6.0 bottle. --- Formula/n/nerdlog.rb | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Formula/n/nerdlog.rb b/Formula/n/nerdlog.rb index 4a406630b243f..21ade4b5a87a8 100644 --- a/Formula/n/nerdlog.rb +++ b/Formula/n/nerdlog.rb @@ -6,6 +6,15 @@ class Nerdlog < Formula license "BSD-2-Clause" head "https://github.com/dimonomid/nerdlog.git", branch: "master" + bottle do + sha256 cellar: :any_skip_relocation, arm64_sequoia: "ec219169ed96ac12fc190b65bf8daee3a155e560c8294614c513e7dc1f1a58d6" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "10e835b240c0168ce54b9f5a80f1efc13c5db04f6c88a5b6ac8b0b90f8204ee2" + sha256 cellar: :any_skip_relocation, arm64_ventura: "5ea1b53bd7572f06e77db17c8fe095fba4b170d07594fd1e793b554d3447a69a" + sha256 cellar: :any_skip_relocation, sonoma: "78fb88a50c663341fd0d2f5f3ea960e3abc9de83922e373d30efd795aeb4b3bb" + sha256 cellar: :any_skip_relocation, ventura: "da7186e9791489f57b740e10a7ecf5fc6f99536ac77ffc046590b0309541444d" + sha256 cellar: :any_skip_relocation, x86_64_linux: "66a4ada6105c759e7f43ebe5d221c82aab4e2c26257147490c495d989df91326" + end + depends_on "go" => :build on_linux do From 926f9b5d274a4f5d37844124d1b53eeb9ce8e223 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 12:28:47 +0000 Subject: [PATCH 0834/1364] neomutt: update 20250510 bottle. --- Formula/n/neomutt.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/n/neomutt.rb b/Formula/n/neomutt.rb index b113fb3f147d5..cb7bb11bb9696 100644 --- a/Formula/n/neomutt.rb +++ b/Formula/n/neomutt.rb @@ -7,13 +7,13 @@ class Neomutt < Formula head "https://github.com/neomutt/neomutt.git", branch: "main" bottle do - sha256 arm64_sequoia: "c2d9fca146398e3048346e0d6bfaa94c17b1599af64444816618f72b656b590b" - sha256 arm64_sonoma: "f8aa3cd0af466823bc6f9e4360885804cb6593c6edd30e5ec49fc92a6231605d" - sha256 arm64_ventura: "c86fd64152b87d15fa74c3d34cb4633ab0e0fbe80a674f946741f5137c3b21ad" - sha256 sonoma: "513e560d739a48b535a2d53c8c5850ed964b798650edcd5bbc2e8d384dbba0f9" - sha256 ventura: "0872cb813762014a08dff0077919f750d26b69ba218b53e1b73e69b8d3975e38" - sha256 arm64_linux: "b72ade4c63ad7a2c59604e6fc6c61b320bc0d949f18dd3a0d5126b614ce1c334" - sha256 x86_64_linux: "184e90d7b007a57450a79489a79b5ab880d4e13bfc21304a24eac1838d618104" + sha256 arm64_sequoia: "aeeccca4cdcc5bcfdd187ff32ec295746bd0ff57a92b108a67609917ca6ca96e" + sha256 arm64_sonoma: "e7494884f1e9a9289e3993fd0fca9ae0f310d1d30b3886cc95abe0a58bbf18cd" + sha256 arm64_ventura: "2b2fd04f1c68cb95cca733c59c6892b7e9a91e33583844bcd36327c23ae08ddf" + sha256 sonoma: "fe987a4cb6230c846a72b1eb4a7112bbe6699400f349ca3152811a5d7b941999" + sha256 ventura: "695b0073f3d0b12d395f8b4c82606d941879ef26c091ce3c29f358a26c1da1bf" + sha256 arm64_linux: "6b80fca262c7f3614cb79765ca84c2dc49b0b00ac42262f387939bb5cfad4736" + sha256 x86_64_linux: "a04f64ef9d7de760165d6816de3256163f3473d26e4b25967e09a1d1e6f7320f" end depends_on "docbook-xsl" => :build From 4665729375c8816ec858f71eab68d0f0950e0be2 Mon Sep 17 00:00:00 2001 From: botantony Date: Sun, 11 May 2025 14:29:10 +0200 Subject: [PATCH 0835/1364] dolphie 6.10.0 Signed-off-by: botantony --- Formula/d/dolphie.rb | 120 +++++++++++++++++++++++++++++++------------ 1 file changed, 86 insertions(+), 34 deletions(-) diff --git a/Formula/d/dolphie.rb b/Formula/d/dolphie.rb index 3dc9085bfac73..fa8cce51ae5cc 100644 --- a/Formula/d/dolphie.rb +++ b/Formula/d/dolphie.rb @@ -3,10 +3,12 @@ class Dolphie < Formula desc "Feature-rich top tool for monitoring MySQL" homepage "https://github.com/charles-001/dolphie" - url "https://files.pythonhosted.org/packages/3a/aa/1a2b05994dffab3d9a0a47878779ae354c13bab3a3a3dddb17ee7540bb81/dolphie-6.9.1.tar.gz" - sha256 "79ccef87f8971f1a76176ab1ead85773f3a43f809605254be4ae61ba66066df5" + url "https://files.pythonhosted.org/packages/f9/10/01240635d7d1c0655cc31dee04fa95ae8ded1a69378fe21bf7db8051a4a4/dolphie-6.10.0.tar.gz" + sha256 "b733f34f0a49383f596767c02467d5ed7e343cd4adca741eed5250811ac531c0" license "GPL-3.0-or-later" + no_autobump! because: "some resources have to be updated manually" + bottle do sha256 cellar: :any, arm64_sequoia: "bb53a0115ff65b0fdb0005a4fb960bc6986b3bed07994390b0087e30c5cf6e9f" sha256 cellar: :any, arm64_sonoma: "89fcadbf22be4200b5023cfde22a95a54c73e1daef2b1a5f08010e27dba5a750" @@ -22,14 +24,15 @@ class Dolphie < Formula depends_on "cryptography" depends_on "python@3.13" - resource "charset-normalizer" do - url "https://files.pythonhosted.org/packages/16/b0/572805e227f01586461c80e0fd25d65a2115599cc9dad142fee4b747c357/charset_normalizer-3.4.1.tar.gz" - sha256 "44251f18cd68a75b56585dd00dae26183e102cd5e0f9f1466e6df5da2ed64ea3" - end + # `tree-sitter-*` sdists are missing C headers and therefore we have to use GitHub sources + # Resources can be updated the following way: + # 1. remove all resources to GitHub sources + # 2. run `brew update-python-resources dolphie` + # 3. replace `tree-sitter-*` resources with their versions from GitHub - resource "cython" do - url "https://files.pythonhosted.org/packages/5a/25/886e197c97a4b8e254173002cdc141441e878ff29aaa7d9ba560cd6e4866/cython-3.0.12.tar.gz" - sha256 "b988bb297ce76c671e28c97d017b95411010f7c77fa6623dd0bb47eed1aee1bc" + resource "charset-normalizer" do + url "https://files.pythonhosted.org/packages/e4/33/89c2ced2b67d1c2a61c19c6751aa8902d46ce3dacb23600a283619f5a12d/charset_normalizer-3.4.2.tar.gz" + sha256 "5baececa9ecba31eff645232d59845c07aa030f0c81ee70184a90d35099a0e63" end resource "idna" do @@ -68,18 +71,18 @@ class Dolphie < Formula end resource "orjson" do - url "https://files.pythonhosted.org/packages/98/c7/03913cc4332174071950acf5b0735463e3f63760c80585ef369270c2b372/orjson-3.10.16.tar.gz" - sha256 "d2aaa5c495e11d17b9b93205f5fa196737ee3202f000aaebf028dc9a73750f10" + url "https://files.pythonhosted.org/packages/81/0b/fea456a3ffe74e70ba30e01ec183a9b26bec4d497f61dcfce1b601059c60/orjson-3.10.18.tar.gz" + sha256 "e8da3947d92123eda795b68228cafe2724815621fe35e8e320a9e9593a4bcd53" end resource "packaging" do - url "https://files.pythonhosted.org/packages/d0/63/68dbb6eb2de9cb10ee4c9c14a0148804425e13c4fb20d61cce69f53106da/packaging-24.2.tar.gz" - sha256 "c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f" + url "https://files.pythonhosted.org/packages/a1/d4/1fc4078c65507b51b96ca8f8c3ba19e6a61c8253c72794544580a7b6c24d/packaging-25.0.tar.gz" + sha256 "d443872c98d677bf60f6a1f2f8c1cb748e8fe762d2bf9d3148b5599295b0fc4f" end resource "platformdirs" do - url "https://files.pythonhosted.org/packages/b6/2d/7d512a3913d60623e7eb945c6d1b4f0bddf1d0b7ada5225274c87e5b53d1/platformdirs-4.3.7.tar.gz" - sha256 "eb437d586b6a0986388f0d6f74aa0cde27b48d0e3d66843640bfb6bdcdb6e351" + url "https://files.pythonhosted.org/packages/fe/8b/3c73abc9c759ecd3f1f7ceff6685840859e8070c4d947c93fae71f6a0bf2/platformdirs-4.3.8.tar.gz" + sha256 "3d512d96e16bcb959a814c9f348431070822a6496326a4be0911c40b5a74c2bc" end resource "plotext" do @@ -108,13 +111,8 @@ class Dolphie < Formula end resource "rich" do - url "https://files.pythonhosted.org/packages/ab/3a/0316b28d0761c6734d6bc14e770d85506c986c85ffb239e688eeaab2c2bc/rich-13.9.4.tar.gz" - sha256 "439594978a49a09530cff7ebc4b5c7103ef57baf48d5ea3184f21d9a2befa098" - end - - resource "setuptools" do - url "https://files.pythonhosted.org/packages/ea/df/9f719dc48f64284be8bd99e2e0bb0dd6e9f8e2c2c3c7bf7a685bc5adf2c7/setuptools-77.0.1.tar.gz" - sha256 "a1246a1b4178c66d7cf50c9fc6d530fac3f89bc284cf803c7fa878c41b1a03b2" + url "https://files.pythonhosted.org/packages/a1/53/830aa4c3066a8ab0ae9a9955976fb770fe9c6102117c8ec4ab3ea62d89e8/rich-14.0.0.tar.gz" + sha256 "82f1bc23a6a21ebca4ae0c45af9bdbc492ed20231dcb63f297d6d1021a9d5725" end resource "sqlparse" do @@ -123,24 +121,78 @@ class Dolphie < Formula end resource "textual" do - url "https://files.pythonhosted.org/packages/dc/1f/df371f1455524a3d0079871e49e3850c82767904e9f4e2bdea6d30a866a7/textual-3.1.0.tar.gz" - sha256 "6bcab6581e9753d2a2043caf49f43c5818feb35f8049ed185bd38982bfb310ca" + url "https://files.pythonhosted.org/packages/34/99/8408761a1a1076b2bb69d4859ec110d74be7515552407ac1cb6b68630eb6/textual-3.2.0.tar.gz" + sha256 "d2f3b0c39e02535bb5f2aec1c45e10bd3ee7508ed1e240b7505c3cf02a6f00ed" end - resource "textual-autocomplete" do - url "https://files.pythonhosted.org/packages/7a/cf/9cf23ac193c70e7b0a6999dc9409650e9ab9960b1be167e7dda54f1028a8/textual_autocomplete-4.0.4.tar.gz" - sha256 "0969987b90a53c1f75753dfe3ad2c7ea0d974b5839dc2a00a2d332c000057871" + resource "tree-sitter" do + url "https://files.pythonhosted.org/packages/a7/a2/698b9d31d08ad5558f8bfbfe3a0781bd4b1f284e89bde3ad18e05101a892/tree-sitter-0.24.0.tar.gz" + sha256 "abd95af65ca2f4f7eca356343391ed669e764f37748b5352946f00f7fc78e734" end - resource "tree-sitter" do - url "https://files.pythonhosted.org/packages/0f/50/fd5fafa42b884f741b28d9e6fd366c3f34e15d2ed3aa9633b34e388379e2/tree-sitter-0.23.2.tar.gz" - sha256 "66bae8dd47f1fed7bdef816115146d3a41c39b5c482d7bad36d9ba1def088450" + resource "tree-sitter-bash" do + url "https://github.com/tree-sitter/tree-sitter-bash/archive/refs/tags/v0.23.3.tar.gz" + sha256 "c682b81d0fe953d19f6632db3ba6e4f2db1efe1784f7a28bc5fcf6355d67335b" + end + + resource "tree-sitter-css" do + url "https://github.com/tree-sitter/tree-sitter-css/archive/refs/tags/v0.23.2.tar.gz" + sha256 "5d442e8b04d8c743603172fb02664ae2b404f38f7a871d97cf2c89c1eedf8251" + end + + resource "tree-sitter-go" do + url "https://github.com/tree-sitter/tree-sitter-go/archive/refs/tags/v0.23.4.tar.gz" + sha256 "967870d7d120e9b760e538aeb8331a72f70ffcca4f1eaf1e1dea5375886d25d2" + end + + resource "tree-sitter-html" do + url "https://github.com/tree-sitter/tree-sitter-html/archive/refs/tags/v0.23.2.tar.gz" + sha256 "21fa4f2d4dcb890ef12d09f4979a0007814f67f1c7294a9b17b0108a09e45ef7" + end + + resource "tree-sitter-java" do + url "https://github.com/tree-sitter/tree-sitter-java/archive/refs/tags/v0.23.5.tar.gz" + sha256 "cb199e0faae4b2c08425f88cbb51c1a9319612e7b96315a174a624db9bf3d9f0" + end + + resource "tree-sitter-javascript" do + url "https://github.com/tree-sitter/tree-sitter-javascript/archive/refs/tags/v0.23.1.tar.gz" + sha256 "fc5b8f5a491a6db33ca4854b044b89363ff7615f4291977467f52c1b92a0c032" + end + + resource "tree-sitter-json" do + url "https://github.com/tree-sitter/tree-sitter-json/archive/refs/tags/v0.24.8.tar.gz" + sha256 "acf6e8362457e819ed8b613f2ad9a0e1b621a77556c296f3abea58f7880a9213" + end + + resource "tree-sitter-markdown" do + url "https://github.com/tree-sitter-grammars/tree-sitter-markdown/archive/refs/tags/v0.3.2.tar.gz" + sha256 "5dac48a6d971eb545aab665d59a18180d21963afc781bbf40f9077c06cb82ae5" + end + + resource "tree-sitter-python" do + url "https://github.com/tree-sitter/tree-sitter-python/archive/refs/tags/v0.23.6.tar.gz" + sha256 "630a0f45eccd9b69a66a07bf47d1568e96a9c855a2f30e0921c8af7121e8af96" + end + + resource "tree-sitter-regex" do + url "https://github.com/tree-sitter/tree-sitter-regex/archive/refs/tags/v0.24.3.tar.gz" + sha256 "92f24bb779a92debe259cc1c204aab78f425f0fc1e8b4f2c03b6896d2da8f0a3" + end + + resource "tree-sitter-rust" do + url "https://github.com/tree-sitter/tree-sitter-rust/archive/refs/tags/v0.24.0.tar.gz" + sha256 "79c9eb05af4ebcce8c40760fc65405e0255e2d562702314b813a5dec1273b9a2" + end + + resource "tree-sitter-toml" do + url "https://github.com/tree-sitter-grammars/tree-sitter-toml/archive/refs/tags/v0.7.0.tar.gz" + sha256 "7d52a7d4884f307aabc872867c69084d94456d8afcdc63b0a73031a8b29036dc" end - # sdist issue report, https://github.com/grantjenks/py-tree-sitter-languages/issues/63 - resource "tree-sitter-languages" do - url "https://github.com/grantjenks/py-tree-sitter-languages/archive/refs/tags/v1.10.2.tar.gz" - sha256 "cdd03196ebaf8f486db004acd07a5b39679562894b47af6b20d28e4aed1a6ab5" + resource "tree-sitter-yaml" do + url "https://github.com/tree-sitter-grammars/tree-sitter-yaml/archive/refs/tags/v0.7.0.tar.gz" + sha256 "8182760587f14d5131161dee3605613ccebe86062909f0879edf63b4bdd99d44" end resource "typing-extensions" do From f7568f264089d32db8ff454839c3bc8037e71f0e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 12:29:32 +0000 Subject: [PATCH 0836/1364] marcli: update 1.2.0 bottle. --- Formula/m/marcli.rb | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/Formula/m/marcli.rb b/Formula/m/marcli.rb index c08f54e6ee83f..f5bcd07c75010 100644 --- a/Formula/m/marcli.rb +++ b/Formula/m/marcli.rb @@ -7,17 +7,13 @@ class Marcli < Formula head "https://github.com/hectorcorrea/marcli.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "5b18317e5db12756a19aa7bd1f5ee62569e0c26048056f85efe654f4826d70a1" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "63fd48b516c9d021c8ba4aec971382dd92c68fb2252b513b0a2439fbff3ad44f" - sha256 cellar: :any_skip_relocation, arm64_ventura: "d1fbbc916e7202b5589388b2b5c956ea8bb47c3216e65b7b6767f006f4293ea7" - sha256 cellar: :any_skip_relocation, arm64_monterey: "d1fbbc916e7202b5589388b2b5c956ea8bb47c3216e65b7b6767f006f4293ea7" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "d1fbbc916e7202b5589388b2b5c956ea8bb47c3216e65b7b6767f006f4293ea7" - sha256 cellar: :any_skip_relocation, sonoma: "7e4735d20948c27011d2e6f70f8f71ba2d6b502eb5fa430a933f069153e753dc" - sha256 cellar: :any_skip_relocation, ventura: "32844aa6393c6be96fd00321d3fbe18a19118465f79d20a1a5679c2d911629b1" - sha256 cellar: :any_skip_relocation, monterey: "32844aa6393c6be96fd00321d3fbe18a19118465f79d20a1a5679c2d911629b1" - sha256 cellar: :any_skip_relocation, big_sur: "32844aa6393c6be96fd00321d3fbe18a19118465f79d20a1a5679c2d911629b1" - sha256 cellar: :any_skip_relocation, arm64_linux: "3ca994301e263816c19b728caed6039baea24ccab2fa76c64d83976f2438bc3d" - sha256 cellar: :any_skip_relocation, x86_64_linux: "ae3a60b0df4513c2b475d17a2515a5f1c6357fa2b398e28546e988ff32941ddb" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "094b57f3f543ddd6cfdbe59ae3471ff70b5c1558290d0af936274d47c02e7a01" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "094b57f3f543ddd6cfdbe59ae3471ff70b5c1558290d0af936274d47c02e7a01" + sha256 cellar: :any_skip_relocation, arm64_ventura: "094b57f3f543ddd6cfdbe59ae3471ff70b5c1558290d0af936274d47c02e7a01" + sha256 cellar: :any_skip_relocation, sonoma: "a7d0a23c4c74f8067d2019c713baecf5d1217c10b308dc5fb95b7005aa9d2228" + sha256 cellar: :any_skip_relocation, ventura: "a7d0a23c4c74f8067d2019c713baecf5d1217c10b308dc5fb95b7005aa9d2228" + sha256 cellar: :any_skip_relocation, arm64_linux: "55d7013246601fa973521af7319642cd92b6a0b1bf911867fe9e215f19999159" + sha256 cellar: :any_skip_relocation, x86_64_linux: "f9ff92374dc575521c6033af290af42f3cb52cf092035c740f79bd5afa43c966" end depends_on "go" => :build From d8bdd4990ee1fc7c269b1a5c50bcfb8884579243 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 12:33:19 +0000 Subject: [PATCH 0837/1364] fiona: update 1.10.1_1 bottle. --- Formula/f/fiona.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/f/fiona.rb b/Formula/f/fiona.rb index bd9d4492ec54e..873044ff625d4 100644 --- a/Formula/f/fiona.rb +++ b/Formula/f/fiona.rb @@ -9,13 +9,13 @@ class Fiona < Formula revision 1 bottle do - sha256 cellar: :any, arm64_sequoia: "4788e6cf99582a5fcf1e4abce4daf43ff504482a19193e84804aab2a55b252f9" - sha256 cellar: :any, arm64_sonoma: "2d4556ca589bb67a2926ab0795e7301014c40b554ac540d0f1179c20f47eb6c7" - sha256 cellar: :any, arm64_ventura: "69bf18aeb4f2097080198331df624d1c0cb3cc513aaae674bc6b9a96f5ef7eb6" - sha256 cellar: :any, sonoma: "0503bf091d2469c634b4e9adcd1006694fd0bb8a94b4e6303f7174047e97f202" - sha256 cellar: :any, ventura: "0eb27e2fa495234f3a09126af55384b4fb98ce50cffac8274ea398dad91f3bf0" - sha256 cellar: :any_skip_relocation, arm64_linux: "5036103d33a7dc454778a2957b8dd9eabf880835a6986dc2a09ac617de461c6e" - sha256 cellar: :any_skip_relocation, x86_64_linux: "2b9ecbc80ed54a93dc848950821fdb15a292b9589da5acc1250b33eb4bf1faa3" + sha256 cellar: :any, arm64_sequoia: "72cb09fe015aa6d5dbcc6a9dd639c641db2920f8e335a0a3acbd694ad255e83f" + sha256 cellar: :any, arm64_sonoma: "7732fc049ef4ba6b47e790f9f14e621807fcb70f8f58f663e2d44513ca33380c" + sha256 cellar: :any, arm64_ventura: "765b472e5789020dc487ae96df3b55b111abb0ba4430e0e4e0f1f8fbc8a1c536" + sha256 cellar: :any, sonoma: "3b0640448524a574978757a4c7c72bc7b361306f775ef946e35f8219e59154ce" + sha256 cellar: :any, ventura: "6f4b27a8ce35aee27d824efba12de4d0114815c303e27bd9e4577c78bef725e7" + sha256 cellar: :any_skip_relocation, arm64_linux: "fb6e42631c5db0154636fde816272135bf6e50e95fe4016c6c8e7c54c0b56ee0" + sha256 cellar: :any_skip_relocation, x86_64_linux: "ccb14cd8a348d6362e922e69e72785bc775726c9929da360dcca9919cc839c5e" end depends_on "certifi" From 726938a4febc56e517b8783a806c2d581f321187 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 12:33:20 +0000 Subject: [PATCH 0838/1364] gdal: update 3.11.0 bottle. --- Formula/g/gdal.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/g/gdal.rb b/Formula/g/gdal.rb index 12f09f7ff015c..3e20d985c7476 100644 --- a/Formula/g/gdal.rb +++ b/Formula/g/gdal.rb @@ -11,13 +11,13 @@ class Gdal < Formula end bottle do - sha256 arm64_sequoia: "d8bf0145143b711d255fe24ef0ee16b4031fe941422ef51e40f06d62e66a8c04" - sha256 arm64_sonoma: "84312cacf61001e653860c5d1fd0296f7b5f22ce63628bb59022e18b32350e4f" - sha256 arm64_ventura: "cbc3283d71933e6178dc7950f4a0f1a6acc3d11cd9375a67cc1af6642b49fad5" - sha256 sonoma: "5ac2efe52ef44082ba7f28b4cb04bab423d726560840decabede12c582c90540" - sha256 ventura: "9c39515965393eb412c6de20c8c15cd466d7045b98ec6831bf98138d432013df" - sha256 arm64_linux: "096541320ef8452d6344521fa223415da04cb678b6fe7a2072be3df6938258e1" - sha256 x86_64_linux: "d980437bd277bd249444110d89816ca7368bfaf350accd21c9620232ed1be783" + sha256 arm64_sequoia: "fa4a398a609e0bd470349de92a552e7d9fbdb92256363acbfecc2f6400ef92ba" + sha256 arm64_sonoma: "1c01ade27baeb77cc6d59b87bd5c4f80ecabee079ea09414092d535f14cb8221" + sha256 arm64_ventura: "268a968bf84c8f84cc73f8e9aa45f49c1769fb7538ccbcb0bb32df07ff47e5af" + sha256 sonoma: "2026a913b1c6c4faa5018dc1d7d95e0fd2aa689be2f239b2e8c72b532783b839" + sha256 ventura: "6bd0316d07f372fef74b73830c1318b4aa0cb169098627e36b9149ca69051d52" + sha256 arm64_linux: "b095c30ccb24fd685c330deac480a9cd35c2f3f4982b7a5bf53f7f8d194d2bac" + sha256 x86_64_linux: "2d9d40059800a442c93490369091d97362d61d3a56367f88de7d8131634b8e38" end head do From d9f951222cbb29e67797488348d2e6af8cd2f1ee Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 12:33:20 +0000 Subject: [PATCH 0839/1364] gmt: update 6.5.0_5 bottle. --- Formula/g/gmt.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/g/gmt.rb b/Formula/g/gmt.rb index c38c1a1641989..d11a8af6658a1 100644 --- a/Formula/g/gmt.rb +++ b/Formula/g/gmt.rb @@ -16,13 +16,13 @@ class Gmt < Formula end bottle do - sha256 arm64_sequoia: "1b462c2bcbc6e95ce082b68729b36d2b8949045918256d7031c49908e1a7c75f" - sha256 arm64_sonoma: "1d3a2dafaff73abfd68a892b3ca938682e4e4dfbdc80084d47541cdb7207f122" - sha256 arm64_ventura: "3c6954e97839d63256dcb0247a83a9dbe2521a7860e1a32c7bff7418a917872a" - sha256 sonoma: "83fcc1c4401e4c9577a1b776fca7bec6fd22835bc5d41e4190d18872b9961bfe" - sha256 ventura: "adcb429977f1fcc83e2296cd1d2aea653c718025114e99fde2108848b844fd64" - sha256 arm64_linux: "d8d9ae98c3def5ba170544c7197b90c199447dabd2002f1010f9a43e1dd9b39d" - sha256 x86_64_linux: "780e03a2e26081390f07a272817bc4bad9a398ad0ee982734144ac81569e9574" + sha256 arm64_sequoia: "5099eeaa5088b8f8d4e5b95f00f229c7c8d5829f38c0827ca9dc587be4085162" + sha256 arm64_sonoma: "92c4b8906c8e4f2c7c244190eeeaccdae01f61d4b9d76c8d3b14bfe1bd1b938a" + sha256 arm64_ventura: "5e1dc95be0096547acc16f6342ea231b1b1d9ff64697083d4fc664c43bb24fc2" + sha256 sonoma: "085c08b1ed326b9f438a6293a9b9724cf7f2482cea78c237e59208e2823002d0" + sha256 ventura: "f990c4b48bf01ee82b0403477cf2c6955df4b3f53cd71812f7100a0b3569bbcb" + sha256 arm64_linux: "9a0b6ab41ce707202077a3f8f7765ff69d05290910afe718ddfa0085585d4f69" + sha256 x86_64_linux: "b6b304e7413353d55c129c54fccc25342a430eec8f533988270274cfebdf62e1" end depends_on "cmake" => :build From 0461503382d3a156ea7ffaababab4a0de9816325 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 12:33:20 +0000 Subject: [PATCH 0840/1364] mapnik: update 4.0.7_2 bottle. --- Formula/m/mapnik.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/m/mapnik.rb b/Formula/m/mapnik.rb index c7527cbed0c43..286e3b9093e06 100644 --- a/Formula/m/mapnik.rb +++ b/Formula/m/mapnik.rb @@ -15,13 +15,13 @@ class Mapnik < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "9d5ebcc14c9a84221765e801d40660995bf8b96c14a80501bb9c255ecd4da97a" - sha256 cellar: :any, arm64_sonoma: "166f4149e2a884ba574a3067f095078ff8a43521169215fbd8d93eac36eaaf7f" - sha256 cellar: :any, arm64_ventura: "95e92343254a18e5c6256fbfe1451d7f980771463380e4b711ccb378ce0c3297" - sha256 cellar: :any, sonoma: "6d266040e5a423a79a680c7b9dde632c7bb671d5ffd38fac01b7abab0ff4b5f4" - sha256 cellar: :any, ventura: "d776feb910e805a56172245df870d5b23e0139056383f47e0593bd378a77d410" - sha256 arm64_linux: "75a4d5fea53278343ad27f9140ec0b757c3be12f9a2f5b29f2075648d1215afe" - sha256 x86_64_linux: "a0c1b9b3542a7e0e11a158eb5b411927ca9e86c38160ed92bfde252b38bb54e1" + sha256 cellar: :any, arm64_sequoia: "29a822426649d23d451319bd0e8a97ca73befc6b26b2643cabd9ed6aea578e8a" + sha256 cellar: :any, arm64_sonoma: "a078278f51be82e77b0392328a77750f8b3d10aa506ba953a3182a90b7a06d0a" + sha256 cellar: :any, arm64_ventura: "2aa1748de65ed49fcbdc2f2483e1933e9238d5d08f23f0e199334de7e10efee1" + sha256 cellar: :any, sonoma: "44dd1ff51b0290cda60df185e662717209a8b7d0eadd05da7d6df429d521fddb" + sha256 cellar: :any, ventura: "83221debd01d9073623d4b84cfce8d28dd76ee9199333130eabc2c0685d640a9" + sha256 arm64_linux: "d4fb224d070a7cd94e3c17674e16c39a9c7d07293bdb5c7115f75a3b1a82fa57" + sha256 x86_64_linux: "344607e36fe3ed140f6eda570637cf093c1abbca17dfa541efa01a15e04672fa" end depends_on "cmake" => :build From bf20f4e0c6a9be674f12e8cd90c4256d2fdcdf41 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 12:33:20 +0000 Subject: [PATCH 0841/1364] mapserver: update 8.4.0_1 bottle. --- Formula/m/mapserver.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/m/mapserver.rb b/Formula/m/mapserver.rb index 4da3f2de7823e..c13a02745633c 100644 --- a/Formula/m/mapserver.rb +++ b/Formula/m/mapserver.rb @@ -12,13 +12,13 @@ class Mapserver < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "17ae78f050b686530e75191c084c97d10f257f7b19aa5dbe23ac4b363dbd499b" - sha256 cellar: :any, arm64_sonoma: "8db1bacf84e2327a213e4e0575d7c4a6f8be0a3d236f974fb8d7b60e974d9fd7" - sha256 cellar: :any, arm64_ventura: "61a16800e4037aa30a8ab477329e739f1b7d06e36b224a6eb1786a9ea478f8f0" - sha256 cellar: :any, sonoma: "ef2895e59bad997d703c1c3707cb709d42a9a4db0d7f737bcef30c5dc4e8af0f" - sha256 cellar: :any, ventura: "3ddfa1f0e0a1b9fa7fb55a3854f1d389c18df99197fe2e3cfb533e6460ac055d" - sha256 cellar: :any_skip_relocation, arm64_linux: "44fb64650323c936b893fdde8ab649ac2a35ad59cc440fbdb59baf01de6f9422" - sha256 cellar: :any_skip_relocation, x86_64_linux: "80b59633359597d6eaf50f3471fa8858056122b2eba2b9e17a8ac2320851d763" + sha256 cellar: :any, arm64_sequoia: "a4e500674e554d55bd55eaf1e02fc5b9e92acc8186249916b7a2580c69d0252f" + sha256 cellar: :any, arm64_sonoma: "6660cb93a5203442144bf4ca85bfc3c21e6d7bf586375e3095af54d946002cc4" + sha256 cellar: :any, arm64_ventura: "f90d19bd7df3901cce2cd86c0f17c5ea72f864c07461e25e3999a4aef19a51b0" + sha256 cellar: :any, sonoma: "92d448babff50b7594d87edbe7647422c2eee391385a7578d59a00f738639ebc" + sha256 cellar: :any, ventura: "2a6c194a77dd8a90c1e891709d75c3126397525853f9bfb8310473a2bbe89807" + sha256 cellar: :any_skip_relocation, arm64_linux: "6e54d30a20448f15b9c47aac2ce9e6e248e4831f13e9c3dada3ea5e063d7485b" + sha256 cellar: :any_skip_relocation, x86_64_linux: "8bdcab5848d320edb7eb9d8dce253e900197f37d89be4246c65b9c786945247d" end depends_on "cmake" => :build From 286e5a14c8728e675e26a9427e4a3988d8f88514 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 12:33:20 +0000 Subject: [PATCH 0842/1364] osmcoastline: update 2.4.1_1 bottle. --- Formula/o/osmcoastline.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/o/osmcoastline.rb b/Formula/o/osmcoastline.rb index f36b567d644c1..4d20e45b20f4e 100644 --- a/Formula/o/osmcoastline.rb +++ b/Formula/o/osmcoastline.rb @@ -7,13 +7,13 @@ class Osmcoastline < Formula revision 1 bottle do - sha256 cellar: :any, arm64_sequoia: "dc16d9bbd13a4f77009a7bb0c87a2461dbbf0f004a57676da70803435096cb00" - sha256 cellar: :any, arm64_sonoma: "c89acfaeebd5e4661327ab2abb42ff5407365f251a052b97b80f3a4fddd266ac" - sha256 cellar: :any, arm64_ventura: "3c08b87fc5b15d8a778ed08c9d7cb0dcfa5935413e5a85a2a3170024118b3a78" - sha256 cellar: :any, sonoma: "9323e20db733822fbeafb7a4042009e82a57f65e94c78855e647c9b0df01bc50" - sha256 cellar: :any, ventura: "13ca3a9c33d469ed3a7e261ac9376d732db372f4fc7a20d06533fd3374356559" - sha256 cellar: :any_skip_relocation, arm64_linux: "64a1fd8484e7c3354a892775b7e9d6a71c6f4f46dcbec82fa7f6babb3e5407d1" - sha256 cellar: :any_skip_relocation, x86_64_linux: "44ab937e69ae5ff226d3528cacbf640b3f486e311d438c02f8e40cd9202a5e18" + sha256 cellar: :any, arm64_sequoia: "c35ab027223ca2ea5a8555eb16f6f28e3b08dd4b2041d4796331391a1458a5f7" + sha256 cellar: :any, arm64_sonoma: "4792911cf6b33270e68cac5e9bb1810dff2a0869410905ae47c1978a5683e7b5" + sha256 cellar: :any, arm64_ventura: "a791ac1186a07fb44e973b7d08e2db4d73694e34d45aac133ebf399900e72486" + sha256 cellar: :any, sonoma: "aef43094262f2b19ef4fa3c689ecfa6a51064e8ecddd9fda6d625cb690a6b0a1" + sha256 cellar: :any, ventura: "51f97203e6f852e9ee35a14a98ba7d65f8aa1dea74a5711123e897e3e54eec8c" + sha256 cellar: :any_skip_relocation, arm64_linux: "cfd02b5ffbd8862c4c8f753c921c6db4930f64740883e9c4bd76ca0d7a89e1d4" + sha256 cellar: :any_skip_relocation, x86_64_linux: "512cdfad91e7e710a01e2f387d73661032fb267fc90c6a51131953c184956bb0" end depends_on "cmake" => :build From ef8680f16bc86f66788cbc421f9ac16b3774e421 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 12:33:20 +0000 Subject: [PATCH 0843/1364] pdal: update 2.8.4_1 bottle. --- Formula/p/pdal.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/p/pdal.rb b/Formula/p/pdal.rb index 30e4afd550ef3..725d50bd1ecbc 100644 --- a/Formula/p/pdal.rb +++ b/Formula/p/pdal.rb @@ -13,13 +13,13 @@ class Pdal < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "dd95047f6de4b38a442111118ce2919521f8f2a16e5ab10b852ba2393e8a7492" - sha256 cellar: :any, arm64_sonoma: "8c728e287001a7ac379b008d61ab69a6cc386c400c76c1d4213081554a80928f" - sha256 cellar: :any, arm64_ventura: "b0c76a50476b61a65383d23a5eab04d0ef440dd13ec21897f9c4fa98a91a72e6" - sha256 cellar: :any, sonoma: "211bab94d8693306e418561c117a4c782bd874d458d2de73b29803216f029207" - sha256 cellar: :any, ventura: "e474576399ed86e49ec9eed7cb8e8f565fa1d18b678e75fcc38bae8992640c6b" - sha256 cellar: :any_skip_relocation, arm64_linux: "9bb4aa5c9df6dec9ffcb65674eb1d402ed72802754c1be2f892072f5ee9ff238" - sha256 cellar: :any_skip_relocation, x86_64_linux: "d4d4645ee0ea9b43b2694f9b6c8ea89481fa1bcaa62cc6269209fc04825bf748" + sha256 cellar: :any, arm64_sequoia: "64bb0d0e90ce547231899e349d64126c75c9a89e4564e57ede59eeca6c654e5e" + sha256 cellar: :any, arm64_sonoma: "6b051c39b6bb6c691cc76aca04fd53191515ac9ae64971185f601f5dfadbe32c" + sha256 cellar: :any, arm64_ventura: "7b44dbcbfdfac6af9dcf1d59f2cc37182224638c5289fc16374c465aae0a415b" + sha256 cellar: :any, sonoma: "4bc10dded0e56135067113caa32b25833dda96c80bb14673b840952b58e85f29" + sha256 cellar: :any, ventura: "725b858faef46f66946bc1e29ae644bef8f42c71295196a070bec68ec6222de2" + sha256 cellar: :any_skip_relocation, arm64_linux: "be97476fd1203ef225f9aa71469adac4aac70314af62aafe9abf8921e812f32c" + sha256 cellar: :any_skip_relocation, x86_64_linux: "e28a8d44c02b9f638c76824ad8a17a90cbb9f806bf4b5aba66a49a29ee91738b" end depends_on "cmake" => :build From 5fdfa6d85d0e830f9dbe4d810873f9fdd4375150 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 12:33:20 +0000 Subject: [PATCH 0844/1364] postgis: update 3.5.2_2 bottle. --- Formula/p/postgis.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/p/postgis.rb b/Formula/p/postgis.rb index 24b7789d07bbe..b7d74c9f2be11 100644 --- a/Formula/p/postgis.rb +++ b/Formula/p/postgis.rb @@ -12,12 +12,12 @@ class Postgis < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "62af63f759ed25f9082c1a745cf477c1f76593eb085bc99ad0097419b4843d66" - sha256 cellar: :any, arm64_sonoma: "3ff4281a0ba5513b5e7e3b24ddf876a7f4f8942eade6600a71f6faceda9b9290" - sha256 cellar: :any, arm64_ventura: "efeeb68577e73a5f2d904feb62ee197fa71e19598142a10103dde37a7b79ad10" - sha256 cellar: :any, sonoma: "cc56361e4581279a3c0322ba5fd1a8450fdc8e373e0cb52b2c5d2d21b7d03658" - sha256 cellar: :any, ventura: "075836df35f956b3215b14887fb1e73858f17081167ac1f0888531842eb3fd97" - sha256 cellar: :any_skip_relocation, x86_64_linux: "99d96c03aa912239f623da45b338848d82523c172d78aed4e67f837305048a03" + sha256 cellar: :any, arm64_sequoia: "7cde869dbfa86b47cdcd49832a2b8e6bdd4dbf5ca9dfce485cc1c9a9bd22fe16" + sha256 cellar: :any, arm64_sonoma: "ac95fffb200e82ef02675537f7cb3d9ecbd83a1492809c7b4fe2e4392b86faca" + sha256 cellar: :any, arm64_ventura: "3ae39bd0c77d72713a2a75acb0a25725c51b08971be6ed5556316292de716505" + sha256 cellar: :any, sonoma: "e2f95cd1153bda9a37a02e4d1bffd3d35fd320a47e9d27a173def4747fe64dba" + sha256 cellar: :any, ventura: "4c4dc9de4d418524492e039b3265e8010749c38f0d94927c35e1908bb0dad33a" + sha256 cellar: :any_skip_relocation, x86_64_linux: "92b0473355cfe2b17b4f49c7c4bd6efabb55086fe9645dbc191a6b9f31c0f9b7" end head do From 8672307c95aed0abb74f23314aad2a941994c083 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 12:33:20 +0000 Subject: [PATCH 0845/1364] rasterio: update 1.4.3_1 bottle. --- Formula/r/rasterio.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/r/rasterio.rb b/Formula/r/rasterio.rb index 0eb1d0c6c7e3c..67c1e9df64bfe 100644 --- a/Formula/r/rasterio.rb +++ b/Formula/r/rasterio.rb @@ -9,13 +9,13 @@ class Rasterio < Formula revision 1 bottle do - sha256 cellar: :any, arm64_sequoia: "78c22b105ddfe5627305ac933da41a879b078f0678696837dc34453bd4a9aaf1" - sha256 cellar: :any, arm64_sonoma: "c0772d77c4daf508c53825cba58a5e6619ca380b05a8033a21176f7ffc97967d" - sha256 cellar: :any, arm64_ventura: "a7f901287973fee54bbbe87c7a98f71cd790e2b941c87118469cc45d6768062d" - sha256 cellar: :any, sonoma: "08dcd483af2d7e48cebf0bdb69c0e881d77eb8cdc00f131dd3ffb7e27fb112fa" - sha256 cellar: :any, ventura: "b11fc4d43981cd10e892d7a023ad165697ef0205d3a8d29ce5ba4fcd8d29d604" - sha256 cellar: :any_skip_relocation, arm64_linux: "2fc1257c4bebaf72e821fee8717d3df235bc85ce4fa2f822e2b0c2f64a2d9987" - sha256 cellar: :any_skip_relocation, x86_64_linux: "cb48e6529ce61237e5da0d9f80b495289a53cc7e772d6ed4cc3af55a9f9f0de5" + sha256 cellar: :any, arm64_sequoia: "4410576ace32e78400ed9d09167fdb8512765eec039229237a3db59dbdf3a673" + sha256 cellar: :any, arm64_sonoma: "f66b60551ec2f3d51a889d8738a4b0bec36b1212d05183fd0d0623dbcb9a6221" + sha256 cellar: :any, arm64_ventura: "26af3700f3b615d9eac3d871eb2e9efbae7f402294966b12108414ec57296eab" + sha256 cellar: :any, sonoma: "50ad9d3ac08ab03e08678ca3d6551016421b7b186fe95c362b9dbd67a8304214" + sha256 cellar: :any, ventura: "868807093a9173ae0a22dcc9426e4e7a38fce818789bbc9e51192eea11695887" + sha256 cellar: :any_skip_relocation, arm64_linux: "a3591bf74726a6e4663aad38970345a67c0bd75cd5eb553c8ca8b218cc6dacce" + sha256 cellar: :any_skip_relocation, x86_64_linux: "00de49b47c6a04925b1575417950a468713913e3a64279ca8e02b77fb86b9131" end depends_on "cmake" => :build From 2ebba53f83684f2074dff684e6bb19c8e596b3f1 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 12:33:20 +0000 Subject: [PATCH 0846/1364] simple-tiles: update 0.6.2_6 bottle. --- Formula/s/simple-tiles.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/s/simple-tiles.rb b/Formula/s/simple-tiles.rb index bb406b941692d..22b55f69c1174 100644 --- a/Formula/s/simple-tiles.rb +++ b/Formula/s/simple-tiles.rb @@ -8,13 +8,13 @@ class SimpleTiles < Formula head "https://github.com/propublica/simple-tiles.git", branch: "master" bottle do - sha256 cellar: :any, arm64_sequoia: "36390e47953ff999ef27071f99ab4431f71de4a3734f9afe084a6612e95560e6" - sha256 cellar: :any, arm64_sonoma: "5fe279a2263e8b191c494afd60febd6debef4d8e758890b8b3e17c15040e94e4" - sha256 cellar: :any, arm64_ventura: "100054d6eab29d9146d6c26682580c3d463c5ba3924f4f1d656d1e7a99594abd" - sha256 cellar: :any, sonoma: "dae7ca47c278721f39b13fa071ffed21a10bd789984bf77b389d19df84d6bf4e" - sha256 cellar: :any, ventura: "a0bff8824199fc2462c1144ea67b1efdc4cd59efccb8cb12d4aa73889b38b2cc" - sha256 cellar: :any_skip_relocation, arm64_linux: "26d40c2d590d0ad8667c4f887212fd9ed3470ec31435bf314dec5cbdcc36cda6" - sha256 cellar: :any_skip_relocation, x86_64_linux: "5b9bddf6bb8104fa5720df1b5a14e1f15710a09f04ccd9901555cc61bfd9d568" + sha256 cellar: :any, arm64_sequoia: "d3aaa726bd349cc30a81762fd0a1b0601e4d9cf866023c29ff63a6e60226620c" + sha256 cellar: :any, arm64_sonoma: "abe65b73e6079f2b796164a3290cff1570ce7a2eeb1c310ebab9ec2160ac97c6" + sha256 cellar: :any, arm64_ventura: "f49d942f1152dbe63628654fb6063e621b17397ec41c46b1741acd2caaacfd3c" + sha256 cellar: :any, sonoma: "3b4ace3dfc2511c747a5dfe7a5ae9b214694d2908b3443c07284883b046df9e2" + sha256 cellar: :any, ventura: "bec15845f74bb0ea00e16a708fc4eca25e133357693dd80b3f460b189d93fa0e" + sha256 cellar: :any_skip_relocation, arm64_linux: "7b811346839863479eee8eb09a6537da5b7dfcc211cd2e532ffe82989e5111df" + sha256 cellar: :any_skip_relocation, x86_64_linux: "403a1c58f940fa9bb9bf5d4acccf8b64c88b105c37295220bcd07bc89f3d5282" end depends_on "pkgconf" => [:build, :test] From c4da9623c0dc4b131715998de46745bd9a1f2504 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 13:07:28 +0000 Subject: [PATCH 0847/1364] alive2: update 20.0_2 bottle. --- Formula/a/alive2.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/a/alive2.rb b/Formula/a/alive2.rb index d7851b1aa76d2..35127213fc6a4 100644 --- a/Formula/a/alive2.rb +++ b/Formula/a/alive2.rb @@ -9,13 +9,13 @@ class Alive2 < Formula head "https://github.com/AliveToolkit/alive2.git", branch: "master" bottle do - sha256 cellar: :any, arm64_sequoia: "201651362fc1625236a8e9cd26db20e33bb86cb2073efbe35653d7e3e4952998" - sha256 cellar: :any, arm64_sonoma: "4efdfa5d4d8ec7771e5bc1126ddf1c1b6a915f69692bfc61f03e1f3fef8919a8" - sha256 cellar: :any, arm64_ventura: "604b2711e55c46430a24767fd371c1c7e7505404edffcc97410dd0df73527c23" - sha256 cellar: :any, sonoma: "9d3cdde41a86ff42dc2660e8634df0c8eb1240e880750c9517a9a98251a8bda7" - sha256 cellar: :any, ventura: "9f07846cc60eeff05bc3eaee714f32f69a7506c732018eb20f27692006ee1d23" - sha256 cellar: :any_skip_relocation, arm64_linux: "d2a45cad9f8b7ac0fa5daeea1b65c6fda97fc12b9f8546b13b8ca1e6068b2b1b" - sha256 cellar: :any_skip_relocation, x86_64_linux: "79797ee447a5be2dba84697d20a1f1296c4ffcf0975a83c75147a8cd94f36629" + sha256 cellar: :any, arm64_sequoia: "c2e52c9df83cf4759cdc53761aec5cf533bdc24fc9812241c18f494a9e7bc836" + sha256 cellar: :any, arm64_sonoma: "d12f24a623fe6a7ae194b546ed2076cb9b71b7f2b2ffc8abacf6f004db446720" + sha256 cellar: :any, arm64_ventura: "7226a45ac96be7b39e0e46ae592be043787bf4965438046c42f8268e54abac6a" + sha256 cellar: :any, sonoma: "08df28b20a2c4561764372987bb7c3a6bed76ec8dc0fa73545ada659ed6c940e" + sha256 cellar: :any, ventura: "5191a7a9eead8da3646a9f14a0fee799a34169c08f81305654f2548866a4e274" + sha256 cellar: :any_skip_relocation, arm64_linux: "3114b328118b8ad425d287974aba4102603651a8bbfd3fa230e053e999e9bf18" + sha256 cellar: :any_skip_relocation, x86_64_linux: "705c815f0a0f02d812d19373f57777172297964a2a265bbd1631d4c82fb9309f" end depends_on "cmake" => :build From 3f85841e6c5aef4f91e4fe8ddec4b7ef52e765b2 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 13:07:28 +0000 Subject: [PATCH 0848/1364] klee: update 3.1_4 bottle. --- Formula/k/klee.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/k/klee.rb b/Formula/k/klee.rb index 2e44ca2a78740..43d93307ebfbf 100644 --- a/Formula/k/klee.rb +++ b/Formula/k/klee.rb @@ -11,12 +11,12 @@ class Klee < Formula head "https://github.com/klee/klee.git", branch: "master" bottle do - sha256 arm64_sequoia: "e2a3d0d091e212042fe67002619e8492943ded1a7a537f50aca3b3891fd04772" - sha256 arm64_sonoma: "3dbb9323a1bb4b8a2e93a5e8481411b12146f478a510d38222422181114ea378" - sha256 arm64_ventura: "c9b259d8f13ea1f2bd9acfee2f297a061ab212f5bfba8f7baa21c017d2effd64" - sha256 sonoma: "6d9597661c242a32b5234b83a7921e28cf76102ea4e4b3ed7750fe6cd5425301" - sha256 ventura: "69469e30c7e470d11febd8e9f7041730c996e2f862a24df96833ebac250fa7fa" - sha256 x86_64_linux: "8d98dfcd2d9ba563bf567d2af92b298367e09838affd7ccd04ed301ec863777d" + sha256 arm64_sequoia: "ca3c457d1beb7493b543de0e7f437e553d3f8e4b3189e1cf8aed4af2def34b43" + sha256 arm64_sonoma: "acae2eb29a27f2dba222d8a9ac0f7bd4e04c5f88f181a98f4acc8519817a9f1a" + sha256 arm64_ventura: "7681f61b63db83b4d972127364af4787b34cec6820e26f997bf955c2a5b7e277" + sha256 sonoma: "529fb661a9bbab5e12aab061ccb627029807e2b66c08b567eadc0f1f4752f965" + sha256 ventura: "3141e8037c193771a86ef0ec281a4d90dc7a1b41b6f23645d21f4a70f4308a68" + sha256 x86_64_linux: "21be2951cd4759590f36a5c021c1531a595fd3b80e2813f41ff336625f4efabd" end depends_on "cmake" => :build From c9f1dfb2bc4d133ec672e6af2576b474bb7e66cd Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 13:07:28 +0000 Subject: [PATCH 0849/1364] llvm: update 20.1.4_1 bottle. --- Formula/l/llvm.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/l/llvm.rb b/Formula/l/llvm.rb index 4da84c06bef28..b102822357d06 100644 --- a/Formula/l/llvm.rb +++ b/Formula/l/llvm.rb @@ -15,13 +15,13 @@ class Llvm < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "eeaff9d74040678eeb76850a1bb742b189f2a7a939860a9c512bf0526f49d81d" - sha256 cellar: :any, arm64_sonoma: "6e4270a68f16ffbf75214045fbf6c83ad1d7b28fe558c5f42aada7ade9ec8ac3" - sha256 cellar: :any, arm64_ventura: "bba82ae04eda007c8971ea4bceebee3b9ef1cadc222e1d77ef0eebad218c9af5" - sha256 cellar: :any, sonoma: "9ed2acd04961a914d8197ab999056c4a8889881051597926ee9215fc2e83e6e9" - sha256 cellar: :any, ventura: "7808e12ba6a9fe416a969989a2a191ab1869d677fc0d3280f3e47fb348d09c6c" - sha256 cellar: :any_skip_relocation, arm64_linux: "31d2343b44f1baddeb4b549d782f413427ed55461aa69d8c62f777f80f06186f" - sha256 cellar: :any_skip_relocation, x86_64_linux: "f10fad6fca57ea531467227b02c7e4daea257d7b4ae0c264e3d3dad7bc8aff2a" + sha256 cellar: :any, arm64_sequoia: "0667ffd061d205a72185d22440f30c6a9e98ac8b1b2f09b022b93c893ae40298" + sha256 cellar: :any, arm64_sonoma: "7b1ea996ecb0cd8ef01675f8433bdea114011a1c09371f650fe0a654077e52f5" + sha256 cellar: :any, arm64_ventura: "e6265f0747fc7fe4eb1ce9ecd9ef22e424e9d48abf1557174c243d721f1640fb" + sha256 cellar: :any, sonoma: "84f59a3579e744f9b3dd23d279b6cc766d8c493066e147fcd2f68d1b5fd84d9d" + sha256 cellar: :any, ventura: "195d7206aad6cc25bc276dada61f0e78c3584d77fcbb7267ab596b033445ce03" + sha256 cellar: :any_skip_relocation, arm64_linux: "6d1c4864a0f3e89e30698dc8df7321dcc893b89fafe48fe3374ea94ca80c712d" + sha256 cellar: :any_skip_relocation, x86_64_linux: "1c7ae63af9ccee6db95ef0328658bee903f966d7e99f774a554a73d2abf2d37c" end keg_only :provided_by_macos From 5d10ea3b744d0fbdd7f1d56790a0136184328d87 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 13:07:28 +0000 Subject: [PATCH 0850/1364] z3: update 4.15.0 bottle. --- Formula/z/z3.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/z/z3.rb b/Formula/z/z3.rb index 5983b9b9cd0a5..f1441efc7d330 100644 --- a/Formula/z/z3.rb +++ b/Formula/z/z3.rb @@ -13,13 +13,13 @@ class Z3 < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "0090d3a9aac7fbbbb0734cdb24c0a8f891d99b97bc5e527ecf6db407cb17b4d2" - sha256 cellar: :any, arm64_sonoma: "417eee5d3418c20ab826556d37a9ec57e5c48bdfb124d74d9afea1afe7d6e812" - sha256 cellar: :any, arm64_ventura: "e7c48be023485b5ffa72321ee393746a12605d51d16edc1c63c3d24155dd73a1" - sha256 cellar: :any, sonoma: "4b1741f4f67c61f3940928952d35fb3b100181f01800b6f6709c57a8ffe65e07" - sha256 cellar: :any, ventura: "8fda087e030d4037ca1a93192b6687062a603adf11023950967cfa094b6b97ba" - sha256 cellar: :any_skip_relocation, arm64_linux: "384fddca3102165fcf519aabe8e1e8d98f66bed2b33b700eb17e4dd54fb5afe9" - sha256 cellar: :any_skip_relocation, x86_64_linux: "77d76c62a96c651909152362695d8e74d6125af4d3f6d79ce3559d2e5d96bea9" + sha256 cellar: :any, arm64_sequoia: "f3e3fbb6153448fc9fe3befc53a0170ad45369f07209b400d90305ce0d645a5b" + sha256 cellar: :any, arm64_sonoma: "3163b8e0e65799a4e7a96e7d7ceb4a959386d77fdba320dd7bb0f381c19c1b3c" + sha256 cellar: :any, arm64_ventura: "221c41e0d66f5a2baeb60146f40875e2d6ca496d062b06c76d3924a4d15748f9" + sha256 cellar: :any, sonoma: "f9274cd0950dd9c9314d19fb3cbc8baf7a4802ca3c4ef882bdb74df0c9fd2333" + sha256 cellar: :any, ventura: "c151a05ca6866e2e83fc1b7d00bed224c5116f6d68ba645b1c3f1101b8c7fac7" + sha256 cellar: :any_skip_relocation, arm64_linux: "37cbe0ad948d47bce9e6d6c4856c4f5d9cf36e871ae2d55f236388e7496094e3" + sha256 cellar: :any_skip_relocation, x86_64_linux: "216b1f2393ca8c38e413daf5a5db5e572b7f769d3c4d2ce7963a8c9f559ac03f" end depends_on "cmake" => :build From 371b5897a5a5f94846e3e179f981c194ab0cb680 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 13:48:43 +0000 Subject: [PATCH 0851/1364] aqua 2.51.2 --- Formula/a/aqua.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/a/aqua.rb b/Formula/a/aqua.rb index 908de5d66f5e0..ec0abfbab2e0f 100644 --- a/Formula/a/aqua.rb +++ b/Formula/a/aqua.rb @@ -1,8 +1,8 @@ class Aqua < Formula desc "Declarative CLI Version manager" homepage "https://aquaproj.github.io/" - url "https://github.com/aquaproj/aqua/archive/refs/tags/v2.51.1.tar.gz" - sha256 "1df4e2a7744763826ec3f11c2511d1dbcfdf068b28ac44fb110ba3f88e1fe4ca" + url "https://github.com/aquaproj/aqua/archive/refs/tags/v2.51.2.tar.gz" + sha256 "00c8750d56000555a489b97d073077bfaaade18ac2c308a28b7b336e242f065e" license "MIT" head "https://github.com/aquaproj/aqua.git", branch: "main" From 8942d0459aeac4b3595c936ec50027363b91170a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 13:50:17 +0000 Subject: [PATCH 0852/1364] bkmr 4.22.0 --- Formula/b/bkmr.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/b/bkmr.rb b/Formula/b/bkmr.rb index 38d3291264eb3..4dc348e8dbb66 100644 --- a/Formula/b/bkmr.rb +++ b/Formula/b/bkmr.rb @@ -1,8 +1,8 @@ class Bkmr < Formula desc "Unified CLI Tool for Bookmark, Snippet, and Knowledge Management" homepage "https://github.com/sysid/bkmr" - url "https://github.com/sysid/bkmr/archive/refs/tags/v4.21.3.tar.gz" - sha256 "1566dc703ec500efe11028e45904952e3f6c6e6daffb15fc84d7e8a3fc3e36e6" + url "https://github.com/sysid/bkmr/archive/refs/tags/v4.22.0.tar.gz" + sha256 "f98f323060b7498376a4d5e9fc69759ccd9fac9ac5190463a73a9d1ad4069a8b" license "BSD-3-Clause" head "https://github.com/sysid/bkmr.git", branch: "main" From 2a67e4d49099e150a5c621bbbd4df77958dcb1e0 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 14:10:26 +0000 Subject: [PATCH 0853/1364] shadowsocks-rust 1.23.3 --- Formula/s/shadowsocks-rust.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/s/shadowsocks-rust.rb b/Formula/s/shadowsocks-rust.rb index 71732c4013717..636e0ff9b904c 100644 --- a/Formula/s/shadowsocks-rust.rb +++ b/Formula/s/shadowsocks-rust.rb @@ -1,8 +1,8 @@ class ShadowsocksRust < Formula desc "Rust port of Shadowsocks" homepage "https://shadowsocks.org/" - url "https://github.com/shadowsocks/shadowsocks-rust/archive/refs/tags/v1.23.2.tar.gz" - sha256 "1bede0eb443063c37317728d568638e3348d86f1292c9864c5bdc5a9f96d8b7a" + url "https://github.com/shadowsocks/shadowsocks-rust/archive/refs/tags/v1.23.3.tar.gz" + sha256 "cbbd2357e9ec00dc18bbf437cf1ac88fcb3376c50ed579c782f372cf75bb0a9b" license "MIT" head "https://github.com/shadowsocks/shadowsocks-rust.git", branch: "master" From fd22f2a068f6d3ab48ecb1a2d17f6a96946378c9 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 14:16:30 +0000 Subject: [PATCH 0854/1364] yq 4.45.4 --- Formula/y/yq.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/y/yq.rb b/Formula/y/yq.rb index 8f69ffffe0805..11c4dab54b376 100644 --- a/Formula/y/yq.rb +++ b/Formula/y/yq.rb @@ -1,8 +1,8 @@ class Yq < Formula desc "Process YAML, JSON, XML, CSV and properties documents from the CLI" homepage "https://github.com/mikefarah/yq" - url "https://github.com/mikefarah/yq/archive/refs/tags/v4.45.3.tar.gz" - sha256 "e3edb61a80691d05f4e6286cf68b0f9e8eba120f1f7326b80b9e17fbed25d49e" + url "https://github.com/mikefarah/yq/archive/refs/tags/v4.45.4.tar.gz" + sha256 "e06b9b219ad885b08cf983a7ce5ff6d946587ab4ffc62de4538655bb50e39111" license "MIT" head "https://github.com/mikefarah/yq.git", branch: "master" From a9deac37faa83cc7339e52833e2dee1acc18a358 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 14:26:27 +0000 Subject: [PATCH 0855/1364] bkmr: update 4.22.0 bottle. --- Formula/b/bkmr.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/b/bkmr.rb b/Formula/b/bkmr.rb index 4dc348e8dbb66..51689b344cad3 100644 --- a/Formula/b/bkmr.rb +++ b/Formula/b/bkmr.rb @@ -7,13 +7,13 @@ class Bkmr < Formula head "https://github.com/sysid/bkmr.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "1eece03b8fdfbf998c5b6fa34404db71137baf585f1e3673c9b30029baacdad0" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "3418423b456b8be2af7bf63de8180adb41a76d2cc4aac97fb6e491bcadcad75b" - sha256 cellar: :any_skip_relocation, arm64_ventura: "cc7b1b1b11a0a5fda8711e9107a24eb66fa918c59c4594cc7938d81fa10d649d" - sha256 cellar: :any_skip_relocation, sonoma: "3860c732d974c3afc326d0e607b6d85976151ef954ab05179d33b3922405f283" - sha256 cellar: :any_skip_relocation, ventura: "5496b10cca26c85c90671193d5238fe2234054d915f4db1a3ece1397e02e29b6" - sha256 cellar: :any_skip_relocation, arm64_linux: "b6bac12c7ba573a72b9a7e3b769d77866291fdb369408e9a6c7dce7dfeb0270d" - sha256 cellar: :any_skip_relocation, x86_64_linux: "36201b543cd529f86a830c62d56a188331b68e0a53179d93027f1b38d466697b" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "cb5f5c94fd33deb2797271aaa6ee63c075f4cdab24eba4c567d51029d2be174a" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "66c2653ba61a6598421a1f612c858527c5ff9a0fff1115837270e2f41431e762" + sha256 cellar: :any_skip_relocation, arm64_ventura: "ccf15e03093c4675ee573d40915144f179c47bf2a764ef14899e1af8d4995f7d" + sha256 cellar: :any_skip_relocation, sonoma: "1584fcdc3ff5e6be384cc985a946728aa5b6158af411d80006444c1f3e70109b" + sha256 cellar: :any_skip_relocation, ventura: "910ecd555e20c26b8bfde7259ae8db9e23865d242d9fd1395f2ea44e8e6122be" + sha256 cellar: :any_skip_relocation, arm64_linux: "2d62da14e3ffd2fdfdea9378088db3404049b14d10b448306af1cd0a90c430ff" + sha256 cellar: :any_skip_relocation, x86_64_linux: "c7627ec66de3b2c227aa9b6f752558f854c96da7f1708567ff1834b8dd4e7b29" end depends_on "rust" => :build From 2ca2275db55082c2db317da76630b21913336fa2 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 14:26:41 +0000 Subject: [PATCH 0856/1364] aqua: update 2.51.2 bottle. --- Formula/a/aqua.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/a/aqua.rb b/Formula/a/aqua.rb index ec0abfbab2e0f..fbbf185e4b6d0 100644 --- a/Formula/a/aqua.rb +++ b/Formula/a/aqua.rb @@ -12,12 +12,12 @@ class Aqua < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "2fbd1bb52700fe73e61f5526d28295887f3885d91a11a71a5ecd7ab4fa4e2e70" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "2fbd1bb52700fe73e61f5526d28295887f3885d91a11a71a5ecd7ab4fa4e2e70" - sha256 cellar: :any_skip_relocation, arm64_ventura: "2fbd1bb52700fe73e61f5526d28295887f3885d91a11a71a5ecd7ab4fa4e2e70" - sha256 cellar: :any_skip_relocation, sonoma: "2df9c1b09e01f7fd6aee6044b3ad94e669446e6001e403a9d1daeef48d95c04a" - sha256 cellar: :any_skip_relocation, ventura: "2df9c1b09e01f7fd6aee6044b3ad94e669446e6001e403a9d1daeef48d95c04a" - sha256 cellar: :any_skip_relocation, x86_64_linux: "1629a68a511194689ffb4e75840224c4cc6aea10405be42dfc395522cede1704" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "41f94149f7b10784db9f353a2faa2d680c93cafa344e1a24bf686be8c39bee17" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "41f94149f7b10784db9f353a2faa2d680c93cafa344e1a24bf686be8c39bee17" + sha256 cellar: :any_skip_relocation, arm64_ventura: "41f94149f7b10784db9f353a2faa2d680c93cafa344e1a24bf686be8c39bee17" + sha256 cellar: :any_skip_relocation, sonoma: "39140c57a91682d020ca3365b7425d68d00a66659e5da70ca4e1e90323136b44" + sha256 cellar: :any_skip_relocation, ventura: "39140c57a91682d020ca3365b7425d68d00a66659e5da70ca4e1e90323136b44" + sha256 cellar: :any_skip_relocation, x86_64_linux: "b52321eec81612465a3c72ea0e541787125af69c3ae78f27aefd2adc47e3f897" end depends_on "go" => :build From ff7e20e1c1e102e28f28abf9990859672437a7d6 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 14:31:47 +0000 Subject: [PATCH 0857/1364] yq: update 4.45.4 bottle. --- Formula/y/yq.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/y/yq.rb b/Formula/y/yq.rb index 11c4dab54b376..b927753452b99 100644 --- a/Formula/y/yq.rb +++ b/Formula/y/yq.rb @@ -12,12 +12,12 @@ class Yq < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "dabd1626fecd45c80f3f29da1d032f765504a506fdd8c4cf7f8568f35456a118" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "dabd1626fecd45c80f3f29da1d032f765504a506fdd8c4cf7f8568f35456a118" - sha256 cellar: :any_skip_relocation, arm64_ventura: "dabd1626fecd45c80f3f29da1d032f765504a506fdd8c4cf7f8568f35456a118" - sha256 cellar: :any_skip_relocation, sonoma: "939b648fc9e66e7a497e92d59cd2d5881a0a1fb42cc7fdbd8bc83f9fd0f8ffab" - sha256 cellar: :any_skip_relocation, ventura: "939b648fc9e66e7a497e92d59cd2d5881a0a1fb42cc7fdbd8bc83f9fd0f8ffab" - sha256 cellar: :any_skip_relocation, x86_64_linux: "e78daaead01cc0c2417183df2942129f2e9ce864dcf55611592b8b0230540cb9" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "2e67a801ebd410bb0183ae6bd5ce47963b910da7cb3fc77b0b6b1ff59c67a2d7" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "2e67a801ebd410bb0183ae6bd5ce47963b910da7cb3fc77b0b6b1ff59c67a2d7" + sha256 cellar: :any_skip_relocation, arm64_ventura: "2e67a801ebd410bb0183ae6bd5ce47963b910da7cb3fc77b0b6b1ff59c67a2d7" + sha256 cellar: :any_skip_relocation, sonoma: "1338d9a2ce0b7c03895ff8df6c96e52d150e609c57e0cbc874f4aadfe118f8f1" + sha256 cellar: :any_skip_relocation, ventura: "1338d9a2ce0b7c03895ff8df6c96e52d150e609c57e0cbc874f4aadfe118f8f1" + sha256 cellar: :any_skip_relocation, x86_64_linux: "5c64691dcf2f41bb3f474190c4b360918c90d0d652e2d6721f41b95df4779388" end depends_on "go" => :build From 4300280d4c5d7a7561ec88e5e010a4275009da52 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 14:33:57 +0000 Subject: [PATCH 0858/1364] shadowsocks-rust: update 1.23.3 bottle. --- Formula/s/shadowsocks-rust.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/s/shadowsocks-rust.rb b/Formula/s/shadowsocks-rust.rb index 636e0ff9b904c..dcf4e88741fe9 100644 --- a/Formula/s/shadowsocks-rust.rb +++ b/Formula/s/shadowsocks-rust.rb @@ -7,13 +7,13 @@ class ShadowsocksRust < Formula head "https://github.com/shadowsocks/shadowsocks-rust.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "7943900af07c8410b201c5da30e52df54e68ca8635678a1b2b4cf26f86c6eaa3" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "b825017b963c446f7ffe3764580e4884c7fb0e168e84187742ba54cb98dbcbee" - sha256 cellar: :any_skip_relocation, arm64_ventura: "5e7c619089aa9c491de92fd7065ae4d7df9b11f6ec4a18110623991c4b01d5e7" - sha256 cellar: :any_skip_relocation, sonoma: "9038ad8f46aea43855336db6ab87851802b9336daa7c1d3c6b131def6710f278" - sha256 cellar: :any_skip_relocation, ventura: "fc509dd8d940a1151eb200390086c7845eb8a4ba7bc55ff02f4923091feca073" - sha256 cellar: :any_skip_relocation, arm64_linux: "238c2730627062843ff9e3d6b82b730b3b90f42f0909bfd04b7b28a204b0b537" - sha256 cellar: :any_skip_relocation, x86_64_linux: "5b5aae3e5b91f62093d2a9d92a645b72663ae98bad5891ed90b4e8e3fd1f4aff" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "b7caa8cb29b666108888b975e6ffc44d42af333653fd554b52857f6ec888aa25" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "bcc3247159cdb7e323efe9d0e91ad7e73badabbb618b407a11223f363d5700d4" + sha256 cellar: :any_skip_relocation, arm64_ventura: "f6664f615d37eb810265e88690d7d9f8699b7cba1ab49b66704623747f350d9a" + sha256 cellar: :any_skip_relocation, sonoma: "c502b48295304b6b77b1d2429c62dd65b18625d09f569aefdf5273aaef631908" + sha256 cellar: :any_skip_relocation, ventura: "34ef9ceea99ca0fb3d15357f1250fef6f20fe9250a7c92d82840168ea971e5e2" + sha256 cellar: :any_skip_relocation, arm64_linux: "29e4c3717a3c9837af5ab174ec272d076a41c43558d6cc0608adef98654c99ca" + sha256 cellar: :any_skip_relocation, x86_64_linux: "6b3912a92b37972d18bc00806a69901f92d4aa7dc24f710679cc138e592d4bce" end depends_on "rust" => :build From dacdee00dd81fb971773712f89ca64671c179320 Mon Sep 17 00:00:00 2001 From: botantony Date: Sun, 11 May 2025 18:06:56 +0200 Subject: [PATCH 0859/1364] m4 1.4.20 --- Formula/m/m4.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/m/m4.rb b/Formula/m/m4.rb index 26415a0c03422..b50f8ed90430c 100644 --- a/Formula/m/m4.rb +++ b/Formula/m/m4.rb @@ -1,9 +1,9 @@ class M4 < Formula desc "Macro processing language" homepage "https://www.gnu.org/software/m4/" - url "https://ftp.gnu.org/gnu/m4/m4-1.4.19.tar.xz" + url "https://ftp.gnu.org/gnu/m4/m4-1.4.20.tar.xz" mirror "https://ftpmirror.gnu.org/m4/m4-1.4.19.tar.xz" - sha256 "63aede5c6d33b6d9b13511cd0be2cac046f2e70fd0a07aa9573a04a82783af96" + sha256 "e236ea3a1ccf5f6c270b1c4bb60726f371fa49459a8eaaebc90b216b328daf2b" license "GPL-3.0-or-later" bottle do From 49d852fa315733b05778352023a4f45478720549 Mon Sep 17 00:00:00 2001 From: botantony Date: Sun, 11 May 2025 18:08:28 +0200 Subject: [PATCH 0860/1364] autobump: add m4 Signed-off-by: botantony --- .github/autobump.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/autobump.txt b/.github/autobump.txt index c94d86788e629..1062636f5bc1c 100644 --- a/.github/autobump.txt +++ b/.github/autobump.txt @@ -2205,6 +2205,7 @@ lz4 lzip lziprecover lzlib +m4 m68k-elf-gcc macchina mackup From 760ec708def8d7a6303a8eadcc5a9f981e9e6e27 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 16:50:53 +0000 Subject: [PATCH 0861/1364] ast-grep 0.38.1 --- Formula/a/ast-grep.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/a/ast-grep.rb b/Formula/a/ast-grep.rb index f984078385958..e6ad4b3aed122 100644 --- a/Formula/a/ast-grep.rb +++ b/Formula/a/ast-grep.rb @@ -1,8 +1,8 @@ class AstGrep < Formula desc "Code searching, linting, rewriting" homepage "https://github.com/ast-grep/ast-grep" - url "https://github.com/ast-grep/ast-grep/archive/refs/tags/0.38.0.tar.gz" - sha256 "1377cfcaaf0d42c9cb757ab92a91b2fd84404944b194030fda7b4d5180d6fb68" + url "https://github.com/ast-grep/ast-grep/archive/refs/tags/0.38.1.tar.gz" + sha256 "e1378aef969fbedd450f52eb85bf56a0389acdfd09316c130b28ade920a59cb3" license "MIT" head "https://github.com/ast-grep/ast-grep.git", branch: "main" From 8c0d3e8a94fabd22462f0300106434b7c218f1ac Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 16:52:46 +0000 Subject: [PATCH 0862/1364] bazarr 1.5.2 --- Formula/b/bazarr.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/b/bazarr.rb b/Formula/b/bazarr.rb index 3e5f7750a150c..8e8a26f8a1206 100644 --- a/Formula/b/bazarr.rb +++ b/Formula/b/bazarr.rb @@ -3,8 +3,8 @@ class Bazarr < Formula desc "Companion to Sonarr and Radarr for managing and downloading subtitles" homepage "https://www.bazarr.media" - url "https://github.com/morpheus65535/bazarr/releases/download/v1.5.1/bazarr.zip" - sha256 "7b96ad17e72a0519186fa9733df86246e50e166b8915a9a4f4ac0d896f3dd724" + url "https://github.com/morpheus65535/bazarr/releases/download/v1.5.2/bazarr.zip" + sha256 "63519d9855e5b84c947b18d72fa36dfa9341a040879d1079bfde2fabfe8ab30e" license "GPL-3.0-or-later" head "https://github.com/morpheus65535/bazarr.git", branch: "master" @@ -31,13 +31,13 @@ class Bazarr < Formula uses_from_macos "zlib" resource "lxml" do - url "https://files.pythonhosted.org/packages/e7/6b/20c3a4b24751377aaa6307eb230b66701024012c29dd374999cc92983269/lxml-5.3.0.tar.gz" - sha256 "4e109ca30d1edec1ac60cdbe341905dc3b8f55b16855e03a54aaf59e51ec8c6f" + url "https://files.pythonhosted.org/packages/76/3d/14e82fc7c8fb1b7761f7e748fd47e2ec8276d137b6acfe5a4bb73853e08f/lxml-5.4.0.tar.gz" + sha256 "d12832e1dbea4be280b22fd0ea7c9b87f0d8fc51ba06e92dc62d52f804f78ebd" end resource "setuptools" do - url "https://files.pythonhosted.org/packages/43/54/292f26c208734e9a7f067aea4a7e282c080750c4546559b58e2e45413ca0/setuptools-75.6.0.tar.gz" - sha256 "8199222558df7c86216af4f84c30e9b34a61d8ba19366cc914424cdbd28252f6" + url "https://files.pythonhosted.org/packages/95/32/0cc40fe41fd2adb80a2f388987f4f8db3c866c69e33e0b4c8b093fdf700e/setuptools-80.4.0.tar.gz" + sha256 "5a78f61820bc088c8e4add52932ae6b8cf423da2aff268c23f813cfbb13b4006" end resource "webrtcvad-wheels" do From a9e1762102010f52e3a743e8809ade5b7472db03 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 16:55:16 +0000 Subject: [PATCH 0863/1364] checkbashisms 2.25.12 --- Formula/c/checkbashisms.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/checkbashisms.rb b/Formula/c/checkbashisms.rb index 5f9090862544f..6b7b0b9444da2 100644 --- a/Formula/c/checkbashisms.rb +++ b/Formula/c/checkbashisms.rb @@ -1,8 +1,8 @@ class Checkbashisms < Formula desc "Checks for bashisms in shell scripts" homepage "https://launchpad.net/ubuntu/+source/devscripts/" - url "https://deb.debian.org/debian/pool/main/d/devscripts/devscripts_2.25.11.tar.xz" - sha256 "c6b8c2b3dc00703fa8899906bc3accc5d0f928220c74426c4306423008e20699" + url "https://deb.debian.org/debian/pool/main/d/devscripts/devscripts_2.25.12.tar.xz" + sha256 "a667faa37c625232106d6d4141d5aa9a1b78ab261a7fb787f80d02d8ccb2dd2a" license "GPL-2.0-or-later" livecheck do From 0f0042d5d221ccdf9434eb8232058eecbc8ee53d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 17:02:52 +0000 Subject: [PATCH 0864/1364] go-parquet-tools 1.29.1 --- Formula/g/go-parquet-tools.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/g/go-parquet-tools.rb b/Formula/g/go-parquet-tools.rb index 685d9efcf5147..cc434d51b46a4 100644 --- a/Formula/g/go-parquet-tools.rb +++ b/Formula/g/go-parquet-tools.rb @@ -1,8 +1,8 @@ class GoParquetTools < Formula desc "Utility to deal with Parquet data" homepage "https://github.com/hangxie/parquet-tools" - url "https://github.com/hangxie/parquet-tools/archive/refs/tags/v1.29.0.tar.gz" - sha256 "4e4a8617003438d5c8f4f0e5afd08808070757091781ee28d09a55f3f9eddd2c" + url "https://github.com/hangxie/parquet-tools/archive/refs/tags/v1.29.1.tar.gz" + sha256 "702d3443e292e9d5ecff13c2a995457389c2f5dbb1f3e835f99ff9ea9d3876cd" license "BSD-3-Clause" head "https://github.com/hangxie/parquet-tools.git", branch: "main" From 5441cb293a11884a56b9bcce16151c81e7316944 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 17:12:14 +0000 Subject: [PATCH 0865/1364] ast-grep: update 0.38.1 bottle. --- Formula/a/ast-grep.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/a/ast-grep.rb b/Formula/a/ast-grep.rb index e6ad4b3aed122..1691d50deafa4 100644 --- a/Formula/a/ast-grep.rb +++ b/Formula/a/ast-grep.rb @@ -7,13 +7,13 @@ class AstGrep < Formula head "https://github.com/ast-grep/ast-grep.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "36a215992af0c44e45c0f90351c5acc90bc4b62bd22409b1a972f42e58e0b2ff" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "13263be7447662bbe2c14f8ce41e3fc49608099f7620d3b4a6820a733511ad8e" - sha256 cellar: :any_skip_relocation, arm64_ventura: "17be0a136f276d11549ccd7b0f5599184f241136c2120a4d288bb904cc427d04" - sha256 cellar: :any_skip_relocation, sonoma: "2452cbfb4945c18a3671b8fcabee4c7b51d463dc1133a460c860fd5775caac7e" - sha256 cellar: :any_skip_relocation, ventura: "0e0ee05b1d44a1f52698143c95d694b55fd6ffef46f826d7a9ec08c296352fff" - sha256 cellar: :any_skip_relocation, arm64_linux: "a85d66ae3994b62a3f0dc3d178b5c2dd0d896b8331d912614dcfdb2cf5313b9b" - sha256 cellar: :any_skip_relocation, x86_64_linux: "4cf1ddc2d47731163d3d40bb1ddc197cf805e1ce4e524d8cd88eac7ae9bf0d1e" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "53fa646ebfe63b5c030a6f03c72b358eee97e68106056c95832855dc04e9bd4b" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "5f96a95439fdd92ebfb50ac22084d29a2b391ffaeb1ab5fd31e5c14c9c2c559d" + sha256 cellar: :any_skip_relocation, arm64_ventura: "2dcffa2e091ba3251b5950262acec52c4cd3d1b6871b5de87ceb7526a4c4cd06" + sha256 cellar: :any_skip_relocation, sonoma: "1e8c73bbf61767004d0ad8a0d7774b73d832a3305254fc90c0645a784e2a0983" + sha256 cellar: :any_skip_relocation, ventura: "ffcb33c2383d76067c4e1f47bf03a9d74be962453d3d068acc1b512fcf7cb3ab" + sha256 cellar: :any_skip_relocation, arm64_linux: "28ae8692020ba9755cf3700809ab63e3dbff7145456615de32e180ee5c7d3def" + sha256 cellar: :any_skip_relocation, x86_64_linux: "828848a6417695418375227a00f2d4f0a643e4764a8793895c2644caa56c8f57" end depends_on "rust" => :build From b55bebc623d1dbcaaeaaba6843abea9a62a1b18f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 17:12:39 +0000 Subject: [PATCH 0866/1364] checkbashisms: update 2.25.12 bottle. --- Formula/c/checkbashisms.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/c/checkbashisms.rb b/Formula/c/checkbashisms.rb index 6b7b0b9444da2..292e659ce1307 100644 --- a/Formula/c/checkbashisms.rb +++ b/Formula/c/checkbashisms.rb @@ -11,7 +11,7 @@ class Checkbashisms < Formula end bottle do - sha256 cellar: :any_skip_relocation, all: "59641dd889c8fcd6dd3897cd65a2d0cdbc07082ffb8c783e42baf0bd6b2c6755" + sha256 cellar: :any_skip_relocation, all: "d4f5974e9b9df0af56e38caee495459682305020fc08be1b6fcafabb9162bc67" end def install From ca3212a533e047482799afac1eb70c69fe606871 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 17:14:57 +0000 Subject: [PATCH 0867/1364] go-parquet-tools: update 1.29.1 bottle. --- Formula/g/go-parquet-tools.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/g/go-parquet-tools.rb b/Formula/g/go-parquet-tools.rb index cc434d51b46a4..f8f82c02de1bb 100644 --- a/Formula/g/go-parquet-tools.rb +++ b/Formula/g/go-parquet-tools.rb @@ -7,12 +7,12 @@ class GoParquetTools < Formula head "https://github.com/hangxie/parquet-tools.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "df12d36c7c6313ede24c95d86374cb031d4a6575993f06a4c334c3a2d954563e" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "df12d36c7c6313ede24c95d86374cb031d4a6575993f06a4c334c3a2d954563e" - sha256 cellar: :any_skip_relocation, arm64_ventura: "df12d36c7c6313ede24c95d86374cb031d4a6575993f06a4c334c3a2d954563e" - sha256 cellar: :any_skip_relocation, sonoma: "6fad18b4e2380047f9dc48c1a736d16c8bab239476b926ceedff4044399bacfa" - sha256 cellar: :any_skip_relocation, ventura: "6fad18b4e2380047f9dc48c1a736d16c8bab239476b926ceedff4044399bacfa" - sha256 cellar: :any_skip_relocation, x86_64_linux: "b0f97cb8c7008d6acdeb3e668bf764fd2a1a380e156aab83b3b8136916263fb8" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "f81ce558dcfd8abe7ec81a2185c5cbb528c23a78def73e4519cc70d4e3cb1a9f" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "f81ce558dcfd8abe7ec81a2185c5cbb528c23a78def73e4519cc70d4e3cb1a9f" + sha256 cellar: :any_skip_relocation, arm64_ventura: "f81ce558dcfd8abe7ec81a2185c5cbb528c23a78def73e4519cc70d4e3cb1a9f" + sha256 cellar: :any_skip_relocation, sonoma: "abc3065518dae36e123c0c6bd7e0de4d219a8ba911e195e81e8e88abc70de33d" + sha256 cellar: :any_skip_relocation, ventura: "abc3065518dae36e123c0c6bd7e0de4d219a8ba911e195e81e8e88abc70de33d" + sha256 cellar: :any_skip_relocation, x86_64_linux: "99ca14331561b1c214235076cd5f7602c738bb1a2212fff0afdf37c10b00a97a" end depends_on "go" => :build From d91fc56d7d79a05a02b680dad34175ca305473e6 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Sun, 11 May 2025 17:21:23 +0000 Subject: [PATCH 0868/1364] pmix: update 5.0.8 bottle. --- Formula/p/pmix.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/p/pmix.rb b/Formula/p/pmix.rb index 2d666b05b6185..961f40db236cd 100644 --- a/Formula/p/pmix.rb +++ b/Formula/p/pmix.rb @@ -20,13 +20,13 @@ class Pmix < Formula end bottle do - sha256 arm64_sequoia: "4e59d8ac974bb4044d20819bc706546f0be8d4f93d2606fba9955cf7ef5b3e79" - sha256 arm64_sonoma: "f0731ca081ab6b01da5a3e54e54077a7d0c5b04a2d5165eeabed09b01214b1cd" - sha256 arm64_ventura: "209ca81713565515c252c3f636740cccda036dba9e5902c5bd3624289200878c" - sha256 sonoma: "15607c8b02a16b286645e8cdb4b7c188c87544ad231970948554d6f0a263a29a" - sha256 ventura: "61e16d267ae760ea5cc166389987588e2910adaecc7ff65073493f3b0f637c87" - sha256 arm64_linux: "ba68fae2d7b57e731fbafd7ede776f2601459dee2cbfc3f192b9def427436ea0" - sha256 x86_64_linux: "758f1be12c3dfd4326933faf54083748a967450d237da5d6186339b5ebed2b4b" + sha256 arm64_sequoia: "a7d99c8e194b5a0191094bf5c301466aecf2cdddc4a30f82f49fe72eb8b61373" + sha256 arm64_sonoma: "d52b37238c114a79dc57612d0fb2217bdd6f37ac81a3c3836121377c341677b0" + sha256 arm64_ventura: "6151bd4898bad61e4f9a58ba50f8b10f3c211c71c1907bfd70c6721ce7e6bba7" + sha256 sonoma: "8eb6695bd7001e3d7dc6cc0a404e14592d5bb69ec9e29cebfa21d95972199896" + sha256 ventura: "fdeaf1f3920bb26ac0d4242ca443f5b07af478b6e7fb8b2de33b4d972401387e" + sha256 arm64_linux: "be81426a4e1b74b7c6cfd8b62eb05407731580fe470ffd0c7a10cda31491d091" + sha256 x86_64_linux: "3a4abb4032f58acdc7b067183ed6a8a8199e4482d72a9e5c536a079722c98f58" end head do From 9ee285504e3e0782c1cf28c1cda979cb582f0471 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 17:22:19 +0000 Subject: [PATCH 0869/1364] spotify_player 0.20.5 --- Formula/s/spotify_player.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/s/spotify_player.rb b/Formula/s/spotify_player.rb index 9cd84265747c7..1fff7dd1414ad 100644 --- a/Formula/s/spotify_player.rb +++ b/Formula/s/spotify_player.rb @@ -1,8 +1,8 @@ class SpotifyPlayer < Formula desc "Command driven spotify player" homepage "https://github.com/aome510/spotify-player" - url "https://github.com/aome510/spotify-player/archive/refs/tags/v0.20.4.tar.gz" - sha256 "1d13f47ef4df3415835736f32629d57e331707d781507007ea04217a7dc735d8" + url "https://github.com/aome510/spotify-player/archive/refs/tags/v0.20.5.tar.gz" + sha256 "06a409144461fa965916d7d92817fda4be3801402eff8278a3fc7a38448d54e1" license "MIT" head "https://github.com/aome510/spotify-player.git", branch: "master" From d321880b2bbe70f08a561a3024c560a27db3e24d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 17:25:17 +0000 Subject: [PATCH 0870/1364] tree-sitter 0.25.4 --- Formula/t/tree-sitter.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/t/tree-sitter.rb b/Formula/t/tree-sitter.rb index d780fcdb3f79b..cc7d7a9c7bf8a 100644 --- a/Formula/t/tree-sitter.rb +++ b/Formula/t/tree-sitter.rb @@ -1,8 +1,8 @@ class TreeSitter < Formula desc "Parser generator tool and incremental parsing library" homepage "https://tree-sitter.github.io/" - url "https://github.com/tree-sitter/tree-sitter/archive/refs/tags/v0.25.3.tar.gz" - sha256 "862fac52653bc7bc9d2cd0630483e6bdf3d02bcd23da956ca32663c4798a93e3" + url "https://github.com/tree-sitter/tree-sitter/archive/refs/tags/v0.25.4.tar.gz" + sha256 "87eadc505905c70a692917c821958a819903f808f8d244068b1d273a033dc728" license "MIT" head "https://github.com/tree-sitter/tree-sitter.git", branch: "master" From 5f2fc93047e8a73385653a67f984111ee7c3ae5a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 17:25:27 +0000 Subject: [PATCH 0871/1364] bazarr: update 1.5.2 bottle. --- Formula/b/bazarr.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/b/bazarr.rb b/Formula/b/bazarr.rb index 8e8a26f8a1206..69514f030b51a 100644 --- a/Formula/b/bazarr.rb +++ b/Formula/b/bazarr.rb @@ -9,13 +9,13 @@ class Bazarr < Formula head "https://github.com/morpheus65535/bazarr.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "40d35c35dcab8682c03cf750fb7e7417184709d4c97b9db40fce0968ec2bb194" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "ec29c096a07bcaa7583b2d92bf7c78ac22055fe0e41792760a8005103fb61ead" - sha256 cellar: :any_skip_relocation, arm64_ventura: "cfeb0170d8f5be7cf93401e4047e427d4892a05f454ef5b7c89689e3412faf2d" - sha256 cellar: :any_skip_relocation, sonoma: "7375a37329a9eed68187555c430bea89d378fbe7c3727fa9a416832d2c051506" - sha256 cellar: :any_skip_relocation, ventura: "0bfe738d8b0367355f229f7af64998e3de74bb02ffc1d764479269beb3c9e442" - sha256 cellar: :any_skip_relocation, arm64_linux: "33ef4c9f174e068d1622e519437579bc440acf89dffbdf95b5ead21003a79879" - sha256 cellar: :any_skip_relocation, x86_64_linux: "2198317ff715c8d368b65fce2ec6b14a9abee575a767ca86862049725195b0fc" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "8a970f6f5dc0730e20ca59176874c7ec1abe7a8433a897bd0e642eba8a951c00" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "203e8edb199ebd6050879d45b5dca2e37baa282b8e48dbcf6f3c1b8269ec05ba" + sha256 cellar: :any_skip_relocation, arm64_ventura: "12bf4455d2154c9fcc5f719a321bda609ee2610a5a897384230ba8918865e024" + sha256 cellar: :any_skip_relocation, sonoma: "e7bd2789e41974a78525fb2ed9e4f384b9c337977652375b22b9cc87b974f7ca" + sha256 cellar: :any_skip_relocation, ventura: "2d822e4808509bc37dfc0ec0ef20dbd49bbc9d74eda582b31b1beeac80f2a9e1" + sha256 cellar: :any_skip_relocation, arm64_linux: "0b43a4b85eaa37c9e87a5d5ac1b0b4ff729aff6d4bd3c583958056c5fba741a7" + sha256 cellar: :any_skip_relocation, x86_64_linux: "61178b07eb006f26c6a92ebad8daf2da402070d91d0dd54a54705dd592674d3b" end depends_on "node" => :build From c21dbf0903631cf049c3f9ef9e9aed0d744d6e06 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 17:25:53 +0000 Subject: [PATCH 0872/1364] typstyle 0.13.6 --- Formula/t/typstyle.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/t/typstyle.rb b/Formula/t/typstyle.rb index 1b0720f50037a..35a60fbb661f1 100644 --- a/Formula/t/typstyle.rb +++ b/Formula/t/typstyle.rb @@ -1,8 +1,8 @@ class Typstyle < Formula desc "Beautiful and reliable typst code formatter" homepage "https://enter-tainer.github.io/typstyle/" - url "https://github.com/Enter-tainer/typstyle/archive/refs/tags/v0.13.5.tar.gz" - sha256 "8d152334a41c9c1b0668c765e9713b5454f8db5eada02a3a32fff93753508579" + url "https://github.com/Enter-tainer/typstyle/archive/refs/tags/v0.13.6.tar.gz" + sha256 "3ecac7ccd9e8e6d3ac5750b3036dc0253a4a228c9270c14e0a499c6ae677eb42" license "Apache-2.0" head "https://github.com/Enter-tainer/typstyle.git", branch: "master" From bd90ebea3e4cb73c75fcc57037e619ac5f0cb2b8 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 18:03:36 +0000 Subject: [PATCH 0873/1364] typstyle: update 0.13.6 bottle. --- Formula/t/typstyle.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/t/typstyle.rb b/Formula/t/typstyle.rb index 35a60fbb661f1..14c071e9e726f 100644 --- a/Formula/t/typstyle.rb +++ b/Formula/t/typstyle.rb @@ -7,13 +7,13 @@ class Typstyle < Formula head "https://github.com/Enter-tainer/typstyle.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "eb73ba2633000a83b7adca1dcf76e94e284d9639d5e6247ea636d554f3a587a4" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "c02bf966d290d9e9022168b4b834065e94deca2d3b18cee72d5a54b862635453" - sha256 cellar: :any_skip_relocation, arm64_ventura: "63a58357f91b686dcc256fe954eb9b9395fbbc7d95d477e8ae4bdfc66a7918cf" - sha256 cellar: :any_skip_relocation, sonoma: "c9328898f04b2c545306cc942392545498e6102efd4732f0bb36c90166a58cd5" - sha256 cellar: :any_skip_relocation, ventura: "15cc042fc3fb2402f8df1db6b727f513012d200193615f5fbc60198e0ed0ab06" - sha256 cellar: :any_skip_relocation, arm64_linux: "fea3705566ef8c2f998df4a93be67a0c209ac95f2e5e363e58cdb80e5d9aec99" - sha256 cellar: :any_skip_relocation, x86_64_linux: "8dc133a867428cd587bca4598c04932a95740ab7c892dc285da8930a6148bfb6" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "992fd5377b38e16f85a43d507683a366c5c6051c4dd3c638a6a0a761b3e860fe" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "56f2bef0e58ad6f25464493072f77a9999cef64f7e98de07c18c02171272c26e" + sha256 cellar: :any_skip_relocation, arm64_ventura: "ed361443496a80b32b8c279a7ab948855845ad529018abd702256d675b4b3631" + sha256 cellar: :any_skip_relocation, sonoma: "9ea2dabb2eec0ffedf6ad747aeb11aaf7d0f2908f36ce293c045cbd619928080" + sha256 cellar: :any_skip_relocation, ventura: "22c42c44cb0ac6a0170b001fda02b3a5a977ff9e7799434064b447b199ca333c" + sha256 cellar: :any_skip_relocation, arm64_linux: "80c72b80e59fcb067edadf81d3e7061871556c23bc1faab7da3fc891c4fe7854" + sha256 cellar: :any_skip_relocation, x86_64_linux: "01bf5a113113054d4701097db35e15d40bce77d801a9b8926a5294e249e41553" end depends_on "rust" => :build From 2c81ff428cfb7df21b1cf63c1ea31ed8e9337209 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 18:04:37 +0000 Subject: [PATCH 0874/1364] spotify_player: update 0.20.5 bottle. --- Formula/s/spotify_player.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/s/spotify_player.rb b/Formula/s/spotify_player.rb index 1fff7dd1414ad..bfdd12f01b854 100644 --- a/Formula/s/spotify_player.rb +++ b/Formula/s/spotify_player.rb @@ -7,13 +7,13 @@ class SpotifyPlayer < Formula head "https://github.com/aome510/spotify-player.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "4d4c209c2b1b2872394ca7710af9844a076589a82539ec1af10396e7d0dd645c" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "3b1c0d92ca18821be8c48b28cdc2118ff836171cb22b605f8eb8360dd86e2430" - sha256 cellar: :any_skip_relocation, arm64_ventura: "2f72e6181aa47f86f955a35bf47f54281e9ba4f8e575a408418e84d63a8de9e8" - sha256 cellar: :any_skip_relocation, sonoma: "d27c32ee622146d6c4fd6bc1a05fa266db4d507b8b5701beebce517e9288a7d9" - sha256 cellar: :any_skip_relocation, ventura: "b086dc07d207b7cb486fa068e0cdb3531cd31fa19184dd676a755ba9bd384f3c" - sha256 cellar: :any_skip_relocation, arm64_linux: "620f3f2a17f95b67c45f48a9e4d38b52dcefb184e01ad24c7929c79386c5d4a0" - sha256 cellar: :any_skip_relocation, x86_64_linux: "57b865bf6b50b69d77b01d2717ea667f3a7b6f45c8b8d1f2dd84b23e29270705" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "586d9cd1b5f25763d9707b1bbdf3d0db8ff9a907f1d9366d54f0e6d0057357fe" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "a71e28d1925528ea43fe781886b60685f639c3c9b4dac8ae643d55dae84b06db" + sha256 cellar: :any_skip_relocation, arm64_ventura: "b4c4842939847c22541616bd9e3e942c3e5a0c0aec3d78bc8332df8f652010e2" + sha256 cellar: :any_skip_relocation, sonoma: "fe4ce0b9f2eac32fc47b3f79c52ddf87f407e16c1e7cf2f1380043c7c7155a8b" + sha256 cellar: :any_skip_relocation, ventura: "bafdf2dad5b6648769ddb426204422a5228c9e8695fa56d39fc5abce66543915" + sha256 cellar: :any_skip_relocation, arm64_linux: "4335402911998567074f316703ecba218463d5e3bd647541919861c9edbdfa3c" + sha256 cellar: :any_skip_relocation, x86_64_linux: "d892b242d6d3ee55e3cccbc5026492f7876d14969c2556b7ef44d3e1decd5e40" end depends_on "rust" => :build From 0135ef8b1ac67fecaff52725c7c55d6cfa1b7e27 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 19:06:30 +0000 Subject: [PATCH 0875/1364] tree-sitter: update 0.25.4 bottle. --- Formula/t/tree-sitter.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/t/tree-sitter.rb b/Formula/t/tree-sitter.rb index cc7d7a9c7bf8a..1027faa546a0c 100644 --- a/Formula/t/tree-sitter.rb +++ b/Formula/t/tree-sitter.rb @@ -12,13 +12,13 @@ class TreeSitter < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "3af9b0daa0a0abc67857dfe737b1b3efea32dd2f8839e650d4ab5c7edbfa7498" - sha256 cellar: :any, arm64_sonoma: "583a1198bf012237f4d55214f4e229c73e36c2646b039f753b23e88067de2a87" - sha256 cellar: :any, arm64_ventura: "45f1d76ef7d78f9159f9b362dfc91d22575c5e5a3d4b34cabf5db8c83bfde169" - sha256 cellar: :any, sonoma: "077aeb52873a985c5f869cbcfbc62a7c8e135256038b797cd1ca111266b9e386" - sha256 cellar: :any, ventura: "2b0e5434ddbaa8b5236aa132a10aa7ad93a78ec40ab14926c2ece1b7f91bf250" - sha256 cellar: :any_skip_relocation, arm64_linux: "5f79aed3eaf3dc58b2fee7231bf5e7ad9e17b4acd5729e65b6df401bc9259f59" - sha256 cellar: :any_skip_relocation, x86_64_linux: "79afaf8e3fcbe5cd4bf4e1f72fea4cb77ac6da024da49cbd392db157732c59a3" + sha256 cellar: :any, arm64_sequoia: "d759e793e811053e350f19269066d86609efa06fc2e92ce7085b413dc3baab70" + sha256 cellar: :any, arm64_sonoma: "1a0a7a12a4021659fd237f7b35abb449f179dff95b059ce874997a2d65b0a042" + sha256 cellar: :any, arm64_ventura: "7605faf1b7a973d90c481477a400b2b4da5a18adfdcaabfb9868075a84eef99f" + sha256 cellar: :any, sonoma: "873e4f49b4c0419ff3f5ff2d7f44c63068a9de9d3100f3f811b04e6d01f05d17" + sha256 cellar: :any, ventura: "96ef7b42541f6cdc3eb3d06137a6cc077b981549c22d397bb7a9460b20073e29" + sha256 cellar: :any_skip_relocation, arm64_linux: "eb5af21cb73a0a56b5980663f9640c3d897c020bf3c5457d11b471f6f5cd467f" + sha256 cellar: :any_skip_relocation, x86_64_linux: "51edea22da451343dd7f18b7d92908158ed96c0f6c74e24e3a373baffaddc538" end depends_on "rust" => :build From d1a951fd5e6a5904fd9e523037d8257e73a6384e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 19:53:58 +0000 Subject: [PATCH 0876/1364] dockcheck 0.6.4 --- Formula/d/dockcheck.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/d/dockcheck.rb b/Formula/d/dockcheck.rb index 890cb28f846ca..059eb8265bb73 100644 --- a/Formula/d/dockcheck.rb +++ b/Formula/d/dockcheck.rb @@ -1,8 +1,8 @@ class Dockcheck < Formula desc "CLI tool to automate docker image updates" homepage "https://github.com/mag37/dockcheck" - url "https://github.com/mag37/dockcheck/archive/refs/tags/v0.6.3.tar.gz" - sha256 "1f4b0f37f9479aad7f9a8d18d4a7937812d9819f5f22d5b446ecc1f2c5807f70" + url "https://github.com/mag37/dockcheck/archive/refs/tags/v0.6.4.tar.gz" + sha256 "8c6ca93335e71f71da8fe80f048cef2b469b1a3e456f9d9940d97b76b66e8964" license "GPL-3.0-only" head "https://github.com/mag37/dockcheck.git", branch: "main" From 1e9a060dab05a5c67359e0ae9c8006007b8723f1 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 19:55:06 +0000 Subject: [PATCH 0877/1364] exult 1.12.0 --- Formula/e/exult.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/e/exult.rb b/Formula/e/exult.rb index fb39f6caa268c..8eb616e6e2531 100644 --- a/Formula/e/exult.rb +++ b/Formula/e/exult.rb @@ -1,8 +1,8 @@ class Exult < Formula desc "Recreation of Ultima 7" homepage "https://exult.sourceforge.io/" - url "https://github.com/exult/exult/archive/refs/tags/v1.10.1.tar.gz" - sha256 "f55f682a47009fdc5138571f80ac42eb1fe5c07c8d9ccacaa9de66caed039fd3" + url "https://github.com/exult/exult/archive/refs/tags/v1.12.0.tar.gz" + sha256 "1734fb8fc76696c7697f00d53e1c5c04b889ab4cabd95e4a3e0380bc35ee5392" license "GPL-2.0-or-later" head "https://github.com/exult/exult.git", branch: "master" From b2b4ebcf2cc8fa54f35389b21ad5cba4b62476f5 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 19:59:39 +0000 Subject: [PATCH 0878/1364] kew 3.3.0 --- Formula/k/kew.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/k/kew.rb b/Formula/k/kew.rb index c2adf6c5719a7..6d14705b1498c 100644 --- a/Formula/k/kew.rb +++ b/Formula/k/kew.rb @@ -1,8 +1,8 @@ class Kew < Formula desc "Command-line music player" homepage "https://github.com/ravachol/kew" - url "https://github.com/ravachol/kew/archive/refs/tags/v3.2.0.tar.gz" - sha256 "40756969ded1a9737424e13b62c75b77d08443102b575719c778b5dc7fa71cfc" + url "https://github.com/ravachol/kew/archive/refs/tags/v3.3.0.tar.gz" + sha256 "cc5d1c8f30d9c1d39af452db84bb21c723407b11577c07a108d35f1eaf7dbdf3" license "GPL-2.0-only" head "https://github.com/ravachol/kew.git", branch: "main" From e150cc1547bda62c279d355b5aa805d95cafc8a4 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 20:00:57 +0000 Subject: [PATCH 0879/1364] libdeflate 1.24 --- Formula/lib/libdeflate.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/lib/libdeflate.rb b/Formula/lib/libdeflate.rb index 90a98be9ba304..ecc755020b80e 100644 --- a/Formula/lib/libdeflate.rb +++ b/Formula/lib/libdeflate.rb @@ -1,8 +1,8 @@ class Libdeflate < Formula desc "Heavily optimized DEFLATE/zlib/gzip compression and decompression" homepage "https://github.com/ebiggers/libdeflate" - url "https://github.com/ebiggers/libdeflate/archive/refs/tags/v1.23.tar.gz" - sha256 "1ab18349b9fb0ce8a0ca4116bded725be7dcbfa709e19f6f983d99df1fb8b25f" + url "https://github.com/ebiggers/libdeflate/archive/refs/tags/v1.24.tar.gz" + sha256 "ad8d3723d0065c4723ab738be9723f2ff1cb0f1571e8bfcf0301ff9661f475e8" license "MIT" bottle do From a7312f1b1a42a06a9b1d0bba384ce61358be84e6 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 20:04:22 +0000 Subject: [PATCH 0880/1364] nerdlog 1.7.0 --- Formula/n/nerdlog.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/n/nerdlog.rb b/Formula/n/nerdlog.rb index 21ade4b5a87a8..d37990e0cae2d 100644 --- a/Formula/n/nerdlog.rb +++ b/Formula/n/nerdlog.rb @@ -1,8 +1,8 @@ class Nerdlog < Formula desc "TUI log viewer with timeline histogram and no central server" homepage "https://dmitryfrank.com/projects/nerdlog/article" - url "https://github.com/dimonomid/nerdlog/archive/refs/tags/v1.6.0.tar.gz" - sha256 "bc1c6ed6faf38de98c94c3cb321bcfa3b369c759cb8708ac08ab4ef4178ff762" + url "https://github.com/dimonomid/nerdlog/archive/refs/tags/v1.7.0.tar.gz" + sha256 "5e203df042081f103222c7f09fc1aac70f6ef5804c34d7c0fc3794eb3f2b2868" license "BSD-2-Clause" head "https://github.com/dimonomid/nerdlog.git", branch: "master" From 1bd9e5129ef5001b0528a8312486ef7d29579f1a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 20:11:30 +0000 Subject: [PATCH 0881/1364] dockcheck: update 0.6.4 bottle. --- Formula/d/dockcheck.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/d/dockcheck.rb b/Formula/d/dockcheck.rb index 059eb8265bb73..38c6eaa535e1f 100644 --- a/Formula/d/dockcheck.rb +++ b/Formula/d/dockcheck.rb @@ -7,7 +7,7 @@ class Dockcheck < Formula head "https://github.com/mag37/dockcheck.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, all: "ad8986554543a28ef947c3ee7eebd61055fa3878e8afea0a3fa25d961fad219b" + sha256 cellar: :any_skip_relocation, all: "f1b08612b7202b0e1a825e4d1c90e125a4362b50c964156eb57a07573edecee3" end depends_on "jq" From 8214053bc56f1ad7865b646353d13214247d9c29 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 20:11:55 +0000 Subject: [PATCH 0882/1364] exult: update 1.12.0 bottle. --- Formula/e/exult.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/e/exult.rb b/Formula/e/exult.rb index 8eb616e6e2531..aa297ff1c3db7 100644 --- a/Formula/e/exult.rb +++ b/Formula/e/exult.rb @@ -12,13 +12,13 @@ class Exult < Formula end bottle do - sha256 arm64_sequoia: "fc3d163167021d5441dea24083a03c81b201b9d88111bd81d003c6fd10573013" - sha256 arm64_sonoma: "38b60efb5c42fd1e5d4f2399f358a737da0cbbc389f8339d9ab5c482dbf435ee" - sha256 arm64_ventura: "49fae5e5ddd4f403e1b14f828c27d9de5c8843a14e80da07fbac726092d6871e" - sha256 sonoma: "f028e367037f153473ebb5c7745a8e67370b462dda94f58b73fcfd4056d02f79" - sha256 ventura: "ab2a9bc56740b16999d06d7e033badff5d590fff177ef39d89192ccb1f48502d" - sha256 cellar: :any_skip_relocation, arm64_linux: "2d3980038af7e3685759a3b66816117cc35dc2fe58439ebd0d34698d1f6914fd" - sha256 cellar: :any_skip_relocation, x86_64_linux: "0c54f945e4a0822fb82dac2bb910fe8c878ccdb25c111bf6dbb2b040388938b3" + sha256 arm64_sequoia: "1ed78e83f24d86ad6d99ae555cb0c3f5f7082ba6ca58c7b6035866b340d3baf7" + sha256 arm64_sonoma: "3a6f16cd3a42e05e5d15fad08325e060b3fb8af4aaaa587ef4443c1a4fabed76" + sha256 arm64_ventura: "5c59fa4711bac90f846e57cc711ee14f1b95e01c4e75c5d735820247039e760f" + sha256 sonoma: "869732b9d74e31c56d52eaf5928a3322fe5090bc59521733db83f832b1252a46" + sha256 ventura: "6f382526221cdbadcd1763951073bb7a05fb4abc2b15029c46ef7e37409e1feb" + sha256 cellar: :any_skip_relocation, arm64_linux: "0a3dcbb5479149032bd09975ed3da88d8c8406ffdad4c538f96782c0f483b4e5" + sha256 cellar: :any_skip_relocation, x86_64_linux: "0c0d2ab13c126e340f28dcf5d9ae99d26f27c1fa443281cb945cd6d8a4d408a3" end depends_on "autoconf" => :build From 92904fd19bb2dc23b5e64376bc88cf30489afb2a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 20:18:22 +0000 Subject: [PATCH 0883/1364] nerdlog: update 1.7.0 bottle. --- Formula/n/nerdlog.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/n/nerdlog.rb b/Formula/n/nerdlog.rb index d37990e0cae2d..a3a840ff29352 100644 --- a/Formula/n/nerdlog.rb +++ b/Formula/n/nerdlog.rb @@ -7,12 +7,12 @@ class Nerdlog < Formula head "https://github.com/dimonomid/nerdlog.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "ec219169ed96ac12fc190b65bf8daee3a155e560c8294614c513e7dc1f1a58d6" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "10e835b240c0168ce54b9f5a80f1efc13c5db04f6c88a5b6ac8b0b90f8204ee2" - sha256 cellar: :any_skip_relocation, arm64_ventura: "5ea1b53bd7572f06e77db17c8fe095fba4b170d07594fd1e793b554d3447a69a" - sha256 cellar: :any_skip_relocation, sonoma: "78fb88a50c663341fd0d2f5f3ea960e3abc9de83922e373d30efd795aeb4b3bb" - sha256 cellar: :any_skip_relocation, ventura: "da7186e9791489f57b740e10a7ecf5fc6f99536ac77ffc046590b0309541444d" - sha256 cellar: :any_skip_relocation, x86_64_linux: "66a4ada6105c759e7f43ebe5d221c82aab4e2c26257147490c495d989df91326" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "fd80b7316656c42b47eea64444d67a23b8819186d1062c5a291a8c116dc87d6d" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "1e2f2e14bbb04c3db860902a7e5013d0e4af458249892a9a0dcdd7ebd718d3a9" + sha256 cellar: :any_skip_relocation, arm64_ventura: "b12fcc9c5892340359ea53f1e1b3967f20032b2359ff880fe015b06fb0e13205" + sha256 cellar: :any_skip_relocation, sonoma: "354ef158702f5d972d23fe40cc7c605a9b6f95f58acb7721b11187a147ea312a" + sha256 cellar: :any_skip_relocation, ventura: "763e45d4e5d7d878fb53c203382930e2b2b86da8c60c4ca5beddc1a67b98acf8" + sha256 cellar: :any_skip_relocation, x86_64_linux: "41972a9060652b355390ce90d02370aefac6c9bb743c9d61d8800f2a31b5bfae" end depends_on "go" => :build From cc96cdb0c8343a555b6c31dc375d8569d38805f0 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 20:33:13 +0000 Subject: [PATCH 0884/1364] kew: update 3.3.0 bottle. --- Formula/k/kew.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/k/kew.rb b/Formula/k/kew.rb index 6d14705b1498c..77c1d7e1f6485 100644 --- a/Formula/k/kew.rb +++ b/Formula/k/kew.rb @@ -7,13 +7,13 @@ class Kew < Formula head "https://github.com/ravachol/kew.git", branch: "main" bottle do - sha256 cellar: :any, arm64_sequoia: "fb458c730ff3da5c7c68c2ab19fdee940d4677e408cfdfa262f88770530dd4ef" - sha256 cellar: :any, arm64_sonoma: "2e160a6f5312d7194d4ffc9c45730ce27806e926ac3227ed26b0c046ee840a41" - sha256 cellar: :any, arm64_ventura: "9f297a7954d16c78faf96cdeb4874d76bae7406427235622eb6ad9356d58254e" - sha256 cellar: :any, sonoma: "4f1abf27cce2f67541cbc3be72cf786f70895d1e55ab0854f3353312fe4de292" - sha256 cellar: :any, ventura: "84b3695ca0923939efcc527a4515a4531046a510b89827a29aa9878ce997cd28" - sha256 cellar: :any_skip_relocation, arm64_linux: "1e25084ebc9dc136585a054523be686fab400ea0cddc06cd07d6bd2b2eaf0164" - sha256 cellar: :any_skip_relocation, x86_64_linux: "6a413e23a69f0924dab1dff41ce5bedb987031ecd198022a153e57c62092561d" + sha256 cellar: :any, arm64_sequoia: "1c712be978ea3db621047c10fdc39516d88954b53eb6f2a87063e164eb876de2" + sha256 cellar: :any, arm64_sonoma: "a79e91436d8469140d9758150f8dc08c835f54e914e49330259362b7219447cd" + sha256 cellar: :any, arm64_ventura: "c8c49addba389a35fd75c8962fa762304b65ab76903b2972d1957c04579beb99" + sha256 cellar: :any, sonoma: "d88894eb75f99e78fa95d3634ff87a1ba69ad37732ccac33664d7da4c4f3929b" + sha256 cellar: :any, ventura: "e55d85b4233710730f9312b701798b64a1241f3914da01f655e1547100fab3a3" + sha256 cellar: :any_skip_relocation, arm64_linux: "c1127b6e3b95392e76323cceac2a4b876b47c92984594d5b198e447d5f877cfd" + sha256 cellar: :any_skip_relocation, x86_64_linux: "1a4639820ac751eaee647846b14902d9eb9aec3513d9b8a07a758460a2c378fb" end depends_on "pkgconf" => :build From 37d2c0b38479d726c3741732fab4b5af03664c37 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 22:49:44 +0000 Subject: [PATCH 0885/1364] asymptote 3.03 --- Formula/a/asymptote.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Formula/a/asymptote.rb b/Formula/a/asymptote.rb index f49af41749882..0c31b5b6a3962 100644 --- a/Formula/a/asymptote.rb +++ b/Formula/a/asymptote.rb @@ -2,8 +2,8 @@ class Asymptote < Formula desc "Powerful descriptive vector graphics language" homepage "https://asymptote.sourceforge.io" # Keep version in sync with manual below - url "https://downloads.sourceforge.net/project/asymptote/3.02/asymptote-3.02.src.tgz" - sha256 "6796de739dde956c30c689fb0cf3927a71147b4961a37d883933e027133fc70a" + url "https://downloads.sourceforge.net/project/asymptote/3.03/asymptote-3.03.src.tgz" + sha256 "3c8a4e6988b533d3d58650aa9cbd5566f9f786a9ab0e5fd0a0370f38750e4fbd" license "LGPL-3.0-only" livecheck do @@ -42,8 +42,8 @@ class Asymptote < Formula end resource "manual" do - url "https://downloads.sourceforge.net/project/asymptote/3.02/asymptote.pdf" - sha256 "660bb9d9100c90e7d43d615d3245510c8d9fba4a76c84ef5b0dca7d171e58f09" + url "https://downloads.sourceforge.net/project/asymptote/3.03/asymptote.pdf" + sha256 "4ddb5bfee1e00f56e5872130155020cc4372d9bc5a463661547aa08145bbba85" livecheck do formula :parent From c39454d7ec82b4ea7fde4a181531b614dd68764b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 22:53:23 +0000 Subject: [PATCH 0886/1364] chezmoi 2.62.4 --- Formula/c/chezmoi.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/chezmoi.rb b/Formula/c/chezmoi.rb index 92f6cdba0aebd..8d3b87d7aea06 100644 --- a/Formula/c/chezmoi.rb +++ b/Formula/c/chezmoi.rb @@ -1,8 +1,8 @@ class Chezmoi < Formula desc "Manage your dotfiles across multiple diverse machines, securely" homepage "https://chezmoi.io/" - url "https://github.com/twpayne/chezmoi/releases/download/v2.62.3/chezmoi-2.62.3.tar.gz" - sha256 "4d4b0b5348191971fcf82fc4d9aeca1ea2263d06b430f3bdb213bc7e19a4040e" + url "https://github.com/twpayne/chezmoi/releases/download/v2.62.4/chezmoi-2.62.4.tar.gz" + sha256 "bad72affd6ae99a8f4b1b54d939aa5193bd16bf1e76f11e3e84ba64f7fa142fd" license "MIT" head "https://github.com/twpayne/chezmoi.git", branch: "master" From 1b7badd0d60cd205439ab4ad548fab1cb1b7b2e6 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 22:58:39 +0000 Subject: [PATCH 0887/1364] esphome 2025.4.2 --- Formula/e/esphome.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/e/esphome.rb b/Formula/e/esphome.rb index a9ec56cbf59fc..eff5e3a33cc17 100644 --- a/Formula/e/esphome.rb +++ b/Formula/e/esphome.rb @@ -3,8 +3,8 @@ class Esphome < Formula desc "Make creating custom firmwares for ESP32/ESP8266 super easy" homepage "https://github.com/esphome/esphome" - url "https://files.pythonhosted.org/packages/74/3d/f14388458d65187bad14edf370c22b89b6a4a91bb1143cbbd0bfcc7d5199/esphome-2025.4.1.tar.gz" - sha256 "0457fb545f2721320d1753eab959e610780e83b04a5e3aa9f7d1151ac21a2a90" + url "https://files.pythonhosted.org/packages/ed/47/829f28225fa610035e04a6af99c9f89c9d0121a646d46ad4177e034f24d8/esphome-2025.4.2.tar.gz" + sha256 "e92e138a44467810ab047e514db3770d2d3f58d3f11f68baefad3269756c6736" license "MIT" bottle do @@ -54,8 +54,8 @@ class Esphome < Formula end resource "bitarray" do - url "https://files.pythonhosted.org/packages/f1/6e/e3877eebb83e3e9d22b6089be7b8c098d3d09b2195a9570d6d9049e90d5b/bitarray-3.3.1.tar.gz" - sha256 "8c89219a672d0a15ab70f8a6f41bc8355296ec26becef89a127c1a32bb2e6345" + url "https://files.pythonhosted.org/packages/17/7b/148091d4696b38a0b14ce495e64736472cc04b0757cc8b5e7846a1cf78a9/bitarray-3.4.0.tar.gz" + sha256 "33eee090eade2c8303bfc01a9e104fea306d330035b18b5c50a04cb0cb76f08d" end resource "bitstring" do @@ -74,8 +74,8 @@ class Esphome < Formula end resource "charset-normalizer" do - url "https://files.pythonhosted.org/packages/16/b0/572805e227f01586461c80e0fd25d65a2115599cc9dad142fee4b747c357/charset_normalizer-3.4.1.tar.gz" - sha256 "44251f18cd68a75b56585dd00dae26183e102cd5e0f9f1466e6df5da2ed64ea3" + url "https://files.pythonhosted.org/packages/e4/33/89c2ced2b67d1c2a61c19c6751aa8902d46ce3dacb23600a283619f5a12d/charset_normalizer-3.4.2.tar.gz" + sha256 "5baececa9ecba31eff645232d59845c07aa030f0c81ee70184a90d35099a0e63" end resource "click" do From 0d444d0739810c0635b4fd64915fa05ca6cd7e7d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 23:01:00 +0000 Subject: [PATCH 0888/1364] git-cola 4.13.0 --- Formula/g/git-cola.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Formula/g/git-cola.rb b/Formula/g/git-cola.rb index adf0452fc370c..c5f47449167c0 100644 --- a/Formula/g/git-cola.rb +++ b/Formula/g/git-cola.rb @@ -3,8 +3,8 @@ class GitCola < Formula desc "Highly caffeinated git GUI" homepage "https://git-cola.github.io/" - url "https://files.pythonhosted.org/packages/8e/fc/e8f90350ac7a07fac83877963793dd372611e0c6b459ce71227847aa6594/git_cola-4.12.0.tar.gz" - sha256 "e87ae8fedbd7b58d0929f48edb80e09bd14d554624b2d6c27caf001e08c5c0f4" + url "https://files.pythonhosted.org/packages/4f/62/2a866a1570e677b55080d41056bad3234b17919c467d058a6f37489e3501/git_cola-4.13.0.tar.gz" + sha256 "b86d864ef8e12d51e4381e848ee3835002a7559d2b8435ab70feb9be8f3b2cff" license "GPL-2.0-or-later" head "https://github.com/git-cola/git-cola.git", branch: "main" @@ -20,8 +20,8 @@ class GitCola < Formula depends_on "python@3.13" resource "packaging" do - url "https://files.pythonhosted.org/packages/d0/63/68dbb6eb2de9cb10ee4c9c14a0148804425e13c4fb20d61cce69f53106da/packaging-24.2.tar.gz" - sha256 "c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f" + url "https://files.pythonhosted.org/packages/a1/d4/1fc4078c65507b51b96ca8f8c3ba19e6a61c8253c72794544580a7b6c24d/packaging-25.0.tar.gz" + sha256 "d443872c98d677bf60f6a1f2f8c1cb748e8fe762d2bf9d3148b5599295b0fc4f" end resource "polib" do From 0bb18c259f366c7f033869d93432b94c87c605c0 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Sun, 11 May 2025 23:02:53 +0000 Subject: [PATCH 0889/1364] gumbo-parser 0.13.1 --- Formula/g/gumbo-parser.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/g/gumbo-parser.rb b/Formula/g/gumbo-parser.rb index 5d7ad6fa59ba7..07b140596bf9c 100644 --- a/Formula/g/gumbo-parser.rb +++ b/Formula/g/gumbo-parser.rb @@ -1,8 +1,8 @@ class GumboParser < Formula desc "C99 library for parsing HTML5" homepage "https://codeberg.org/gumbo-parser/gumbo-parser" - url "https://codeberg.org/gumbo-parser/gumbo-parser/archive/0.13.0.tar.gz" - sha256 "7ad2ee259f35e8951233e4c9ad80968fb880f20d8202cb9c48f0b65f67d38e61" + url "https://codeberg.org/gumbo-parser/gumbo-parser/archive/0.13.1.tar.gz" + sha256 "1a054d1e53d556641a6666537247411a77b0c18ef6ad5df23e30d2131676ef81" license "Apache-2.0" bottle do From b6da858de0854ad820d8456bf7a3f43f1e1b8bb7 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 01:18:28 +0000 Subject: [PATCH 0890/1364] asymptote: update 3.03 bottle. --- Formula/a/asymptote.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/a/asymptote.rb b/Formula/a/asymptote.rb index 0c31b5b6a3962..1fc8b816459c5 100644 --- a/Formula/a/asymptote.rb +++ b/Formula/a/asymptote.rb @@ -12,13 +12,13 @@ class Asymptote < Formula end bottle do - sha256 arm64_sequoia: "67f15e6b7d17e0385699acf4eebc33a38f1f67e79b6cd95efe44577520969d1f" - sha256 arm64_sonoma: "c8de9421dbd32ea9db35db3e59128fa295cf798927af145005c514685aadc3de" - sha256 arm64_ventura: "8980e8eb202cef2dc3a700ce3eb2a94e9d91e3c622bee708edca72a8ccab5055" - sha256 sonoma: "70e4febd6d1122b2686e3d4ac514427fc4c3f1be969222e7acbb60bbcb343968" - sha256 ventura: "6c42ca247cc3863cf6abe840b7fdd228347b16cfb3288b6903d4fe0d73c0774d" - sha256 arm64_linux: "8acb662cb0391fbcfdca9c1225332f96a85debba2076427b6d4a5df4b5d37092" - sha256 x86_64_linux: "d16f7a686b15adc49bf5553d98e7a33aaf768a4b6d8025674e17cb5046c75ba9" + sha256 arm64_sequoia: "0f44efa2b77ba2a37e39201dc4e7c5e66a72cad31ce1a084a1f965f216e5631b" + sha256 arm64_sonoma: "b86dbae74deda3128abd84da31fc4343407e778379e569d742bde42cb5cbd854" + sha256 arm64_ventura: "a779939f5a010187830e000e9068ea2c18fed522da98f6750766d01bdd347204" + sha256 sonoma: "5822b3bcb86256d00dd3d2b65e6d75df07bcc7e5914df9c287bf8cc259d4de68" + sha256 ventura: "7eeba78fa5c23d5485b4d8efa65e79e4b603f5ab415043a88588eaa87c1ce0ba" + sha256 arm64_linux: "1f4f6f30d1cd456dc8f0f7d0d9c03662cebf33aea448d162881b806d6881eba6" + sha256 x86_64_linux: "4004e2418e853c20a3375db06e1562a0c283a5e6e1f6590a4fcd2258d8cf180d" end depends_on "glm" => :build From b8b399c69953e5ff6dfcfeb62181f482e9b74fa7 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 01:18:32 +0000 Subject: [PATCH 0891/1364] chezmoi: update 2.62.4 bottle. --- Formula/c/chezmoi.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/chezmoi.rb b/Formula/c/chezmoi.rb index 8d3b87d7aea06..631834e888f98 100644 --- a/Formula/c/chezmoi.rb +++ b/Formula/c/chezmoi.rb @@ -14,13 +14,13 @@ class Chezmoi < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "3b1bb0f75c688e743829b914e1b188c68f963bece78a64a0aaf7c0def6b2fd15" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "e7705f741fd2981486afb259473efc960beb2bb6c7b922b34874caa731b76852" - sha256 cellar: :any_skip_relocation, arm64_ventura: "0b865276f94f0f6a13547f719b46301b54b802893890ed623239c2eb96324193" - sha256 cellar: :any_skip_relocation, sonoma: "3cdc52b1250371424fdd5f6ee8f047a57ed1ed89364c0a8ff7ff2495e1d3e484" - sha256 cellar: :any_skip_relocation, ventura: "b74289ef7c9b3ebc342f24ed7be7e044a0098eebab8f0d3b205b99769eda6804" - sha256 cellar: :any_skip_relocation, arm64_linux: "212ff9aa643c01f35d71e4bbd34aea44e50adfafb0149a7c7c47dad0a103644f" - sha256 cellar: :any_skip_relocation, x86_64_linux: "fe72758d274a82991ef5a0b872eb069afcaf2d90fa546e2b0fe9a411022dfffc" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "973b48f4e2275ef5b2a7df01c7b56daeaa8a1fe1d9f9ddf5a49ed3e929926c7f" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "d5a43612434f2b0025e917c96590e75db3ab5437f19466b421fb005af971317e" + sha256 cellar: :any_skip_relocation, arm64_ventura: "f1672cb681908904884a102504839d7229e6d66a703eee7de3269b1dc728f787" + sha256 cellar: :any_skip_relocation, sonoma: "4748001c098015e9ee4182707521a002e6df5f719a22f5bbe1d4915528bc7e3b" + sha256 cellar: :any_skip_relocation, ventura: "8b2e05ff0f046be315e149a1ca1573d9d5ea0ff943ba0cce27990e77c15c8162" + sha256 cellar: :any_skip_relocation, arm64_linux: "d4df22e5d9b93ceec50b9af01e08206b8ed32157f4cc54707a03574bbaabd792" + sha256 cellar: :any_skip_relocation, x86_64_linux: "991abb5170839754b65cb099f41bbf48ede386bf086af2500e220a85dae4bb7c" end depends_on "go" => :build From 9f0aa3ee6778613de33f5179372f0d68ddd53813 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 01:18:34 +0000 Subject: [PATCH 0892/1364] esphome: update 2025.4.2 bottle. --- Formula/e/esphome.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/e/esphome.rb b/Formula/e/esphome.rb index eff5e3a33cc17..d3f53ae18635c 100644 --- a/Formula/e/esphome.rb +++ b/Formula/e/esphome.rb @@ -8,13 +8,13 @@ class Esphome < Formula license "MIT" bottle do - sha256 cellar: :any, arm64_sequoia: "cf3e842ab5f2213e0b2cd1f9fdb29b031c9fb6bd296994ac004a72766dbe9cf0" - sha256 cellar: :any, arm64_sonoma: "55339cb3c9c39d026971c670b74e126cf85109c3e4e4c43c51e0559773f44ee1" - sha256 cellar: :any, arm64_ventura: "ada95b229e386b06fd17bd5ed2b49c059f0d624bb5dfc190fa8793df4a84ade5" - sha256 cellar: :any, sonoma: "ab1b4fa4d767e8dfb525d8dc55953813f04c710f7b3d0ee7761e4567385670ce" - sha256 cellar: :any, ventura: "c52172c7de56527adba068ebbdab41dc0bc7bef925dbaf4b11a4a19b54f64e87" - sha256 cellar: :any_skip_relocation, arm64_linux: "0d2745e07b75bc7fae604147207368467ed474b28f55607fb80a8d91ad82a16b" - sha256 cellar: :any_skip_relocation, x86_64_linux: "c8a4baa679f27a7675a17a6d1fb740552b5fcba637195c22d96ef7cafdb32479" + sha256 cellar: :any, arm64_sequoia: "da296e0b71e7c01d20df394126f081e07efd39b2e06dc93b880039d1f2928ab7" + sha256 cellar: :any, arm64_sonoma: "7c730725a1b782d55cf08d8270ead026fc1729a3d16a93281e54a83faeff04c6" + sha256 cellar: :any, arm64_ventura: "2d5d8eac583a6452205707103bca9a97ff621898a5494fe1d81457da750aadec" + sha256 cellar: :any, sonoma: "f3e8473108fcc4035f1b3c93a63c4cce6b49d2761eac47ff805bb8c442e98089" + sha256 cellar: :any, ventura: "328fcdc46b35831acd8ce2ebafc04ed4621474962670aac696e89c03cc3ce076" + sha256 cellar: :any_skip_relocation, arm64_linux: "4ec5c69392c31e1d6175c5570d518163a1fa51ef641ffd3ffc48e963f53dea34" + sha256 cellar: :any_skip_relocation, x86_64_linux: "2396a87369b31f908d286519cf68534313cb994300a0b635f68a0cc4e8913c2e" end depends_on "certifi" From dad88324153ea04e4a5b16d0a2488a3394dfc5bd Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 01:18:36 +0000 Subject: [PATCH 0893/1364] git-cola: update 4.13.0 bottle. --- Formula/g/git-cola.rb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Formula/g/git-cola.rb b/Formula/g/git-cola.rb index c5f47449167c0..341e900027af4 100644 --- a/Formula/g/git-cola.rb +++ b/Formula/g/git-cola.rb @@ -9,11 +9,11 @@ class GitCola < Formula head "https://github.com/git-cola/git-cola.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sonoma: "4190d6a926a2b45de30f7c45e185de3923289c1e9df4122aa132e20eddd58a1e" - sha256 cellar: :any_skip_relocation, arm64_ventura: "4190d6a926a2b45de30f7c45e185de3923289c1e9df4122aa132e20eddd58a1e" - sha256 cellar: :any_skip_relocation, sonoma: "625a74350e8052f7ba9c65ebde06318bbbe3fb906ae23e356cf8ac60b4301e9d" - sha256 cellar: :any_skip_relocation, ventura: "625a74350e8052f7ba9c65ebde06318bbbe3fb906ae23e356cf8ac60b4301e9d" - sha256 cellar: :any_skip_relocation, x86_64_linux: "4190d6a926a2b45de30f7c45e185de3923289c1e9df4122aa132e20eddd58a1e" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "49f8f56b4d1035b4f68ca5f1513bd1b6b472439909656cb42ac4953c95bdda4b" + sha256 cellar: :any_skip_relocation, arm64_ventura: "49f8f56b4d1035b4f68ca5f1513bd1b6b472439909656cb42ac4953c95bdda4b" + sha256 cellar: :any_skip_relocation, sonoma: "94aa95d3358e77d93b041eacb290349adbe7e06ed9415da0d770cd7f41cf8391" + sha256 cellar: :any_skip_relocation, ventura: "94aa95d3358e77d93b041eacb290349adbe7e06ed9415da0d770cd7f41cf8391" + sha256 cellar: :any_skip_relocation, x86_64_linux: "49f8f56b4d1035b4f68ca5f1513bd1b6b472439909656cb42ac4953c95bdda4b" end depends_on "pyqt" From 158e3e25ab0d2074f30fc2a39f962bc4821922b6 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 01:18:50 +0000 Subject: [PATCH 0894/1364] gumbo-parser: update 0.13.1 bottle. --- Formula/g/gumbo-parser.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/g/gumbo-parser.rb b/Formula/g/gumbo-parser.rb index 07b140596bf9c..5d91068ec7216 100644 --- a/Formula/g/gumbo-parser.rb +++ b/Formula/g/gumbo-parser.rb @@ -6,13 +6,13 @@ class GumboParser < Formula license "Apache-2.0" bottle do - sha256 cellar: :any, arm64_sequoia: "d8e1aab75de31c09b003bfabdf9e1dcd5f8416b58cecac9d7c1cd24cc8de9717" - sha256 cellar: :any, arm64_sonoma: "06d89a5fd5021a5217254a3be2b89ab7c67a01814043df4fe073578df0980bc3" - sha256 cellar: :any, arm64_ventura: "eb6f09225d057ba68927c42c3c9e0f6f52de37a41f895fd22923fa024c74d526" - sha256 cellar: :any, sonoma: "145e843822f4a67cece0704eedd7f5e6c0f7baffa0b7a99d66e70a77eb1a3b7e" - sha256 cellar: :any, ventura: "69dcb8188354001bfa3303a16e450304082900376acef548f3c1aaa647e9df29" - sha256 cellar: :any_skip_relocation, arm64_linux: "bc715b25ea4c526a5469bbb70e2125e10b1405dd8da01d58cefd94636f510eb8" - sha256 cellar: :any_skip_relocation, x86_64_linux: "027fd9b2bf818a7966cb874991ba3ef8279e63e7f45a3ddfe04a5898848c09ca" + sha256 cellar: :any, arm64_sequoia: "4fc6871a20b27a9e5462740793f01648b5a06d97f53e1c2e3a1be9b0b39eb700" + sha256 cellar: :any, arm64_sonoma: "1e1b191a7db8660d1625533cdd4f56f1627505c8e41d6d40eee4ad62d82d62ce" + sha256 cellar: :any, arm64_ventura: "ad2bba838cfdc4dabbdcb27921cacade5606f6154d0f4dfc3afbc6e50c1d8e37" + sha256 cellar: :any, sonoma: "fe7318f9114cdd67e66d6df0fdcd5ffd3d064bfff7d1adc87c0b2cf09c28fbd5" + sha256 cellar: :any, ventura: "e2cf0436b1de9343e4cf39d4f6c10bbbbef875a7ab45e5c6eee482f5d94a7fe0" + sha256 cellar: :any_skip_relocation, arm64_linux: "1fa8e5deaf3b5d23b3cd03388c53cab34b0a3056936bc3faee12a59c65fcc8cb" + sha256 cellar: :any_skip_relocation, x86_64_linux: "b6bd03113d6c4cfb31850dd01825240596918b7463f93e000f606a1f6a65202c" end depends_on "autoconf" => :build From b3fee2ec1914d12d25e00a15b6c0084aabc37ac3 Mon Sep 17 00:00:00 2001 From: Bevan Kay Date: Mon, 12 May 2025 12:19:11 +1000 Subject: [PATCH 0895/1364] hyperscan: disable --- Formula/h/hyperscan.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Formula/h/hyperscan.rb b/Formula/h/hyperscan.rb index 36b870fbf19de..9430958f95eae 100644 --- a/Formula/h/hyperscan.rb +++ b/Formula/h/hyperscan.rb @@ -15,7 +15,8 @@ class Hyperscan < Formula # This software is no longer open-source after this version, # and the upstream repository is not receiving any updates. - deprecate! date: "2024-05-10", because: :unmaintained, replacement_formula: "vectorscan" + deprecate! date: "2024-05-10", because: :unmaintained + disable! date: "2025-05-11", because: :unmaintained, replacement_formula: "vectorscan" depends_on "boost" => :build depends_on "cmake" => :build From 078140bcc7a6d3f248449eda668f88b622875776 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 02:24:37 +0000 Subject: [PATCH 0896/1364] aliyun-cli 3.0.276 --- Formula/a/aliyun-cli.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/a/aliyun-cli.rb b/Formula/a/aliyun-cli.rb index f3057015071f2..cbcb8bf4700f6 100644 --- a/Formula/a/aliyun-cli.rb +++ b/Formula/a/aliyun-cli.rb @@ -2,8 +2,8 @@ class AliyunCli < Formula desc "Universal Command-Line Interface for Alibaba Cloud" homepage "https://github.com/aliyun/aliyun-cli" url "https://github.com/aliyun/aliyun-cli.git", - tag: "v3.0.275", - revision: "0f9028dda248e71fb889ab9550a0a3a34a69ad90" + tag: "v3.0.276", + revision: "60736994990f68ff64a61a48c0734a10ffabe837" license "Apache-2.0" head "https://github.com/aliyun/aliyun-cli.git", branch: "master" From 9a2970e7ff0f0f18d1fe6676023ee4917519db55 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 02:37:23 +0000 Subject: [PATCH 0897/1364] go-parquet-tools 1.29.2 --- Formula/g/go-parquet-tools.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/g/go-parquet-tools.rb b/Formula/g/go-parquet-tools.rb index f8f82c02de1bb..53d018d10d44a 100644 --- a/Formula/g/go-parquet-tools.rb +++ b/Formula/g/go-parquet-tools.rb @@ -1,8 +1,8 @@ class GoParquetTools < Formula desc "Utility to deal with Parquet data" homepage "https://github.com/hangxie/parquet-tools" - url "https://github.com/hangxie/parquet-tools/archive/refs/tags/v1.29.1.tar.gz" - sha256 "702d3443e292e9d5ecff13c2a995457389c2f5dbb1f3e835f99ff9ea9d3876cd" + url "https://github.com/hangxie/parquet-tools/archive/refs/tags/v1.29.2.tar.gz" + sha256 "592362d864c7e7912c61e7ae788306422910733818765ba5eaf7422cfafbae02" license "BSD-3-Clause" head "https://github.com/hangxie/parquet-tools.git", branch: "main" From dd3aeddee49e1c555923a2b4d09d74302261a41e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 02:45:24 +0000 Subject: [PATCH 0898/1364] llama.cpp 5350 --- Formula/l/llama.cpp.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/l/llama.cpp.rb b/Formula/l/llama.cpp.rb index 6623a8d821c7b..9e17fd1cf7327 100644 --- a/Formula/l/llama.cpp.rb +++ b/Formula/l/llama.cpp.rb @@ -3,8 +3,8 @@ class LlamaCpp < Formula homepage "https://github.com/ggerganov/llama.cpp" # CMake uses Git to generate version information. url "https://github.com/ggerganov/llama.cpp.git", - tag: "b5340", - revision: "15e6125a397f6086c1dfdf7584acdb7c730313dc" + tag: "b5350", + revision: "c104023994d36a8e791fc6a43789b84fd552cefc" license "MIT" head "https://github.com/ggerganov/llama.cpp.git", branch: "master" From 2004b9a638b039fb28c33eec4836028c91dccf65 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 02:46:37 +0000 Subject: [PATCH 0899/1364] melange 0.23.16 --- Formula/m/melange.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/m/melange.rb b/Formula/m/melange.rb index e6615eae4a462..8db3b04646c30 100644 --- a/Formula/m/melange.rb +++ b/Formula/m/melange.rb @@ -1,8 +1,8 @@ class Melange < Formula desc "Build APKs from source code" homepage "https://github.com/chainguard-dev/melange" - url "https://github.com/chainguard-dev/melange/archive/refs/tags/v0.23.15.tar.gz" - sha256 "985f24585ebd41734b8fe80e7a22aaee58bd9db0df893b4878b6a54499bf4ac2" + url "https://github.com/chainguard-dev/melange/archive/refs/tags/v0.23.16.tar.gz" + sha256 "52e26f52f243543c5887d37839088378ffd0566099b6d68f347dd226760b0638" license "Apache-2.0" head "https://github.com/chainguard-dev/melange.git", branch: "main" From db2ce6cbf53b076e63487c40b65f5ef73f31667a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 02:47:00 +0000 Subject: [PATCH 0900/1364] mihomo 1.19.7 --- Formula/m/mihomo.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/m/mihomo.rb b/Formula/m/mihomo.rb index 3ce9ace2b4b1a..0ec123dce6dca 100644 --- a/Formula/m/mihomo.rb +++ b/Formula/m/mihomo.rb @@ -1,8 +1,8 @@ class Mihomo < Formula desc "Another rule-based tunnel in Go, formerly known as ClashMeta" homepage "https://wiki.metacubex.one" - url "https://github.com/MetaCubeX/mihomo/archive/refs/tags/v1.19.6.tar.gz" - sha256 "dec17f340decaa7971117ba908e39e4a9e311e8012dad9200bd517bdd405f1cf" + url "https://github.com/MetaCubeX/mihomo/archive/refs/tags/v1.19.7.tar.gz" + sha256 "b857289776f6ecfedaaca2cdfd9ed39746fda697bdcbbbb0b1bb172f1fc9462d" license "GPL-3.0-or-later" head "https://github.com/MetaCubeX/mihomo.git", branch: "main" From 08125daa76d46d99640b8c1807ee07c55ff9b44c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 02:54:41 +0000 Subject: [PATCH 0901/1364] quicktype 23.1.4 --- Formula/q/quicktype.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/q/quicktype.rb b/Formula/q/quicktype.rb index 4fc6696c5687c..939635273c9a4 100644 --- a/Formula/q/quicktype.rb +++ b/Formula/q/quicktype.rb @@ -1,8 +1,8 @@ class Quicktype < Formula desc "Generate types and converters from JSON, Schema, and GraphQL" homepage "https://github.com/glideapps/quicktype" - url "https://registry.npmjs.org/quicktype/-/quicktype-23.1.3.tgz" - sha256 "ba510542ac00f32d83cc1e574d959f057cec7a65fe665e44492fcee63f78a682" + url "https://registry.npmjs.org/quicktype/-/quicktype-23.1.4.tgz" + sha256 "be7eb6a4905f8d0a0e5f5aad3a034fd4a045cfcf8d3df7e286714a7961888a78" license "Apache-2.0" head "https://github.com/glideapps/quicktype.git", branch: "master" From a12d8023cb32a9eb0f81979516003b3a470caa04 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 03:25:05 +0000 Subject: [PATCH 0902/1364] llama.cpp: update 5350 bottle. --- Formula/l/llama.cpp.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/l/llama.cpp.rb b/Formula/l/llama.cpp.rb index 9e17fd1cf7327..2a428f695f0fa 100644 --- a/Formula/l/llama.cpp.rb +++ b/Formula/l/llama.cpp.rb @@ -19,13 +19,13 @@ class LlamaCpp < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "357559f45a8fee286719365cff5c7db67e7816584ef0e4e562a03fdfe9dba3cf" - sha256 cellar: :any, arm64_sonoma: "646f23bb911f091f0fdd03256fdd76ce4a740cc6d1969aa5b18ba8f60ac0948d" - sha256 cellar: :any, arm64_ventura: "e74f06ad796c15728f008e63bf532159e44408d581a2299a277381d5a11763f1" - sha256 cellar: :any, sonoma: "97ff8f5ca8040183ad25de6f2f3617bbe82037e0dbc2730a3d6efe14b84ad1e1" - sha256 cellar: :any, ventura: "10d7e01c1284ade2351e101a0ee2949ca3e9b5084969151a2faeedf5211b2a87" - sha256 cellar: :any_skip_relocation, arm64_linux: "a99df8bf7051146c282c1209da3f1356da4669780859a15179b0b6f40e4e7632" - sha256 cellar: :any_skip_relocation, x86_64_linux: "80cd7db614f2b0f3a58a24a938651977b852949552872e747ed87cb3d8572e3d" + sha256 cellar: :any, arm64_sequoia: "3a7105f6407b4599d26fdc693095d3b56d860107bc1a419de4af1cc053b5b10a" + sha256 cellar: :any, arm64_sonoma: "61ba5c3db1b864459bd58220e915fe160f226475ce9494ac70759ef527f6f203" + sha256 cellar: :any, arm64_ventura: "681cd640cc3beb7ebb7b8acdd126dbf621f33d386c3859a4e7f8f5be7b9bd85b" + sha256 cellar: :any, sonoma: "d7c042cdb366d45c0f4f6b2e48fd152f3a89739dcfad1b51dffbbd57130dcde5" + sha256 cellar: :any, ventura: "cd5a46cff6fe1ec382887cc030b5b7fd323db976d7d93d01fcdabceaf89cf3d8" + sha256 cellar: :any_skip_relocation, arm64_linux: "11ec431ddc8e395f4617ed9ccae025aad21bc8e7c33544c77c9a9539ba36aa0f" + sha256 cellar: :any_skip_relocation, x86_64_linux: "ed747e51bb73459a6392e4635134828d6642e2bb63508f21ace0d3f5544cadee" end depends_on "cmake" => :build From 3eb2c454cf2d9774195444e7d9745d9682c161da Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 03:25:24 +0000 Subject: [PATCH 0903/1364] aliyun-cli: update 3.0.276 bottle. --- Formula/a/aliyun-cli.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/a/aliyun-cli.rb b/Formula/a/aliyun-cli.rb index cbcb8bf4700f6..d5dfd8f1d657d 100644 --- a/Formula/a/aliyun-cli.rb +++ b/Formula/a/aliyun-cli.rb @@ -8,12 +8,12 @@ class AliyunCli < Formula head "https://github.com/aliyun/aliyun-cli.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "fd55d30c12683674bf7ce1bc2e8e3777ce3fc5f8e704aacd431bea141096f3ba" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "fd55d30c12683674bf7ce1bc2e8e3777ce3fc5f8e704aacd431bea141096f3ba" - sha256 cellar: :any_skip_relocation, arm64_ventura: "fd55d30c12683674bf7ce1bc2e8e3777ce3fc5f8e704aacd431bea141096f3ba" - sha256 cellar: :any_skip_relocation, sonoma: "88806f64c7ef80d2dd69ade72e90e832fc25f22893cae77ca380bbd9a6bfd314" - sha256 cellar: :any_skip_relocation, ventura: "88806f64c7ef80d2dd69ade72e90e832fc25f22893cae77ca380bbd9a6bfd314" - sha256 cellar: :any_skip_relocation, x86_64_linux: "96bc56c7bcb68166a620464847edd14c526c67a89eee40315c096b6aa8f2fb68" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "c39589b18263aeaf8f7591226020ee76a7e47368d732312fed923f59f0465c02" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "c39589b18263aeaf8f7591226020ee76a7e47368d732312fed923f59f0465c02" + sha256 cellar: :any_skip_relocation, arm64_ventura: "c39589b18263aeaf8f7591226020ee76a7e47368d732312fed923f59f0465c02" + sha256 cellar: :any_skip_relocation, sonoma: "59ea5da5544e14889e1428dd4e5cea7b2f7bce8f6eb3cbef528e5f84e943cdb1" + sha256 cellar: :any_skip_relocation, ventura: "59ea5da5544e14889e1428dd4e5cea7b2f7bce8f6eb3cbef528e5f84e943cdb1" + sha256 cellar: :any_skip_relocation, x86_64_linux: "0b2bce489478f781b4b7d1c3ffb53a65735ce2c8eb1797c63316ed9dc33034fd" end depends_on "go" => :build From 9d45a93c7504e0ffa275ea934ad71f8e1e41b47a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 04:56:43 +0000 Subject: [PATCH 0904/1364] enzyme 0.0.177 --- Formula/e/enzyme.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/e/enzyme.rb b/Formula/e/enzyme.rb index ea0c8c4311fcc..6401275874ead 100644 --- a/Formula/e/enzyme.rb +++ b/Formula/e/enzyme.rb @@ -1,8 +1,8 @@ class Enzyme < Formula desc "High-performance automatic differentiation of LLVM" homepage "https://enzyme.mit.edu" - url "https://github.com/EnzymeAD/Enzyme/archive/refs/tags/v0.0.176.tar.gz" - sha256 "0ee69239d8383cccfebc753919597c6d203d3e67ceed1cf82bab42d7bda8c21d" + url "https://github.com/EnzymeAD/Enzyme/archive/refs/tags/v0.0.177.tar.gz" + sha256 "dee2b0ceeaa57f85cb3d2192a693e91790623235497194726d5b0e99d003936e" license "Apache-2.0" => { with: "LLVM-exception" } head "https://github.com/EnzymeAD/Enzyme.git", branch: "main" From 51d960846984e5d0ca041d01544eb4130a06b029 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 05:03:58 +0000 Subject: [PATCH 0905/1364] libsvm 3.36 --- Formula/lib/libsvm.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/lib/libsvm.rb b/Formula/lib/libsvm.rb index 5093aa9b5785d..11ac43f09c4a1 100644 --- a/Formula/lib/libsvm.rb +++ b/Formula/lib/libsvm.rb @@ -1,8 +1,8 @@ class Libsvm < Formula desc "Library for support vector machines" homepage "https://www.csie.ntu.edu.tw/~cjlin/libsvm/" - url "https://www.csie.ntu.edu.tw/~cjlin/libsvm/libsvm-3.35.tar.gz" - sha256 "ea5633fc84b1c2fa58aa4c44b62e437573020297a1dfbe73bf1531ec817a8478" + url "https://www.csie.ntu.edu.tw/~cjlin/libsvm/libsvm-3.36.tar.gz" + sha256 "bc92901fbb928c44bb6d0c38189624c7443bcdbf1dd8350b4914e58e57b93c11" license "BSD-3-Clause" head "https://github.com/cjlin1/libsvm.git", branch: "master" From 95329c7f4b910bbe13f2b18b7b0713a54b076762 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 05:10:35 +0000 Subject: [PATCH 0906/1364] mihomo: update 1.19.7 bottle. --- Formula/m/mihomo.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/m/mihomo.rb b/Formula/m/mihomo.rb index 0ec123dce6dca..d94378de09420 100644 --- a/Formula/m/mihomo.rb +++ b/Formula/m/mihomo.rb @@ -7,13 +7,13 @@ class Mihomo < Formula head "https://github.com/MetaCubeX/mihomo.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "3d80d373d9cd9fe1d302a865702de94b2bc8b248f9c847a127e7d0bda66594a2" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "8f4bf472eaa651f9e6811e8e31cf4b2e0d5dcfa8af7905c425da5e6fe02043ae" - sha256 cellar: :any_skip_relocation, arm64_ventura: "cf35e253f6a9eb8c9c963131dd4d2aefd5c771f61be799073e43eb47be476a22" - sha256 cellar: :any_skip_relocation, sonoma: "079866d1d1ab1b705cf1b00196165fbb514d74b2a2e965b4404a4e2383612bd6" - sha256 cellar: :any_skip_relocation, ventura: "47b4543764fbaad2699fd5e9b75ed8b3b5a934a49428f37345da72d97e37510d" - sha256 cellar: :any_skip_relocation, arm64_linux: "d8e0d28916ab714cd5bac83732035f0d66fe97376cdf9aa16b40a743483e871f" - sha256 cellar: :any_skip_relocation, x86_64_linux: "3752ace0dc9f84a660029046d503a4ae9a2fbe1d3516bd3cb26cfae62fde9e5b" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "487576b7e27d005c4cee7384ac0830a575fb3dcf7166d53d16906c0dc2e44d98" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "0f702ad61337d91be9fc642ec846204ad38c28690ac0f64e01316f8f11284b79" + sha256 cellar: :any_skip_relocation, arm64_ventura: "78a672edd9e01f7a674ace6fc640f055b26e69b8f665c9c7faf7e1ef86662ddd" + sha256 cellar: :any_skip_relocation, sonoma: "ec2f4d95c9f7c0b67dc6ef3b513416b54732048344243f93317ea4dbd610e713" + sha256 cellar: :any_skip_relocation, ventura: "560392420fe5861818ef20959230fb670c79d47459dfb586185452648c44a455" + sha256 cellar: :any_skip_relocation, arm64_linux: "9a99064668fc1d1d5168e3b039b6a6638b5737b77b930811ea89ce9456f0c934" + sha256 cellar: :any_skip_relocation, x86_64_linux: "347cf3b11d7c3b9744c1b333dc9e917d9ef2b468c85ceb5b96b8b86969dae900" end depends_on "go" => :build From c9084e9f3a0bbf2867183eb4827e25a8b1e118b2 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 05:10:52 +0000 Subject: [PATCH 0907/1364] melange: update 0.23.16 bottle. --- Formula/m/melange.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/m/melange.rb b/Formula/m/melange.rb index 8db3b04646c30..255fc51d8abaa 100644 --- a/Formula/m/melange.rb +++ b/Formula/m/melange.rb @@ -12,12 +12,12 @@ class Melange < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "d3f51c4acf688c7c4c27c23696bb186bb7c01789ce8c2e227a22cc16d061427a" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "603154b31a9382ea5c6556e349b57e70a580d08a822ddfc18cde0285f07c2a73" - sha256 cellar: :any_skip_relocation, arm64_ventura: "87347e9b26eab8db46c06805f8c8d3fb205f8531d742e467dd7c1a1b09f8115f" - sha256 cellar: :any_skip_relocation, sonoma: "c5fd385d08f23c4374387bf372caac6ffd097a2de364cf7d950e67b39e0aa1bc" - sha256 cellar: :any_skip_relocation, ventura: "0c8605744c670048172ff0ea8f5d777242bcbb2109c149f361bf969b9ef75027" - sha256 cellar: :any_skip_relocation, x86_64_linux: "b958632a5a30561498c40fc2001cb5f4451c4b5e52816c43bd4b9d1580f9dca1" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "0b6e28487e980a22b510c3219d842749f5b1c625e84d22a7849c9b97ed3aa3ac" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "78921dc88be16c02b0931a61e97190c353f4a0078fc9c331c89c3e531e620be0" + sha256 cellar: :any_skip_relocation, arm64_ventura: "affe8ee0dec62d75b1e462ed9da9aedaaca383438fc856f647458acd437804a7" + sha256 cellar: :any_skip_relocation, sonoma: "9bba4accdd3c0c06e671dfd539a5a6ca25328bd3221bd0cb770a97895646376f" + sha256 cellar: :any_skip_relocation, ventura: "3514c517e6fd892322671382a910a73295790cbcdba2fb25ea5a399d07e1ddf2" + sha256 cellar: :any_skip_relocation, x86_64_linux: "cd8c074f7aec678d65792bda0c9b3a6405c2db29da3bd28a014a94f6ba355cd0" end depends_on "go" => :build From 5cf26354c371bdc1e641f664c98f84bf931880ca Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 05:12:29 +0000 Subject: [PATCH 0908/1364] quicktype: update 23.1.4 bottle. --- Formula/q/quicktype.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/q/quicktype.rb b/Formula/q/quicktype.rb index 939635273c9a4..016f14984c8df 100644 --- a/Formula/q/quicktype.rb +++ b/Formula/q/quicktype.rb @@ -7,13 +7,13 @@ class Quicktype < Formula head "https://github.com/glideapps/quicktype.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "430e8e3f8afdb7bd0b8e85b5e7eb431810ff651c44fc5d9f23eb4260fbfdb741" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "430e8e3f8afdb7bd0b8e85b5e7eb431810ff651c44fc5d9f23eb4260fbfdb741" - sha256 cellar: :any_skip_relocation, arm64_ventura: "430e8e3f8afdb7bd0b8e85b5e7eb431810ff651c44fc5d9f23eb4260fbfdb741" - sha256 cellar: :any_skip_relocation, sonoma: "2167e0279e6f8d8c0058b6cfa5d243f2d79757d8d5517c717ed5e86b55a893d5" - sha256 cellar: :any_skip_relocation, ventura: "2167e0279e6f8d8c0058b6cfa5d243f2d79757d8d5517c717ed5e86b55a893d5" - sha256 cellar: :any_skip_relocation, arm64_linux: "430e8e3f8afdb7bd0b8e85b5e7eb431810ff651c44fc5d9f23eb4260fbfdb741" - sha256 cellar: :any_skip_relocation, x86_64_linux: "430e8e3f8afdb7bd0b8e85b5e7eb431810ff651c44fc5d9f23eb4260fbfdb741" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "c2b95ad6c08db5cef30c86e3457e1871b7e29b655103f10a585caed6bd1fecb6" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "c2b95ad6c08db5cef30c86e3457e1871b7e29b655103f10a585caed6bd1fecb6" + sha256 cellar: :any_skip_relocation, arm64_ventura: "c2b95ad6c08db5cef30c86e3457e1871b7e29b655103f10a585caed6bd1fecb6" + sha256 cellar: :any_skip_relocation, sonoma: "3c4b31e954ac4b666cdde1b7f97bc317c6592d7d4ca3a63efb7e043ca80d9926" + sha256 cellar: :any_skip_relocation, ventura: "3c4b31e954ac4b666cdde1b7f97bc317c6592d7d4ca3a63efb7e043ca80d9926" + sha256 cellar: :any_skip_relocation, arm64_linux: "c2b95ad6c08db5cef30c86e3457e1871b7e29b655103f10a585caed6bd1fecb6" + sha256 cellar: :any_skip_relocation, x86_64_linux: "c2b95ad6c08db5cef30c86e3457e1871b7e29b655103f10a585caed6bd1fecb6" end depends_on "node" From fbcaf3dca08a58342b284b28c034abed130e09d3 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 05:12:40 +0000 Subject: [PATCH 0909/1364] go-parquet-tools: update 1.29.2 bottle. --- Formula/g/go-parquet-tools.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/g/go-parquet-tools.rb b/Formula/g/go-parquet-tools.rb index 53d018d10d44a..32da857ab05cf 100644 --- a/Formula/g/go-parquet-tools.rb +++ b/Formula/g/go-parquet-tools.rb @@ -7,12 +7,12 @@ class GoParquetTools < Formula head "https://github.com/hangxie/parquet-tools.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "f81ce558dcfd8abe7ec81a2185c5cbb528c23a78def73e4519cc70d4e3cb1a9f" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "f81ce558dcfd8abe7ec81a2185c5cbb528c23a78def73e4519cc70d4e3cb1a9f" - sha256 cellar: :any_skip_relocation, arm64_ventura: "f81ce558dcfd8abe7ec81a2185c5cbb528c23a78def73e4519cc70d4e3cb1a9f" - sha256 cellar: :any_skip_relocation, sonoma: "abc3065518dae36e123c0c6bd7e0de4d219a8ba911e195e81e8e88abc70de33d" - sha256 cellar: :any_skip_relocation, ventura: "abc3065518dae36e123c0c6bd7e0de4d219a8ba911e195e81e8e88abc70de33d" - sha256 cellar: :any_skip_relocation, x86_64_linux: "99ca14331561b1c214235076cd5f7602c738bb1a2212fff0afdf37c10b00a97a" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "c8d3e0b1f254e281417294416b24a74281d8bf26984e59a39f5c997bd11bcc31" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "c8d3e0b1f254e281417294416b24a74281d8bf26984e59a39f5c997bd11bcc31" + sha256 cellar: :any_skip_relocation, arm64_ventura: "c8d3e0b1f254e281417294416b24a74281d8bf26984e59a39f5c997bd11bcc31" + sha256 cellar: :any_skip_relocation, sonoma: "8f1207ff0a38d1f67734b223620ea154900c8239b884f3a921cc4bf0e1367225" + sha256 cellar: :any_skip_relocation, ventura: "8f1207ff0a38d1f67734b223620ea154900c8239b884f3a921cc4bf0e1367225" + sha256 cellar: :any_skip_relocation, x86_64_linux: "baade0545eae30ceaf614d707560c4bfdf64560a69b3671d40eb6a360cd33b29" end depends_on "go" => :build From 09eae4d5d4c51ca56f065bfbb8be425b85ffdda8 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 05:15:17 +0000 Subject: [PATCH 0910/1364] enzyme: update 0.0.177 bottle. --- Formula/e/enzyme.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/e/enzyme.rb b/Formula/e/enzyme.rb index 6401275874ead..60ea403e69442 100644 --- a/Formula/e/enzyme.rb +++ b/Formula/e/enzyme.rb @@ -7,13 +7,13 @@ class Enzyme < Formula head "https://github.com/EnzymeAD/Enzyme.git", branch: "main" bottle do - sha256 cellar: :any, arm64_sequoia: "18d360d5745266b421f98deb3b5bb40654966bf3255da7442f38bdec555aa348" - sha256 cellar: :any, arm64_sonoma: "ea754461dab0e98aa2aca048b487987d9b04e06cbc47b8817b7d46afb84bdddc" - sha256 cellar: :any, arm64_ventura: "496bdd858fba97391c7714e3cb58965916a181db952444abd69ff1683550238c" - sha256 cellar: :any, sonoma: "ea7338b1c83038a66b220537f955cfde69744e096270b588565b8939721c38dc" - sha256 cellar: :any, ventura: "a16e470a543dca1d76e155572e957955363ece8a6010401fb46888192edcc53c" - sha256 cellar: :any_skip_relocation, arm64_linux: "582ebbadd56a9fae641b91cf2c7bc3263fc2b02a659b790091aba8e7f169166c" - sha256 cellar: :any_skip_relocation, x86_64_linux: "e2677cddea04ee08ae9576072e8dc3522e32d48c416cd57753fd459132151224" + sha256 cellar: :any, arm64_sequoia: "884fc492dc61521d43b8b4e56df70a975ac38bb77782e9a8fc37135d766149a2" + sha256 cellar: :any, arm64_sonoma: "7e38329ae7b6897e8c537a3fece321bbbee4cd7a1a93b4048bf5e33f2a80cc32" + sha256 cellar: :any, arm64_ventura: "5a67e81309c384d88cff64a72eb2b74df6f2efc1df7395746e29c55f006028a3" + sha256 cellar: :any, sonoma: "350e9d8e2aa2edfff9dfc1b15792bf8b0194ea36ea15e96326e5249608872650" + sha256 cellar: :any, ventura: "cecc79db2abb25992f455323794921782c1feba032d9b15acd9cd0090032bac2" + sha256 cellar: :any_skip_relocation, arm64_linux: "671a24130661892aaf3335295a71ae3560e131ac18bff848ce80c58c93d5469e" + sha256 cellar: :any_skip_relocation, x86_64_linux: "a70e0d70cc0ec7eebcc2e612858827fe19610f6a743bc1faf5d095e69c3ed449" end depends_on "cmake" => :build From a93cfdf4403a8199282d478b478319a436662892 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 05:15:49 +0000 Subject: [PATCH 0911/1364] libsvm: update 3.36 bottle. --- Formula/lib/libsvm.rb | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/Formula/lib/libsvm.rb b/Formula/lib/libsvm.rb index 11ac43f09c4a1..80478279e6d70 100644 --- a/Formula/lib/libsvm.rb +++ b/Formula/lib/libsvm.rb @@ -12,16 +12,13 @@ class Libsvm < Formula end bottle do - rebuild 2 - sha256 cellar: :any, arm64_sequoia: "fbd7f0cb7371ece33c5cfef9a0de2c8ce9ae60975ca902621ff7767d3f4a489e" - sha256 cellar: :any, arm64_sonoma: "b0b42109fa5ef7614278c54c343022fc60f3946e7d1f110472e002e0a333dca8" - sha256 cellar: :any, arm64_ventura: "dec298a98db2de896176f6c2d0dd4a9304f8da4a3e2f3af3c90f097f41d7f6f4" - sha256 cellar: :any, arm64_monterey: "9984ecea26fd1aab82612a0ac2a267dfe30ceb81ab8ae365027f2acfb6677ef5" - sha256 cellar: :any, sonoma: "cf42abb68e45caccd897b737ce1aa00b2c5f0e79f5c5336432e56171ebf2b95e" - sha256 cellar: :any, ventura: "7d908bc4532b8e00b9a03f91b7e67d6e279b51ec5a8ec67465ca914dd0b899f2" - sha256 cellar: :any, monterey: "ddaef78accfa874e5d2b3638b8dcd00f73ed979d012d6cb97307b56d72ee5311" - sha256 cellar: :any_skip_relocation, arm64_linux: "d98d136eb5efb5ac277db2ba33fc7ee191df107e74d6937ece0ed5f596a1a853" - sha256 cellar: :any_skip_relocation, x86_64_linux: "180e48479f4ce02ec77db9750d16a1eb71f29768d90f4f012e152e5f542a6cdb" + sha256 cellar: :any, arm64_sequoia: "07c47f5b7781dd3fffb83c47d6ea6568e7979e1222eb214c7a85d1323841a91a" + sha256 cellar: :any, arm64_sonoma: "491c601bed6a963a50717df1a90b1a0c9a73f73b19f64778239a1668edb96440" + sha256 cellar: :any, arm64_ventura: "4025272abab33c159ef9ce0133a1716d3936d2b10a0f26c630a68e19547c4bb5" + sha256 cellar: :any, sonoma: "0bb3867e246b44702d4f0504b0fd8cbc52a7995d9c083ad1be071eedac630f33" + sha256 cellar: :any, ventura: "7756ddc93d633b6de91c42f80ea3fba436cdfd9a9eb7af9f7413ec9f15ba1af5" + sha256 cellar: :any_skip_relocation, arm64_linux: "dfdef8c630fd3e6fd561ae9b0fe3d3063777ddb0553e06b00477fa29bf28f1a7" + sha256 cellar: :any_skip_relocation, x86_64_linux: "d1c622afb8f5923a625dbdd52197af588febd196e1d2eabfa3e1c9b3664e4386" end def install From 7f31f9061520143e0cc5bb3af3e6a97429b24fca Mon Sep 17 00:00:00 2001 From: botantony Date: Mon, 12 May 2025 09:05:57 +0200 Subject: [PATCH 0912/1364] netatalk 4.2.3 Signed-off-by: botantony --- Formula/n/netatalk.rb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Formula/n/netatalk.rb b/Formula/n/netatalk.rb index fe38e9206ed3f..3aae1d707629a 100644 --- a/Formula/n/netatalk.rb +++ b/Formula/n/netatalk.rb @@ -1,8 +1,8 @@ class Netatalk < Formula desc "File server for Macs, compliant with Apple Filing Protocol (AFP)" homepage "https://netatalk.io" - url "https://github.com/Netatalk/netatalk/releases/download/netatalk-4-2-2/netatalk-4.2.2.tar.xz" - sha256 "8f772804ce4322a4e8fb159528209450927e9df067daa5cc02ab59b35f4b450c" + url "https://github.com/Netatalk/netatalk/releases/download/netatalk-4-2-3/netatalk-4.2.3.tar.xz" + sha256 "10a3c3a4c11acec657df9c33c69a6269e319dba759c5e1dfa41ee5a3f1b80c43" license all_of: [ "GPL-2.0-only", "GPL-2.0-or-later", @@ -14,6 +14,8 @@ class Netatalk < Formula ] head "https://github.com/Netatalk/netatalk.git", branch: "main" + no_autobump! because: :incompatible_version_format + bottle do sha256 arm64_sequoia: "ac81b1b9d7ca8deef169399a06ea00c0301cdeafc21acf8d2ad5e6dad5efd4f2" sha256 arm64_sonoma: "b6715d6e08404ab7042c91a1df8ce27194ab888d16c73fa3b54753439fd96378" From 09aee9d7ca1879fe231ca3d5277943cb374669ed Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 07:52:31 +0000 Subject: [PATCH 0913/1364] cdk8s 2.200.68 --- Formula/c/cdk8s.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/cdk8s.rb b/Formula/c/cdk8s.rb index 82c7c3a652202..5153bedc2f45b 100644 --- a/Formula/c/cdk8s.rb +++ b/Formula/c/cdk8s.rb @@ -1,8 +1,8 @@ class Cdk8s < Formula desc "Define k8s native apps and abstractions using object-oriented programming" homepage "https://cdk8s.io/" - url "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.200.67.tgz" - sha256 "9f6cc47b8597636e0e4159ce87450437a02f64262b4fd23f9eb2820d4555b49e" + url "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.200.68.tgz" + sha256 "10273961f950124d486b5c8978b8fded8bf8e8667439a13898766ebdad6df7a0" license "Apache-2.0" bottle do From 01bc22789678c2f5707649c76b9fb0063e4b431a Mon Sep 17 00:00:00 2001 From: botantony Date: Mon, 12 May 2025 09:56:01 +0200 Subject: [PATCH 0914/1364] otterdog 1.0.3 Signed-off-by: botantony --- Formula/o/otterdog.rb | 27 +++++++++++++++------------ 1 file changed, 15 insertions(+), 12 deletions(-) diff --git a/Formula/o/otterdog.rb b/Formula/o/otterdog.rb index 309031e897f7f..cda4a38d9f55e 100644 --- a/Formula/o/otterdog.rb +++ b/Formula/o/otterdog.rb @@ -3,11 +3,14 @@ class Otterdog < Formula desc "Manage GitHub organizations at scale using an infrastructure as code approach" homepage "https://otterdog.readthedocs.io/en/latest/" - url "https://files.pythonhosted.org/packages/16/ef/0126770d4fa362edea9c23d9b29b8f9b1888d53bf840ea483eb44290e38f/otterdog-1.0.2.tar.gz" - sha256 "6dd7bf6ac011b226898f6990fefcc59843473f89276bbf8abbaf313daa80a8e2" + url "https://files.pythonhosted.org/packages/be/34/c9e793cc09652565d41dc02be07efe6d3ef361274d8d6c3c1004e91041df/otterdog-1.0.3.tar.gz" + sha256 "f57ae79cd3fa246aefb2948e4f82ed1a6f40f6ac9f1f2c5d57a4a67dab2cd2eb" license "EPL-2.0" head "https://github.com/eclipse-csi/otterdog.git", branch: "main" + # https://github.com/microsoft/playwright-python/issues/2579 + no_autobump! because: "'playwright' resource lacks PyPI sdist" + bottle do sha256 cellar: :any, arm64_sequoia: "6e5a0d51086bc97f312850db801d53ee3bdfa0694cf1858b70b64c97d50b5c93" sha256 cellar: :any, arm64_sonoma: "562b11380da4350b674d80cf4552740ce2a7b6d4832e4113c5001fbdef5d77a5" @@ -80,8 +83,8 @@ class Otterdog < Formula end resource "charset-normalizer" do - url "https://files.pythonhosted.org/packages/16/b0/572805e227f01586461c80e0fd25d65a2115599cc9dad142fee4b747c357/charset_normalizer-3.4.1.tar.gz" - sha256 "44251f18cd68a75b56585dd00dae26183e102cd5e0f9f1466e6df5da2ed64ea3" + url "https://files.pythonhosted.org/packages/e4/33/89c2ced2b67d1c2a61c19c6751aa8902d46ce3dacb23600a283619f5a12d/charset_normalizer-3.4.2.tar.gz" + sha256 "5baececa9ecba31eff645232d59845c07aa030f0c81ee70184a90d35099a0e63" end resource "chevron" do @@ -90,8 +93,8 @@ class Otterdog < Formula end resource "click" do - url "https://files.pythonhosted.org/packages/b9/2e/0090cbf739cee7d23781ad4b89a9894a41538e4fcf4c31dcdd705b78eb8b/click-8.1.8.tar.gz" - sha256 "ed53c9d8990d83c2a27deae68e4ee337473f6330c040a31d4225c9574d16096a" + url "https://files.pythonhosted.org/packages/cd/0f/62ca20172d4f87d93cf89665fbaedcd560ac48b465bd1d92bfc7ea6b0a41/click-8.2.0.tar.gz" + sha256 "f5452aeddd9988eefa20f90f05ab66f17fce1ee2a36907fd30b05bbb5953814d" end resource "frozenlist" do @@ -170,8 +173,8 @@ class Otterdog < Formula end resource "playwright" do - url "https://github.com/microsoft/playwright-python/archive/refs/tags/v1.51.0.tar.gz" - sha256 "9c082490a1769eaa1ccb93786e1b1b1ef2257991dd1ab56056f8f4b9601ef85e" + url "https://github.com/microsoft/playwright-python/archive/refs/tags/v1.52.0.tar.gz" + sha256 "cf21ec7ab8b751f960b9ccfc65272698ef2908c0170459064fbab6152adf863c" end resource "propcache" do @@ -200,8 +203,8 @@ class Otterdog < Formula end resource "rich" do - url "https://files.pythonhosted.org/packages/ab/3a/0316b28d0761c6734d6bc14e770d85506c986c85ffb239e688eeaab2c2bc/rich-13.9.4.tar.gz" - sha256 "439594978a49a09530cff7ebc4b5c7103ef57baf48d5ea3184f21d9a2befa098" + url "https://files.pythonhosted.org/packages/a1/53/830aa4c3066a8ab0ae9a9955976fb770fe9c6102117c8ec4ab3ea62d89e8/rich-14.0.0.tar.gz" + sha256 "82f1bc23a6a21ebca4ae0c45af9bdbc492ed20231dcb63f297d6d1021a9d5725" end resource "rjsonnet" do @@ -225,8 +228,8 @@ class Otterdog < Formula end resource "url-normalize" do - url "https://files.pythonhosted.org/packages/1c/94/d79b960d66b933492f7dfbec8db799fa7033e7fbc98090f46fa581ca3a94/url_normalize-2.2.0.tar.gz" - sha256 "0f0b7cc95a95d2d9b0c9a51d47a326559bc05bd1558accdada21bb0c9504de85" + url "https://files.pythonhosted.org/packages/80/31/febb777441e5fcdaacb4522316bf2a527c44551430a4873b052d545e3279/url_normalize-2.2.1.tar.gz" + sha256 "74a540a3b6eba1d95bdc610c24f2c0141639f3ba903501e61a52a8730247ff37" end resource "urllib3" do From c3244d06b31714d7514f1dee08263753022e9837 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 08:06:53 +0000 Subject: [PATCH 0915/1364] infisical 0.41.2 --- Formula/i/infisical.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/i/infisical.rb b/Formula/i/infisical.rb index 0354c92f31128..3baf9f3f26fb5 100644 --- a/Formula/i/infisical.rb +++ b/Formula/i/infisical.rb @@ -1,8 +1,8 @@ class Infisical < Formula desc "CLI for Infisical" homepage "https://infisical.com/docs/cli/overview" - url "https://github.com/Infisical/infisical/archive/refs/tags/infisical-cli/v0.41.1.tar.gz" - sha256 "0b546f4c4494a3aa094e7c403878c2abc4fbb8f1b8d31a32b27ac30fcae5e3a4" + url "https://github.com/Infisical/infisical/archive/refs/tags/infisical-cli/v0.41.2.tar.gz" + sha256 "3acf82b51453681bb70a77373ce03c22ff544b5ae2c29f8e124687504de0012a" license "MIT" head "https://github.com/Infisical/infisical.git", branch: "main" From 12a37c14b3e4379d36080253400f811f58f520d1 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 08:07:31 +0000 Subject: [PATCH 0916/1364] jackett 0.22.1891 --- Formula/j/jackett.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/j/jackett.rb b/Formula/j/jackett.rb index dad7555891827..fc11938cd99a1 100644 --- a/Formula/j/jackett.rb +++ b/Formula/j/jackett.rb @@ -1,8 +1,8 @@ class Jackett < Formula desc "API Support for your favorite torrent trackers" homepage "https://github.com/Jackett/Jackett" - url "https://github.com/Jackett/Jackett/archive/refs/tags/v0.22.1888.tar.gz" - sha256 "d1ee56f16894031c23f4758201881266b4846ab3a25501501e31b016550f28b3" + url "https://github.com/Jackett/Jackett/archive/refs/tags/v0.22.1891.tar.gz" + sha256 "287d9274910746e71913744114a4e95df75596bbaec12e7121a6cda90d3a1f71" license "GPL-2.0-only" head "https://github.com/Jackett/Jackett.git", branch: "master" From f13606ad062daa4303917cde6142e56604d35ada Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 08:08:28 +0000 Subject: [PATCH 0917/1364] k9s 0.50.6 --- Formula/k/k9s.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/k/k9s.rb b/Formula/k/k9s.rb index 95270f9f0dd80..8d8550bad9b61 100644 --- a/Formula/k/k9s.rb +++ b/Formula/k/k9s.rb @@ -2,8 +2,8 @@ class K9s < Formula desc "Kubernetes CLI To Manage Your Clusters In Style!" homepage "https://k9scli.io/" url "https://github.com/derailed/k9s.git", - tag: "v0.50.5", - revision: "ccebaa604ef66dd77b9ddc4d2142798a414275ee" + tag: "v0.50.6", + revision: "13cb55bb66272ac4c872a1f6bfa3e820d7d0ca5b" license "Apache-2.0" head "https://github.com/derailed/k9s.git", branch: "master" From e5f2b83705cee05f739646d90a732dda4f197953 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 08:09:49 +0000 Subject: [PATCH 0918/1364] kubevela 1.10.3 --- Formula/k/kubevela.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/k/kubevela.rb b/Formula/k/kubevela.rb index 4a262ce596e5e..5d4c32ce0e33a 100644 --- a/Formula/k/kubevela.rb +++ b/Formula/k/kubevela.rb @@ -2,8 +2,8 @@ class Kubevela < Formula desc "Application Platform based on Kubernetes and Open Application Model" homepage "https://kubevela.io" url "https://github.com/kubevela/kubevela.git", - tag: "v1.10.2", - revision: "424e433963551eac070b4369829c4c674fce7ff1" + tag: "v1.10.3", + revision: "ef9b6f3cc10a4b6871b5698ca41fea3f6b3bcaec" license "Apache-2.0" head "https://github.com/kubevela/kubevela.git", branch: "master" From e186fa6b27f8e314b47c16c100e3c282eb337394 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 08:10:06 +0000 Subject: [PATCH 0919/1364] kubevpn 2.7.9 --- Formula/k/kubevpn.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/k/kubevpn.rb b/Formula/k/kubevpn.rb index 144c9888233f5..fc4a5e91c453e 100644 --- a/Formula/k/kubevpn.rb +++ b/Formula/k/kubevpn.rb @@ -1,8 +1,8 @@ class Kubevpn < Formula desc "Offers a Cloud-Native Dev Environment that connects to your K8s cluster network" homepage "https://www.kubevpn.dev" - url "https://github.com/kubenetworks/kubevpn/archive/refs/tags/v2.7.8.tar.gz" - sha256 "02e24ad6c1ec1b41aab74d92297f60f4ddb5f217c1b7cbdef5153cf8536042f4" + url "https://github.com/kubenetworks/kubevpn/archive/refs/tags/v2.7.9.tar.gz" + sha256 "b2cfc4af715d1a91150ca853d0adcb14fdd741735cff5e029c41f8ed8f1289fe" license "MIT" head "https://github.com/kubenetworks/kubevpn.git", branch: "master" From af64833b7ee769e4ded158cabd5efe06fbfc89d0 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 08:14:22 +0000 Subject: [PATCH 0920/1364] mcpm 1.10.0 --- Formula/m/mcpm.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/m/mcpm.rb b/Formula/m/mcpm.rb index 1136348e7f3d4..c4ab8fd71d0a9 100644 --- a/Formula/m/mcpm.rb +++ b/Formula/m/mcpm.rb @@ -3,8 +3,8 @@ class Mcpm < Formula desc "Open source, community-driven MCP server and client manager" homepage "https://mcpm.sh/" - url "https://files.pythonhosted.org/packages/44/f7/b7fff1838c836868e3d6e0c14b4eaa992341f428a8683fc7e5f9dee592d6/mcpm-1.9.0.tar.gz" - sha256 "97c112cb6d40e9bbcb4091c1db79da4eeda256bfa48083fa1f3abb260b814686" + url "https://files.pythonhosted.org/packages/94/f1/0a218ec45d409d7de6784f746fb159b1a47fe8d4b5ac742bab7421a324f1/mcpm-1.10.0.tar.gz" + sha256 "53925f2c88b9ca67df7751c6fc9a6e1954dc235c3e1236fdbef24605205dad86" license "MIT" bottle do @@ -41,8 +41,8 @@ class Mcpm < Formula end resource "click" do - url "https://files.pythonhosted.org/packages/b9/2e/0090cbf739cee7d23781ad4b89a9894a41538e4fcf4c31dcdd705b78eb8b/click-8.1.8.tar.gz" - sha256 "ed53c9d8990d83c2a27deae68e4ee337473f6330c040a31d4225c9574d16096a" + url "https://files.pythonhosted.org/packages/cd/0f/62ca20172d4f87d93cf89665fbaedcd560ac48b465bd1d92bfc7ea6b0a41/click-8.2.0.tar.gz" + sha256 "f5452aeddd9988eefa20f90f05ab66f17fce1ee2a36907fd30b05bbb5953814d" end resource "duckdb" do @@ -81,8 +81,8 @@ class Mcpm < Formula end resource "mcp" do - url "https://files.pythonhosted.org/packages/25/ae/588691c45b38f4fbac07fa3d6d50cea44cc6b35d16ddfdf26e17a0467ab2/mcp-1.7.1.tar.gz" - sha256 "eb4f1f53bd717f75dda8a1416e00804b831a8f3c331e23447a03b78f04b43a6e" + url "https://files.pythonhosted.org/packages/ff/97/0a3e08559557b0ac5799f9fb535fbe5a4e4dcdd66ce9d32e7a74b4d0534d/mcp-1.8.0.tar.gz" + sha256 "263dfb700540b726c093f0c3e043f66aded0730d0b51f04eb0a3eb90055fe49b" end resource "mdurl" do From 691dea0195a684ae74a04eb8659884c7f38e3ae8 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 08:17:56 +0000 Subject: [PATCH 0921/1364] oh-my-posh 25.23.0 --- Formula/o/oh-my-posh.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/o/oh-my-posh.rb b/Formula/o/oh-my-posh.rb index 68301ed31cb69..6f4e3754fc4c2 100644 --- a/Formula/o/oh-my-posh.rb +++ b/Formula/o/oh-my-posh.rb @@ -1,8 +1,8 @@ class OhMyPosh < Formula desc "Prompt theme engine for any shell" homepage "https://ohmyposh.dev" - url "https://github.com/JanDeDobbeleer/oh-my-posh/archive/refs/tags/v25.22.0.tar.gz" - sha256 "9d17fcbe8cfdd923ab1ddd9901599b4880c5c86dd12e1882e95b8643d07d1a1d" + url "https://github.com/JanDeDobbeleer/oh-my-posh/archive/refs/tags/v25.23.0.tar.gz" + sha256 "a51432663462ff79318b3ff4bc8d956c8ae0831df9f324a96f58e9532dbe4db8" license "MIT" head "https://github.com/JanDeDobbeleer/oh-my-posh.git", branch: "main" From 3dfeb745c428247d93ea025d1cc18e790086ea3f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 08:24:06 +0000 Subject: [PATCH 0922/1364] rust-analyzer 2025-05-12 --- Formula/r/rust-analyzer.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/r/rust-analyzer.rb b/Formula/r/rust-analyzer.rb index 35e8f414a787d..fd10059ba1831 100644 --- a/Formula/r/rust-analyzer.rb +++ b/Formula/r/rust-analyzer.rb @@ -2,8 +2,8 @@ class RustAnalyzer < Formula desc "Experimental Rust compiler front-end for IDEs" homepage "https://rust-analyzer.github.io/" url "https://github.com/rust-lang/rust-analyzer.git", - tag: "2025-05-05", - revision: "3b57c001518aeb42511e177221f98ecf42104016" + tag: "2025-05-12", + revision: "2bafe9d96c6734aacfd49e115f6cf61e7adc68bc" license any_of: ["Apache-2.0", "MIT"] bottle do From 807280e5d0fd78c4bba2ff36176700f80b7264fa Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 08:29:29 +0000 Subject: [PATCH 0923/1364] trurl 0.16.1 --- Formula/t/trurl.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/t/trurl.rb b/Formula/t/trurl.rb index 205474253c611..aacec74e501bc 100644 --- a/Formula/t/trurl.rb +++ b/Formula/t/trurl.rb @@ -1,8 +1,8 @@ class Trurl < Formula desc "Command-line tool for URL parsing and manipulation" homepage "https://curl.se/trurl/" - url "https://github.com/curl/trurl/releases/download/trurl-0.16/trurl-0.16.tar.gz" - sha256 "2c26e3016f591f06234838bbe1dd4b165dce2c871c82ca6a32222d19696588d6" + url "https://github.com/curl/trurl/releases/download/trurl-0.16.1/trurl-0.16.1.tar.gz" + sha256 "aac947d4fb421a58abc19a3771e87942cd4721b8f855c433478c94c11a8203ba" license "curl" head "https://github.com/curl/trurl.git", branch: "master" From 7402631f8f822dbdc779f4b3bed59dbb947909d0 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 10:52:35 +0000 Subject: [PATCH 0924/1364] bitrise 2.31.1 --- Formula/b/bitrise.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/b/bitrise.rb b/Formula/b/bitrise.rb index 0c8f2c4cc8d3d..9a273bda09b4c 100644 --- a/Formula/b/bitrise.rb +++ b/Formula/b/bitrise.rb @@ -1,8 +1,8 @@ class Bitrise < Formula desc "Command-line automation tool" homepage "https://github.com/bitrise-io/bitrise" - url "https://github.com/bitrise-io/bitrise/archive/refs/tags/v2.31.0.tar.gz" - sha256 "a3805ca8fe04a3ce835d0641c3c51ca477bc594696e8ee842dbb8f272ebcd0e8" + url "https://github.com/bitrise-io/bitrise/archive/refs/tags/v2.31.1.tar.gz" + sha256 "d7205338c9138b6488a57c3198426ef19392fdf6d800876f5c182de7e3ec2994" license "MIT" head "https://github.com/bitrise-io/bitrise.git", branch: "master" From f153161b6e76be8d60512a36f33f59330c982cbf Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 10:53:38 +0000 Subject: [PATCH 0925/1364] oh-my-posh: update 25.23.0 bottle. --- Formula/o/oh-my-posh.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/o/oh-my-posh.rb b/Formula/o/oh-my-posh.rb index 6f4e3754fc4c2..460fb235dc4f5 100644 --- a/Formula/o/oh-my-posh.rb +++ b/Formula/o/oh-my-posh.rb @@ -15,12 +15,12 @@ class OhMyPosh < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "4dc03b4e14fbd0fdc3691044279686c7ebed993fd8863aa0e1e91820fec4f96c" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "b9675a61e3d3ea872cc0921347da90165c081499a9fcb38313e1726f817efc28" - sha256 cellar: :any_skip_relocation, arm64_ventura: "e8b79acb6d6e2ba0df5892ba1c317047cad7406e2d1ca91e406227e4c952e08a" - sha256 cellar: :any_skip_relocation, sonoma: "15cd2db111ca5745194d3b7a292c1d3efd0f9b8a9f28c7d24a5971eeff074c6e" - sha256 cellar: :any_skip_relocation, ventura: "b6af655b0b5ccad6444bcc0e6d26b8c1623e11bac466617054c5d32a897ac803" - sha256 cellar: :any_skip_relocation, x86_64_linux: "b9cef3e8886bb16b713c44873a59857ce84dd6b9054692f598a53648fe95fe4b" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "3f77104bb35231eff14435c7f28e617eb911694ccd79f384311099890d690a8e" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "298f7ea4aec71d3a2d5b0dea2d4adf853f104ebd9ea9fff7feef22ff5e0577d6" + sha256 cellar: :any_skip_relocation, arm64_ventura: "b8ebf6a87297da940d5644c2e01f01749120f9436e7eb77fa6681473649a6dbe" + sha256 cellar: :any_skip_relocation, sonoma: "7e9b5a29d95616a4d54d2a7c6580280f0cd3bf41506e1cfdb43023142fb0a9ae" + sha256 cellar: :any_skip_relocation, ventura: "955bf0e7add88f3b83fbd804cbec52c0ec65dba6a0947de0e00cd3303041ca23" + sha256 cellar: :any_skip_relocation, x86_64_linux: "7486228f9b18fe6fab6d17544541d7d6737e588833f2fbbf49f9ab52479e425e" end depends_on "go" => :build From 881790bb754a1ce130366189df1c134506c1adc4 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 10:54:30 +0000 Subject: [PATCH 0926/1364] jackett: update 0.22.1891 bottle. --- Formula/j/jackett.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/j/jackett.rb b/Formula/j/jackett.rb index fc11938cd99a1..5ba1f864b85db 100644 --- a/Formula/j/jackett.rb +++ b/Formula/j/jackett.rb @@ -7,12 +7,12 @@ class Jackett < Formula head "https://github.com/Jackett/Jackett.git", branch: "master" bottle do - sha256 cellar: :any, arm64_sequoia: "02434793de24b9083a01bd7125c1039463808995706e2609627bfb524cdfc57d" - sha256 cellar: :any, arm64_sonoma: "defa1fd2ec91dd50a23c94f80a40c29a22e71f189b916d17fafda02b461f20cd" - sha256 cellar: :any, arm64_ventura: "fa5dbda9e6b73e7dcc020c340c8567b75c95f9c0356367add531baaf1ccede7b" - sha256 cellar: :any, ventura: "207b3800a671ff073766aee46eb9547a5476fc6b2124bdf3f6f44b2a2504462c" - sha256 cellar: :any_skip_relocation, arm64_linux: "072a79a5f00015b65c9de331c0be8fb3066b781ebdcec77baa08caee1b19186c" - sha256 cellar: :any_skip_relocation, x86_64_linux: "ce6ee78435625e160733bcb2b55e89709d808f5f3db7f6a9a35a18b28af3a912" + sha256 cellar: :any, arm64_sequoia: "747dc4833dfe3214edd06717a6daa4c3ee41f7fe8dd753982721d24f2a3ec603" + sha256 cellar: :any, arm64_sonoma: "10982ae966e36f77a050d171c2822b2113693ca4e48f7fe7dc3b14018071029e" + sha256 cellar: :any, arm64_ventura: "346be76e9934927094dc2f993cf579ef947a8ddfb54426bac738d04d183b31ad" + sha256 cellar: :any, ventura: "21b3944e0e3948150032ec2b088f379a2e66ee3397cffd89c849d9dc3733df47" + sha256 cellar: :any_skip_relocation, arm64_linux: "cb689850859389cc975ba09acf247cd2779d6560d280bc2f566adb69c248fb58" + sha256 cellar: :any_skip_relocation, x86_64_linux: "8ff3fdce859f6b719e3defe259eebf8074614d6e75cab0b75fc54a2d940c1a38" end depends_on "dotnet@8" From 03fa8199448ea8a7e08779cc1ceae44926e5143c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 10:54:53 +0000 Subject: [PATCH 0927/1364] k9s: update 0.50.6 bottle. --- Formula/k/k9s.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/k/k9s.rb b/Formula/k/k9s.rb index 8d8550bad9b61..baff3405c3708 100644 --- a/Formula/k/k9s.rb +++ b/Formula/k/k9s.rb @@ -13,13 +13,13 @@ class K9s < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "5cb1b5ec5e30557d6ad635a4e0319c0207ff83a2566d8f0a3e361119b0d28511" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "f11599564efb1229c452691e44c16bcfa4b36ab4cbf64cf103e31db73764e025" - sha256 cellar: :any_skip_relocation, arm64_ventura: "8d25f04597a4d1c4832132ceaece880af895b82c6b40fc6e6eae7883da6acaef" - sha256 cellar: :any_skip_relocation, sonoma: "2f53a00ee90ae2dd273e87fcd80ae044457eff11361016191ff79eb6eab61e99" - sha256 cellar: :any_skip_relocation, ventura: "93b0bff3e9eaed0c8a481e7520cf1c2bbe39b9075b5329ab11418be4d0c188bf" - sha256 cellar: :any_skip_relocation, arm64_linux: "59abf7ce0f6be6cd410e0bdfbc34d414f463daf33571b3cf1826ff21dd58995a" - sha256 cellar: :any_skip_relocation, x86_64_linux: "76e9ecaafb93ad94597913c480fa44226371cf73a7b0e62161331cdce9c845c1" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "5b4782a6a36187c4be44627ea3b1fdf55a5920d891f63ce2c3f26a07635b727a" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "000b37707c256307e87a5ce8ad5cdb7e3ee9fc267ce467a8f9106ffba942e9ac" + sha256 cellar: :any_skip_relocation, arm64_ventura: "39d137be443dd9d3cde514cf08d00172499c3caaceecca5cb9af6c0dea77e5de" + sha256 cellar: :any_skip_relocation, sonoma: "f88480359dd74b5bf2e531ac2d559ff3dcd26dc85f6f983e13dd03d0d2b06002" + sha256 cellar: :any_skip_relocation, ventura: "13516cb513b257c631e0901fb0b9a458897a4389dcfaa379c10bfda17f4e0439" + sha256 cellar: :any_skip_relocation, arm64_linux: "8ba23fb906e9c11de1f99f002718e3b27cc81949959b5a6e397a8ff2dda3f384" + sha256 cellar: :any_skip_relocation, x86_64_linux: "92298d177ec5184d1c96a15b658d4c23ed6dee80c09fa51e795028fb3e5b3a7c" end depends_on "go" => :build From 03e120a135037520727a52f0f3a366a73b881549 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 10:55:22 +0000 Subject: [PATCH 0928/1364] cdk8s: update 2.200.68 bottle. --- Formula/c/cdk8s.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/cdk8s.rb b/Formula/c/cdk8s.rb index 5153bedc2f45b..4ddd54383a67b 100644 --- a/Formula/c/cdk8s.rb +++ b/Formula/c/cdk8s.rb @@ -6,13 +6,13 @@ class Cdk8s < Formula license "Apache-2.0" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "532e6adbddbb6f88d2f0647c65f85e93fd4dbea3d0286cbae36ec07fb07ebb46" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "532e6adbddbb6f88d2f0647c65f85e93fd4dbea3d0286cbae36ec07fb07ebb46" - sha256 cellar: :any_skip_relocation, arm64_ventura: "532e6adbddbb6f88d2f0647c65f85e93fd4dbea3d0286cbae36ec07fb07ebb46" - sha256 cellar: :any_skip_relocation, sonoma: "f7c0df011a61a990e334f9d68013764d2bd2e04de122bd3237f9cfc30cf2e92a" - sha256 cellar: :any_skip_relocation, ventura: "f7c0df011a61a990e334f9d68013764d2bd2e04de122bd3237f9cfc30cf2e92a" - sha256 cellar: :any_skip_relocation, arm64_linux: "532e6adbddbb6f88d2f0647c65f85e93fd4dbea3d0286cbae36ec07fb07ebb46" - sha256 cellar: :any_skip_relocation, x86_64_linux: "532e6adbddbb6f88d2f0647c65f85e93fd4dbea3d0286cbae36ec07fb07ebb46" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "3ffea2a696d1e2bec65e31da0b292c5eeb422c459f2fa8d9e37552859afb4c67" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "3ffea2a696d1e2bec65e31da0b292c5eeb422c459f2fa8d9e37552859afb4c67" + sha256 cellar: :any_skip_relocation, arm64_ventura: "3ffea2a696d1e2bec65e31da0b292c5eeb422c459f2fa8d9e37552859afb4c67" + sha256 cellar: :any_skip_relocation, sonoma: "07de0b34f28b60970f8b6b1539b75bccbc2a562dbb94be4c956ce1642db20623" + sha256 cellar: :any_skip_relocation, ventura: "07de0b34f28b60970f8b6b1539b75bccbc2a562dbb94be4c956ce1642db20623" + sha256 cellar: :any_skip_relocation, arm64_linux: "3ffea2a696d1e2bec65e31da0b292c5eeb422c459f2fa8d9e37552859afb4c67" + sha256 cellar: :any_skip_relocation, x86_64_linux: "3ffea2a696d1e2bec65e31da0b292c5eeb422c459f2fa8d9e37552859afb4c67" end depends_on "node" From 911fcb24076b3d343cc89a69d6ec732954e8adac Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 10:56:07 +0000 Subject: [PATCH 0929/1364] rust-analyzer: update 2025-05-12 bottle. --- Formula/r/rust-analyzer.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/r/rust-analyzer.rb b/Formula/r/rust-analyzer.rb index fd10059ba1831..18c1999c476ca 100644 --- a/Formula/r/rust-analyzer.rb +++ b/Formula/r/rust-analyzer.rb @@ -7,13 +7,13 @@ class RustAnalyzer < Formula license any_of: ["Apache-2.0", "MIT"] bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "16c156616b83e1b3ca318059dc25dc4561286c35b4ad19708cc1e5bc716a25db" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "2a75663e7b1ece5cf7aa87e624a1ffedbe3931422c41258eb5344d8999af3330" - sha256 cellar: :any_skip_relocation, arm64_ventura: "327f6b312ed0d17e768c4c77b31feb27fc4d617ef64b385961b53147110ffe03" - sha256 cellar: :any_skip_relocation, sonoma: "657b09096e8df7f03d4362e5239d7b64cc4f05e85a13f06107b9fcce4d982f52" - sha256 cellar: :any_skip_relocation, ventura: "e71026185d11953c18b2fb190448e14ddbace51935b5a65b9dd675bb36d87b65" - sha256 cellar: :any_skip_relocation, arm64_linux: "982420d1991fa9d54efe50bd99ffc3e1135472c7f9a7492576a876dc57cd83c6" - sha256 cellar: :any_skip_relocation, x86_64_linux: "71a9a6f1e3474463980b25c5ee5e0c00a7273e016bc4b925055593b7385c2fe1" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "e8d6d1ed5455cad6e18df2abd537d836d8dd6de852c532d093425134553cb48b" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "dc304eca320b307923e48746c79823a35551d4d7990cf64024c918568db2427a" + sha256 cellar: :any_skip_relocation, arm64_ventura: "9e9b9581e5bd92faadd9fce087a24bea7a886d5cd449ca2342196b3bc958253e" + sha256 cellar: :any_skip_relocation, sonoma: "f42180708d838ad7d66e5cec8c4ba4771e9af0beb5a763365578c3d6e2db7985" + sha256 cellar: :any_skip_relocation, ventura: "465a2177ccac87be2ae92653c63ef0aa0aca68aff6819ab79d488b4a5c3ce6be" + sha256 cellar: :any_skip_relocation, arm64_linux: "dc177fd5a035a62adfb00d42da423b1ec2f475311bf0457edd37312c64aa84a1" + sha256 cellar: :any_skip_relocation, x86_64_linux: "f0f3e4601f073e487bbdf4daeebad57f40853be24150116299e1727c70e6774b" end depends_on "rust" => :build From d9fe1632b1a46d9cd5a357e0d38323457c6aeeb1 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 10:56:38 +0000 Subject: [PATCH 0930/1364] cyclonedx-python 6.1.1 --- Formula/c/cyclonedx-python.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Formula/c/cyclonedx-python.rb b/Formula/c/cyclonedx-python.rb index 966c73237a2ea..128fa2aeef0d1 100644 --- a/Formula/c/cyclonedx-python.rb +++ b/Formula/c/cyclonedx-python.rb @@ -3,8 +3,8 @@ class CyclonedxPython < Formula desc "Creates CycloneDX Software Bill of Materials (SBOM) from Python projects" homepage "https://cyclonedx.org/" - url "https://files.pythonhosted.org/packages/8a/17/2d3cd57305e4b193f91b58843db09118dc2146ad32a63b868f4b546fb97c/cyclonedx_bom-6.0.0.tar.gz" - sha256 "78f05ad294552aa6f11867d243649a8869f7fd463f87cd61334da813fa7ef06e" + url "https://files.pythonhosted.org/packages/98/a5/796b6e58ea9a13af3a9776ff4a4c7ee9108debe9461a129d121257146cd3/cyclonedx_bom-6.1.1.tar.gz" + sha256 "2523a1879b5cd4fd77be68a000c718cde80c17908a8374a17414eb8c9aa7cf20" license "Apache-2.0" head "https://github.com/CycloneDX/cyclonedx-python.git", branch: "main" @@ -45,8 +45,8 @@ class CyclonedxPython < Formula end resource "cyclonedx-python-lib" do - url "https://files.pythonhosted.org/packages/af/67/d75d34d2f9ce71524a8d0b7e1d8328523f059a0b10ccc98ed05b3b82e93c/cyclonedx_python_lib-10.0.0.tar.gz" - sha256 "d0b3deb90659faf3acc909e487af216199c1a0ee976e1601ea13649bd6a070db" + url "https://files.pythonhosted.org/packages/bf/70/c5ab120047230e2c9db8e04b55f9b547fcf52ec6a4a5155dd5a3a3185fd2/cyclonedx_python_lib-10.0.1.tar.gz" + sha256 "6c7a8c27a28279d22d92d4e0982e59beed3076a1aa4928a27830b0eaa2ca4f29" end resource "defusedxml" do From 0774da7a5c20148f3b9de7453db35c9f01fa42c0 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 11:00:23 +0000 Subject: [PATCH 0931/1364] geni 1.1.6 --- Formula/g/geni.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/g/geni.rb b/Formula/g/geni.rb index 6b371cf7bafea..b22793dd016aa 100644 --- a/Formula/g/geni.rb +++ b/Formula/g/geni.rb @@ -1,8 +1,8 @@ class Geni < Formula desc "Standalone database migration tool" homepage "https://github.com/emilpriver/geni" - url "https://github.com/emilpriver/geni/archive/refs/tags/v1.1.5.tar.gz" - sha256 "d0029ff1796d00619502eb72023e46be10bda6782b1d2f2f7566a99db851ddf7" + url "https://github.com/emilpriver/geni/archive/refs/tags/v1.1.6.tar.gz" + sha256 "b157ff3c57b4c36e2f48f57da1b6dba60bf2f9770061e068e4302bc555df3b3c" license "MIT" bottle do From f02a436e383e64b5fffcac6c93de670ccb964b8d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 11:02:47 +0000 Subject: [PATCH 0932/1364] hwloc 2.12.1 --- Formula/h/hwloc.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/h/hwloc.rb b/Formula/h/hwloc.rb index fbf89c5d003c3..88e0cde2befb5 100644 --- a/Formula/h/hwloc.rb +++ b/Formula/h/hwloc.rb @@ -1,8 +1,8 @@ class Hwloc < Formula desc "Portable abstraction of the hierarchical topology of modern architectures" homepage "https://www.open-mpi.org/projects/hwloc/" - url "https://download.open-mpi.org/release/hwloc/v2.12/hwloc-2.12.0.tar.bz2" - sha256 "06a0a2bdc0a5714e839164683846a0e936a896213758e9d37e49e232b89c58d4" + url "https://download.open-mpi.org/release/hwloc/v2.12/hwloc-2.12.1.tar.bz2" + sha256 "38a90328bb86259f9bb2fe1dc57fd841e111d1e6358012bef23dfd95d21dc66b" license "BSD-3-Clause" livecheck do From 6a296cfe66f1059537200293d9d138c7cc4cd349 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 11:03:13 +0000 Subject: [PATCH 0933/1364] kubevpn: update 2.7.9 bottle. --- Formula/k/kubevpn.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/k/kubevpn.rb b/Formula/k/kubevpn.rb index fc4a5e91c453e..c40d0ba87de2d 100644 --- a/Formula/k/kubevpn.rb +++ b/Formula/k/kubevpn.rb @@ -7,13 +7,13 @@ class Kubevpn < Formula head "https://github.com/kubenetworks/kubevpn.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "803b8d578aa31c678f9bbc7c265d0efa3306241ff0a4df26103562d20b62f2c9" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "16ebf8d2038d5c7540b4848dbeaa685f52351bf39d82c2639d9616abf64c7709" - sha256 cellar: :any_skip_relocation, arm64_ventura: "90cac45ab4cc0d770e387247ce2dcf339b3d4f3cce11a776dd563548f9d71328" - sha256 cellar: :any_skip_relocation, sonoma: "113bfb129746dc5915972dc222764eaeb653248770544b803ee16bc01ecc7183" - sha256 cellar: :any_skip_relocation, ventura: "0fcbd6a96828290e795535d2ab365b6a674241f64759bfec895157a20c7c68a5" - sha256 cellar: :any_skip_relocation, arm64_linux: "ed4bdcdab3533b4ae2dec135dbcb8330dc84b1938a48e6c5226d9e69fb8b88b5" - sha256 cellar: :any_skip_relocation, x86_64_linux: "e839f9d886fead4ea60d5323f0e6697352e165d77ccc348789cedba1d0408351" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "e641811acf482e4cd0f76c57cec1e8968a32c6414c8d74d41e9b7698eb734882" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "58a7690a0ddde3bdd08e2133ecd7acb8520f4ea167eee99ca5fc463422c9d102" + sha256 cellar: :any_skip_relocation, arm64_ventura: "ba1bea8a0ed65cf00aae5eda54297300a7e836ee393c70bcc2a59208c7a0a8ae" + sha256 cellar: :any_skip_relocation, sonoma: "4cd95e3df06f47b12b6a9b130f867674ddc67354752f18ea01737e2a4cd7e551" + sha256 cellar: :any_skip_relocation, ventura: "899c9d8983d8ef455b2972a5526c71778cdec087779f5be2f24855c3ae7b141f" + sha256 cellar: :any_skip_relocation, arm64_linux: "299eacc13382aaa4024cc12133e3712fa774603c58d9109f36830660077406f3" + sha256 cellar: :any_skip_relocation, x86_64_linux: "62f59c854c5541bd6a891055e6c7fb2e99f159f59b423266a04fc32871a8ea5a" end depends_on "go" => :build From eed3ad147149d44d0f63ae8837a78b5f5852f120 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 11:03:34 +0000 Subject: [PATCH 0934/1364] kubevela: update 1.10.3 bottle. --- Formula/k/kubevela.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/k/kubevela.rb b/Formula/k/kubevela.rb index 5d4c32ce0e33a..b0d8b4d6d7146 100644 --- a/Formula/k/kubevela.rb +++ b/Formula/k/kubevela.rb @@ -8,13 +8,13 @@ class Kubevela < Formula head "https://github.com/kubevela/kubevela.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "7b3b88d32afaeeaebca3c03a5ebc49da7b04a0259a5375b343ec0ad73e5ca01f" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "7b3b88d32afaeeaebca3c03a5ebc49da7b04a0259a5375b343ec0ad73e5ca01f" - sha256 cellar: :any_skip_relocation, arm64_ventura: "7b3b88d32afaeeaebca3c03a5ebc49da7b04a0259a5375b343ec0ad73e5ca01f" - sha256 cellar: :any_skip_relocation, sonoma: "d8d8717a7e204aa7358556879b976bdbad0027927628abca31ebcf1a968351a9" - sha256 cellar: :any_skip_relocation, ventura: "d8d8717a7e204aa7358556879b976bdbad0027927628abca31ebcf1a968351a9" - sha256 cellar: :any_skip_relocation, arm64_linux: "c79ef4542618373b30761469bd35789357339db001bb7a7afe5270e1b44e612d" - sha256 cellar: :any_skip_relocation, x86_64_linux: "480a53c891c435324c6ea1ed103091f4c012653d5171833fd1f26f0c7fb6c4d4" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "0cabadfd79656b59d2eb525d54b4653664062a35f75b0cb4f862d2105d514b26" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "0cabadfd79656b59d2eb525d54b4653664062a35f75b0cb4f862d2105d514b26" + sha256 cellar: :any_skip_relocation, arm64_ventura: "0cabadfd79656b59d2eb525d54b4653664062a35f75b0cb4f862d2105d514b26" + sha256 cellar: :any_skip_relocation, sonoma: "3a22ac50dbab34cb2083bf1e3bc0bc3162d21385eddc3abf9748d0c272ec4392" + sha256 cellar: :any_skip_relocation, ventura: "3a22ac50dbab34cb2083bf1e3bc0bc3162d21385eddc3abf9748d0c272ec4392" + sha256 cellar: :any_skip_relocation, arm64_linux: "b5bacd3f4cdb33aaac5b4bcd1e3478413406f2336a3375f60475dfcd4f848f8f" + sha256 cellar: :any_skip_relocation, x86_64_linux: "2251670c7e47e8fd9c02a25295e7e03c16aa269a151f5f3321e8b16662c3e539" end depends_on "go" => :build From 9ead3bb7e00dcf50d6d1b017099a08a15404a972 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 11:04:07 +0000 Subject: [PATCH 0935/1364] mcpm: update 1.10.0 bottle. --- Formula/m/mcpm.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/m/mcpm.rb b/Formula/m/mcpm.rb index c4ab8fd71d0a9..25011358d6fbc 100644 --- a/Formula/m/mcpm.rb +++ b/Formula/m/mcpm.rb @@ -8,13 +8,13 @@ class Mcpm < Formula license "MIT" bottle do - sha256 cellar: :any, arm64_sequoia: "a2d1b48851c8c5d53a633576144a3c232ba93598b4e0950acc386168ece69f35" - sha256 cellar: :any, arm64_sonoma: "a1a8656c41f4e64b82840dd1937794e698502b22711f2b0c8ae0b1324c7d927d" - sha256 cellar: :any, arm64_ventura: "9620316e14d29ba623d1f3b0d4e8bde669e1a6b32dd03a156f7e0385c95c009a" - sha256 cellar: :any, sonoma: "5dcbb1d28ad74746efbf07b159525723c44dc872b3c0e0716908a23c9739ac7d" - sha256 cellar: :any, ventura: "bb357a039ff5f7f1c403b04606578103caac9dd4f9a67267dae739193b0e874e" - sha256 cellar: :any_skip_relocation, arm64_linux: "08166d02dce45aed09214e3d346832964fc4286fa3f30d07cdea933a7cc4bc06" - sha256 cellar: :any_skip_relocation, x86_64_linux: "c97ef95cafdc146db09cc0ae3462c19f11a3139056c479f16ac03c683a2fb5d9" + sha256 cellar: :any, arm64_sequoia: "7017317d7d5c0e0e009eb22579b4804eeb5def5737ef5b326c57c0b11557f61f" + sha256 cellar: :any, arm64_sonoma: "75ad34c17e51d7d34c178242ffaaa890a4204404f49aa04cbc568f2e53435fc5" + sha256 cellar: :any, arm64_ventura: "5fa222701518b8b669bce7d50963bdcd60f0618e0b7a32e4ed3b40ca673dc074" + sha256 cellar: :any, sonoma: "55833aaf33162c54bdc99f83e9ac273982dab37043610497ec2fb1239f73d13b" + sha256 cellar: :any, ventura: "ec278cc90877e655b554db4056057fd119f271948c14ba52804be7f82aea6367" + sha256 cellar: :any_skip_relocation, arm64_linux: "89f6fb299938ecd97505fac2a260ccbf4b01f2dfbb2e8cbfd5d2b2b02d148bae" + sha256 cellar: :any_skip_relocation, x86_64_linux: "7fc70519f0f577a4fb8630785f2769f7c5be3293a384f466ee565bfa04203180" end depends_on "rust" => :build From 441bf471092f2f8bec71547306e0994b7514eaf9 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 11:04:59 +0000 Subject: [PATCH 0936/1364] kubeconform 0.7.0 --- Formula/k/kubeconform.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/k/kubeconform.rb b/Formula/k/kubeconform.rb index 52962c867bcc6..0905053d570b0 100644 --- a/Formula/k/kubeconform.rb +++ b/Formula/k/kubeconform.rb @@ -1,8 +1,8 @@ class Kubeconform < Formula desc "FAST Kubernetes manifests validator, with support for Custom Resources!" homepage "https://github.com/yannh/kubeconform" - url "https://github.com/yannh/kubeconform/archive/refs/tags/v0.6.7.tar.gz" - sha256 "3d38b9f3f8c75a2ac5917ab2dda0a6a89a581a75ed755aec698e931611979223" + url "https://github.com/yannh/kubeconform/archive/refs/tags/v0.7.0.tar.gz" + sha256 "9cb00e6385346c9de21e8fe318a4ec9854a8c7165d08b10b20ed32e28faef9a8" license "Apache-2.0" head "https://github.com/yannh/kubeconform.git", branch: "master" From 05da8d6c9a89dee6952ed67e73e1b949e92b2448 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 11:05:20 +0000 Subject: [PATCH 0937/1364] infisical: update 0.41.2 bottle. --- Formula/i/infisical.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/i/infisical.rb b/Formula/i/infisical.rb index 3baf9f3f26fb5..57593073e3991 100644 --- a/Formula/i/infisical.rb +++ b/Formula/i/infisical.rb @@ -12,12 +12,12 @@ class Infisical < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "696d15055447f35c057139c50a4cbc85a4f8e5ce7a1868622327d2fa53abf500" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "696d15055447f35c057139c50a4cbc85a4f8e5ce7a1868622327d2fa53abf500" - sha256 cellar: :any_skip_relocation, arm64_ventura: "696d15055447f35c057139c50a4cbc85a4f8e5ce7a1868622327d2fa53abf500" - sha256 cellar: :any_skip_relocation, sonoma: "ec31d005378d98eba8f40dbecbb08c7bd93b66c2d9f81216f92d218d802abb51" - sha256 cellar: :any_skip_relocation, ventura: "ec31d005378d98eba8f40dbecbb08c7bd93b66c2d9f81216f92d218d802abb51" - sha256 cellar: :any_skip_relocation, x86_64_linux: "514d589c40995a332d37481cfbd0eb97b50a97261849e4e2aff1929851ecb499" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "0199f07e2099a2b247298ebca3718479c0fc39d5f8581a203bb65436554d711f" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "0199f07e2099a2b247298ebca3718479c0fc39d5f8581a203bb65436554d711f" + sha256 cellar: :any_skip_relocation, arm64_ventura: "0199f07e2099a2b247298ebca3718479c0fc39d5f8581a203bb65436554d711f" + sha256 cellar: :any_skip_relocation, sonoma: "02b355e3bfebc24b0869a75d78e056f06ae638ec116f9e817e8b063d2a0bfb56" + sha256 cellar: :any_skip_relocation, ventura: "02b355e3bfebc24b0869a75d78e056f06ae638ec116f9e817e8b063d2a0bfb56" + sha256 cellar: :any_skip_relocation, x86_64_linux: "9a73cef48b6a13d7359ff80116d6fa35eae3a7d245e116bdcc317e043fc90c8c" end depends_on "go" => :build From bf8954cf14ff9f598324c333e44a32a2a9f3152f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 11:05:37 +0000 Subject: [PATCH 0938/1364] otterdog: update 1.0.3 bottle. --- Formula/o/otterdog.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/o/otterdog.rb b/Formula/o/otterdog.rb index cda4a38d9f55e..b738c292ee3e0 100644 --- a/Formula/o/otterdog.rb +++ b/Formula/o/otterdog.rb @@ -12,13 +12,13 @@ class Otterdog < Formula no_autobump! because: "'playwright' resource lacks PyPI sdist" bottle do - sha256 cellar: :any, arm64_sequoia: "6e5a0d51086bc97f312850db801d53ee3bdfa0694cf1858b70b64c97d50b5c93" - sha256 cellar: :any, arm64_sonoma: "562b11380da4350b674d80cf4552740ce2a7b6d4832e4113c5001fbdef5d77a5" - sha256 cellar: :any, arm64_ventura: "4f975b1bf9fa6f50b23b22519ea2198b987c5b30a942ed28ac929686e023bf51" - sha256 cellar: :any, sonoma: "2cb0195600ab9150d9720fcbe6a071ee430290b54ad3e8ddd560f0fa7586dc1f" - sha256 cellar: :any, ventura: "95b5783e401c93b07c6bb2032080014b2a12330d2486d0cca138353f52620814" - sha256 cellar: :any_skip_relocation, arm64_linux: "be9a2b863e2485ff27bd080b973a6fc00c9fb287316eb2a6fb6626b5b73e2686" - sha256 cellar: :any_skip_relocation, x86_64_linux: "ba3dd667ba9abffe7577faa9d67bdaff9a76e8baf80a3737696f6d417e0d6e37" + sha256 cellar: :any, arm64_sequoia: "ed7395e48203a66f4a5ecf18bc2a5c4b5b13b300c10e54754e0aeb348e25211d" + sha256 cellar: :any, arm64_sonoma: "24158bb6b2ddad480d9aa42ef20120f03101ea1b4624f1ded975be744426a851" + sha256 cellar: :any, arm64_ventura: "4adf708a2840eb1a3a2e8599d5b406f0aa99ce0b48fa5a895b5fb20f81b378f3" + sha256 cellar: :any, sonoma: "1cf7e6699bd648d4fca206277f02e1f2be8793d4d76097b510513729629215d6" + sha256 cellar: :any, ventura: "43b6ab8c899e3002ad6aba4a068798a164bf2564432748f91e81ba7c650a53fa" + sha256 cellar: :any_skip_relocation, arm64_linux: "c88d60b55b76b2c70a50c75a6d106f7f1e52a10f2da2516f5d69a4fced7869ac" + sha256 cellar: :any_skip_relocation, x86_64_linux: "b309a21685eae5d0a009753d9cd046329d2d0fa25d13842b39df6e31aa9b2d23" end depends_on "rust" => :build From a1cc833693f6924be1d7940aef5b0a6d42e99d14 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 11:07:18 +0000 Subject: [PATCH 0939/1364] lizard-analyzer 1.17.30 --- Formula/l/lizard-analyzer.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/l/lizard-analyzer.rb b/Formula/l/lizard-analyzer.rb index 42228e87332b8..07776cde1107e 100644 --- a/Formula/l/lizard-analyzer.rb +++ b/Formula/l/lizard-analyzer.rb @@ -3,8 +3,8 @@ class LizardAnalyzer < Formula desc "Extensible Cyclomatic Complexity Analyzer" homepage "https://github.com/terryyin/lizard" - url "https://files.pythonhosted.org/packages/3f/c3/14260a583813cdb160eb715b30ae3013f4c107bca6464208b56cb2cce31c/lizard-1.17.29.tar.gz" - sha256 "067eaa90366b7b3db8c3c2b4fb7af29fda8943ac6457d8207d5b9842c7e96b0c" + url "https://files.pythonhosted.org/packages/f0/29/ff8f58e4e495cb31d6826e89b26d9aa411c211f46edb1625a7aa061af609/lizard-1.17.30.tar.gz" + sha256 "fbe1cfadb28402baaf6c858ec1eca1b9e1b62ca9826a16471e2e1045c66c1b77" license "MIT" bottle do From cef5f9ca4b4e5fd0e8d0b267257aab50b2088eb3 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 11:09:27 +0000 Subject: [PATCH 0940/1364] mmctl 10.7.2 --- Formula/m/mmctl.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/m/mmctl.rb b/Formula/m/mmctl.rb index ec0e148ad2460..99f3b1e481e71 100644 --- a/Formula/m/mmctl.rb +++ b/Formula/m/mmctl.rb @@ -1,8 +1,8 @@ class Mmctl < Formula desc "Remote CLI tool for Mattermost server" homepage "https://github.com/mattermost/mattermost" - url "https://github.com/mattermost/mattermost/archive/refs/tags/v10.7.1.tar.gz" - sha256 "3aa9549a007f91ba9687f046e91c38402f0774a2a042117d6b574d99896a93b4" + url "https://github.com/mattermost/mattermost/archive/refs/tags/v10.7.2.tar.gz" + sha256 "7b570a6ed3c94549d758014ba4ada8a09ddeafacc07d4f89240d2bf8bd385bd2" license all_of: ["AGPL-3.0-only", "Apache-2.0"] head "https://github.com/mattermost/mattermost.git", branch: "master" From 55a558e20039213614041b8176b00b1ba8e30de8 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 11:09:41 +0000 Subject: [PATCH 0941/1364] mold 2.39.1 --- Formula/m/mold.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/m/mold.rb b/Formula/m/mold.rb index 6a40090954f00..91ba4bdb804aa 100644 --- a/Formula/m/mold.rb +++ b/Formula/m/mold.rb @@ -1,8 +1,8 @@ class Mold < Formula desc "Modern Linker" homepage "https://github.com/rui314/mold" - url "https://github.com/rui314/mold/archive/refs/tags/v2.39.0.tar.gz" - sha256 "32a0917894b9bc9317ba5d6bdbcad8401513bcdfbbbcfc9de55423c46db8511c" + url "https://github.com/rui314/mold/archive/refs/tags/v2.39.1.tar.gz" + sha256 "231ea3643a14fe5b88478c97b68b31f7c975b57b247a81356ffd889d015b5cc1" license "MIT" head "https://github.com/rui314/mold.git", branch: "main" From 07931c8b2b3d29830f9825d55e2c744833f7944e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 11:11:05 +0000 Subject: [PATCH 0942/1364] nerdlog 1.7.1 --- Formula/n/nerdlog.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/n/nerdlog.rb b/Formula/n/nerdlog.rb index a3a840ff29352..83aa05c766f29 100644 --- a/Formula/n/nerdlog.rb +++ b/Formula/n/nerdlog.rb @@ -1,8 +1,8 @@ class Nerdlog < Formula desc "TUI log viewer with timeline histogram and no central server" homepage "https://dmitryfrank.com/projects/nerdlog/article" - url "https://github.com/dimonomid/nerdlog/archive/refs/tags/v1.7.0.tar.gz" - sha256 "5e203df042081f103222c7f09fc1aac70f6ef5804c34d7c0fc3794eb3f2b2868" + url "https://github.com/dimonomid/nerdlog/archive/refs/tags/v1.7.1.tar.gz" + sha256 "5ad19051b84f2b1dcd569327fb768ea50f622351e223b4bf72f2ecb36b32f0b8" license "BSD-2-Clause" head "https://github.com/dimonomid/nerdlog.git", branch: "master" From 08d02882240380fd9a1a8c9368a773621fa7c1e6 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 11:12:24 +0000 Subject: [PATCH 0943/1364] netatalk: update 4.2.3 bottle. --- Formula/n/netatalk.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/n/netatalk.rb b/Formula/n/netatalk.rb index 3aae1d707629a..ff247944dfa77 100644 --- a/Formula/n/netatalk.rb +++ b/Formula/n/netatalk.rb @@ -17,13 +17,13 @@ class Netatalk < Formula no_autobump! because: :incompatible_version_format bottle do - sha256 arm64_sequoia: "ac81b1b9d7ca8deef169399a06ea00c0301cdeafc21acf8d2ad5e6dad5efd4f2" - sha256 arm64_sonoma: "b6715d6e08404ab7042c91a1df8ce27194ab888d16c73fa3b54753439fd96378" - sha256 arm64_ventura: "d1b59437683448e0ae09a9882586a5170a2d2b3cad753cb004f076c5e126561b" - sha256 sonoma: "387964b07b508bd7b1e45dedd1616d6808e4a056ed42fdefb4bb1b5476cbdf28" - sha256 ventura: "2f4ace16beedba58d3059c532c458713b58b8a61cb564bda65d4c51d503cbd98" - sha256 arm64_linux: "148a9a562c037ac889fb0093679e4120e6e0a327c7f2756b4289456f233989fb" - sha256 x86_64_linux: "cc9daeb30fcc9efc9a520653c186cd8cf6e19c21ed2594ce346ba381df309a88" + sha256 arm64_sequoia: "69e46dedf08d65bed39339feb1f8869e067cbe388dcaf5656dd387f0d9daf4cc" + sha256 arm64_sonoma: "f6955cafb3b273d5206c68b9b0dfb84cc96710a7ee7e88c27b0dbb38a288a53b" + sha256 arm64_ventura: "3fc7701c21ebfae0713083310756a0c44587c652394862905e66d360f39218d2" + sha256 sonoma: "d3fc3a551b589e4447939b2d2a45534c3e34ddb251a70b0b75b599a177b4217d" + sha256 ventura: "a4f38fa00e4d3e5d3a55e2131c0ea2b5962c9c46c2bd2427e38be834c4583ec0" + sha256 arm64_linux: "92aa0794215554271e9a7fbc52db72c474a7a12d2465da5345db5e95726c681c" + sha256 x86_64_linux: "a217b1d01f114b2a69080e4102066b2be1ccf566c203b5bd62f58b9a88ccea9a" end depends_on "cmark-gfm" => :build From 61139e29d9fc4089313bd3e0527a0a8add3d04d7 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 11:12:35 +0000 Subject: [PATCH 0944/1364] openapi-diff 2.1.1 --- Formula/o/openapi-diff.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/o/openapi-diff.rb b/Formula/o/openapi-diff.rb index 333311ccf374a..a8734a250755c 100644 --- a/Formula/o/openapi-diff.rb +++ b/Formula/o/openapi-diff.rb @@ -1,8 +1,8 @@ class OpenapiDiff < Formula desc "Utility for comparing two OpenAPI specifications" homepage "https://github.com/OpenAPITools/openapi-diff" - url "https://github.com/OpenAPITools/openapi-diff/archive/refs/tags/2.1.0.tar.gz" - sha256 "b18d8828d238907c50cfe98c7dfd832974d3654cf5e3fec9c09c5771f0600117" + url "https://github.com/OpenAPITools/openapi-diff/archive/refs/tags/2.1.1.tar.gz" + sha256 "3f1ac2e37d2646bc3b6a19e532a181d60ed43b2f33af6bdc7b1f18b8d51cf265" license "Apache-2.0" bottle do From 1ad732942ebafa1d7742310c36222e98d7eb07c1 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 11:12:43 +0000 Subject: [PATCH 0945/1364] trurl: update 0.16.1 bottle. --- Formula/t/trurl.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/t/trurl.rb b/Formula/t/trurl.rb index aacec74e501bc..18fd73f5af3b4 100644 --- a/Formula/t/trurl.rb +++ b/Formula/t/trurl.rb @@ -7,13 +7,13 @@ class Trurl < Formula head "https://github.com/curl/trurl.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "df26d62384190d1a00053a96ba375a141c425bb2a0f0cada3fc31f85c4168486" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "b58119bdf75c5a16c8fdecc4dfac11b5e0a2c52f98572c4504f3ace89ba0eebe" - sha256 cellar: :any_skip_relocation, arm64_ventura: "03f8e7f616a696ad50626c1ac19fca6c621a938949ddc015f9e5f30a7c3a940e" - sha256 cellar: :any_skip_relocation, sonoma: "f3ea260353a4fedd1c00eed276c199209113fdd4cb45e7765ae86c91072ebd8c" - sha256 cellar: :any_skip_relocation, ventura: "95e22717c9655e8c099e7c71bea14e012ee92374e4cdea6f91790801abe39e3d" - sha256 cellar: :any_skip_relocation, arm64_linux: "77c225dfb01348c5cd528fe01f6fe93c081a91b24225dad218c8372a2a8944c1" - sha256 cellar: :any_skip_relocation, x86_64_linux: "3dee373d99cf5010d37ca908c283018c8ea0265a809c368ccaf8bcd7aae12302" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "2e77852df0afaaf260ec8a9bba1c4b0536866a72c0d6d4070fea5f344aa81070" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "cd620f42f89c0bb12b9db5a1f139a949c8db111752e951f40089c9221c9c2ef3" + sha256 cellar: :any_skip_relocation, arm64_ventura: "fb1195a085b9698e6b1989fe970d8156d75041e1e0b57a035ca198398ca4abae" + sha256 cellar: :any_skip_relocation, sonoma: "f7e5d221285006395dcc352f22faa4f34600b73cc012d3686bce0584c74f703e" + sha256 cellar: :any_skip_relocation, ventura: "76a64a6398d7e7ef61f8140c04a6d777b3248326579aa5a22c0ba276e69ab042" + sha256 cellar: :any_skip_relocation, arm64_linux: "9d50283a36a33f49b589c407d7c5dde5081b4f2aab28f4a499804914d0d247c6" + sha256 cellar: :any_skip_relocation, x86_64_linux: "3cdfb216b12de94af1ec6da70bf70ff6260f5638c8efb552c503082ba86ec230" end uses_from_macos "curl", since: :ventura # uses CURLUE_NO_ZONEID, available since curl 7.81.0 From 57e7a6b8d462c1692de7de512630e7c75d4dd647 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 11:15:07 +0000 Subject: [PATCH 0946/1364] promptfoo 0.112.5 --- Formula/p/promptfoo.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/p/promptfoo.rb b/Formula/p/promptfoo.rb index 42822ee8c8316..d0c75305031da 100644 --- a/Formula/p/promptfoo.rb +++ b/Formula/p/promptfoo.rb @@ -1,8 +1,8 @@ class Promptfoo < Formula desc "Test your LLM app locally" homepage "https://promptfoo.dev/" - url "https://registry.npmjs.org/promptfoo/-/promptfoo-0.112.4.tgz" - sha256 "b5cb767c9d55c31d33e4ab46380a9d69a8228fb5cd1ad896edd819a976b61db9" + url "https://registry.npmjs.org/promptfoo/-/promptfoo-0.112.5.tgz" + sha256 "2a0750c36eca2c53baaa7a72f49a6f9fb7ee37f35b396caca3e34c482937b45b" license "MIT" bottle do From cdc3745bd67a85d34b4123bc965ead3c0272c509 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 11:15:29 +0000 Subject: [PATCH 0947/1364] protolint 0.55.2 --- Formula/p/protolint.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/p/protolint.rb b/Formula/p/protolint.rb index 3549e35034e3f..bb98d4c9a07f7 100644 --- a/Formula/p/protolint.rb +++ b/Formula/p/protolint.rb @@ -1,8 +1,8 @@ class Protolint < Formula desc "Pluggable linter and fixer to enforce Protocol Buffer style and conventions" homepage "https://github.com/yoheimuta/protolint" - url "https://github.com/yoheimuta/protolint/archive/refs/tags/v0.55.1.tar.gz" - sha256 "5d58dc9460dc6e7712a92e154f3d539f3ec5516577e43f4ae44490ee86549276" + url "https://github.com/yoheimuta/protolint/archive/refs/tags/v0.55.2.tar.gz" + sha256 "95130aa86fb21515d29fe4b2d31dcba873f12ac490159b1cad5892363b0df636" license "MIT" head "https://github.com/yoheimuta/protolint.git", branch: "master" From 805a053370bfbab3089680d6efe58a243de3da0b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 11:23:24 +0000 Subject: [PATCH 0948/1364] victoriametrics 1.117.0 --- Formula/v/victoriametrics.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/v/victoriametrics.rb b/Formula/v/victoriametrics.rb index fbe0a589c761a..b50ac3a40c6bd 100644 --- a/Formula/v/victoriametrics.rb +++ b/Formula/v/victoriametrics.rb @@ -1,8 +1,8 @@ class Victoriametrics < Formula desc "Cost-effective and scalable monitoring solution and time series database" homepage "https://victoriametrics.com/" - url "https://github.com/VictoriaMetrics/VictoriaMetrics/archive/refs/tags/v1.116.0.tar.gz" - sha256 "8687894f7dcaec6d25e852c40e1edba9d7e2788774f67e99799933b99af2bd5c" + url "https://github.com/VictoriaMetrics/VictoriaMetrics/archive/refs/tags/v1.117.0.tar.gz" + sha256 "649fe3e1755c7c2b9ded8ac1bfe59d5b01dd6c7950a83d9ea42d89a22f7a31ee" license "Apache-2.0" # There are tags like `pmm-6401-v1.89.1` in the upstream repo. They don't From 7ad9056b5d94877ef63ab310448e0d70653f15b1 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 11:36:44 +0000 Subject: [PATCH 0949/1364] mmctl: update 10.7.2 bottle. --- Formula/m/mmctl.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/m/mmctl.rb b/Formula/m/mmctl.rb index 99f3b1e481e71..5442210e1d2be 100644 --- a/Formula/m/mmctl.rb +++ b/Formula/m/mmctl.rb @@ -12,12 +12,12 @@ class Mmctl < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "208eede62d9e172e27de1dbb4131c0601ec0db27438691968ffb9d0510d523f6" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "208eede62d9e172e27de1dbb4131c0601ec0db27438691968ffb9d0510d523f6" - sha256 cellar: :any_skip_relocation, arm64_ventura: "208eede62d9e172e27de1dbb4131c0601ec0db27438691968ffb9d0510d523f6" - sha256 cellar: :any_skip_relocation, sonoma: "c96ddd2e66a7441f0f1509ad9c945a51841ba728dd7f2adf239b0547c9bce648" - sha256 cellar: :any_skip_relocation, ventura: "c96ddd2e66a7441f0f1509ad9c945a51841ba728dd7f2adf239b0547c9bce648" - sha256 cellar: :any_skip_relocation, x86_64_linux: "6220d5892eb657d803fce0b5dfebe21f6cd6f1b81d9926bacdd6b405e30c263f" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "6ff49964cc573544dbd806fcd736ffca3dca9b1bac4290afd8c4781b46f06169" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "6ff49964cc573544dbd806fcd736ffca3dca9b1bac4290afd8c4781b46f06169" + sha256 cellar: :any_skip_relocation, arm64_ventura: "6ff49964cc573544dbd806fcd736ffca3dca9b1bac4290afd8c4781b46f06169" + sha256 cellar: :any_skip_relocation, sonoma: "f19752a71fc5d4743e5bae14653ac5d5203d943fba1bdd3504cf36a66eff777f" + sha256 cellar: :any_skip_relocation, ventura: "f19752a71fc5d4743e5bae14653ac5d5203d943fba1bdd3504cf36a66eff777f" + sha256 cellar: :any_skip_relocation, x86_64_linux: "932146d69f61e08440d70c6f19c4dcdb749fb821a9b7c86a48844687ed5bed16" end depends_on "go" => :build From 84732e1f2c5df2385ea488953e04e646a0168c1b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 11:37:44 +0000 Subject: [PATCH 0950/1364] lizard-analyzer: update 1.17.30 bottle. --- Formula/l/lizard-analyzer.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/l/lizard-analyzer.rb b/Formula/l/lizard-analyzer.rb index 07776cde1107e..0a1873e6eb629 100644 --- a/Formula/l/lizard-analyzer.rb +++ b/Formula/l/lizard-analyzer.rb @@ -8,7 +8,7 @@ class LizardAnalyzer < Formula license "MIT" bottle do - sha256 cellar: :any_skip_relocation, all: "4b0b1941a1e26373bbceb0e8b045e1c439ad24133099f7a9561949eb4851a1f8" + sha256 cellar: :any_skip_relocation, all: "72d8bd9ef95b63bf0f47784f9bd0117ee6c3b8d57cc5052c71440b69bd08e697" end depends_on "python@3.13" From 12e5080df1f8efa103e1508ad761b0021545e2eb Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 11:37:57 +0000 Subject: [PATCH 0951/1364] kubeconform: update 0.7.0 bottle. --- Formula/k/kubeconform.rb | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/Formula/k/kubeconform.rb b/Formula/k/kubeconform.rb index 0905053d570b0..6a5e503121d18 100644 --- a/Formula/k/kubeconform.rb +++ b/Formula/k/kubeconform.rb @@ -7,13 +7,12 @@ class Kubeconform < Formula head "https://github.com/yannh/kubeconform.git", branch: "master" bottle do - rebuild 1 - sha256 cellar: :any_skip_relocation, arm64_sequoia: "0971d5199510dea4a17e5d81b5dcb9c1cd663b22a6043f3b2ac34ebaf5e0f057" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "0971d5199510dea4a17e5d81b5dcb9c1cd663b22a6043f3b2ac34ebaf5e0f057" - sha256 cellar: :any_skip_relocation, arm64_ventura: "0971d5199510dea4a17e5d81b5dcb9c1cd663b22a6043f3b2ac34ebaf5e0f057" - sha256 cellar: :any_skip_relocation, sonoma: "79a09d5e396be8bf3ac812ed61250b6a5e1354bf887099618669924aa5893355" - sha256 cellar: :any_skip_relocation, ventura: "79a09d5e396be8bf3ac812ed61250b6a5e1354bf887099618669924aa5893355" - sha256 cellar: :any_skip_relocation, x86_64_linux: "e1e7733199b192aaeb2aa7bf21b41afacbf1eed5a26532164ef3a917f7b8feeb" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "daf8891c42d9a174f5b407e5a54ad7a18ec39e1413386738ad44a7f4a0e66257" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "daf8891c42d9a174f5b407e5a54ad7a18ec39e1413386738ad44a7f4a0e66257" + sha256 cellar: :any_skip_relocation, arm64_ventura: "daf8891c42d9a174f5b407e5a54ad7a18ec39e1413386738ad44a7f4a0e66257" + sha256 cellar: :any_skip_relocation, sonoma: "c4a2a5d5b68ca69d05ce2ead6c5e67e282c4a25bd31bee697ff0d8356ad38324" + sha256 cellar: :any_skip_relocation, ventura: "c4a2a5d5b68ca69d05ce2ead6c5e67e282c4a25bd31bee697ff0d8356ad38324" + sha256 cellar: :any_skip_relocation, x86_64_linux: "2b430e93e88f9c3182f8e7a7c511c220e3e469564b4413d600815fc72d336bdb" end depends_on "go" => :build From 9014f08bd6aa817632b42d1113a0a784c0d7da7b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 11:38:26 +0000 Subject: [PATCH 0952/1364] geni: update 1.1.6 bottle. --- Formula/g/geni.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/g/geni.rb b/Formula/g/geni.rb index b22793dd016aa..5366e6b49d746 100644 --- a/Formula/g/geni.rb +++ b/Formula/g/geni.rb @@ -6,13 +6,13 @@ class Geni < Formula license "MIT" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "082c05af650b22d45bcec097033f0c4fa054fb884383fc49b4be244134dcc18c" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "e13e4b53ff54c78adb01cf283a3e92a6605f7586fda1dfe4e107036a5fba91a2" - sha256 cellar: :any_skip_relocation, arm64_ventura: "1213730d2c20c860f627e5f5130755b786fa8d1b83265f0129c5052de823eebb" - sha256 cellar: :any_skip_relocation, sonoma: "5fb33eeefe31ce58446d7554142b41f5bd8700a2f94c2e4295456791ec9cf4db" - sha256 cellar: :any_skip_relocation, ventura: "1bb58b1562f9cf35bfc80fdc39309d1380ffdbe71994de76ca6d953c42dd9d0c" - sha256 cellar: :any_skip_relocation, arm64_linux: "646a041d9e618cdcc1fccd264f8f5af7cae0a62d48596f8fb38680626231b623" - sha256 cellar: :any_skip_relocation, x86_64_linux: "9d4ece2f2a3c3c401ac2854782c7a13499efcfaa82e0d2d519c874e15d1ae1eb" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "6b0c065f87c3ce64671c0f36eedd80e13d56a21c45c61ef755839dc96293531f" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "74820471f17b8a327cc05a8ac0c957444813ccf1be99b20d7b79a19e897851b0" + sha256 cellar: :any_skip_relocation, arm64_ventura: "bc895d5c2c04c5a6ba40767556167c4ebbb1a73a5defb296097ba6cd7c855f32" + sha256 cellar: :any_skip_relocation, sonoma: "c277e5900dfdda32af10c5dd0a2b45422edb08bd1c8c1d6c4eb5cfef0f61200b" + sha256 cellar: :any_skip_relocation, ventura: "7cf01e1ac2484893fe9a0db0b384fdddbd264fe3119863aba9a97f441615fb12" + sha256 cellar: :any_skip_relocation, arm64_linux: "8e1d9d66d8c475c4070f96d8e2dfac2fd2f9876e698464599027f618a65733c3" + sha256 cellar: :any_skip_relocation, x86_64_linux: "902e107b2f2308354e3d97ffe130dcc5489cafee6c538f465bcc20a0677f8a76" end depends_on "rust" => :build From 7eb1260d08b0d6bb7fc9ab440b2dbe1142e0ab7b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 11:38:56 +0000 Subject: [PATCH 0953/1364] bitrise: update 2.31.1 bottle. --- Formula/b/bitrise.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/b/bitrise.rb b/Formula/b/bitrise.rb index 9a273bda09b4c..f6cd6ac68ae52 100644 --- a/Formula/b/bitrise.rb +++ b/Formula/b/bitrise.rb @@ -12,12 +12,12 @@ class Bitrise < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "50018beb0b340d49f8d849f8d75cb0ed99054da3e3a1894fbf88567257ffaf20" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "50018beb0b340d49f8d849f8d75cb0ed99054da3e3a1894fbf88567257ffaf20" - sha256 cellar: :any_skip_relocation, arm64_ventura: "50018beb0b340d49f8d849f8d75cb0ed99054da3e3a1894fbf88567257ffaf20" - sha256 cellar: :any_skip_relocation, sonoma: "a17f73328a63f46f889662ddbe1cfa1593fd7df769b3948443ef6e45f1c0c218" - sha256 cellar: :any_skip_relocation, ventura: "a17f73328a63f46f889662ddbe1cfa1593fd7df769b3948443ef6e45f1c0c218" - sha256 cellar: :any_skip_relocation, x86_64_linux: "c83368471caae826e83dad80585d481a664a7504466c17c93cb5a750a3820de7" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "9887100ba13ac69b18ee55a59c881ba43a867bffac7e2e206f691fec068feb89" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "9887100ba13ac69b18ee55a59c881ba43a867bffac7e2e206f691fec068feb89" + sha256 cellar: :any_skip_relocation, arm64_ventura: "9887100ba13ac69b18ee55a59c881ba43a867bffac7e2e206f691fec068feb89" + sha256 cellar: :any_skip_relocation, sonoma: "357ffa4ae44cf74c35e195723d0f0d5a9bda87f9a9817c40a0ddc5ef703db5e0" + sha256 cellar: :any_skip_relocation, ventura: "357ffa4ae44cf74c35e195723d0f0d5a9bda87f9a9817c40a0ddc5ef703db5e0" + sha256 cellar: :any_skip_relocation, x86_64_linux: "b58bc3456dc50deafb3751b847b68139a2ced6da6d23988f2cd8d26c5a8fa537" end depends_on "go" => :build From dde6ff65013d22c820e2d8553a5f02eb9208da26 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 11:40:20 +0000 Subject: [PATCH 0954/1364] openapi-diff: update 2.1.1 bottle. --- Formula/o/openapi-diff.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/o/openapi-diff.rb b/Formula/o/openapi-diff.rb index a8734a250755c..adbf7672c2d33 100644 --- a/Formula/o/openapi-diff.rb +++ b/Formula/o/openapi-diff.rb @@ -6,7 +6,7 @@ class OpenapiDiff < Formula license "Apache-2.0" bottle do - sha256 cellar: :any_skip_relocation, all: "ceac2d91d59687377e3af32f614e7401d33da6c2f4c36895d695d47954660f0a" + sha256 cellar: :any_skip_relocation, all: "f965cbd0d4205412532a6a9176762fe6d3cea30bf41ae38e54ab139d7a79d7ae" end depends_on "maven" => :build From ea36187945d83b0234687fc242318f0ccca65156 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 11:41:46 +0000 Subject: [PATCH 0955/1364] nerdlog: update 1.7.1 bottle. --- Formula/n/nerdlog.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/n/nerdlog.rb b/Formula/n/nerdlog.rb index 83aa05c766f29..67a7d80d5e734 100644 --- a/Formula/n/nerdlog.rb +++ b/Formula/n/nerdlog.rb @@ -7,12 +7,12 @@ class Nerdlog < Formula head "https://github.com/dimonomid/nerdlog.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "fd80b7316656c42b47eea64444d67a23b8819186d1062c5a291a8c116dc87d6d" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "1e2f2e14bbb04c3db860902a7e5013d0e4af458249892a9a0dcdd7ebd718d3a9" - sha256 cellar: :any_skip_relocation, arm64_ventura: "b12fcc9c5892340359ea53f1e1b3967f20032b2359ff880fe015b06fb0e13205" - sha256 cellar: :any_skip_relocation, sonoma: "354ef158702f5d972d23fe40cc7c605a9b6f95f58acb7721b11187a147ea312a" - sha256 cellar: :any_skip_relocation, ventura: "763e45d4e5d7d878fb53c203382930e2b2b86da8c60c4ca5beddc1a67b98acf8" - sha256 cellar: :any_skip_relocation, x86_64_linux: "41972a9060652b355390ce90d02370aefac6c9bb743c9d61d8800f2a31b5bfae" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "573c041950d6666fdbe164d6fd775b7d45a6e9cd62922c23521449a01fe07a88" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "197be649d3d3103a204af055b52346b403c96cb66adbaac5ca118180d9cb4cd9" + sha256 cellar: :any_skip_relocation, arm64_ventura: "350d578e61d70d51c59c4012d97a82b5b7fb3c92a32c5273ebbcb77d848ff44d" + sha256 cellar: :any_skip_relocation, sonoma: "3d7e91d30a4dfef524e8b703c58b27c637a1627898ced0a99ea3a17c09db2fc8" + sha256 cellar: :any_skip_relocation, ventura: "27877961be3bf724930ee5e290784c51cbb44b0c91b15e15aefdce7b96e8b061" + sha256 cellar: :any_skip_relocation, x86_64_linux: "e189208aa1f427679f57fb768e22094b70d7ae9f1ae92507242299688f61fb09" end depends_on "go" => :build From 89655606b726c921d14c0142b0da2762110cea1b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 11:43:47 +0000 Subject: [PATCH 0956/1364] cyclonedx-python: update 6.1.1 bottle. --- Formula/c/cyclonedx-python.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/cyclonedx-python.rb b/Formula/c/cyclonedx-python.rb index 128fa2aeef0d1..2b27c3efad4aa 100644 --- a/Formula/c/cyclonedx-python.rb +++ b/Formula/c/cyclonedx-python.rb @@ -9,13 +9,13 @@ class CyclonedxPython < Formula head "https://github.com/CycloneDX/cyclonedx-python.git", branch: "main" bottle do - sha256 cellar: :any, arm64_sequoia: "05afe74d69a43a75dcc13b0f74fd799f5437f4bd7f7144f75275edf194e6758f" - sha256 cellar: :any, arm64_sonoma: "fa7b2a8fcd6aee13053f484caf383b1d5eb9f2114cd5e4bcd9a30b63785bdc28" - sha256 cellar: :any, arm64_ventura: "b578457ef6d79d9229631c2810f2acd935d4433b1fa7c9f828ae12b9e9cb76f9" - sha256 cellar: :any, sonoma: "6fd3fbc43a31b54f1c8b01121b0037683178cfe2a17c56020f49c366ca5625ae" - sha256 cellar: :any, ventura: "f95a97bfacc7b6b4315c947dcc721492c145e06714c5368d761fac275ea834c6" - sha256 cellar: :any_skip_relocation, arm64_linux: "1f4a6056781f5a25359a1e8666b62f8c022d380b1b150056ba2d57cfb9d17da8" - sha256 cellar: :any_skip_relocation, x86_64_linux: "52393e7c01534707e5f4fbf6d3ab88def4ba731f57e7b5226e9e2eb246ce603f" + sha256 cellar: :any, arm64_sequoia: "207bc5a3afa9ede34792825e9e5e0804b2d4f5ddcc1ce91df087edd87648c27a" + sha256 cellar: :any, arm64_sonoma: "fe19b0b8809615f6e5a3c318992d326e440b6115fcc6c4922306873f55734b98" + sha256 cellar: :any, arm64_ventura: "c3f219cd7b18cada9994055590c49767f75fc8932fd57d5e312e7f0e7300ab1c" + sha256 cellar: :any, sonoma: "d2e9e72dcc36a618823be8e687379277305c8c8629766dcb61331f9c90b38170" + sha256 cellar: :any, ventura: "ad3569ee277cf642f66a26b6200a72d8c2268675f7f2fab371e13b5a69bf1d61" + sha256 cellar: :any_skip_relocation, arm64_linux: "a0f9f5d14e014409d650d5467c01eb754f30a8f08749de4a9785392a2cfd1fad" + sha256 cellar: :any_skip_relocation, x86_64_linux: "14989decb820fef2e8eb9d59ce44a79b80bc3b9481e8c2b6fd2bdbf4984eb564" end depends_on "rust" => :build # for rpds-py From d68d97147fce6aeca8e1b4b6365caf34d030dba4 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 11:44:40 +0000 Subject: [PATCH 0957/1364] protolint: update 0.55.2 bottle. --- Formula/p/protolint.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/p/protolint.rb b/Formula/p/protolint.rb index bb98d4c9a07f7..e2e13e9e38f3e 100644 --- a/Formula/p/protolint.rb +++ b/Formula/p/protolint.rb @@ -7,12 +7,12 @@ class Protolint < Formula head "https://github.com/yoheimuta/protolint.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "f48da6ff3aa324ab2c175701f5e12c98399421e2265926c696bf41720f462c42" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "f48da6ff3aa324ab2c175701f5e12c98399421e2265926c696bf41720f462c42" - sha256 cellar: :any_skip_relocation, arm64_ventura: "f48da6ff3aa324ab2c175701f5e12c98399421e2265926c696bf41720f462c42" - sha256 cellar: :any_skip_relocation, sonoma: "890c2a21455f3940d838da86993ed3bc8a79c954af28a63efe1295708c1491da" - sha256 cellar: :any_skip_relocation, ventura: "890c2a21455f3940d838da86993ed3bc8a79c954af28a63efe1295708c1491da" - sha256 cellar: :any_skip_relocation, x86_64_linux: "c013b5b485d1b8a8d4c852cb44472b0a8993b754a8a519df7990b2d15f75ae93" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "4e54109fa4b9025a5a3a389e35634b4700308cdcc49b9bc71e45f662b93539d3" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "4e54109fa4b9025a5a3a389e35634b4700308cdcc49b9bc71e45f662b93539d3" + sha256 cellar: :any_skip_relocation, arm64_ventura: "4e54109fa4b9025a5a3a389e35634b4700308cdcc49b9bc71e45f662b93539d3" + sha256 cellar: :any_skip_relocation, sonoma: "5c9d44c414fda494a75012380edc17efa7bac3a496566be709c0fadaa6856b24" + sha256 cellar: :any_skip_relocation, ventura: "5c9d44c414fda494a75012380edc17efa7bac3a496566be709c0fadaa6856b24" + sha256 cellar: :any_skip_relocation, x86_64_linux: "56a84caa14100c3ea73f87f180fb0d4ab8b38a3428fa5794715b1bdf7a6d3663" end depends_on "go" => :build From 08233cb7831ea90e83eace494832f12c6368c14f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 11:44:45 +0000 Subject: [PATCH 0958/1364] mold: update 2.39.1 bottle. --- Formula/m/mold.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/m/mold.rb b/Formula/m/mold.rb index 91ba4bdb804aa..3b52a8b47a41d 100644 --- a/Formula/m/mold.rb +++ b/Formula/m/mold.rb @@ -15,13 +15,13 @@ class Mold < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "10ab852e3dc9f47589bb4e8f734ee20c382e1e8d276d7c55134844ca175d6d8a" - sha256 cellar: :any, arm64_sonoma: "e752be3fa9634ef2c38c936cf08cfa60a5686b25cc756bccd77fe246b4063e20" - sha256 cellar: :any, arm64_ventura: "34fd16594cbcb9eb9cc1a03ae42be22faddb4c80373b347da61de9343c1c5d5e" - sha256 cellar: :any, sonoma: "114dd89def4ce67941c74d0ba22c20198d10e50075d7d2d8fb1b170689e1cac8" - sha256 cellar: :any, ventura: "5dfe6777c1831f2918f18c524db64dc0e2c942a4c48ee83a81c55e1692b85b74" - sha256 cellar: :any_skip_relocation, arm64_linux: "73ab21dcf4e8045013755deb6dc6ddb9ef2b95a4ed1b47bb1d4aab67d6dd729f" - sha256 cellar: :any_skip_relocation, x86_64_linux: "f3f6639e506ff3fca0a926fd47ce801a51bb6c5a6c12690500d83b5e9c002d0c" + sha256 cellar: :any, arm64_sequoia: "10c8ed21ca271d1ddf4733a41443a86856b3f61778a7cbc182632fdb2e0b05e4" + sha256 cellar: :any, arm64_sonoma: "5b88ab281021a1d4e65bc4e0dffc13f521c26bdd14751e2a0558758da81757ea" + sha256 cellar: :any, arm64_ventura: "2fa9d9fc9d7f72c2836752dae3d206c7e36795ba6bc8ea572ece5a8718132d58" + sha256 cellar: :any, sonoma: "0abea8cf2462b287ee6380d24f26c1656bf7b77c8260cd483b66b21a30c5f0df" + sha256 cellar: :any, ventura: "bb7ddfaaf0813f53304ec0dd9e2048ca336f3811601259c05904223895907896" + sha256 cellar: :any_skip_relocation, arm64_linux: "fe568aa6e726ed08a082f2fc79149d57aa8fcd200287e2cb2fbe83373a19e320" + sha256 cellar: :any_skip_relocation, x86_64_linux: "570db503c502e9da521834d7dfe10eccd97efe7472dfd46f71494b87c1c2dbd2" end depends_on "cmake" => :build From 255a12042a45910bdc9ea0c18a9700508b6c4524 Mon Sep 17 00:00:00 2001 From: Mish <10400064+mishushakov@users.noreply.github.com> Date: Mon, 12 May 2025 13:47:41 +0200 Subject: [PATCH 0959/1364] e2b 1.3.4 (new formula) --- Formula/e/e2b.rb | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Formula/e/e2b.rb diff --git a/Formula/e/e2b.rb b/Formula/e/e2b.rb new file mode 100644 index 0000000000000..07410f10f7684 --- /dev/null +++ b/Formula/e/e2b.rb @@ -0,0 +1,19 @@ +class E2b < Formula + desc "CLI to manage E2B sandboxes and templates" + homepage "https://e2b.dev" + url "https://registry.npmjs.org/@e2b/cli/-/cli-1.3.4.tgz" + sha256 "ce969bfe26cb27a8c2bfdcc1391ab80d734a8706a339aa2a0f840080564472f6" + license "Apache-2.0" + + depends_on "node" + + def install + system "npm", "install", *std_npm_args + bin.install_symlink Dir["#{libexec}/bin/*"] + end + + test do + assert_match version.to_s, shell_output("#{bin}/e2b --version") + assert_match "Not logged in", shell_output("#{bin}/e2b auth info") + end +end From 298a4e73daa151055c6c4b7bd9c8cb1ed22bf5b3 Mon Sep 17 00:00:00 2001 From: bevanjkay Date: Mon, 12 May 2025 21:54:00 +1000 Subject: [PATCH 0960/1364] atuin 18.6.1 --- Formula/a/atuin.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/a/atuin.rb b/Formula/a/atuin.rb index 469e7188acb6a..38c6bd5259bec 100644 --- a/Formula/a/atuin.rb +++ b/Formula/a/atuin.rb @@ -1,8 +1,8 @@ class Atuin < Formula desc "Improved shell history for zsh, bash, fish and nushell" homepage "https://atuin.sh/" - url "https://github.com/atuinsh/atuin/archive/refs/tags/18.6.0.tar.gz" - sha256 "a79cdcce09d2910e64c86e1f57d58a2214a76031df46782860187835c11fc99e" + url "https://github.com/atuinsh/atuin/archive/refs/tags/v18.6.1.tar.gz" + sha256 "aba26698471ef7ad2757416d01fcc327d3bd800c58cc3fcae638e625524e1b40" license "MIT" bottle do From 7b3797ac098173f94960796863b04f904017343b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 08:17:28 +0000 Subject: [PATCH 0961/1364] nzbget 25.0 --- Formula/n/nzbget.rb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Formula/n/nzbget.rb b/Formula/n/nzbget.rb index 96c60775eef7f..d0442cb3e2fac 100644 --- a/Formula/n/nzbget.rb +++ b/Formula/n/nzbget.rb @@ -1,10 +1,9 @@ class Nzbget < Formula desc "Binary newsgrabber for nzb files" homepage "https://nzbget.com" - url "https://github.com/nzbgetcom/nzbget/archive/refs/tags/v24.8.tar.gz" - sha256 "8d67af6c0aab025ca3da2f701ef62ce9c14a1cedc2e55600fd7e872ef60c0fdf" + url "https://github.com/nzbgetcom/nzbget/archive/refs/tags/v25.0.tar.gz" + sha256 "104ebd7b0abed02ae11e968073063df27b0b39d4b62170e5785103a9a10d9999" license "GPL-2.0-or-later" - revision 1 head "https://github.com/nzbgetcom/nzbget.git", branch: "develop" bottle do From 6e20f9b155529b1a4f46ba0801e450c9e08b4ec1 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 02:44:10 +0000 Subject: [PATCH 0962/1364] libsais 2.10.1 --- Formula/lib/libsais.rb | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Formula/lib/libsais.rb b/Formula/lib/libsais.rb index 748bd239885c7..482e283e3c6cf 100644 --- a/Formula/lib/libsais.rb +++ b/Formula/lib/libsais.rb @@ -1,8 +1,8 @@ class Libsais < Formula desc "Fast linear time suffix array, lcp array and bwt construction" homepage "https://github.com/IlyaGrebnov/libsais" - url "https://github.com/IlyaGrebnov/libsais/archive/refs/tags/v2.10.0.tar.gz" - sha256 "25c80c99945d7148b61ee4108dbda77e3dda605619ebfc7b880fd074af212b50" + url "https://github.com/IlyaGrebnov/libsais/archive/refs/tags/v2.10.1.tar.gz" + sha256 "ecf4611c18fefd8d4377343e4dc3f257ae17a501301a13f7cb7585c836405d39" license "Apache-2.0" head "https://github.com/IlyaGrebnov/libsais.git", branch: "master" @@ -23,8 +23,7 @@ def install "-DLIBSAIS_BUILD_SHARED_LIB=ON", *std_cmake_args system "cmake", "--build", "build" - lib.install shared_library("build/liblibsais") - lib.install_symlink shared_library("liblibsais") => shared_library("libsais") + lib.install shared_library("build/libsais") include.install "include/libsais.h" end From 270f5ff696c7ba3332953971ce8ab91fdf13abfa Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 12:06:28 +0000 Subject: [PATCH 0963/1364] e2b: add 1.3.4 bottle. --- Formula/e/e2b.rb | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Formula/e/e2b.rb b/Formula/e/e2b.rb index 07410f10f7684..36b2fe0f6fbee 100644 --- a/Formula/e/e2b.rb +++ b/Formula/e/e2b.rb @@ -5,6 +5,15 @@ class E2b < Formula sha256 "ce969bfe26cb27a8c2bfdcc1391ab80d734a8706a339aa2a0f840080564472f6" license "Apache-2.0" + bottle do + sha256 cellar: :any_skip_relocation, arm64_sequoia: "4d0b533b12488e56a9dfdeee3da7e4615f02dd4395d707bde7b59fb4e8d1299f" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "4d0b533b12488e56a9dfdeee3da7e4615f02dd4395d707bde7b59fb4e8d1299f" + sha256 cellar: :any_skip_relocation, arm64_ventura: "4d0b533b12488e56a9dfdeee3da7e4615f02dd4395d707bde7b59fb4e8d1299f" + sha256 cellar: :any_skip_relocation, sonoma: "fbf5e66ea9b8839c89dfaf5d50a8eb6d4e415661e0369c3d3eaaf9c7efeaf401" + sha256 cellar: :any_skip_relocation, ventura: "fbf5e66ea9b8839c89dfaf5d50a8eb6d4e415661e0369c3d3eaaf9c7efeaf401" + sha256 cellar: :any_skip_relocation, x86_64_linux: "4d0b533b12488e56a9dfdeee3da7e4615f02dd4395d707bde7b59fb4e8d1299f" + end + depends_on "node" def install From 8a1784445956ba193c0eff9e2b6601a65e0c7fa7 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 12:09:01 +0000 Subject: [PATCH 0964/1364] promptfoo: update 0.112.5 bottle. --- Formula/p/promptfoo.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/p/promptfoo.rb b/Formula/p/promptfoo.rb index d0c75305031da..c1af0727689d2 100644 --- a/Formula/p/promptfoo.rb +++ b/Formula/p/promptfoo.rb @@ -6,13 +6,13 @@ class Promptfoo < Formula license "MIT" bottle do - sha256 cellar: :any, arm64_sequoia: "c5973f79a221c378423268dfcd1651b197dda077b0f8f70ca85e0f1512baf7e8" - sha256 cellar: :any, arm64_sonoma: "8cb52501c748772db15845372dad9645f1e32bb1a44b794ebe587dbede8f78f4" - sha256 cellar: :any, arm64_ventura: "8d6479e3ac3cd82daa345d607ec2b766e92d9783114cb27bfef429830bc1dcca" - sha256 sonoma: "61b2bdbf4aab3252938d3b0a3c9e10e984bfac89c577dad2da67a3541747601c" - sha256 ventura: "e43851e22564d6346b3eefd28a3c4467de7cefa565963a00919f7488c23827e4" - sha256 cellar: :any_skip_relocation, arm64_linux: "be7d4fa9f4b581aeaaa39ac517e425edc85613149f36cf108bcb75270e6ef580" - sha256 cellar: :any_skip_relocation, x86_64_linux: "0413776a9edb9482fd4ddd807304e86518263831be22f618f4a463320cf52b8a" + sha256 cellar: :any, arm64_sequoia: "386a418779fd9a7b0c0364a596f7d71553fa9877a3c8b57656ce4e12497ca9ad" + sha256 cellar: :any, arm64_sonoma: "2c1206ab5509d970fbc06c0d823dccb0a5ca9e2febf3bf4ef433917db1632b9d" + sha256 cellar: :any, arm64_ventura: "f97f0cc9a73412db091f76372158c8c8dc249e5d263be3114e09eb5f7e1b79b6" + sha256 sonoma: "396f0e0fcc95120b19f446f074b77eee00a530283eba9607015dd0fb58a2c305" + sha256 ventura: "4f055ccf55c7efe3078bb3c24e78da4e2b7c12a5802f42db0bf231894c925d26" + sha256 cellar: :any_skip_relocation, arm64_linux: "614aa9b4222df4f5d97009d341e50f19595c82ad75419173393c94f08ecc4c94" + sha256 cellar: :any_skip_relocation, x86_64_linux: "4a9bbf8cfabfce550e8e55270670e31d5d8b9cbc91bd630b29188c1c0dddd626" end depends_on "node" From 925c79c02ae1d0ad5515da10567ca6ab33fc323a Mon Sep 17 00:00:00 2001 From: Daeho Ro Date: Mon, 12 May 2025 21:13:51 +0900 Subject: [PATCH 0965/1364] chapel: revision bump (hwloc 2.12.1) --- Formula/c/chapel.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/c/chapel.rb b/Formula/c/chapel.rb index a6a49824d4322..1de9e29bf2b43 100644 --- a/Formula/c/chapel.rb +++ b/Formula/c/chapel.rb @@ -6,7 +6,7 @@ class Chapel < Formula url "https://github.com/chapel-lang/chapel/releases/download/2.4.0/chapel-2.4.0.tar.gz" sha256 "a51a472488290df12d1657db2e7118ab519743094f33650f910d92b54c56f315" license "Apache-2.0" - revision 1 + revision 2 head "https://github.com/chapel-lang/chapel.git", branch: "main" bottle do From d47f91fc0a3a5b51eb0fc760e5d5fe90b3bb002f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 12:32:34 +0000 Subject: [PATCH 0966/1364] atuin: update 18.6.1 bottle. --- Formula/a/atuin.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/a/atuin.rb b/Formula/a/atuin.rb index 38c6bd5259bec..83da6499ac61d 100644 --- a/Formula/a/atuin.rb +++ b/Formula/a/atuin.rb @@ -6,13 +6,13 @@ class Atuin < Formula license "MIT" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "09e749e3348b80a6ac5bb0a1e67fba54b02b17e7f362a6a3743e34d01cb18e50" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "d77a0cbd93ef538aaeb82138cad91189e93cbf67f868c6279ee5101574311e64" - sha256 cellar: :any_skip_relocation, arm64_ventura: "5db9cc60dbd87c49e0930b6cd679028a0185a3c80445534cf10fe239ba65884f" - sha256 cellar: :any_skip_relocation, sonoma: "12b626af1ec661f36df37eb7710a07a7fad470a5c13941d6beabcceb89ba6a5e" - sha256 cellar: :any_skip_relocation, ventura: "6b05183b1153f7b582385d80c6ac861aadfa48c820a7eeb6722c7a100dad0521" - sha256 cellar: :any_skip_relocation, arm64_linux: "987ad3b247eef6fe9dc4030165d27bc366fc796c97555d13a5ad79039767a7b4" - sha256 cellar: :any_skip_relocation, x86_64_linux: "509d36e50161e9d9666e83b0dbce0ec1650b4ee07e6bf7c625447f43619455d0" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "0d5178502a1427a080827cf3b18c724afa3151658910e4596b33bb425789ce21" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "48b16b97bed2dea1fdda46ce7416e2ada8af0fd6044a4911bbb46457f936fab0" + sha256 cellar: :any_skip_relocation, arm64_ventura: "e4d6d6af87adbf1ff6120766e30fdd4992dea765a7109f3d4ae83e9376e538bb" + sha256 cellar: :any_skip_relocation, sonoma: "5c77f1e90366dd27311260f015f5d28f03e73a4be2d3401b20c77d489f5c9bf9" + sha256 cellar: :any_skip_relocation, ventura: "0d03abd8e58b7903113101ae29229d7b0537329519811034fd50f9e2c4fbfd94" + sha256 cellar: :any_skip_relocation, arm64_linux: "fcec8d144f1c8570dfe3f4625988f355292f440efc5dd3fcbdcd4c5335db282b" + sha256 cellar: :any_skip_relocation, x86_64_linux: "566e883860b1640f49f8cf6e642d2cd80611dcba9c6ac2821cc09a219139b73c" end depends_on "protobuf" => :build From f817a36758ec4a4d979e8c9c6ff011932c661eaa Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 12:33:14 +0000 Subject: [PATCH 0967/1364] victoriametrics: update 1.117.0 bottle. --- Formula/v/victoriametrics.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/v/victoriametrics.rb b/Formula/v/victoriametrics.rb index b50ac3a40c6bd..31aafaa905d05 100644 --- a/Formula/v/victoriametrics.rb +++ b/Formula/v/victoriametrics.rb @@ -14,13 +14,13 @@ class Victoriametrics < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "2862dacb5f433be0a8f66aa30383872ecbe3dc78a95c8ca4c40059fcd12c11df" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "ac9cd08ea7c864c1751f9277b897867e36f28b8326b9db40359e0e75a83498a5" - sha256 cellar: :any_skip_relocation, arm64_ventura: "a2bb8eaa3a3da7088afbba8d345859a0c4dc5545f5b5f2c42ceda5b00fb9bd51" - sha256 cellar: :any_skip_relocation, sonoma: "e71c8d2faa7986793d389995a6129ff758c0b08c12c7a265e8ad525f23b16f4d" - sha256 cellar: :any_skip_relocation, ventura: "a50312a488f6e996337e3b54fdf2c1a2b780c14ce8d8e4172380e2f968f73ed4" - sha256 cellar: :any_skip_relocation, arm64_linux: "0b25de8e3e583219f0b4e669ed86a3fe78511eb70e38c74def1a70584d1cf740" - sha256 cellar: :any_skip_relocation, x86_64_linux: "9d6edd13b43a6d1f91b17da0e42217f3e5d1c4f93a3743773c86dbc917be680d" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "253f54a0b3a7983fa50014877521a2f641eaab88f544d429820475b2bf0e17bc" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "68c51dbcc7969bb4ba80c67faa61927cce4d0d7422e5f16c9fd97548ff34abb7" + sha256 cellar: :any_skip_relocation, arm64_ventura: "14b7d847423cab7fcd87dbc4b96e30b5b0f1e4b54fe4f7e200c31085fc6b548d" + sha256 cellar: :any_skip_relocation, sonoma: "11ebaec143cc688b17beeb9133e11ded07b5c28474bd18fb7981afa4347e2cd6" + sha256 cellar: :any_skip_relocation, ventura: "bc1ba4f25d01c7d6c8b3b38e6d98e7972a07eb502b0f8e30630d24ffe760c019" + sha256 cellar: :any_skip_relocation, arm64_linux: "0b76b29525a4dee4fbd78e1c1b49e1dd6b2888dba8c0c4cb436a8ed18661f342" + sha256 cellar: :any_skip_relocation, x86_64_linux: "17d219451b1f5969c6c68bb82847e7449400d8a87489f25e5805ab10f7fc7b6d" end depends_on "go" => :build From 5668cb44af9344f0f44f8150fcf71d0e19e6cb50 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 13:55:48 +0000 Subject: [PATCH 0968/1364] cubejs-cli 1.3.13 --- Formula/c/cubejs-cli.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/cubejs-cli.rb b/Formula/c/cubejs-cli.rb index 997fc79af4888..2088d7809e238 100644 --- a/Formula/c/cubejs-cli.rb +++ b/Formula/c/cubejs-cli.rb @@ -1,8 +1,8 @@ class CubejsCli < Formula desc "Cube.js command-line interface" homepage "https://cube.dev/" - url "https://registry.npmjs.org/cubejs-cli/-/cubejs-cli-1.3.12.tgz" - sha256 "68edb800176fd15f610d73a69473a803cd599dff49ee29a637d5dccdb1fcb4f1" + url "https://registry.npmjs.org/cubejs-cli/-/cubejs-cli-1.3.13.tgz" + sha256 "f3b80ef03b02cee4dcba2a872a99a0b875d2a353dbbda395f2aefdcd9043dd44" license "Apache-2.0" bottle do From 72ecf2938ace68658f8a9cebfd34e8ea8ffb1878 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 14:02:28 +0000 Subject: [PATCH 0969/1364] hugo 0.147.3 --- Formula/h/hugo.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/h/hugo.rb b/Formula/h/hugo.rb index 366f256180a25..de700e6686f45 100644 --- a/Formula/h/hugo.rb +++ b/Formula/h/hugo.rb @@ -1,8 +1,8 @@ class Hugo < Formula desc "Configurable static site generator" homepage "https://gohugo.io/" - url "https://github.com/gohugoio/hugo/archive/refs/tags/v0.147.2.tar.gz" - sha256 "c7e042fc9c4c3f3b7bfbc672540b01d5abe42499f600f16e31e7d61065213dc6" + url "https://github.com/gohugoio/hugo/archive/refs/tags/v0.147.3.tar.gz" + sha256 "cc37a9ecec5f8065d1854916c317015fb2b6e8ecc391db5a04adfc3818599152" license "Apache-2.0" head "https://github.com/gohugoio/hugo.git", branch: "master" From 867b92dc6e5f9ef195656eddca679ad897d7b67b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 14:02:55 +0000 Subject: [PATCH 0970/1364] imposm3 0.14.2 --- Formula/i/imposm3.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/i/imposm3.rb b/Formula/i/imposm3.rb index b379b44dd687c..ab3f2f9aaf348 100644 --- a/Formula/i/imposm3.rb +++ b/Formula/i/imposm3.rb @@ -1,8 +1,8 @@ class Imposm3 < Formula desc "Imports OpenStreetMap data into PostgreSQL/PostGIS databases" homepage "https://imposm.org/docs/imposm3/latest/" - url "https://github.com/omniscale/imposm3/archive/refs/tags/v0.14.1.tar.gz" - sha256 "aec2a5e95929891afa5cb68cfa9f6b1bf326c949a002d36f3171ed194f99fc0a" + url "https://github.com/omniscale/imposm3/archive/refs/tags/v0.14.2.tar.gz" + sha256 "dc779a274a7ec7e86ffdb97c881b6410f82a6d21924d08b9ed0785d2cf266113" license "Apache-2.0" head "https://github.com/omniscale/imposm3.git", branch: "master" From 69a7accf859864ec01b53734057ed66c2ef26201 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 14:07:10 +0000 Subject: [PATCH 0971/1364] lla 0.3.11 --- Formula/l/lla.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/l/lla.rb b/Formula/l/lla.rb index a35230564509a..93694a2455498 100644 --- a/Formula/l/lla.rb +++ b/Formula/l/lla.rb @@ -1,8 +1,8 @@ class Lla < Formula desc "High-performance, extensible alternative to ls" homepage "https://github.com/triyanox/lla" - url "https://github.com/triyanox/lla/archive/refs/tags/v0.3.10.tar.gz" - sha256 "360a0ab6134eea58d46a762b6697d5f8fa423904beb26119fa7866b2668b34e4" + url "https://github.com/triyanox/lla/archive/refs/tags/v0.3.11.tar.gz" + sha256 "dde64fa4acd90f4ae86ed485576cdfe42aab0de2cb674c88712e471968f8ae0a" license "MIT" bottle do From 239314f5df2a20fa60787a5eedc0134f79d2016b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 14:09:53 +0000 Subject: [PATCH 0972/1364] nerdctl 2.1.1 --- Formula/n/nerdctl.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/n/nerdctl.rb b/Formula/n/nerdctl.rb index 0e699574f9cb3..fdd2b40e76062 100644 --- a/Formula/n/nerdctl.rb +++ b/Formula/n/nerdctl.rb @@ -1,8 +1,8 @@ class Nerdctl < Formula desc "ContaiNERD CTL - Docker-compatible CLI for containerd" homepage "https://github.com/containerd/nerdctl" - url "https://github.com/containerd/nerdctl/archive/refs/tags/v2.0.5.tar.gz" - sha256 "ad09ac253a46ce5bed1f9979f5a438dcf0b4b54e26f3c3e3134aa4c868db2362" + url "https://github.com/containerd/nerdctl/archive/refs/tags/v2.1.1.tar.gz" + sha256 "fb8dbdc8954aaf9dbf05396f51289a094a4927e385cc974bc410ecc3fcf16d03" license "Apache-2.0" head "https://github.com/containerd/nerdctl.git", branch: "master" From 7eec7467d6dd6964a3aadba8fa9ae8143df835ed Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 14:13:00 +0000 Subject: [PATCH 0973/1364] pinact 3.1.1 --- Formula/p/pinact.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/p/pinact.rb b/Formula/p/pinact.rb index 69905f7281faf..af57ad4484b79 100644 --- a/Formula/p/pinact.rb +++ b/Formula/p/pinact.rb @@ -1,8 +1,8 @@ class Pinact < Formula desc "Pins GitHub Actions to full hashes and versions" homepage "https://github.com/suzuki-shunsuke/pinact" - url "https://github.com/suzuki-shunsuke/pinact/archive/refs/tags/v3.1.0.tar.gz" - sha256 "e2a892491e94d38b2906d73f54136833831b5ee8a32914c14444ec7876522590" + url "https://github.com/suzuki-shunsuke/pinact/archive/refs/tags/v3.1.1.tar.gz" + sha256 "9988045463cb1769253fe04ed40754c7cee9b267dfd7e381c6c887752d002d45" license "MIT" head "https://github.com/suzuki-shunsuke/pinact.git", branch: "main" From fa38dafc37df373523f94cca0e92ac9e0b79b4a2 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 14:23:36 +0000 Subject: [PATCH 0974/1364] x-cmd 0.5.12 --- Formula/x/x-cmd.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/x/x-cmd.rb b/Formula/x/x-cmd.rb index dcec3bd57ceaa..276463fa17cbd 100644 --- a/Formula/x/x-cmd.rb +++ b/Formula/x/x-cmd.rb @@ -1,8 +1,8 @@ class XCmd < Formula desc "Bootstrap 1000+ command-line tools in seconds" homepage "https://x-cmd.com" - url "https://github.com/x-cmd/x-cmd/archive/refs/tags/v0.5.10.tar.gz" - sha256 "5142bc8572200191ed1698ee0678dcc87f97190ed435c44345aaa9ad6342b969" + url "https://github.com/x-cmd/x-cmd/archive/refs/tags/v0.5.12.tar.gz" + sha256 "40f75142d4e10c1940f5a12e49414ad18034967898f2b7a5a702c0cc8271059e" license all_of: ["AGPL-3.0-only", "MIT", "BSD-3-Clause"] head "https://github.com/x-cmd/x-cmd.git", branch: "X" From d3ab2715d8e3c511e60f9e4fe9b114acac022be9 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 14:53:20 +0000 Subject: [PATCH 0975/1364] nerdctl: update 2.1.1 bottle. --- Formula/n/nerdctl.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/n/nerdctl.rb b/Formula/n/nerdctl.rb index fdd2b40e76062..7de9b4e8876ed 100644 --- a/Formula/n/nerdctl.rb +++ b/Formula/n/nerdctl.rb @@ -7,8 +7,8 @@ class Nerdctl < Formula head "https://github.com/containerd/nerdctl.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_linux: "27bfda606cac4b6fedafb9536a03c65290ad9bc587539bc5eb4d4871b9681a8e" - sha256 cellar: :any_skip_relocation, x86_64_linux: "5bc576ff83ed99a20bad00eb5c588a5096883678bfbfd30435ce3c13428c3650" + sha256 cellar: :any_skip_relocation, arm64_linux: "4649f0d0c5202c2657ab8b083e9ef443715d38df2a54332c86ca93e07c61ee4c" + sha256 cellar: :any_skip_relocation, x86_64_linux: "1b7f4da0cf2057b8bebff9826b5a55ca9ced45f3e36fb73f93e1b2bee468b339" end depends_on "go" => :build From 8da34793ae72dbd3b5bd0d95f4290bda142e0530 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 14:53:42 +0000 Subject: [PATCH 0976/1364] cubejs-cli: update 1.3.13 bottle. --- Formula/c/cubejs-cli.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/cubejs-cli.rb b/Formula/c/cubejs-cli.rb index 2088d7809e238..43d8875e4c73a 100644 --- a/Formula/c/cubejs-cli.rb +++ b/Formula/c/cubejs-cli.rb @@ -6,13 +6,13 @@ class CubejsCli < Formula license "Apache-2.0" bottle do - sha256 cellar: :any, arm64_sequoia: "4c2ef2e8fe58f1e9196f333e499f3612d7805cd385c9e3437ac30ff2d634e87b" - sha256 cellar: :any, arm64_sonoma: "4c2ef2e8fe58f1e9196f333e499f3612d7805cd385c9e3437ac30ff2d634e87b" - sha256 cellar: :any, arm64_ventura: "4c2ef2e8fe58f1e9196f333e499f3612d7805cd385c9e3437ac30ff2d634e87b" - sha256 cellar: :any, sonoma: "3626ae92b4c29f47a93bad21ad0b1b72a8ed845a87cb5a65903e742cc64dfeec" - sha256 cellar: :any, ventura: "3626ae92b4c29f47a93bad21ad0b1b72a8ed845a87cb5a65903e742cc64dfeec" - sha256 cellar: :any_skip_relocation, arm64_linux: "78316ba73442ccf50afdd044aa4c69048a1346acccca432e71180999b665f5bb" - sha256 cellar: :any_skip_relocation, x86_64_linux: "6af1cd4592408e4d66119119cccdf57ed29cfc8af9406310645ea95b702ba96d" + sha256 cellar: :any, arm64_sequoia: "5dd61cef702e4739892ea7d87162a9059b954ef86bb8b25bcfc511a2cff40548" + sha256 cellar: :any, arm64_sonoma: "5dd61cef702e4739892ea7d87162a9059b954ef86bb8b25bcfc511a2cff40548" + sha256 cellar: :any, arm64_ventura: "5dd61cef702e4739892ea7d87162a9059b954ef86bb8b25bcfc511a2cff40548" + sha256 cellar: :any, sonoma: "f12169380cd36f25962bc0d765e416dbbaa33d5764d9d0003d8e797a8dd62740" + sha256 cellar: :any, ventura: "f12169380cd36f25962bc0d765e416dbbaa33d5764d9d0003d8e797a8dd62740" + sha256 cellar: :any_skip_relocation, arm64_linux: "cf3ad2eeb50e3013ab148a105aa227a1d9eb0296d79021a4dae5f902e4fbdf19" + sha256 cellar: :any_skip_relocation, x86_64_linux: "263f4a7e7b7b0f05dd642d05117df21d14e445151372ca0c56da28d271730d57" end depends_on "node" From 93b9b352b778fd5f828832a7056343e974e3cf6e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 14:54:31 +0000 Subject: [PATCH 0977/1364] hugo: update 0.147.3 bottle. --- Formula/h/hugo.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/h/hugo.rb b/Formula/h/hugo.rb index de700e6686f45..e49fb55a91777 100644 --- a/Formula/h/hugo.rb +++ b/Formula/h/hugo.rb @@ -12,13 +12,13 @@ class Hugo < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "2372f84528995381e088869770535fb0d7b213bc9c6c6cc757ebba9f7f247179" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "a94117a30023c6b19aeea043f691daa30a02a83ade753c17d8abead8ca2f6ad2" - sha256 cellar: :any_skip_relocation, arm64_ventura: "6b927ec1f3ec55121ae76038b76aa19f4c6ed3b067a9978598f77cc48e8d5f1d" - sha256 cellar: :any_skip_relocation, sonoma: "f2925d2381fa9b5a22797345003363e384a63f77cbce8f1eb8e34ab523fd4f5d" - sha256 cellar: :any_skip_relocation, ventura: "95c975e6b6740b10e72d3f55c83721f112d0678164a0f4b7abf91870a2577af2" - sha256 cellar: :any_skip_relocation, arm64_linux: "50673376e63f27e2a933725e2f9c2a4b58a5a0db44212715e901cc5e9e96bfc1" - sha256 cellar: :any_skip_relocation, x86_64_linux: "3ee277b556cbcbd5f0153672da7f569c57e2f21884b7e6049a9779eb27a94885" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "1ab459e598537ae4077bce74b71ffffb5c7f64b6be37e9ee3c8b0d8e6a1fe018" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "946d48a188fa8026de41d70425a8a39149977f7eb4e41d0e686fe620203f6cd2" + sha256 cellar: :any_skip_relocation, arm64_ventura: "c83e32196b6df599d716431c6d792ca2b4b0e418ae5e3f95c2d2dbfb9fc1e29c" + sha256 cellar: :any_skip_relocation, sonoma: "34db8d7ad65a226b9d55ab39e9138c41b8f7bc5bb1b848cd8efe9d7c14c2f6d7" + sha256 cellar: :any_skip_relocation, ventura: "e17d359b4b41510464032414e6db3c2c9cdf38a7f63bbb7636aa00d2252844f5" + sha256 cellar: :any_skip_relocation, arm64_linux: "e6fc0644dcaeae92b974ab07a2cb54a2a5a47b47c253a8a2a657446d619995bf" + sha256 cellar: :any_skip_relocation, x86_64_linux: "c1ad002d74b49aa51be3801e8deca7686d0bae361104e0463709bfd4c585c4e4" end depends_on "go" => :build From d8a6ddc6d387eab9fa1458ccf6a1ec389f2372c1 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 14:54:50 +0000 Subject: [PATCH 0978/1364] imposm3: update 0.14.2 bottle. --- Formula/i/imposm3.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/i/imposm3.rb b/Formula/i/imposm3.rb index ab3f2f9aaf348..91404da67d831 100644 --- a/Formula/i/imposm3.rb +++ b/Formula/i/imposm3.rb @@ -7,13 +7,13 @@ class Imposm3 < Formula head "https://github.com/omniscale/imposm3.git", branch: "master" bottle do - sha256 cellar: :any, arm64_sequoia: "0b981fc39b89a99f0d613371f665d06c0ef397a0d669b175e4df290a2b641e28" - sha256 cellar: :any, arm64_sonoma: "287e762f448341c9f4c4d27756ee9aca1dbf0383778197237fe2380aa2f3333b" - sha256 cellar: :any, arm64_ventura: "cad098da6f178da1722aad7bda43bfc701d7b2227d41c6e29256f7b100e3ff26" - sha256 cellar: :any, sonoma: "923730f19c0d45256c9fe8f3dc19edd7fc5b7467b5bb5173ae98c44e4e256da4" - sha256 cellar: :any, ventura: "4bdf8a9074e1072f1573c175e3541bcf4098f3a6149d75c1f53bf4a6c888cfed" - sha256 cellar: :any_skip_relocation, arm64_linux: "c1e925c74b23c271906369233d1620786168149e65610c2ee5ca2376204cb80a" - sha256 cellar: :any_skip_relocation, x86_64_linux: "27929945a7f1302d1bc192ec024181fca4cfec9ebb5b1eab90c4bc0e1430af9d" + sha256 cellar: :any, arm64_sequoia: "ef0edd9832c108b40a6eea993c88ce7c2716f05dbac67e18f4c45085acdef838" + sha256 cellar: :any, arm64_sonoma: "f9c1f47003a67cac4718eee990bce3a96fdce764d7003670edcc9e782da1939d" + sha256 cellar: :any, arm64_ventura: "e73b325a6bff285c9dfe4cc6736703881518972216c2ac0cd01e0b147db07632" + sha256 cellar: :any, sonoma: "d665afcf5f6f08652ed1af431e1aa4d38eb0dd747b57ed3e7c6726d8cb75a175" + sha256 cellar: :any, ventura: "49aacfcbcbf3e519f8257f24a8366aca51460e96c51036a5232d5d1324e60f3c" + sha256 cellar: :any_skip_relocation, arm64_linux: "2545034b671e36df257d6adbc876eb1e0eec26c15469c0bf0d4ab20c16638285" + sha256 cellar: :any_skip_relocation, x86_64_linux: "d5f69476d6817e049c7177e14a69cff62546d2a436aff1334c83a34ee6c07d69" end depends_on "go" => :build From e6d46830ffdda56f3067e3f8a0d9655658c30696 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 14:55:12 +0000 Subject: [PATCH 0979/1364] pinact: update 3.1.1 bottle. --- Formula/p/pinact.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/p/pinact.rb b/Formula/p/pinact.rb index af57ad4484b79..d5e486c2fb005 100644 --- a/Formula/p/pinact.rb +++ b/Formula/p/pinact.rb @@ -14,12 +14,12 @@ class Pinact < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "5584d6f693b82d02a61c5d4e9927e65aa11ef7e4a98884a2a05633e180d2f540" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "5584d6f693b82d02a61c5d4e9927e65aa11ef7e4a98884a2a05633e180d2f540" - sha256 cellar: :any_skip_relocation, arm64_ventura: "5584d6f693b82d02a61c5d4e9927e65aa11ef7e4a98884a2a05633e180d2f540" - sha256 cellar: :any_skip_relocation, sonoma: "ee713c350ce8c2d9db2866a7fcd0e9af4d985cef1cb2976f7043976bf13698b5" - sha256 cellar: :any_skip_relocation, ventura: "ee713c350ce8c2d9db2866a7fcd0e9af4d985cef1cb2976f7043976bf13698b5" - sha256 cellar: :any_skip_relocation, x86_64_linux: "fe365e7daffba61ab1c9e8dde4e9ca1f29934ea67235079768547b55843ff884" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "e24e1f6607d0f1538bc582137a6fbb612979fcb85a25ae38d24196aa27f4a63d" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "e24e1f6607d0f1538bc582137a6fbb612979fcb85a25ae38d24196aa27f4a63d" + sha256 cellar: :any_skip_relocation, arm64_ventura: "e24e1f6607d0f1538bc582137a6fbb612979fcb85a25ae38d24196aa27f4a63d" + sha256 cellar: :any_skip_relocation, sonoma: "af684ef906aa6a734b4cff70db78d5a62f83b5ca3bb6886c8dc4e25f75749558" + sha256 cellar: :any_skip_relocation, ventura: "af684ef906aa6a734b4cff70db78d5a62f83b5ca3bb6886c8dc4e25f75749558" + sha256 cellar: :any_skip_relocation, x86_64_linux: "c26163a3855ce551b0728ab4b5033e111264cee912dd0a16bc172084c5dedfb2" end depends_on "go" => :build From cae986d9373ab13ee456ddb833884f8ecb8b113d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 14:55:27 +0000 Subject: [PATCH 0980/1364] lla: update 0.3.11 bottle. --- Formula/l/lla.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/l/lla.rb b/Formula/l/lla.rb index 93694a2455498..311c1943e29f7 100644 --- a/Formula/l/lla.rb +++ b/Formula/l/lla.rb @@ -6,13 +6,13 @@ class Lla < Formula license "MIT" bottle do - sha256 cellar: :any, arm64_sequoia: "c67155ffdf661a83024df9ca3246701dd5c616b1174869642a11dd7ebea1dccd" - sha256 cellar: :any, arm64_sonoma: "6a4adb651e36968ebc64fc37b96819803a61f7cad5bf381f3f50e83a71c2f732" - sha256 cellar: :any, arm64_ventura: "4d6ec746e79cee085f4a0db2f8869b98b2a5fd7ba6f00d13c6a70d9982a6cdbf" - sha256 cellar: :any, sonoma: "e51f718b2d35a02a4aacfb17648c5390f698289bb48a670079ca132211651876" - sha256 cellar: :any, ventura: "5b4e1cda12a4b11aa8c6cf6566e7284b2eb3817310f39c79e47d18c3831505e3" - sha256 cellar: :any_skip_relocation, arm64_linux: "a43b4762fa494d7f23b651a2bc751727c93c6e1de409ce292aebb107b6e3a249" - sha256 cellar: :any_skip_relocation, x86_64_linux: "d626d89a765760afd59e2e0a280f202e4b8e425064c13170db89a78f4b168a34" + sha256 cellar: :any, arm64_sequoia: "5e6086be36189064123934678e72b6f112ba16e0141d02df8e91b76823d1dd12" + sha256 cellar: :any, arm64_sonoma: "da9e98371b47e3ce8d55fcac671e4cd39623708152929f1314c1c98f23445803" + sha256 cellar: :any, arm64_ventura: "632df0323c808438e232975387a9fd26f59d39b8f75f02fb8d227381da0dc5e4" + sha256 cellar: :any, sonoma: "b8b01b6484412158f42dee86bc72c763525e487b38edcc6feb133c7d66c592ac" + sha256 cellar: :any, ventura: "e4fcf542d5549c7c157374783fec280836cbc02e863c1cb6d92d81805c02793b" + sha256 cellar: :any_skip_relocation, arm64_linux: "205e741b2830b2d6ea538d36fb9041c430726b19a843634153d22bcb2ec8f4b2" + sha256 cellar: :any_skip_relocation, x86_64_linux: "05c5b2b33af4772ed8ad30c783f2c25ef7dbe9729f3fb76bafab77d40768c51c" end depends_on "protobuf" => :build From 1163da1da4224f0ad618b8040afde3637f52cecb Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 14:55:51 +0000 Subject: [PATCH 0981/1364] x-cmd: update 0.5.12 bottle. --- Formula/x/x-cmd.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/x/x-cmd.rb b/Formula/x/x-cmd.rb index 276463fa17cbd..fea163820d03d 100644 --- a/Formula/x/x-cmd.rb +++ b/Formula/x/x-cmd.rb @@ -13,13 +13,13 @@ class XCmd < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "3cb0b1efc95f9cbf5a8f9c56f3872fd99dcfb15c6f36559ffeede268db2337e2" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "3cb0b1efc95f9cbf5a8f9c56f3872fd99dcfb15c6f36559ffeede268db2337e2" - sha256 cellar: :any_skip_relocation, arm64_ventura: "3cb0b1efc95f9cbf5a8f9c56f3872fd99dcfb15c6f36559ffeede268db2337e2" - sha256 cellar: :any_skip_relocation, sonoma: "f8f827d60c24b936ac5eeb51fe7ae12b07f93ee16709a5ebc3133dbef7bdb4ee" - sha256 cellar: :any_skip_relocation, ventura: "f8f827d60c24b936ac5eeb51fe7ae12b07f93ee16709a5ebc3133dbef7bdb4ee" - sha256 cellar: :any_skip_relocation, arm64_linux: "1341aa04b4102c35a4d9005d420546971d7d95e1cb0e874920378e0274f5aaa3" - sha256 cellar: :any_skip_relocation, x86_64_linux: "1341aa04b4102c35a4d9005d420546971d7d95e1cb0e874920378e0274f5aaa3" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "998260e6eea2233ac15dd074200bf2b2d350df177218c0bad2cc2dd3ea4b0252" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "998260e6eea2233ac15dd074200bf2b2d350df177218c0bad2cc2dd3ea4b0252" + sha256 cellar: :any_skip_relocation, arm64_ventura: "998260e6eea2233ac15dd074200bf2b2d350df177218c0bad2cc2dd3ea4b0252" + sha256 cellar: :any_skip_relocation, sonoma: "a2b1cbd517f36d7293ead308103d8a1cb294430537a77cd7d2dd56836653cff3" + sha256 cellar: :any_skip_relocation, ventura: "a2b1cbd517f36d7293ead308103d8a1cb294430537a77cd7d2dd56836653cff3" + sha256 cellar: :any_skip_relocation, arm64_linux: "6cd68927d08517ab51d65cb94c81b0df08f966a21f5d925291df551ccfca6a33" + sha256 cellar: :any_skip_relocation, x86_64_linux: "6cd68927d08517ab51d65cb94c81b0df08f966a21f5d925291df551ccfca6a33" end def install From eb471ae995a4a4dc7293c64916b488313d11e831 Mon Sep 17 00:00:00 2001 From: Francois-Xavier Coudert Date: Mon, 12 May 2025 17:12:39 +0200 Subject: [PATCH 0982/1364] proteinortho: fix OpenMP --- Formula/p/proteinortho.rb | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/Formula/p/proteinortho.rb b/Formula/p/proteinortho.rb index e8e4789b7a66c..de9596979a716 100644 --- a/Formula/p/proteinortho.rb +++ b/Formula/p/proteinortho.rb @@ -4,6 +4,7 @@ class Proteinortho < Formula url "https://gitlab.com/paulklemm_PHD/proteinortho/-/archive/v6.3.5/proteinortho-v6.3.5.tar.gz" sha256 "1b477657c44eeba304d3ec6d5179733d4c2b3857ad92dcbfe151564790328ce0" license "GPL-3.0-or-later" + revision 1 bottle do rebuild 1 @@ -17,19 +18,34 @@ class Proteinortho < Formula end depends_on "diamond" - depends_on "libomp" depends_on "openblas" + on_macos do + depends_on "libomp" + end + def install ENV.cxx11 + # Enable OpenMP + if OS.mac? + ENV.append_to_cflags "-Xpreprocessor -fopenmp -I#{Formula["libomp"].opt_include}" + ENV.append "LDFLAGS", "-L#{Formula["libomp"].opt_lib} -lomp" + end + bin.mkpath system "make", "install", "PREFIX=#{bin}" doc.install "manual.html" + pkgshare.install "test" end test do system bin/"proteinortho", "-test" system bin/"proteinortho_clustering", "-test" + + # This test exercises OpenMP + cp_r pkgshare/"test", testpath + files = Dir[testpath/"test/*.faa"] + system bin/"proteinortho", *files end end From dd01d8a276a8551d1040e3dd5e69b9383f41ba9f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 02:30:27 +0000 Subject: [PATCH 0983/1364] codex 0.1.2505111730 --- Formula/c/codex.rb | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Formula/c/codex.rb b/Formula/c/codex.rb index a530bc100d2b1..0e41af2f2843a 100644 --- a/Formula/c/codex.rb +++ b/Formula/c/codex.rb @@ -1,8 +1,8 @@ class Codex < Formula desc "OpenAI's coding agent that runs in your terminal" homepage "https://github.com/openai/codex" - url "https://registry.npmjs.org/@openai/codex/-/codex-0.1.2505021246.tgz" - sha256 "70d27f89af3eb9d2697de0a9ba68564d32fc6faecb6f8dfcd2cca7e6ab919ab8" + url "https://registry.npmjs.org/@openai/codex/-/codex-0.1.2505111730.tgz" + sha256 "87fe060703384b92745904d6fb94c3763877af8173c9f0b796458cc8b8a2ca65" license "Apache-2.0" bottle do @@ -21,6 +21,10 @@ def install system "npm", "install", *std_npm_args bin.install_symlink Dir["#{libexec}/bin/*"] + # Remove incompatible pre-built binaries + libexec.glob("lib/node_modules/@openai/codex/bin/*") + .each { |f| rm_r(f) if f.extname != ".js" } + generate_completions_from_executable(bin/"codex", "completion") end From 17c3a73c35d67a5d4ab1a2b3535aa9b77231c7f6 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 15:29:03 +0000 Subject: [PATCH 0984/1364] proteinortho: update 6.3.5_1 bottle. --- Formula/p/proteinortho.rb | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Formula/p/proteinortho.rb b/Formula/p/proteinortho.rb index de9596979a716..b1169cd0b6f03 100644 --- a/Formula/p/proteinortho.rb +++ b/Formula/p/proteinortho.rb @@ -7,14 +7,13 @@ class Proteinortho < Formula revision 1 bottle do - rebuild 1 - sha256 cellar: :any, arm64_sequoia: "2356058c1df4e150a263dbfc0f732c7be1d0554c28962d2c3c1bbbff3234470e" - sha256 cellar: :any, arm64_sonoma: "6563d591255724b9b4d51b183ee88e1896a88947cf27711b98c64b808e788e1d" - sha256 cellar: :any, arm64_ventura: "76bbfd627206c5a346c8b40207cc4c002dbc9a348317032a4eb3dcda98153f46" - sha256 cellar: :any, sonoma: "9127cb17cb8e363c879b0ecf81c349f61120ef0e0206366defa07ce11e9cb39d" - sha256 cellar: :any, ventura: "1eeab6b4ab460ca0e684f123b1b6e6a293cd005df2209835530d7d08393ac36f" - sha256 cellar: :any_skip_relocation, arm64_linux: "ec96e52a4bea6125ac647b78c022e739b7f1f3bc66f33e3cf19349b8e84134dc" - sha256 cellar: :any_skip_relocation, x86_64_linux: "bde04add25030aed32aac06465de994ca04e4410181a53deac825858df3df18c" + sha256 cellar: :any, arm64_sequoia: "fb9d08681faf0c8464fa65b131900c097876bac2c1a3c340dfaa85ad3a459702" + sha256 cellar: :any, arm64_sonoma: "26e80497cc9d2284466a31dcc6dfd95357ea071ccc733c60eb0e79a086af374d" + sha256 cellar: :any, arm64_ventura: "8e23bd4abefac07aca474bba3e4e56f469b38cd7e3c9e46f792e573710415009" + sha256 cellar: :any, sonoma: "e1862ac62a9b9b594a008d5e50c30faa0388224af3249a0b8f0f4f8ee1666aea" + sha256 cellar: :any, ventura: "fc7eddf0b7441b7bcf81cdf6fe97ebb3c53354a4f538569a5334f554338f6c86" + sha256 cellar: :any_skip_relocation, arm64_linux: "833760c644e5a42573ff7166c7b1201a925847350deb7a8ff7e35fc7ba97a02c" + sha256 cellar: :any_skip_relocation, x86_64_linux: "f93ee04f2ff9dc0c6a526f1567f6410deefaf8b4e340994ecd98734c9c685181" end depends_on "diamond" From c11eaa7a91f3871faca2f4dbb2520c6e5e5df0db Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 14:20:41 +0000 Subject: [PATCH 0985/1364] tfel 5.0.1 tfel: remove build patches Signed-off-by: Rui Chen --- Formula/t/tfel.rb | 25 +++---------------------- 1 file changed, 3 insertions(+), 22 deletions(-) diff --git a/Formula/t/tfel.rb b/Formula/t/tfel.rb index 09fdd17d9beca..339cf9802ba13 100644 --- a/Formula/t/tfel.rb +++ b/Formula/t/tfel.rb @@ -1,31 +1,11 @@ class Tfel < Formula desc "Code generation tool dedicated to material knowledge for numerical mechanics" homepage "https://thelfer.github.io/tfel/web/index.html" + url "https://github.com/thelfer/tfel/archive/refs/tags/TFEL-5.0.1.tar.gz" + sha256 "820b2f9d54e237b2c2d9d6f06aaf7d4a1d3f34fb373e6549bee4fd8b55ecfad1" license "GPL-1.0-or-later" - revision 1 head "https://github.com/thelfer/tfel.git", branch: "master" - stable do - url "https://github.com/thelfer/tfel/archive/refs/tags/TFEL-5.0.0.tar.gz" - sha256 "fe1ec39eba7f23571c2b0c773dab1cc274fee4512c5b2f2fc54b231da4502e87" - - # Backport fix for https://github.com/thelfer/tfel/issues/703 - patch do - url "https://github.com/thelfer/tfel/commit/c4c564ab09a7c13c87ef3628ed89d2abe1c2aa0d.patch?full_index=1" - sha256 "34b217330ef72b12d19b820a7edd994f0107e295f96c779dfe40a990528e1c3a" - end - - # Backport fix for https://github.com/thelfer/tfel/issues/740 - patch do - url "https://github.com/thelfer/tfel/commit/331f889bec18329d2a8770cf72be33218c39b3f7.patch?full_index=1" - sha256 "901c94fe0a48890e4b17d6cefd87dde34dead3563544162b3196aacda04eebc0" - end - patch do - url "https://github.com/thelfer/tfel/commit/2ac23026e15c716c8b5364aa572fb651457ad786.patch?full_index=1" - sha256 "8becb7f82848cb36dd2fc200bed676c95692c9a451ca12c661ef1374ba87bbf1" - end - end - bottle do sha256 arm64_sequoia: "50d3bd7962505ed2bc6fb2557947d7ec078167ac5d5e6525bb1ec644ab69514b" sha256 arm64_sonoma: "348823d0f7433600de4005ec4bc423d18e46c1eabf43bf743eef83b9fc802bd4" @@ -63,6 +43,7 @@ def install "-Denable-testing=OFF", "-Dpython-static-interpreter-workaround=ON", ] + # Avoid linkage to boost container and graph modules # Issue ref: https://github.com/boostorg/boost/issues/985 args << "-DCMAKE_MODULE_LINKER_FLAGS=-Wl,-dead_strip_dylibs" if OS.mac? From a88154d86ee56c0ecbecab6394368bf711402227 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 15:34:02 +0000 Subject: [PATCH 0986/1364] nzbget: update 25.0 bottle. --- Formula/n/nzbget.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/n/nzbget.rb b/Formula/n/nzbget.rb index d0442cb3e2fac..1dc9f5ecccba8 100644 --- a/Formula/n/nzbget.rb +++ b/Formula/n/nzbget.rb @@ -7,13 +7,13 @@ class Nzbget < Formula head "https://github.com/nzbgetcom/nzbget.git", branch: "develop" bottle do - sha256 cellar: :any, arm64_sequoia: "2cf0b33adc4150258481607c90fd797f36c40a31cb63b285f620731b5daf627f" - sha256 cellar: :any, arm64_sonoma: "99354ebc3fde8a20e8c5bb04e5a5bd3cc943d4f25eb5d8e05fc327ce89c86dd5" - sha256 cellar: :any, arm64_ventura: "0916cdd31a6cadc04cda1f35c29504c28a276b45ae212fd7790c3a1215a8d1b4" - sha256 sonoma: "f13631c62c250c4d2e4ec6ca86366bb12c0b5cb816314af6aeccdbb8fa4abeb7" - sha256 ventura: "7b31cf069283478797f2e5cc529b49345154e19988c7b5bafaf1f92ec65b0094" - sha256 cellar: :any_skip_relocation, arm64_linux: "b775bb24590c73da6e6a0135ef30c6567c851d7f507494af947d3be9120d5396" - sha256 cellar: :any_skip_relocation, x86_64_linux: "2cf5881e65b97201b06574e9511572bff673971eca03c1d746955706f93d3f28" + sha256 cellar: :any, arm64_sequoia: "371d055797f59c911e6be17f10eb42112abe701114f5d8f60a4855048ff26d67" + sha256 cellar: :any, arm64_sonoma: "8909eb1f6343e497a84b8978669471eb422449b8474ce1022fe620a68a09a9fa" + sha256 cellar: :any, arm64_ventura: "de057a02a644af8dad13c30511d71bd24c9c73be018c4119587e99a1439ca432" + sha256 sonoma: "6d6a39e4990d42f45c927d09138167d5aef5f24f60e8e541f3807bc60e02aea5" + sha256 ventura: "816f3371545857cadd216e2c3b102ec28ccc5ff63311a514025354a94723f50b" + sha256 cellar: :any_skip_relocation, arm64_linux: "8e88197900adac0cfc6bb08322ac67cac5626dd00cea49080351d8067dd1b73b" + sha256 cellar: :any_skip_relocation, x86_64_linux: "ec23d3eb13a1763e72658adb7e4a2ef20c802771491e86cc8fea7e70eb6aa366" end depends_on "cmake" => :build From 458db7b456ff3b1a3b5755f4d28a7ab9228f23ec Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 15:34:09 +0000 Subject: [PATCH 0987/1364] libsais: update 2.10.1 bottle. --- Formula/lib/libsais.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/lib/libsais.rb b/Formula/lib/libsais.rb index 482e283e3c6cf..bc6d68259c2e9 100644 --- a/Formula/lib/libsais.rb +++ b/Formula/lib/libsais.rb @@ -7,13 +7,13 @@ class Libsais < Formula head "https://github.com/IlyaGrebnov/libsais.git", branch: "master" bottle do - sha256 cellar: :any, arm64_sequoia: "530fc5db53ed108c1c0cd163d4bcf5293f13e1532ce1b8e84df243fc8776a2e8" - sha256 cellar: :any, arm64_sonoma: "e12064836d57cbe31bfff4a60388f5ab516ffbbeff39bc157acfaa404b8b43c6" - sha256 cellar: :any, arm64_ventura: "829ff3a96b317b7e56a4f61e7590d776e5dde1f85f40d44d9a7fa599e81ac6d5" - sha256 cellar: :any, sonoma: "cc56db309bd88c115c2da8c9cb3821c3aa69e2f595b6156b5379b870413af309" - sha256 cellar: :any, ventura: "118fd79be7a9552aac05652c2d76452a79726769ad59745c7c0160fc9d7d69e5" - sha256 cellar: :any_skip_relocation, arm64_linux: "024ff4a47c6340289256a1634b83b8d0bc2201c53df1ad48be3c984b03c9728e" - sha256 cellar: :any_skip_relocation, x86_64_linux: "c3d12688f8f741c93ce811a6207584ff439136520a3df834fd79d9cef3343965" + sha256 cellar: :any, arm64_sequoia: "54b8afff60b856c0884c71de1dd1f1e6409a55b2be1d49b8b673dad9e47b2510" + sha256 cellar: :any, arm64_sonoma: "c5d9e7b22a085837f05ad3b29b6e20fca750f0c5fc3028c4fc5a672fb68eeb7c" + sha256 cellar: :any, arm64_ventura: "399524c4f5c23885e1115134517a85c32e91a66eb6b174323a05eb3fe4ec81af" + sha256 cellar: :any, sonoma: "9f96dfbd1f3c5e47135ffc73fe8ad7b078fe1e288d789c85cb61253cd51c529d" + sha256 cellar: :any, ventura: "9a8a3785b9eb046ff961db993c3b5c2e8a038ce933c0df45721f4cf689bfe80e" + sha256 cellar: :any_skip_relocation, arm64_linux: "c94849ebbeaf7ca8e3b06c9bd5be34a8e5f1fba3c41c78014744c72527b20e96" + sha256 cellar: :any_skip_relocation, x86_64_linux: "ec6cd3dd97d73a21ed12b1305f8a8ec133a583088413f62bad03c3fb3908c794" end depends_on "cmake" => :build From 70ac8b1dd7cf47c268138c5321d6299019566d7e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 15:47:21 +0000 Subject: [PATCH 0988/1364] codex: update 0.1.2505111730 bottle. --- Formula/c/codex.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/codex.rb b/Formula/c/codex.rb index 0e41af2f2843a..62151b260da3a 100644 --- a/Formula/c/codex.rb +++ b/Formula/c/codex.rb @@ -6,13 +6,13 @@ class Codex < Formula license "Apache-2.0" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "85df5edd03aa3806252b9868d83ca32cba01d252889970f77bbc020c37933d9d" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "85df5edd03aa3806252b9868d83ca32cba01d252889970f77bbc020c37933d9d" - sha256 cellar: :any_skip_relocation, arm64_ventura: "85df5edd03aa3806252b9868d83ca32cba01d252889970f77bbc020c37933d9d" - sha256 cellar: :any_skip_relocation, sonoma: "9c0511f07c5d8b0ee0d5bd810f802fafe569a9b002590afa8e2452bdced54c37" - sha256 cellar: :any_skip_relocation, ventura: "9c0511f07c5d8b0ee0d5bd810f802fafe569a9b002590afa8e2452bdced54c37" - sha256 cellar: :any_skip_relocation, arm64_linux: "85df5edd03aa3806252b9868d83ca32cba01d252889970f77bbc020c37933d9d" - sha256 cellar: :any_skip_relocation, x86_64_linux: "85df5edd03aa3806252b9868d83ca32cba01d252889970f77bbc020c37933d9d" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "4e7b0f74c000f61ca49ee3fa2c52848e18754fe28b884bb2c0375f2ebe840887" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "4e7b0f74c000f61ca49ee3fa2c52848e18754fe28b884bb2c0375f2ebe840887" + sha256 cellar: :any_skip_relocation, arm64_ventura: "4e7b0f74c000f61ca49ee3fa2c52848e18754fe28b884bb2c0375f2ebe840887" + sha256 cellar: :any_skip_relocation, sonoma: "ccf94b7a469657b2ed31775771a66429dc05cf98538ea5e7e05326807ac46f0b" + sha256 cellar: :any_skip_relocation, ventura: "ccf94b7a469657b2ed31775771a66429dc05cf98538ea5e7e05326807ac46f0b" + sha256 cellar: :any_skip_relocation, arm64_linux: "4e7b0f74c000f61ca49ee3fa2c52848e18754fe28b884bb2c0375f2ebe840887" + sha256 cellar: :any_skip_relocation, x86_64_linux: "4e7b0f74c000f61ca49ee3fa2c52848e18754fe28b884bb2c0375f2ebe840887" end depends_on "node" From 406e7bfe873b4c93bd17c447b1cc03576dedb5b5 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 16:24:43 +0000 Subject: [PATCH 0989/1364] tfel: update 5.0.1 bottle. --- Formula/t/tfel.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/t/tfel.rb b/Formula/t/tfel.rb index 339cf9802ba13..a94936607de29 100644 --- a/Formula/t/tfel.rb +++ b/Formula/t/tfel.rb @@ -7,13 +7,13 @@ class Tfel < Formula head "https://github.com/thelfer/tfel.git", branch: "master" bottle do - sha256 arm64_sequoia: "50d3bd7962505ed2bc6fb2557947d7ec078167ac5d5e6525bb1ec644ab69514b" - sha256 arm64_sonoma: "348823d0f7433600de4005ec4bc423d18e46c1eabf43bf743eef83b9fc802bd4" - sha256 arm64_ventura: "6faecb90a644d46af6d4d8d0a2e1619b4abc21f479af6c81e532e3393c6b129c" - sha256 sonoma: "f21cf45477369903801db72624265e799e8fe24a1d53231f61eb6bee33ee1516" - sha256 ventura: "2fc7f26b7cfc67188891020563e4b96ddc8945b924532b1512199b3029e00076" - sha256 arm64_linux: "a70c7ba818b14efbe76d4a02762fed0625f78bd8906d4978dd2f1d27c2bd5c3e" - sha256 x86_64_linux: "5086c2c9498895965149d37772fb2a4ef7f06cbb1071d3d31291e678b42f9f1c" + sha256 arm64_sequoia: "5a32fde49de7f2ecb7019ceb8893ae34ecca6347c71b1598bc056199594d2014" + sha256 arm64_sonoma: "36ec43fdca67231f63225ca920b6f62e0e5489510de6c2b8796bc7238e6b42a4" + sha256 arm64_ventura: "67632853027c9909241d22a4745db0c68ec235339713a51d0b626a443808578e" + sha256 sonoma: "ace78851845633b3f55a10cc49f7e365962b4acf5cee5c5a0e19ac35b5131226" + sha256 ventura: "b0a0492cfb359a04d65d9e7b0a4b41db3817ae492e002a5d58e712b682dce87c" + sha256 arm64_linux: "27e25c31a2fd4b106d35c072a359ccd78c478f42b52298d960d06a82ee877fc2" + sha256 x86_64_linux: "51420bbf165e34f3abdf34af61c445eadba23e9ca0ce8d1c092b0e0247a9cd16" end depends_on "cmake" => :build From b39521da7fe6ad0b5412bf833e5fded728b95efd Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 16:53:21 +0000 Subject: [PATCH 0990/1364] aws-c-common 0.12.3 --- Formula/a/aws-c-common.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/a/aws-c-common.rb b/Formula/a/aws-c-common.rb index d25c5db1be705..4670c6ff2d681 100644 --- a/Formula/a/aws-c-common.rb +++ b/Formula/a/aws-c-common.rb @@ -1,8 +1,8 @@ class AwsCCommon < Formula desc "Core c99 package for AWS SDK for C" homepage "https://github.com/awslabs/aws-c-common" - url "https://github.com/awslabs/aws-c-common/archive/refs/tags/v0.12.2.tar.gz" - sha256 "ecea168ea974f2da73b5a0adc19d9c5ebca73ca4b9f733de7c37fc453ee7d1c2" + url "https://github.com/awslabs/aws-c-common/archive/refs/tags/v0.12.3.tar.gz" + sha256 "a4e7ac6c6f840cb6ab56b8ee0bcd94a61c59d68ca42570bca518432da4c94273" license "Apache-2.0" bottle do From 5eda87c99efa2cb834a1a219cfc76b4f574c8f5e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 16:54:01 +0000 Subject: [PATCH 0991/1364] bazel-diff 9.0.3 --- Formula/b/bazel-diff.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/b/bazel-diff.rb b/Formula/b/bazel-diff.rb index 2473e285adbe5..35807645b015c 100644 --- a/Formula/b/bazel-diff.rb +++ b/Formula/b/bazel-diff.rb @@ -1,8 +1,8 @@ class BazelDiff < Formula desc "Performs Bazel Target Diffing between two revisions in Git" homepage "https://github.com/Tinder/bazel-diff/" - url "https://github.com/Tinder/bazel-diff/releases/download/9.0.1/bazel-diff_deploy.jar" - sha256 "79291fa7b5900b98cd495bf94559ac096f2bf5341fea96425993ee19d9285e83" + url "https://github.com/Tinder/bazel-diff/releases/download/9.0.3/bazel-diff_deploy.jar" + sha256 "4a7dd64c7b1fb1219b825138c62c206d2ace7470aa5d3a07a554532e74048893" license "BSD-3-Clause" bottle do From 05069df32492ff4afe46f4503eb8e104b0974b7e Mon Sep 17 00:00:00 2001 From: Louis Vignoli Date: Mon, 12 May 2025 16:02:50 +0200 Subject: [PATCH 0992/1364] jjui v0.8.8 (new formula) Add jjui, a TUI for jujutsu VCS. See https://github.com/idursun/jjui and https://jj-vcs.github.io/jj/latest. Being a TUI, I am testing against the output of jjui --version for the lack of a better test, as well as the failure of the program when run in a directory that is not jj repository. It seemed reasonnable to depend on jj for a functional installation. --- Formula/j/jjui.rb | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Formula/j/jjui.rb diff --git a/Formula/j/jjui.rb b/Formula/j/jjui.rb new file mode 100644 index 0000000000000..625924b47d77d --- /dev/null +++ b/Formula/j/jjui.rb @@ -0,0 +1,19 @@ +class Jjui < Formula + desc "TUI for interacting with the Jujutsu version control system" + homepage "https://github.com/idursun/jjui" + url "https://github.com/idursun/jjui/archive/refs/tags/v0.8.8.tar.gz" + sha256 "66963f2b091855d1e4116bdf45dbbde728ff6b2a65e4adb879e32249a3693242" + license "MIT" + + depends_on "go" => :build + depends_on "jj" + + def install + system "go", "build", *std_go_args(ldflags: "-s -w -X main.Version=#{version}"), "./cmd/jjui" + end + + test do + assert_match version.to_s, shell_output("#{bin}/jjui -version") + assert_match "Error: There is no jj repo in", shell_output("#{bin}/jjui 2>&1", 1) + end +end From f02899f568fcc9dd2c715a033307ae8cdf898581 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 17:00:52 +0000 Subject: [PATCH 0993/1364] fatal 2025.05.12.00 --- Formula/f/fatal.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/f/fatal.rb b/Formula/f/fatal.rb index 0fd72b5bee4be..7f2cb8aa3371e 100644 --- a/Formula/f/fatal.rb +++ b/Formula/f/fatal.rb @@ -1,7 +1,7 @@ class Fatal < Formula desc "Facebook Template Library" homepage "https://www.facebook.com/groups/libfatal/" - url "https://github.com/facebook/fatal/releases/download/v2025.05.05.00/fatal-v2025.05.05.00.tar.gz" + url "https://github.com/facebook/fatal/releases/download/v2025.05.12.00/fatal-v2025.05.12.00.tar.gz" sha256 "5d9e13011a8c08b6e0055caacafdc83947a728177240a5a47167bb15961f1b5b" license "BSD-3-Clause" head "https://github.com/facebook/fatal.git", branch: "main" From c7b2df7659828ed3b93c88d676fb2b2be454217b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 17:01:39 +0000 Subject: [PATCH 0994/1364] flyctl 0.3.120 --- Formula/f/flyctl.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/f/flyctl.rb b/Formula/f/flyctl.rb index 614fe3ce49d4e..a3c00d14c20ac 100644 --- a/Formula/f/flyctl.rb +++ b/Formula/f/flyctl.rb @@ -2,8 +2,8 @@ class Flyctl < Formula desc "Command-line tools for fly.io services" homepage "https://fly.io" url "https://github.com/superfly/flyctl.git", - tag: "v0.3.119", - revision: "17355c249062714ff87ebbfce2f4076def235318" + tag: "v0.3.120", + revision: "498db94b9b6a33511096494e4d5b29ed4684d3c0" license "Apache-2.0" head "https://github.com/superfly/flyctl.git", branch: "master" From cdc4b362220c82b0cfe1e7f280bc8ba934b801de Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 17:04:05 +0000 Subject: [PATCH 0995/1364] harfbuzz 11.2.1 --- Formula/h/harfbuzz.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/h/harfbuzz.rb b/Formula/h/harfbuzz.rb index 346314187095e..6c1ba742ed9e1 100644 --- a/Formula/h/harfbuzz.rb +++ b/Formula/h/harfbuzz.rb @@ -1,8 +1,8 @@ class Harfbuzz < Formula desc "OpenType text shaping engine" homepage "https://github.com/harfbuzz/harfbuzz" - url "https://github.com/harfbuzz/harfbuzz/archive/refs/tags/11.2.0.tar.gz" - sha256 "16c0204704f3ebeed057aba100fe7db18d71035505cb10e595ea33d346457fc8" + url "https://github.com/harfbuzz/harfbuzz/archive/refs/tags/11.2.1.tar.gz" + sha256 "057d5754c3ac0c499bbf4d729d52acf134c7bb4ba8868ba22e84ae96bc272816" license "MIT" head "https://github.com/harfbuzz/harfbuzz.git", branch: "main" From 0484fa39610785c7c41313ebbe8fbea549fe5511 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 17:05:55 +0000 Subject: [PATCH 0996/1364] jxl-oxide 0.12.2 --- Formula/j/jxl-oxide.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/j/jxl-oxide.rb b/Formula/j/jxl-oxide.rb index 9e4310156fce0..8b3b7d7ab87ea 100644 --- a/Formula/j/jxl-oxide.rb +++ b/Formula/j/jxl-oxide.rb @@ -1,8 +1,8 @@ class JxlOxide < Formula desc "JPEG XL decoder" homepage "https://github.com/tirr-c/jxl-oxide" - url "https://github.com/tirr-c/jxl-oxide/archive/refs/tags/0.12.1.tar.gz" - sha256 "3890560466a54d9cfeb76f9b881abb7666f9ae72be74fcd7c38b8d58f36d1212" + url "https://github.com/tirr-c/jxl-oxide/archive/refs/tags/0.12.2.tar.gz" + sha256 "0d2b812051b64ab443c444035e7ccf4a53e8d823608c1c6b9997c3e6c43f729c" license any_of: ["MIT", "Apache-2.0"] bottle do From de126eb5618034e80c2e8ffe97ff15ed1d42fbdd Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 17:16:18 +0000 Subject: [PATCH 0997/1364] semver 7.7.2 --- Formula/s/semver.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/s/semver.rb b/Formula/s/semver.rb index 6debc3fd83176..90d15185ff8d9 100644 --- a/Formula/s/semver.rb +++ b/Formula/s/semver.rb @@ -1,8 +1,8 @@ class Semver < Formula desc "Semantic version parser for node (the one npm uses)" homepage "https://github.com/npm/node-semver" - url "https://github.com/npm/node-semver/archive/refs/tags/v7.7.1.tar.gz" - sha256 "c6fee501b3391d48774bde7c57ffe222fc8744191bd5b9a42ec2fb8cc8150e84" + url "https://github.com/npm/node-semver/archive/refs/tags/v7.7.2.tar.gz" + sha256 "2af254b6b168e7ae77e2cef8d278ca7c0e613c78e8808a4465387ce0cd7a48a2" license "ISC" bottle do From 5f225ede3bf416a2d5a264157d07918b8ec35358 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 17:16:37 +0000 Subject: [PATCH 0998/1364] shadowsocks-rust 1.23.4 --- Formula/s/shadowsocks-rust.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/s/shadowsocks-rust.rb b/Formula/s/shadowsocks-rust.rb index dcf4e88741fe9..61695476127da 100644 --- a/Formula/s/shadowsocks-rust.rb +++ b/Formula/s/shadowsocks-rust.rb @@ -1,8 +1,8 @@ class ShadowsocksRust < Formula desc "Rust port of Shadowsocks" homepage "https://shadowsocks.org/" - url "https://github.com/shadowsocks/shadowsocks-rust/archive/refs/tags/v1.23.3.tar.gz" - sha256 "cbbd2357e9ec00dc18bbf437cf1ac88fcb3376c50ed579c782f372cf75bb0a9b" + url "https://github.com/shadowsocks/shadowsocks-rust/archive/refs/tags/v1.23.4.tar.gz" + sha256 "8a91836256989e3a56409d0e83da6549ecf727e2d6642cd4e707993d9c8a23d3" license "MIT" head "https://github.com/shadowsocks/shadowsocks-rust.git", branch: "master" From 0de5dd847ca9a492b9158074135bb7102c08752e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 17:17:21 +0000 Subject: [PATCH 0999/1364] snowflake-cli 3.7.2 --- Formula/s/snowflake-cli.rb | 50 ++++++++++++++++++++++++++++++-------- 1 file changed, 40 insertions(+), 10 deletions(-) diff --git a/Formula/s/snowflake-cli.rb b/Formula/s/snowflake-cli.rb index 922074f7b86a9..3580026ec7dc7 100644 --- a/Formula/s/snowflake-cli.rb +++ b/Formula/s/snowflake-cli.rb @@ -3,8 +3,8 @@ class SnowflakeCli < Formula desc "CLI for snowflake" homepage "https://docs.snowflake.com/developer-guide/snowflake-cli/index" - url "https://files.pythonhosted.org/packages/b2/aa/3ab22ed5bf029702f09cd8a5345a0387d5f79ba8ee1d078ebee206084df8/snowflake_cli-3.7.1.tar.gz" - sha256 "98cba2d5eac9e27440ecd0e7bebdb7faa027abf6c04e0de74b6d9386f6478083" + url "https://files.pythonhosted.org/packages/1f/d7/fcf7c60667191f4bf9e9bcb84b318c92a92936b5a4634110c14d86b1271b/snowflake_cli-3.7.2.tar.gz" + sha256 "06eb21d87a6ae6f5a65c496153f2c4af74dade5d24acceb718188432be56f6ca" license "Apache-2.0" bottle do @@ -35,9 +35,19 @@ class SnowflakeCli < Formula sha256 "13ae38502be632115abf8a24cbe5f4da52e3b5231990aff31123c805306ccb9c" end + resource "boto3" do + url "https://files.pythonhosted.org/packages/c7/89/a47f62b3f81a2e3484d2a2b8dd4906c5b6e57da0af0bd59d36f99ba20baf/boto3-1.38.13.tar.gz" + sha256 "6633bce2b73284acce1453ca85834c7c5a59e0dbcce1170be461cc079bdcdfcf" + end + + resource "botocore" do + url "https://files.pythonhosted.org/packages/de/36/5b0faba074684744244e1e030e73fd5612bc2c38f557eec0a7f1a3d7ddd2/botocore-1.38.13.tar.gz" + sha256 "22feee15753cd3f9f7179d041604078a1024701497d27b22be7c6707e8d13ccb" + end + resource "charset-normalizer" do - url "https://files.pythonhosted.org/packages/16/b0/572805e227f01586461c80e0fd25d65a2115599cc9dad142fee4b747c357/charset_normalizer-3.4.1.tar.gz" - sha256 "44251f18cd68a75b56585dd00dae26183e102cd5e0f9f1466e6df5da2ed64ea3" + url "https://files.pythonhosted.org/packages/e4/33/89c2ced2b67d1c2a61c19c6751aa8902d46ce3dacb23600a283619f5a12d/charset_normalizer-3.4.2.tar.gz" + sha256 "5baececa9ecba31eff645232d59845c07aa030f0c81ee70184a90d35099a0e63" end resource "click" do @@ -90,6 +100,11 @@ class SnowflakeCli < Formula sha256 "0137fb05990d35f1275a587e9aee6d56da821fc83491a0fb838183be43f66d6d" end + resource "jmespath" do + url "https://files.pythonhosted.org/packages/00/2a/e867e8531cf3e36b41201936b7fa7ba7b5702dbef42922193f05c8976cd6/jmespath-1.0.1.tar.gz" + sha256 "90261b206d6defd58fdd5e85f478bf633a2901798906be2ad389150c5c60edbe" + end + resource "keyring" do url "https://files.pythonhosted.org/packages/70/09/d904a6e96f76ff214be59e7aa6ef7190008f52a0ab6689760a98de0bf37d/keyring-25.6.0.tar.gz" sha256 "0b39998aa941431eb3d9b0d4b2460bc773b9df6fed7621c2dfb291a7e0187a66" @@ -121,8 +136,8 @@ class SnowflakeCli < Formula end resource "platformdirs" do - url "https://files.pythonhosted.org/packages/b6/2d/7d512a3913d60623e7eb945c6d1b4f0bddf1d0b7ada5225274c87e5b53d1/platformdirs-4.3.7.tar.gz" - sha256 "eb437d586b6a0986388f0d6f74aa0cde27b48d0e3d66843640bfb6bdcdb6e351" + url "https://files.pythonhosted.org/packages/fe/8b/3c73abc9c759ecd3f1f7ceff6685840859e8070c4d947c93fae71f6a0bf2/platformdirs-4.3.8.tar.gz" + sha256 "3d512d96e16bcb959a814c9f348431070822a6496326a4be0911c40b5a74c2bc" end resource "pluggy" do @@ -155,6 +170,11 @@ class SnowflakeCli < Formula sha256 "cd2cef799efa3936bb08e8ccb9433a575722b9dd986023f1cabc4ae64e9dac16" end + resource "python-dateutil" do + url "https://files.pythonhosted.org/packages/66/c0/0c8b6ad9f17a802ee498c46e004a0eb49bc148f2fd230864601a86dcf6db/python-dateutil-2.9.0.post0.tar.gz" + sha256 "37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3" + end + resource "pytz" do url "https://files.pythonhosted.org/packages/f8/bf/abbd3cdfb8fbc7fb3d4d38d320f2441b1e7cbe29be4f23797b4a2b5d8aac/pytz-2025.2.tar.gz" sha256 "360b9e3dbb49a209c21ad61809c7fb453643e048b38924c765813546746e81c3" @@ -180,6 +200,11 @@ class SnowflakeCli < Formula sha256 "82f1bc23a6a21ebca4ae0c45af9bdbc492ed20231dcb63f297d6d1021a9d5725" end + resource "s3transfer" do + url "https://files.pythonhosted.org/packages/fc/9e/73b14aed38ee1f62cd30ab93cd0072dec7fb01f3033d116875ae3e7b8b44/s3transfer-0.12.0.tar.gz" + sha256 "8ac58bc1989a3fdb7c7f3ee0918a66b160d038a147c7b5db1500930a607e9a1c" + end + resource "secretstorage" do url "https://files.pythonhosted.org/packages/53/a4/f48c9d79cb507ed1373477dbceaba7401fd8a23af63b837fa61f1dcd3691/SecretStorage-3.3.3.tar.gz" sha256 "2403533ef369eca6d2ba81718576c5e0f564d5cca1b58f73a8b23e7d4eeebd77" @@ -195,14 +220,19 @@ class SnowflakeCli < Formula sha256 "8dbca0739d487e5bd35ab3ca4b36e11c4078f3a234bfce294b0a0291363404de" end + resource "six" do + url "https://files.pythonhosted.org/packages/94/e7/b2c673351809dca68a0e064b6af791aa332cf192da575fd474ed7d6f16a2/six-1.17.0.tar.gz" + sha256 "ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81" + end + resource "smmap" do url "https://files.pythonhosted.org/packages/44/cd/a040c4b3119bbe532e5b0732286f805445375489fceaec1f48306068ee3b/smmap-5.0.2.tar.gz" sha256 "26ea65a03958fa0c8a1c7e8c7a58fdc77221b8910f6be2131affade476898ad5" end resource "snowflake-connector-python" do - url "https://files.pythonhosted.org/packages/49/f5/f36873ba13a4bc0f673f02d8723862118a61e09633a24682b6c2df3ef9a7/snowflake_connector_python-3.14.0.tar.gz" - sha256 "baa10f3f8a2cdbe2be0ff973f2313df684f4d0147db6a4f76f3b311bedc299ed" + url "https://files.pythonhosted.org/packages/99/ff/7c1b2cbb5a43b21abebfa58c83926266e9f5ea05123e795753da6ce84f96/snowflake_connector_python-3.15.0.tar.gz" + sha256 "1ef52e2fb3ecc295139737d3d759f85d962ef7278c6990c3bd9c17fcb82508d6" end resource "sortedcontainers" do @@ -221,8 +251,8 @@ class SnowflakeCli < Formula end resource "types-setuptools" do - url "https://files.pythonhosted.org/packages/ce/61/5b764d556977ab27976f335d7493dc267b0dbcb5fae7fe117547c292c069/types_setuptools-79.0.0.20250422.tar.gz" - sha256 "9c9f699a5914d2ed97f02ee749fb2c7bc2898f8dad03b5dd74b74d4f80e29972" + url "https://files.pythonhosted.org/packages/87/f5/27854a6912bb6a13e42ab342409fadc5613bf9d36ac9a69e8211771c5e6a/types_setuptools-80.4.0.20250511.tar.gz" + sha256 "faa4159c9384e45b3b04218ca43ee3829efb6acc303e0ee561e47b3404423d32" end resource "typing-extensions" do From 8ef456b866a7c16203666b9e5d5be24cc3643f07 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 17:19:31 +0000 Subject: [PATCH 1000/1364] terragrunt 0.78.3 --- Formula/t/terragrunt.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/t/terragrunt.rb b/Formula/t/terragrunt.rb index 442eda58d07a7..73c16995db9f9 100644 --- a/Formula/t/terragrunt.rb +++ b/Formula/t/terragrunt.rb @@ -1,8 +1,8 @@ class Terragrunt < Formula desc "Thin wrapper for Terraform e.g. for locking state" homepage "https://terragrunt.gruntwork.io/" - url "https://github.com/gruntwork-io/terragrunt/archive/refs/tags/v0.78.2.tar.gz" - sha256 "9966c90ce842089295bae6ba26d3f50ab443d88c954c46a3c2af0b8227283189" + url "https://github.com/gruntwork-io/terragrunt/archive/refs/tags/v0.78.3.tar.gz" + sha256 "dc8c21e17e7014e4e6afdd40279284654bc241a741c7528c03c32d80e0a94c84" license "MIT" # Upstream creates releases that use a stable tag (e.g., `v1.2.3`) but are From 219be22ac1d4126f712045004f5b178937439f03 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 17:19:54 +0000 Subject: [PATCH 1001/1364] tmex 2.0.4 --- Formula/t/tmex.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/t/tmex.rb b/Formula/t/tmex.rb index cadc414e66b63..957532f24e59e 100644 --- a/Formula/t/tmex.rb +++ b/Formula/t/tmex.rb @@ -1,8 +1,8 @@ class Tmex < Formula desc "Minimalist tmux layout manager" homepage "https://github.com/evnp/tmex" - url "https://github.com/evnp/tmex/archive/refs/tags/v2.0.3.tar.gz" - sha256 "98cd4046421b6dad611628261932243481d2454c09e6670b3f7c09f48483c81d" + url "https://github.com/evnp/tmex/archive/refs/tags/v2.0.4.tar.gz" + sha256 "d1907435f607993b0dc2da90166ea6d2804b73f94cffdb52a7ca40e6bee63632" license "MIT" bottle do From b43904a8bd1ce89c5ece6966296c2052053e35ec Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 17:21:31 +0000 Subject: [PATCH 1002/1364] vulkan-validationlayers 1.4.315 --- Formula/v/vulkan-validationlayers.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/v/vulkan-validationlayers.rb b/Formula/v/vulkan-validationlayers.rb index 39bd0f453bc34..be37f512a7e09 100644 --- a/Formula/v/vulkan-validationlayers.rb +++ b/Formula/v/vulkan-validationlayers.rb @@ -1,8 +1,8 @@ class VulkanValidationlayers < Formula desc "Vulkan layers that enable developers to verify correct use of the Vulkan API" homepage "https://github.com/KhronosGroup/Vulkan-ValidationLayers" - url "https://github.com/KhronosGroup/Vulkan-ValidationLayers/archive/refs/tags/v1.4.314.tar.gz" - sha256 "147e52f6782119170621b71c55e2ff72fc653f088b6ebc99e0ea27f7ebd89d04" + url "https://github.com/KhronosGroup/Vulkan-ValidationLayers/archive/refs/tags/v1.4.315.tar.gz" + sha256 "9e85fcd793fb1ee871ea8e293cb1f9736473614be23dd03a0dec8a5d1cee918c" license "Apache-2.0" head "https://github.com/KhronosGroup/Vulkan-ValidationLayers.git", branch: "main" From 93dd7aa2c51da45836c1a7c7495824650e04ae19 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 17:22:59 +0000 Subject: [PATCH 1003/1364] yoke 0.12.6 --- Formula/y/yoke.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/y/yoke.rb b/Formula/y/yoke.rb index 763d1874cb93d..134aee7cd887b 100644 --- a/Formula/y/yoke.rb +++ b/Formula/y/yoke.rb @@ -3,8 +3,8 @@ class Yoke < Formula homepage "https://yokecd.github.io/docs/" # We use a git checkout since the build relies on tags for the version url "https://github.com/yokecd/yoke.git", - tag: "v0.12.5", - revision: "a0c8bdbcae945d402117b2f21b1f06a930798667" + tag: "v0.12.6", + revision: "494c01f52f1622d5f023085b64585fcf6cf61bbf" license "MIT" head "https://github.com/yokecd/yoke.git", branch: "main" From 4e899faa2d31d667543b9666c0530dc1976628c9 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 18:27:46 +0000 Subject: [PATCH 1004/1364] terragrunt: update 0.78.3 bottle. --- Formula/t/terragrunt.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/t/terragrunt.rb b/Formula/t/terragrunt.rb index 73c16995db9f9..f56af090c9b8c 100644 --- a/Formula/t/terragrunt.rb +++ b/Formula/t/terragrunt.rb @@ -14,12 +14,12 @@ class Terragrunt < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "4e167f3b713e51456d6bf75c248b604edacf1db96197114c88cded7c47c67c38" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "4e167f3b713e51456d6bf75c248b604edacf1db96197114c88cded7c47c67c38" - sha256 cellar: :any_skip_relocation, arm64_ventura: "4e167f3b713e51456d6bf75c248b604edacf1db96197114c88cded7c47c67c38" - sha256 cellar: :any_skip_relocation, sonoma: "4aa79a804e3390c6bbfc413a88db72bcddfd8487119c0447e483c9c0ea700304" - sha256 cellar: :any_skip_relocation, ventura: "4aa79a804e3390c6bbfc413a88db72bcddfd8487119c0447e483c9c0ea700304" - sha256 cellar: :any_skip_relocation, x86_64_linux: "1343e29660723fb5cd7100bb4bb5b523f1db242b5327d964296d29d5a6f4253f" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "79ae2cf4af092b7a2b09d97165f8e2b23d36de3d67b1925fbd0dd5f286a044be" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "79ae2cf4af092b7a2b09d97165f8e2b23d36de3d67b1925fbd0dd5f286a044be" + sha256 cellar: :any_skip_relocation, arm64_ventura: "79ae2cf4af092b7a2b09d97165f8e2b23d36de3d67b1925fbd0dd5f286a044be" + sha256 cellar: :any_skip_relocation, sonoma: "458f36c53b5d090c5454c26fb6280cd95228a2eef5aece03956f1efd0520e3a8" + sha256 cellar: :any_skip_relocation, ventura: "458f36c53b5d090c5454c26fb6280cd95228a2eef5aece03956f1efd0520e3a8" + sha256 cellar: :any_skip_relocation, x86_64_linux: "579fb2160c68455262a0b76ac78dd49b1337f209cad201edbfca2bd1c88340cd" end depends_on "go" => :build From cb8a5aad31582b815edf3b60685b2cbe00398d50 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 18:28:40 +0000 Subject: [PATCH 1005/1364] yoke: update 0.12.6 bottle. --- Formula/y/yoke.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/y/yoke.rb b/Formula/y/yoke.rb index 134aee7cd887b..5c1e0389ba71f 100644 --- a/Formula/y/yoke.rb +++ b/Formula/y/yoke.rb @@ -9,13 +9,13 @@ class Yoke < Formula head "https://github.com/yokecd/yoke.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "274dc7dc5f8773d75342883aa2f5bbe973c84a5fefa53a7dd5824d96876e5afa" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "c25aa2600095fae32bffa43316b6854f5ccdee22675751747c60760c33c864dd" - sha256 cellar: :any_skip_relocation, arm64_ventura: "9bf43c585647026c85091b1248218415916e78e42884e8db857ebe0d4a845747" - sha256 cellar: :any_skip_relocation, sonoma: "a5d50d99fca4c829f53e5a16b1412451c46b96c495c55d970b22636a74aa893c" - sha256 cellar: :any_skip_relocation, ventura: "129926df54c4a05a8aa5e345ca941c2e5bc0ffcbde581ef317a3ec11fa3b974a" - sha256 cellar: :any_skip_relocation, arm64_linux: "303c9cae832c9b45d0568d2ad9c16a47e6c9d68f1c47bec5ad9a42ab331f4ee0" - sha256 cellar: :any_skip_relocation, x86_64_linux: "90859647f599334f7f16efa2e416e238dbe6c431ac1d76054184d447edd4c2c3" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "13cdbe69c990a2ea0ee2720b9f8da7be2e6dd9ee283d31213e21e486fa64dd41" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "2ccddf3eb119f8c108496c655f351f5f3dd594bff7095b80338367528f0a7340" + sha256 cellar: :any_skip_relocation, arm64_ventura: "eccb101d4515957ede2060416582489a68280c307bec7a7b94f33e1c04f7b510" + sha256 cellar: :any_skip_relocation, sonoma: "7d9bda3438f119f5da84c9b6df9bbb02523024c8c0d71102c3a01e732e767a59" + sha256 cellar: :any_skip_relocation, ventura: "ad326c0ee2d251634043443d1ebf3e51d90971384206002957a4ebae7dcf0f83" + sha256 cellar: :any_skip_relocation, arm64_linux: "188ed5506dc85459a8d22eaea18982ba147f2419dc559151fe4ab47b2bfd5a0e" + sha256 cellar: :any_skip_relocation, x86_64_linux: "55b73893d6fc650ce7b5349ebaa7a48b1648109cc0438e39382882bb7fb0b302" end depends_on "go" => :build From 1e06a94bd3ce9293125d026461ee7da6ee907f41 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 18:29:25 +0000 Subject: [PATCH 1006/1364] flyctl: update 0.3.120 bottle. --- Formula/f/flyctl.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/f/flyctl.rb b/Formula/f/flyctl.rb index a3c00d14c20ac..ce97c2d9002e1 100644 --- a/Formula/f/flyctl.rb +++ b/Formula/f/flyctl.rb @@ -18,13 +18,13 @@ class Flyctl < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "252d257595810deaf0ed83c05a4924f1d7c3d0ae17942f55d7565e3cbe68073c" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "252d257595810deaf0ed83c05a4924f1d7c3d0ae17942f55d7565e3cbe68073c" - sha256 cellar: :any_skip_relocation, arm64_ventura: "252d257595810deaf0ed83c05a4924f1d7c3d0ae17942f55d7565e3cbe68073c" - sha256 cellar: :any_skip_relocation, sonoma: "22907fcb277eb6d8c2f959792c8d1206f716465f23d83deb113ca16daee0d8ee" - sha256 cellar: :any_skip_relocation, ventura: "22907fcb277eb6d8c2f959792c8d1206f716465f23d83deb113ca16daee0d8ee" - sha256 cellar: :any_skip_relocation, arm64_linux: "01015bc84c32f7e88ff24b439fb520d80e0f9b32e12bb8012f2dece37963a46b" - sha256 cellar: :any_skip_relocation, x86_64_linux: "1b15ca090ca5bf55f9be12f0dc6384739abf1f1535bf650ce144270765623721" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "adf9d14e623e76673c4f40283cc680a415eeac6cb8916fa21c385798a1876f92" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "adf9d14e623e76673c4f40283cc680a415eeac6cb8916fa21c385798a1876f92" + sha256 cellar: :any_skip_relocation, arm64_ventura: "adf9d14e623e76673c4f40283cc680a415eeac6cb8916fa21c385798a1876f92" + sha256 cellar: :any_skip_relocation, sonoma: "ec44f2115cfe3af942f886363ebac48ee0e7250378731ffdfbd675c6be17dde2" + sha256 cellar: :any_skip_relocation, ventura: "ec44f2115cfe3af942f886363ebac48ee0e7250378731ffdfbd675c6be17dde2" + sha256 cellar: :any_skip_relocation, arm64_linux: "f27a9b5e39f1929517522a894446035d4a2da86e40d09896a5d628784ed4b146" + sha256 cellar: :any_skip_relocation, x86_64_linux: "42c6393bd8a6b8feab8ef64e7fd5b69fd18ecb9998b64e239ef515318cce9b05" end depends_on "go" => :build From b3d73aa947ef2ed264ba00b2e1bb2f0e67e175fa Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 18:29:41 +0000 Subject: [PATCH 1007/1364] tmex: update 2.0.4 bottle. --- Formula/t/tmex.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/t/tmex.rb b/Formula/t/tmex.rb index 957532f24e59e..0ddfa4255247d 100644 --- a/Formula/t/tmex.rb +++ b/Formula/t/tmex.rb @@ -6,13 +6,13 @@ class Tmex < Formula license "MIT" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "5e00c8b7bb9fa42a09334ce2d42d77842952f13d62a1483eec2247d82e144d18" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "5e00c8b7bb9fa42a09334ce2d42d77842952f13d62a1483eec2247d82e144d18" - sha256 cellar: :any_skip_relocation, arm64_ventura: "5e00c8b7bb9fa42a09334ce2d42d77842952f13d62a1483eec2247d82e144d18" - sha256 cellar: :any_skip_relocation, sonoma: "b8d600fd78cb7cb06e754aed87bdc33ad80b9c835a39528909192bb08f57b383" - sha256 cellar: :any_skip_relocation, ventura: "b8d600fd78cb7cb06e754aed87bdc33ad80b9c835a39528909192bb08f57b383" - sha256 cellar: :any_skip_relocation, arm64_linux: "b8d600fd78cb7cb06e754aed87bdc33ad80b9c835a39528909192bb08f57b383" - sha256 cellar: :any_skip_relocation, x86_64_linux: "b8d600fd78cb7cb06e754aed87bdc33ad80b9c835a39528909192bb08f57b383" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "3c6494934f2e31caf6457d71405d8f7fa13fcbed8489a20d1e66c2c910665ada" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "3c6494934f2e31caf6457d71405d8f7fa13fcbed8489a20d1e66c2c910665ada" + sha256 cellar: :any_skip_relocation, arm64_ventura: "3c6494934f2e31caf6457d71405d8f7fa13fcbed8489a20d1e66c2c910665ada" + sha256 cellar: :any_skip_relocation, sonoma: "1ffdcd4b358aa710a2bf465baf932722f1e1a4e0eccff83165cb52efcece2526" + sha256 cellar: :any_skip_relocation, ventura: "1ffdcd4b358aa710a2bf465baf932722f1e1a4e0eccff83165cb52efcece2526" + sha256 cellar: :any_skip_relocation, arm64_linux: "1ffdcd4b358aa710a2bf465baf932722f1e1a4e0eccff83165cb52efcece2526" + sha256 cellar: :any_skip_relocation, x86_64_linux: "1ffdcd4b358aa710a2bf465baf932722f1e1a4e0eccff83165cb52efcece2526" end depends_on "tmux" From 5994e2e4457cc8c13935dd8764aeaa718a40c8b2 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 18:30:32 +0000 Subject: [PATCH 1008/1364] semver: update 7.7.2 bottle. --- Formula/s/semver.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/s/semver.rb b/Formula/s/semver.rb index 90d15185ff8d9..d6f9821b13bc9 100644 --- a/Formula/s/semver.rb +++ b/Formula/s/semver.rb @@ -6,7 +6,7 @@ class Semver < Formula license "ISC" bottle do - sha256 cellar: :any_skip_relocation, all: "81375e351dab131d376193b01f54a96b2e30cbd18ff158c536f1932bf574f002" + sha256 cellar: :any_skip_relocation, all: "f31f20e5ff4a1429f55c12c0faa8b1a3fb0b9f9ad9d7d6d73f023d8bd8868af3" end depends_on "node" From 86e3e530461cb568d5337e73a7fc9897d51fd79b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 18:31:18 +0000 Subject: [PATCH 1009/1364] jxl-oxide: update 0.12.2 bottle. --- Formula/j/jxl-oxide.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/j/jxl-oxide.rb b/Formula/j/jxl-oxide.rb index 8b3b7d7ab87ea..82425dba36029 100644 --- a/Formula/j/jxl-oxide.rb +++ b/Formula/j/jxl-oxide.rb @@ -6,13 +6,13 @@ class JxlOxide < Formula license any_of: ["MIT", "Apache-2.0"] bottle do - sha256 cellar: :any, arm64_sequoia: "b188404b4c48300b956a953cb97f1692f445c05d02ea4555f773e940154d0f40" - sha256 cellar: :any, arm64_sonoma: "58a03c09bec35c08d488bd283d3dcc6f6e2567354089c106653019db717f655f" - sha256 cellar: :any, arm64_ventura: "cea0e98577bbdffa68cf3cdf2d39f28829f0b51c8652463c46e89b6a48fcc69d" - sha256 cellar: :any, sonoma: "b14d65394d38fabe23d9f156cab070ffc63df25eebb4c5af34314866ae1ce39d" - sha256 cellar: :any, ventura: "258b1dce5745ac33ef2b8e475ce278d929bdeddff8a5dc55c006eea31a8385e9" - sha256 cellar: :any_skip_relocation, arm64_linux: "13463c6085217ae5fb756f9689f2a06339a40f2974349ccafdf336aa0b532e09" - sha256 cellar: :any_skip_relocation, x86_64_linux: "810e036adb1d2a6c6e1c72b5144c304521aab51a229da36c0ed3e115d0748f39" + sha256 cellar: :any, arm64_sequoia: "2ef5a846c6ce8e8e8819712bb097782e9670bdfd293aba5973524abf76b2c4e2" + sha256 cellar: :any, arm64_sonoma: "cb4acba8480cab4a2a20b4347d687d6eb8980ce2ed69d50cc8f19adde2347327" + sha256 cellar: :any, arm64_ventura: "01886bc00349b81cc6c11d6e2ee8f3b0a1b1bdea0c023368d8c3bf88ab1cbdd0" + sha256 cellar: :any, sonoma: "57ed9baf6520a635a01710a29b5e21bcd26a7fab8c62595deef5faa1c4c8e836" + sha256 cellar: :any, ventura: "7320c637ed90444b0b060a962efcf0801f127cc859717f4d9d97b0a08bcfc8ad" + sha256 cellar: :any_skip_relocation, arm64_linux: "39164022d29a53a18003247a47cd45ff1d53d01cf1b8c15851a8fb655ca5efaa" + sha256 cellar: :any_skip_relocation, x86_64_linux: "b7d8cd9590f564c7766f13eb9e348be38cad7ad26cacb9f0fb8d56845008c429" end depends_on "rust" => :build From 15bfe88d7ebaf7f99db6f0777f25f5d870425fc9 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 18:32:51 +0000 Subject: [PATCH 1010/1364] shadowsocks-rust: update 1.23.4 bottle. --- Formula/s/shadowsocks-rust.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/s/shadowsocks-rust.rb b/Formula/s/shadowsocks-rust.rb index 61695476127da..c7defd3011249 100644 --- a/Formula/s/shadowsocks-rust.rb +++ b/Formula/s/shadowsocks-rust.rb @@ -7,13 +7,13 @@ class ShadowsocksRust < Formula head "https://github.com/shadowsocks/shadowsocks-rust.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "b7caa8cb29b666108888b975e6ffc44d42af333653fd554b52857f6ec888aa25" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "bcc3247159cdb7e323efe9d0e91ad7e73badabbb618b407a11223f363d5700d4" - sha256 cellar: :any_skip_relocation, arm64_ventura: "f6664f615d37eb810265e88690d7d9f8699b7cba1ab49b66704623747f350d9a" - sha256 cellar: :any_skip_relocation, sonoma: "c502b48295304b6b77b1d2429c62dd65b18625d09f569aefdf5273aaef631908" - sha256 cellar: :any_skip_relocation, ventura: "34ef9ceea99ca0fb3d15357f1250fef6f20fe9250a7c92d82840168ea971e5e2" - sha256 cellar: :any_skip_relocation, arm64_linux: "29e4c3717a3c9837af5ab174ec272d076a41c43558d6cc0608adef98654c99ca" - sha256 cellar: :any_skip_relocation, x86_64_linux: "6b3912a92b37972d18bc00806a69901f92d4aa7dc24f710679cc138e592d4bce" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "e7a77f9c0bb65cf58a9a2defd0289914a42854cd9a974980dec468ce7e969fc1" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "6296984cb50d7fd3aef88a8809a9911db92436d4bc98caf976d8fbeaf1479b0e" + sha256 cellar: :any_skip_relocation, arm64_ventura: "f9ce67ab52ae96cd5ccf89f8bbb64e1263633164e567fe96e4195a8f444b2133" + sha256 cellar: :any_skip_relocation, sonoma: "1191af72e64a9cd095770119b49bd53d345df0d5d41d9123a7ac2f371c534289" + sha256 cellar: :any_skip_relocation, ventura: "3a0f44423481492b31ede2596fe1eed81fe05a278fbccda0de86d5796f26006b" + sha256 cellar: :any_skip_relocation, arm64_linux: "5ddebf7cee1ecae6152b9f601e58fdd4d25386b33cb9ad196e25408993109a1f" + sha256 cellar: :any_skip_relocation, x86_64_linux: "48241830a76c4e367fc36ddf225cf083c84d61baa32a2ecb4bf42cb542abaa94" end depends_on "rust" => :build From 61b7d8b1eeeb7b22c893a1854688e595685112be Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 18:33:54 +0000 Subject: [PATCH 1011/1364] fatal: update 2025.05.12.00 bottle. --- Formula/f/fatal.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/f/fatal.rb b/Formula/f/fatal.rb index 7f2cb8aa3371e..2d36713e6a609 100644 --- a/Formula/f/fatal.rb +++ b/Formula/f/fatal.rb @@ -7,7 +7,7 @@ class Fatal < Formula head "https://github.com/facebook/fatal.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, all: "037b5901dda152af2f24fd555f42f146662e03261fff90b07ccc02dcf7d34631" + sha256 cellar: :any_skip_relocation, all: "a1c38d0b3f40a3e449a153e19050b5761974452afd710e532ddbb7aedd56eab4" end def install From ca7a8bd497593c8c761e3242e68c66ab93399ee9 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 18:36:08 +0000 Subject: [PATCH 1012/1364] bazel-diff: update 9.0.3 bottle. --- Formula/b/bazel-diff.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/b/bazel-diff.rb b/Formula/b/bazel-diff.rb index 35807645b015c..d262913542c06 100644 --- a/Formula/b/bazel-diff.rb +++ b/Formula/b/bazel-diff.rb @@ -6,7 +6,7 @@ class BazelDiff < Formula license "BSD-3-Clause" bottle do - sha256 cellar: :any_skip_relocation, all: "86bb4d78b24b7d2114926ebb5a41f3f8616eca291f3ea563bfc0210175a2d652" + sha256 cellar: :any_skip_relocation, all: "8e16f516a376286f2a86ae079cfa297dec7030f62202bb2bbf92b5af8db3ac68" end depends_on "bazel" => :test From fe7ba020a8a6d7d34ca42437e77c7a9b0661cc0e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 19:05:41 +0000 Subject: [PATCH 1013/1364] snowflake-cli: update 3.7.2 bottle. --- Formula/s/snowflake-cli.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/s/snowflake-cli.rb b/Formula/s/snowflake-cli.rb index 3580026ec7dc7..68d3f17339351 100644 --- a/Formula/s/snowflake-cli.rb +++ b/Formula/s/snowflake-cli.rb @@ -8,13 +8,13 @@ class SnowflakeCli < Formula license "Apache-2.0" bottle do - sha256 cellar: :any, arm64_sequoia: "ac5ec55a462c6ad90829e21ec83624c2f6026fb8f38a3c7d91207786402631ce" - sha256 cellar: :any, arm64_sonoma: "23af1310d7b077bbc4a11a3002dd6756befdade4756d0af0273b8e1d0738b556" - sha256 cellar: :any, arm64_ventura: "1c3163e39f584dc56482469644cad1bcde37d8934fcf2cae97557971e1ac862c" - sha256 cellar: :any, sonoma: "be8620f526e927366945a2551c3c8bec3b27aadae1c36c86ce76a4ad87ed9acc" - sha256 cellar: :any, ventura: "4a0491bbbdc5a3004495f6bc66add20eb15bb1783326d86d87ee38ea2cf34a7b" - sha256 cellar: :any_skip_relocation, arm64_linux: "619b82791f8af08eea1e101bffadd1c0a848dd8671606a2ba8f14dc9876c9433" - sha256 cellar: :any_skip_relocation, x86_64_linux: "e3014daf4f7ff3c64e311e6a6d31c76b5a9ab3db2dc2a211ea956c7465af5829" + sha256 cellar: :any, arm64_sequoia: "488bbf6c2939456d60196a3dbeb3425d12376795d0cedbd627538d3ba993f7d2" + sha256 cellar: :any, arm64_sonoma: "48f64424ceb5ac91327dbe3d0c2f96b593f463f9e21fcc4f5571fbd0bb0ca575" + sha256 cellar: :any, arm64_ventura: "a14bb336727b876b036f9da281a9f8a09c8c29040343cb362c638cc635497050" + sha256 cellar: :any, sonoma: "eaedf509e556463eaee2fc4bb60cd0408096107f61fb38e2a2aa4f0539934c14" + sha256 cellar: :any, ventura: "cb1baf1ed6406154f30a52cd7732cffe81a5c3e04d316cffa55d9b2c190568a7" + sha256 cellar: :any_skip_relocation, arm64_linux: "fa506406f1eb3d518180366d14629efdcec3cad5357687e0eead7c975c6fc2be" + sha256 cellar: :any_skip_relocation, x86_64_linux: "1ae0efc4066295bbe24da917a9c08bcbe3ef052b8745d283bd265c510be71e97" end depends_on "rust" => :build # for pydantic-core From 137a34ad42ee533304c3caed0eaf6dd165b180df Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 19:13:08 +0000 Subject: [PATCH 1014/1364] aws-c-common: update 0.12.3 bottle. --- Formula/a/aws-c-common.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/a/aws-c-common.rb b/Formula/a/aws-c-common.rb index 4670c6ff2d681..941346dba67dc 100644 --- a/Formula/a/aws-c-common.rb +++ b/Formula/a/aws-c-common.rb @@ -6,13 +6,13 @@ class AwsCCommon < Formula license "Apache-2.0" bottle do - sha256 cellar: :any, arm64_sequoia: "0218f6d2679676ceaaa6a49ce8aeaea818342d715be2f21f5ab08526d5e9e4f0" - sha256 cellar: :any, arm64_sonoma: "513cdeb3b84b1117efddb4631d33acd48b2836183378047c99328f991b7c6335" - sha256 cellar: :any, arm64_ventura: "263c6f9012bc2e917aad7ee965c4b4bac766c8db274ce06439a3d27805dbc1af" - sha256 cellar: :any, sonoma: "32c37184a44a52ebea261d15907b35b49ceb6d4fc8ac19eda05029440747155b" - sha256 cellar: :any, ventura: "d7c109a1848a07cf585a8f01b0702e657ab725765cc2edc16e5bfb6c6343bce7" - sha256 cellar: :any_skip_relocation, arm64_linux: "2252602d441b097b90a2c383263d78e601a429ad4b98492a178a78ee9dce4cf3" - sha256 cellar: :any_skip_relocation, x86_64_linux: "222bbd3f2b09890d4d2a2789ace9b2504cf757ab913e887da92707c5579ae193" + sha256 cellar: :any, arm64_sequoia: "62216a819dc3fc7e4534b1aa90bf5ceadd0b3ab12e90c3286755e7eeef3e1f28" + sha256 cellar: :any, arm64_sonoma: "735111272de4dbc4d9c0a95a867841a78288e3f4ea87464916c2929c180b9bcf" + sha256 cellar: :any, arm64_ventura: "7b5aeb2235e34c57c7cf649b99a96f41ef422d97a4a835d2df0f7979130f7ff1" + sha256 cellar: :any, sonoma: "0bcccffc3df99c0bc4714af8c5991c49b849e063b0db11542f11956987966c09" + sha256 cellar: :any, ventura: "3788ae3a3386b973dded01eb568b2c44aa587ef064aecdee5b14091d3ac1eef5" + sha256 cellar: :any_skip_relocation, arm64_linux: "bace9eb894ecc5047c4e2d617c4650a2f00aea7fec4372d1b9fb3a089b51b5e7" + sha256 cellar: :any_skip_relocation, x86_64_linux: "59b1efeeb051f62759b0fac6fe18fc0bd34caab96b2be74ebf4925325207db30" end depends_on "cmake" => :build From dfe352de08bedff3871e208c0da04aac62b2e246 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 19:49:02 +0000 Subject: [PATCH 1015/1364] apko 0.27.5 --- Formula/a/apko.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/a/apko.rb b/Formula/a/apko.rb index 6b7f1a08fe772..8581ec615e996 100644 --- a/Formula/a/apko.rb +++ b/Formula/a/apko.rb @@ -1,8 +1,8 @@ class Apko < Formula desc "Build OCI images from APK packages directly without Dockerfile" homepage "https://github.com/chainguard-dev/apko" - url "https://github.com/chainguard-dev/apko/archive/refs/tags/v0.27.4.tar.gz" - sha256 "51b5d54425a28e07d69af2cf7fff7126c9b864f711e1950f217e421fb041231f" + url "https://github.com/chainguard-dev/apko/archive/refs/tags/v0.27.5.tar.gz" + sha256 "2d1c3500e9b240fa6a2c22a08873240c042f47472e495defabe9c973b78c46dd" license "Apache-2.0" head "https://github.com/chainguard-dev/apko.git", branch: "main" From f890c720339be59c0ec6bffba9baf97acef7ce01 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 19:49:42 +0000 Subject: [PATCH 1016/1364] atlas 0.33.0 --- Formula/a/atlas.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/a/atlas.rb b/Formula/a/atlas.rb index 1e5cb785ac1c1..a24e2c9866ae6 100644 --- a/Formula/a/atlas.rb +++ b/Formula/a/atlas.rb @@ -3,8 +3,8 @@ class Atlas < Formula homepage "https://atlasgo.io/" # Upstream may not mark patch releases as latest on GitHub; it is fine to ship them. # See https://github.com/ariga/atlas/issues/1090#issuecomment-1225258408 - url "https://github.com/ariga/atlas/archive/refs/tags/v0.32.1.tar.gz" - sha256 "35b55b79764589429328c639a0505d7e2dc45abfa1dad028d9fe0360636b3b5a" + url "https://github.com/ariga/atlas/archive/refs/tags/v0.33.0.tar.gz" + sha256 "abec6e325122e4ad3c8df75b71265de56a584f30126650b3d976cdb1976fd736" license "Apache-2.0" head "https://github.com/ariga/atlas.git", branch: "master" From 596e13a87fbc00e844f86b8d8fa7eec9ea984c9f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 19:50:11 +0000 Subject: [PATCH 1017/1364] aws-nuke 3.52.2 --- Formula/a/aws-nuke.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/a/aws-nuke.rb b/Formula/a/aws-nuke.rb index 22499cb9711ff..77e0ad4c00ff5 100644 --- a/Formula/a/aws-nuke.rb +++ b/Formula/a/aws-nuke.rb @@ -1,8 +1,8 @@ class AwsNuke < Formula desc "Nuke a whole AWS account and delete all its resources" homepage "https://github.com/ekristen/aws-nuke" - url "https://github.com/ekristen/aws-nuke/archive/refs/tags/v3.52.1.tar.gz" - sha256 "2f8b2f7279113b7864814dbf91d2bd68e01f0dc919df4bd5062cbe4f43f94ef6" + url "https://github.com/ekristen/aws-nuke/archive/refs/tags/v3.52.2.tar.gz" + sha256 "12de30844cd5729dd727c8e0e86b1fd3c0e69495ac488a34de52db82f9da96c6" license "MIT" head "https://github.com/ekristen/aws-nuke.git", branch: "main" From 16f921e7c7d4d325f887af79c6f7adff146d632c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 19:50:33 +0000 Subject: [PATCH 1018/1364] awscli 2.27.13 --- Formula/a/awscli.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/a/awscli.rb b/Formula/a/awscli.rb index a6a4fabd91a69..baf595b4e0f13 100644 --- a/Formula/a/awscli.rb +++ b/Formula/a/awscli.rb @@ -3,8 +3,8 @@ class Awscli < Formula desc "Official Amazon AWS command-line interface" homepage "https://aws.amazon.com/cli/" - url "https://github.com/aws/aws-cli/archive/refs/tags/2.27.12.tar.gz" - sha256 "6ae980c54efa86926d457a4c97a8488ed5aaef69d72c53528ef9a6f631d24a9a" + url "https://github.com/aws/aws-cli/archive/refs/tags/2.27.13.tar.gz" + sha256 "a898d170edb802aa3422da00be1a3ddb31281a381f069ca55ad6c67b71550633" license "Apache-2.0" head "https://github.com/aws/aws-cli.git", branch: "v2" From b592350f9b5e631fc32d478f7abd48997a527fb7 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 19:51:38 +0000 Subject: [PATCH 1019/1364] buf 1.54.0 --- Formula/b/buf.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/b/buf.rb b/Formula/b/buf.rb index 46f4c0a733025..7ce5eefa1805b 100644 --- a/Formula/b/buf.rb +++ b/Formula/b/buf.rb @@ -1,8 +1,8 @@ class Buf < Formula desc "New way of working with Protocol Buffers" homepage "https://github.com/bufbuild/buf" - url "https://github.com/bufbuild/buf/archive/refs/tags/v1.53.0.tar.gz" - sha256 "8051e6ec73d6dbf5b862fd3319128a617f18fb06f86aac89c58c02f514abc1ca" + url "https://github.com/bufbuild/buf/archive/refs/tags/v1.54.0.tar.gz" + sha256 "e64786bd2f17dc3731dd30280cf1ba24e0781300ea0f781251ce98ce13142f49" license "Apache-2.0" head "https://github.com/bufbuild/buf.git", branch: "main" From 6a7f369a3a9fdad158aceff09ff2a602267987ce Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 19:53:38 +0000 Subject: [PATCH 1020/1364] code-server 4.100.0 --- Formula/c/code-server.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/code-server.rb b/Formula/c/code-server.rb index b9937100371ac..451f545805008 100644 --- a/Formula/c/code-server.rb +++ b/Formula/c/code-server.rb @@ -1,8 +1,8 @@ class CodeServer < Formula desc "Access VS Code through the browser" homepage "https://github.com/coder/code-server" - url "https://registry.npmjs.org/code-server/-/code-server-4.99.4.tgz" - sha256 "abbce6f8113b9cbde0178af40cb58381b16038c79cbca2c5bf1f244603204fc5" + url "https://registry.npmjs.org/code-server/-/code-server-4.100.0.tgz" + sha256 "dd75fcae2b8a6fa2915ac12b36c303dad53e06477c2c8711be369f67c806167f" license "MIT" bottle do From 974806e249e5408a721ba14522150de2a99abd8a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 19:54:07 +0000 Subject: [PATCH 1021/1364] convox 3.21.3 --- Formula/c/convox.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/convox.rb b/Formula/c/convox.rb index 6cc90f38db136..d2f54b6b6eb7c 100644 --- a/Formula/c/convox.rb +++ b/Formula/c/convox.rb @@ -1,8 +1,8 @@ class Convox < Formula desc "Command-line interface for the Convox PaaS" homepage "https://convox.com/" - url "https://github.com/convox/convox/archive/refs/tags/3.21.2.tar.gz" - sha256 "c14371deec5615f8a03a262836f530f689afa04b8eb6cf6d4a781cb537f81fe0" + url "https://github.com/convox/convox/archive/refs/tags/3.21.3.tar.gz" + sha256 "2dfbb51b073b335adb505ed5c3a034aa34ed62572ea9e618b176559624f3e4d3" license "Apache-2.0" version_scheme 1 head "https://github.com/convox/convox.git", branch: "master" From 10556a7d0dfe753ada66dd91befb04bae9c56083 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 19:54:37 +0000 Subject: [PATCH 1022/1364] crystal 1.16.3 --- Formula/c/crystal.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/crystal.rb b/Formula/c/crystal.rb index accd296449839..c979257bf2a83 100644 --- a/Formula/c/crystal.rb +++ b/Formula/c/crystal.rb @@ -5,8 +5,8 @@ class Crystal < Formula stable do # TODO: Replace arm64 linux bootstrap with official when available - url "https://github.com/crystal-lang/crystal/archive/refs/tags/1.16.2.tar.gz" - sha256 "4f032761a4018c6fbcf1649b866217d9eb2f3139599c70fcb6dac83714839c5e" + url "https://github.com/crystal-lang/crystal/archive/refs/tags/1.16.3.tar.gz" + sha256 "eb222af4d2aa269ed0f6c731661431a4fd97713de13f2f0a7c71e26140ca9d23" resource "shards" do url "https://github.com/crystal-lang/shards/archive/refs/tags/v0.19.1.tar.gz" From 64da9bd00e71a2d5fa7eae986499e11a8413730c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 19:56:36 +0000 Subject: [PATCH 1023/1364] eksctl 0.208.0 --- Formula/e/eksctl.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/e/eksctl.rb b/Formula/e/eksctl.rb index 3663c685b9f99..d6c099d957c49 100644 --- a/Formula/e/eksctl.rb +++ b/Formula/e/eksctl.rb @@ -2,8 +2,8 @@ class Eksctl < Formula desc "Simple command-line tool for creating clusters on Amazon EKS" homepage "https://eksctl.io" url "https://github.com/eksctl-io/eksctl.git", - tag: "0.207.0", - revision: "87e1d6e6eabc73115c92f29edc03785d9a398a7d" + tag: "0.208.0", + revision: "bcdd6ecb06ba883c96baa7d860141896969a2b71" license "Apache-2.0" head "https://github.com/eksctl-io/eksctl.git", branch: "main" From 073238ad66cf9a3c64a1f5adc8e7f768583b4149 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 20:05:11 +0000 Subject: [PATCH 1024/1364] melange 0.23.17 --- Formula/m/melange.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/m/melange.rb b/Formula/m/melange.rb index 255fc51d8abaa..a9f23bc6bf7c4 100644 --- a/Formula/m/melange.rb +++ b/Formula/m/melange.rb @@ -1,8 +1,8 @@ class Melange < Formula desc "Build APKs from source code" homepage "https://github.com/chainguard-dev/melange" - url "https://github.com/chainguard-dev/melange/archive/refs/tags/v0.23.16.tar.gz" - sha256 "52e26f52f243543c5887d37839088378ffd0566099b6d68f347dd226760b0638" + url "https://github.com/chainguard-dev/melange/archive/refs/tags/v0.23.17.tar.gz" + sha256 "af7cfcc8a88803d2f4c4a51d910e58aa76eb573eb380cefcc7473e80ec28308e" license "Apache-2.0" head "https://github.com/chainguard-dev/melange.git", branch: "main" From 2b13a44eea96efefcc1bb05d65e1b6cc192c0221 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 20:07:25 +0000 Subject: [PATCH 1025/1364] nvc 1.16.1 --- Formula/n/nvc.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/n/nvc.rb b/Formula/n/nvc.rb index 81db7b75b797d..4877555ec463a 100644 --- a/Formula/n/nvc.rb +++ b/Formula/n/nvc.rb @@ -1,8 +1,8 @@ class Nvc < Formula desc "VHDL compiler and simulator" homepage "https://www.nickg.me.uk/nvc/" - url "https://github.com/nickg/nvc/releases/download/r1.16.0/nvc-1.16.0.tar.gz" - sha256 "6848a478907acc28de7f176ff9cc3085ae7b30d3ff82741eaffcc6de49645681" + url "https://github.com/nickg/nvc/releases/download/r1.16.1/nvc-1.16.1.tar.gz" + sha256 "47e5a62bf5919829075a18b86d0506b5329d049709bd2e939a7b2814b36b9cce" license "GPL-3.0-or-later" bottle do From 252513e9a51ba645fc8d54ea3b4faa52dd8d1763 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 20:07:31 +0000 Subject: [PATCH 1026/1364] libdeflate: update 1.24 bottle. --- Formula/lib/libdeflate.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/lib/libdeflate.rb b/Formula/lib/libdeflate.rb index ecc755020b80e..13909725d74d5 100644 --- a/Formula/lib/libdeflate.rb +++ b/Formula/lib/libdeflate.rb @@ -6,13 +6,13 @@ class Libdeflate < Formula license "MIT" bottle do - sha256 cellar: :any, arm64_sequoia: "0a70dfdf41b38cacf0886866614b2e1fa1187cf45cfa34b05442fa129471b1cd" - sha256 cellar: :any, arm64_sonoma: "15e665a6443b3f652cb920892a936cf09af93fb518c2771fde48211f3cb81a11" - sha256 cellar: :any, arm64_ventura: "163a29ded43e4a43301b2293f791046149afed398d3d25db99606c1a72747db5" - sha256 cellar: :any, sonoma: "c623df6939889263cdaa4467ab95f63f911bfc2bed786b1a27733b0c055ae9cc" - sha256 cellar: :any, ventura: "29c4f0b40032c3d9e95c6e2994369da30a8b3f90b2dd91529eac78c8bde952a2" - sha256 cellar: :any_skip_relocation, arm64_linux: "48f3b95044b4ac10dd047f01ffd8e9b5ec6661950ac5348eee5a18e4e33550ec" - sha256 cellar: :any_skip_relocation, x86_64_linux: "d2ff89c9b3782110b6b0d3f6c99398ada2780ce3a3d98b50ec2fa6e2d2c7c82e" + sha256 cellar: :any, arm64_sequoia: "187850054c03e9417b2234ab30efa87b93a029b31e28fcb95b169579217ad333" + sha256 cellar: :any, arm64_sonoma: "b0672b22ba14406d032136734bb5852125bbe61c651253a3ed1820d7196557a2" + sha256 cellar: :any, arm64_ventura: "66411c4bcde1c756aaa09c46dd3e70e3b3992843efd5c795c23b0750a2f58002" + sha256 cellar: :any, sonoma: "2e7067afa9095766f5ea81162c05028e50d433bd334162874974598841fb9415" + sha256 cellar: :any, ventura: "879ece3dc6bbe8171520d17bb94f234df0a0eed235c99397ff053d8596ecd20a" + sha256 cellar: :any_skip_relocation, arm64_linux: "552ea942fcb9f35324efe30f6465f1938987c80d9a391c34b22f3e81a1191a2d" + sha256 cellar: :any_skip_relocation, x86_64_linux: "784b1c1d1259c7b078883e0e14aabed1df975bf4eb483faea843cf2526032020" end depends_on "cmake" => :build From 46976ebdb1769fbac1707e92e42ee56575bb6606 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 20:11:42 +0000 Subject: [PATCH 1027/1364] ramalama 0.8.3 --- Formula/r/ramalama.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/r/ramalama.rb b/Formula/r/ramalama.rb index ce566626d9f4a..1cbcfe7596f58 100644 --- a/Formula/r/ramalama.rb +++ b/Formula/r/ramalama.rb @@ -3,8 +3,8 @@ class Ramalama < Formula desc "Goal of RamaLama is to make working with AI boring" homepage "https://github.com/containers/ramalama" - url "https://files.pythonhosted.org/packages/40/05/2b6088c894e37ca4215e93e41219348678f850331be3a2843cd4baefa5d3/ramalama-0.8.2.tar.gz" - sha256 "21e1feb44f62d9a2bcc600f2ab71477966fa70d5797fee17c011edf08cae06ec" + url "https://files.pythonhosted.org/packages/d0/e1/b76be2c5104562346a05027d8314e2765ae91578fdf7960813e40a599bb5/ramalama-0.8.3.tar.gz" + sha256 "14579571e0f890bcd3f153d163107f5a8d2af1fc4729ed280772f59d2ffa0ad0" license "MIT" bottle do From 5ee41d70631b891cc016af6f4722cc48dc663b88 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 20:13:28 +0000 Subject: [PATCH 1028/1364] sendme 0.26.0 --- Formula/s/sendme.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/s/sendme.rb b/Formula/s/sendme.rb index cee0289b8763c..d03f455752ff2 100644 --- a/Formula/s/sendme.rb +++ b/Formula/s/sendme.rb @@ -1,8 +1,8 @@ class Sendme < Formula desc "Tool to send files and directories, based on iroh" homepage "https://iroh.computer/sendme" - url "https://github.com/n0-computer/sendme/archive/refs/tags/v0.25.0.tar.gz" - sha256 "d50c39cbe828947a5acf67f4c0d1db46017ff9e2fe2c8e77970dd515b1b024d7" + url "https://github.com/n0-computer/sendme/archive/refs/tags/v0.26.0.tar.gz" + sha256 "d41bd166e08b611d993e4bdf01c66610406fe93338783fe9a310eaf726fc337f" license "MIT" head "https://github.com/n0-computer/sendme.git", branch: "main" From 135ba6f472bed2a82087fc12fafac1de178b5f16 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 20:16:52 +0000 Subject: [PATCH 1029/1364] tomcat@10 10.1.41 --- Formula/t/tomcat@10.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Formula/t/tomcat@10.rb b/Formula/t/tomcat@10.rb index 9c34197336852..94f58ec40449f 100644 --- a/Formula/t/tomcat@10.rb +++ b/Formula/t/tomcat@10.rb @@ -1,9 +1,9 @@ class TomcatAT10 < Formula desc "Implementation of Java Servlet and JavaServer Pages" homepage "https://tomcat.apache.org/" - url "https://www.apache.org/dyn/closer.lua?path=tomcat/tomcat-10/v10.1.40/bin/apache-tomcat-10.1.40.tar.gz" - mirror "https://archive.apache.org/dist/tomcat/tomcat-10/v10.1.40/bin/apache-tomcat-10.1.40.tar.gz" - sha256 "25f1e607f17ee2fa99e329eec23b6393ab9e1390929c6cdcb31f749576b94d8e" + url "https://www.apache.org/dyn/closer.lua?path=tomcat/tomcat-10/v10.1.41/bin/apache-tomcat-10.1.41.tar.gz" + mirror "https://archive.apache.org/dist/tomcat/tomcat-10/v10.1.41/bin/apache-tomcat-10.1.41.tar.gz" + sha256 "1f7cc8cce2d5f4acd35491d0fa2abafa6ddd9bb0425b57b277310fde5ff2fcb3" license "Apache-2.0" livecheck do From 6bb51aab40f5c87ee03f9ca9857e25aae32a6550 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 20:49:34 +0000 Subject: [PATCH 1030/1364] nvc: update 1.16.1 bottle. --- Formula/n/nvc.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/n/nvc.rb b/Formula/n/nvc.rb index 4877555ec463a..53511aaecf17c 100644 --- a/Formula/n/nvc.rb +++ b/Formula/n/nvc.rb @@ -6,13 +6,13 @@ class Nvc < Formula license "GPL-3.0-or-later" bottle do - sha256 arm64_sequoia: "8a256c9ff041834ad1aa6e46a0d4c5b73a9d100eaf92998e6ef5df191fb7afbf" - sha256 arm64_sonoma: "4c2f1cd536fc6219a36f6e11c84b6a33bb5bb65aef5fef907ebdfbb094524f4f" - sha256 arm64_ventura: "108b19a91c2be21610fdc95a8ea65954ac452783eab409fdecb0f399248828d8" - sha256 sonoma: "ae3bfe68f79a0d0db4ece1ac8b8dcdd1ba92ca73466912444689d7ef9de8a1c5" - sha256 ventura: "bcadcf60d9c4147de34def0d3d457b0973fe0046497fcafca5d420de89230b4e" - sha256 arm64_linux: "f0ffbdaaa453b34997a84b0d7cd59d349a86b4e18997123507100bc8c95756f9" - sha256 x86_64_linux: "c5fa194a80132661082fb4c8803078bb4e0e965f74122678721cf761f3a2e3ca" + sha256 arm64_sequoia: "f212f790b7773755f193f24309fc295d5fcee3dc5e7d322a02dd2a9cc512b688" + sha256 arm64_sonoma: "58b27a43bf6abf5bca361454b7acacc98d692f589417903460fae04518a0ba22" + sha256 arm64_ventura: "5af45da380fc4ad9fef063638679e6734cd5b8ba0616921d1575d20072aa194c" + sha256 sonoma: "29f01531b9fc6f54fe496b6c39670adc5f8e1e3d8ea20941d35b44ca97fba775" + sha256 ventura: "a152b8ae5366828795c883149cbb26f9b5e72302a7aef6d52cc6937b8e63d32d" + sha256 arm64_linux: "75f2f85a60c9f5019228e0819269ad752416a05bdc10096a6f5e6369a38e6aac" + sha256 x86_64_linux: "efb90d8fb00572e94e752e2d257bd11bf99e337bb053fccb2bcdee2187bcade7" end head do From 4406c8d4fd803ab47bc4d1acf01f13b7b918e95b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 20:49:34 +0000 Subject: [PATCH 1031/1364] ramalama: update 0.8.3 bottle. --- Formula/r/ramalama.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/r/ramalama.rb b/Formula/r/ramalama.rb index 1cbcfe7596f58..356238060af86 100644 --- a/Formula/r/ramalama.rb +++ b/Formula/r/ramalama.rb @@ -8,13 +8,13 @@ class Ramalama < Formula license "MIT" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "046d79ee163ab2a551cb24586ee1a5e4dbeb5f72e64b38d0b9e03a60baac19b2" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "046d79ee163ab2a551cb24586ee1a5e4dbeb5f72e64b38d0b9e03a60baac19b2" - sha256 cellar: :any_skip_relocation, arm64_ventura: "046d79ee163ab2a551cb24586ee1a5e4dbeb5f72e64b38d0b9e03a60baac19b2" - sha256 cellar: :any_skip_relocation, sonoma: "6e0e4c1ac15c72e838b6dff204061dbb64df2e175f8c8aba59de3aa5df83b33f" - sha256 cellar: :any_skip_relocation, ventura: "6e0e4c1ac15c72e838b6dff204061dbb64df2e175f8c8aba59de3aa5df83b33f" - sha256 cellar: :any_skip_relocation, arm64_linux: "63a8b35b92840deea8e310a94b607108556492051208c0b509b5823026ab69bb" - sha256 cellar: :any_skip_relocation, x86_64_linux: "63a8b35b92840deea8e310a94b607108556492051208c0b509b5823026ab69bb" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "d21e57800d083a7a5b462fc09f81340ad99bfa4443bdbc25b74c80db601da399" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "d21e57800d083a7a5b462fc09f81340ad99bfa4443bdbc25b74c80db601da399" + sha256 cellar: :any_skip_relocation, arm64_ventura: "d21e57800d083a7a5b462fc09f81340ad99bfa4443bdbc25b74c80db601da399" + sha256 cellar: :any_skip_relocation, sonoma: "ab3de7d6beed92c2ac79cb21ac0775e7930457c88416c46bca2bdd1660573d45" + sha256 cellar: :any_skip_relocation, ventura: "ab3de7d6beed92c2ac79cb21ac0775e7930457c88416c46bca2bdd1660573d45" + sha256 cellar: :any_skip_relocation, arm64_linux: "b4c64e2b26f4c3c655702cfa2f6e07bede295e2450b6ed1b6045b0d710bddb8e" + sha256 cellar: :any_skip_relocation, x86_64_linux: "b4c64e2b26f4c3c655702cfa2f6e07bede295e2450b6ed1b6045b0d710bddb8e" end depends_on "llama.cpp" From da0065b3bd4d8e12d29d2c426cb664851b2e7fda Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 20:50:21 +0000 Subject: [PATCH 1032/1364] aws-nuke: update 3.52.2 bottle. --- Formula/a/aws-nuke.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/a/aws-nuke.rb b/Formula/a/aws-nuke.rb index 77e0ad4c00ff5..a9fa007658bf5 100644 --- a/Formula/a/aws-nuke.rb +++ b/Formula/a/aws-nuke.rb @@ -7,13 +7,13 @@ class AwsNuke < Formula head "https://github.com/ekristen/aws-nuke.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "db5b575025683839f266f4d762fc2e75de37d8ece52854a64c448685d8b8107e" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "db5b575025683839f266f4d762fc2e75de37d8ece52854a64c448685d8b8107e" - sha256 cellar: :any_skip_relocation, arm64_ventura: "db5b575025683839f266f4d762fc2e75de37d8ece52854a64c448685d8b8107e" - sha256 cellar: :any_skip_relocation, sonoma: "862945bd40b2d0746ef68eed3e7dea30921f6b07b23a6543f325f9246affe86b" - sha256 cellar: :any_skip_relocation, ventura: "862945bd40b2d0746ef68eed3e7dea30921f6b07b23a6543f325f9246affe86b" - sha256 cellar: :any_skip_relocation, arm64_linux: "c6e3ff75132a8d6efc6798588d7d7021b236a5f95f9782b30103fede68b0799b" - sha256 cellar: :any_skip_relocation, x86_64_linux: "84db8000637fe7b93b1cf4a84df4a1ae50eee6344b7bc1fd8bb3a5d2b5e919c7" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "aa3e55a029e151d156c726310cb77c56c5d97e94257cb34ef771d6fe1cfd536d" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "aa3e55a029e151d156c726310cb77c56c5d97e94257cb34ef771d6fe1cfd536d" + sha256 cellar: :any_skip_relocation, arm64_ventura: "aa3e55a029e151d156c726310cb77c56c5d97e94257cb34ef771d6fe1cfd536d" + sha256 cellar: :any_skip_relocation, sonoma: "65d03df67cde6c9e0aaa843a543224195cccd9790550f4643d54eb9586056cb4" + sha256 cellar: :any_skip_relocation, ventura: "65d03df67cde6c9e0aaa843a543224195cccd9790550f4643d54eb9586056cb4" + sha256 cellar: :any_skip_relocation, arm64_linux: "da2220cc86c11b84ec49bcc59c6c745bc469b4c8130bb3d364a30ae6f6eec14f" + sha256 cellar: :any_skip_relocation, x86_64_linux: "dc1bda29462ac558231d84406ec17ca9cfe0a914a3f0efccf554893b2408c37e" end depends_on "go" => :build From 62b57dbc401c784959c3d47ad276596b04ebb15c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 20:51:33 +0000 Subject: [PATCH 1033/1364] melange: update 0.23.17 bottle. --- Formula/m/melange.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/m/melange.rb b/Formula/m/melange.rb index a9f23bc6bf7c4..598dc799a938f 100644 --- a/Formula/m/melange.rb +++ b/Formula/m/melange.rb @@ -12,12 +12,12 @@ class Melange < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "0b6e28487e980a22b510c3219d842749f5b1c625e84d22a7849c9b97ed3aa3ac" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "78921dc88be16c02b0931a61e97190c353f4a0078fc9c331c89c3e531e620be0" - sha256 cellar: :any_skip_relocation, arm64_ventura: "affe8ee0dec62d75b1e462ed9da9aedaaca383438fc856f647458acd437804a7" - sha256 cellar: :any_skip_relocation, sonoma: "9bba4accdd3c0c06e671dfd539a5a6ca25328bd3221bd0cb770a97895646376f" - sha256 cellar: :any_skip_relocation, ventura: "3514c517e6fd892322671382a910a73295790cbcdba2fb25ea5a399d07e1ddf2" - sha256 cellar: :any_skip_relocation, x86_64_linux: "cd8c074f7aec678d65792bda0c9b3a6405c2db29da3bd28a014a94f6ba355cd0" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "01ddfe0b6df070f71df65ca6c0f0fa8fa0829e0c0cd5846d8c6948705e6d1538" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "e951846ea50121a10eb5d6694878bfb3d41a7f6102d2469026281a43eb40ce6b" + sha256 cellar: :any_skip_relocation, arm64_ventura: "0dde179ad7c0f66fa8a649ebbddef1799ea07c24e6da7ee811b7e4eabe4b7245" + sha256 cellar: :any_skip_relocation, sonoma: "60e5f4bfa0c114df394375073c4a9fe96ae213b8d102a483bcb63c510c734c95" + sha256 cellar: :any_skip_relocation, ventura: "b50714ee5644c4c370a0a428edd046166543e134647de29756988878a7e62bd3" + sha256 cellar: :any_skip_relocation, x86_64_linux: "3e21bde3386058f476fa437f47d5f0be70bf69ea41d569b4b8f7bcf232b6ca46" end depends_on "go" => :build From e132c55757c18ee60f53a120df7acbf2941f5444 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 20:52:03 +0000 Subject: [PATCH 1034/1364] eksctl: update 0.208.0 bottle. --- Formula/e/eksctl.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/e/eksctl.rb b/Formula/e/eksctl.rb index d6c099d957c49..7f13a30a8c65d 100644 --- a/Formula/e/eksctl.rb +++ b/Formula/e/eksctl.rb @@ -8,13 +8,13 @@ class Eksctl < Formula head "https://github.com/eksctl-io/eksctl.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "021338619fe5fc1224f8a123a3612fc5f701a7420d4d5495437baba66253d381" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "9c8196b9d93aaaf79287df6d74f1f536922f80c8225e692e8fd6329720f5079e" - sha256 cellar: :any_skip_relocation, arm64_ventura: "8e65b16309e2640e0a02fe13e38c3bc9405f389af3edc2a35193888aef32fc22" - sha256 cellar: :any_skip_relocation, sonoma: "d5fc9cb18b7b2a82f8a34e9b5e5e0af9c239d48da4cc17d988ea2d479d38c28e" - sha256 cellar: :any_skip_relocation, ventura: "b7db237992c5b65551fb02bbcda11373fd5bac895432ad2271a3df3f41fde09e" - sha256 cellar: :any_skip_relocation, arm64_linux: "33c7d893d1c8eecb4d5ec5ae443410433d1607aec43adcba5d7a2e36453962d0" - sha256 cellar: :any_skip_relocation, x86_64_linux: "0e756a10fc54ffff4b541b9efbdc5259ec6a8c63589bb1167c5a0b5781274fd2" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "c1506845bc0f202c87f19d263ac9ca7edd1bc92ddc123c289a0a06d680c23765" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "7584d214f35e533723078c611139fba9173f6fea49fc0fcc8a037a21193e3e64" + sha256 cellar: :any_skip_relocation, arm64_ventura: "2b2b6728f05e11e1f150bf67d863d16ff7d2639ed32888222c588fa51dc229e9" + sha256 cellar: :any_skip_relocation, sonoma: "99ff481cdfae7273a3bfb1b2b17999769a1a9f01388f64f0b07d395f5940315a" + sha256 cellar: :any_skip_relocation, ventura: "fb1a5cf665761792e7d71b152d658d518229687c54dd4bda4382ce694d2a24d6" + sha256 cellar: :any_skip_relocation, arm64_linux: "0f1151fd9211b8c4fcef5b4174b601098eac28c06fc8c88040e760232073513c" + sha256 cellar: :any_skip_relocation, x86_64_linux: "3afafe1e8ac3fe12a4026d1c2dd0c716b9212b737fc50694037e9a62db41919e" end depends_on "go" => :build From c19f10692aff0d26e78b8ac70c0985386c4a2d1e Mon Sep 17 00:00:00 2001 From: Patrick Linnane Date: Mon, 12 May 2025 13:52:09 -0700 Subject: [PATCH 1035/1364] zizmor: add HEAD Signed-off-by: Patrick Linnane --- Formula/z/zizmor.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/z/zizmor.rb b/Formula/z/zizmor.rb index b99231171db36..6a1cf17d676b3 100644 --- a/Formula/z/zizmor.rb +++ b/Formula/z/zizmor.rb @@ -4,6 +4,7 @@ class Zizmor < Formula url "https://github.com/zizmorcore/zizmor/archive/refs/tags/v1.7.0.tar.gz" sha256 "9564db26f6e134a8f23f6d92c48a25c7cf457fed5de5ac76643cd45abf098129" license "MIT" + head "https://github.com/zizmorcore/zizmor.git", branch: "main" bottle do rebuild 1 From 900c4edf1c99fc612f8f5880d4f074e1141a05c3 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 20:52:39 +0000 Subject: [PATCH 1036/1364] sendme: update 0.26.0 bottle. --- Formula/s/sendme.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/s/sendme.rb b/Formula/s/sendme.rb index d03f455752ff2..25d9b3ade5501 100644 --- a/Formula/s/sendme.rb +++ b/Formula/s/sendme.rb @@ -7,13 +7,13 @@ class Sendme < Formula head "https://github.com/n0-computer/sendme.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "80ab0de98e09c5b9915a44a75e441d0724b91342aabddae8839183c3fef5292c" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "4943b7174fcf8759dc6820853270f84da3272581f448973c0eed2f659b31f317" - sha256 cellar: :any_skip_relocation, arm64_ventura: "a8d1390110f8326011e78646117cbf07ef5df02abb0cb672e5b19fa5c0e65b37" - sha256 cellar: :any_skip_relocation, sonoma: "902ae570d8182e3dab7c0e190e41349bbe240fee4fa4ee60c63510e9d285fd84" - sha256 cellar: :any_skip_relocation, ventura: "7f9e7975131baf76c40bf5c6f8af2b421d9058473f7a96201703ba702e5cb949" - sha256 cellar: :any_skip_relocation, arm64_linux: "6829d388877534078f0be9e43c47de69f52d67c79af2ec4213a0e038babd3e93" - sha256 cellar: :any_skip_relocation, x86_64_linux: "cbf6e22046177118629a060d27565012c52c5b3e98c955a9ba9b9853051693be" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "b8e9e14ec2f39f461b899a8d6c0dedfaee493b49674c40ef11d3a1f5f42f58de" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "9670e36e17de672428e0894f4545f1974db38c17615e533c3e508d56f6f4d43c" + sha256 cellar: :any_skip_relocation, arm64_ventura: "70fbf950de08c9d17d5499da8fafb68208523331bc988b84112f2fa3ce8309ac" + sha256 cellar: :any_skip_relocation, sonoma: "b7bd3d3efda5aae5d52b9985325dd8892611349f9258a773e058bd661b75e58f" + sha256 cellar: :any_skip_relocation, ventura: "036983cc3a388d0aed8096a078b42f39f98e3199309fac245057e554dfbc1405" + sha256 cellar: :any_skip_relocation, arm64_linux: "fb83096740b4615fb2a41d62536a6625d342db45bf85e1df35a3ae7a8de320ff" + sha256 cellar: :any_skip_relocation, x86_64_linux: "c26cea22df1f133fda1526b2807ba8c08df227f85de2f5597d237977b176fc7b" end depends_on "rust" => :build From 996c85d21b76cfdf813294f3861e58baa5bbe418 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 20:53:13 +0000 Subject: [PATCH 1037/1364] convox: update 3.21.3 bottle. --- Formula/c/convox.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/convox.rb b/Formula/c/convox.rb index d2f54b6b6eb7c..1c3ee9b77fd36 100644 --- a/Formula/c/convox.rb +++ b/Formula/c/convox.rb @@ -13,13 +13,13 @@ class Convox < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "7e7e9fb8c6e4f00e26a64a26c03a913e84185199629b5b442eca79bd73a9d795" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "039c65cb3dbf1ba8426666b18d3b7e0fbc8d8de8517e2c99f9e3a38e79291b9e" - sha256 cellar: :any_skip_relocation, arm64_ventura: "10ca5308a3107f0ab2773567d58b4bb3cf354d6941ced5e47dd78e7e90e13e00" - sha256 cellar: :any_skip_relocation, sonoma: "500f6d150e2575d72f3e10757ddee4de663ccdf5c03a2de7d7e409b0945d8172" - sha256 cellar: :any_skip_relocation, ventura: "6b8dbfa97f10d666f0c9fe194817e1e354b38c0c8f5a747702622d6c13db416d" - sha256 cellar: :any_skip_relocation, arm64_linux: "223ab57bf41bf1da8c42694dc8c2d687a1f111f2235a61f6844760df4cf13648" - sha256 cellar: :any_skip_relocation, x86_64_linux: "988070c8608a854e20c4eb9104baa837ed90d20570951c52e5d811223802a3e9" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "e2f752f5389d47373025f4ebc653af95d1dcde8b69d30acc0136f5b6ee0dc91c" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "c15ee0569577203170cfffbfeac14861d4dad6b08cf17165c7fb12d8f23d6319" + sha256 cellar: :any_skip_relocation, arm64_ventura: "d5a5a7061660e85fbdc53bb43d7d524dd39e9813e96d0344c405d339f107ad62" + sha256 cellar: :any_skip_relocation, sonoma: "0dc2f48bb43a73b3703a834c3c1d19d4b7e0cfbdf3189b0b1377da5982cf8610" + sha256 cellar: :any_skip_relocation, ventura: "ff644f619b1230d40c3e6693f60c2be760c60700e588d7f2e936ae7783fb7dd0" + sha256 cellar: :any_skip_relocation, arm64_linux: "5cb223f669197c326be9d0068c97f652df42b3f3807bd5123acc9a2d0e19eb16" + sha256 cellar: :any_skip_relocation, x86_64_linux: "b3c0b3b5480c4d4b7fd2f3ab714fcdfa6e56140e02784c91852039ea775866b5" end depends_on "go" => :build From 0aeb083a8e8c566d5790e6f9e9dbdeeacedf58d0 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 20:53:47 +0000 Subject: [PATCH 1038/1364] buf: update 1.54.0 bottle. --- Formula/b/buf.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/b/buf.rb b/Formula/b/buf.rb index 7ce5eefa1805b..d3df10dbf99aa 100644 --- a/Formula/b/buf.rb +++ b/Formula/b/buf.rb @@ -15,12 +15,12 @@ class Buf < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "30a049a5758e5e136da870f51d50e815f819ecb1a99257aae786cab3b886b067" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "30a049a5758e5e136da870f51d50e815f819ecb1a99257aae786cab3b886b067" - sha256 cellar: :any_skip_relocation, arm64_ventura: "30a049a5758e5e136da870f51d50e815f819ecb1a99257aae786cab3b886b067" - sha256 cellar: :any_skip_relocation, sonoma: "8133d31d21be6d6a17e3dbafa6acf43262d5ca0a2db47b0503c6cd2d9ec2b944" - sha256 cellar: :any_skip_relocation, ventura: "8133d31d21be6d6a17e3dbafa6acf43262d5ca0a2db47b0503c6cd2d9ec2b944" - sha256 cellar: :any_skip_relocation, x86_64_linux: "f927076f044cee7d4a8ed8eee66feb04418686017d5c3e6daa8562f997783d4a" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "9b49a6a017dba4db9f6afe82ad272d35060fd38b85530adf4d2f85879dfdac0e" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "9b49a6a017dba4db9f6afe82ad272d35060fd38b85530adf4d2f85879dfdac0e" + sha256 cellar: :any_skip_relocation, arm64_ventura: "9b49a6a017dba4db9f6afe82ad272d35060fd38b85530adf4d2f85879dfdac0e" + sha256 cellar: :any_skip_relocation, sonoma: "8c0908117e694085d6800479432366e88b7c56d2f7f056906dc25d6cb8e6de54" + sha256 cellar: :any_skip_relocation, ventura: "8c0908117e694085d6800479432366e88b7c56d2f7f056906dc25d6cb8e6de54" + sha256 cellar: :any_skip_relocation, x86_64_linux: "3a5d872ca116f3c62602eb1d2e6eef3f10814cb2c70c386724b2398e146df6e8" end depends_on "go" => :build From a692a4735f8cb7041007fb8e7337128a5098bdc6 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 20:54:56 +0000 Subject: [PATCH 1039/1364] code-server: update 4.100.0 bottle. --- Formula/c/code-server.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/code-server.rb b/Formula/c/code-server.rb index 451f545805008..85aaffa0431eb 100644 --- a/Formula/c/code-server.rb +++ b/Formula/c/code-server.rb @@ -6,13 +6,13 @@ class CodeServer < Formula license "MIT" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "3bdd0423fb95f932fe06de37802038f72d242f151d772ae86e00453b939dc03b" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "9e1458ceb0a0eb554469d7da84c0fa3ca42b76e0094071f7e2c98f014e20f4ad" - sha256 cellar: :any_skip_relocation, arm64_ventura: "757bbaf56a66e6a92d6ef1a36f8c4c07757a4d50daecb1ac9d615c21d092a6be" - sha256 cellar: :any_skip_relocation, sonoma: "61770851ab3cc777ec2929f027d74707ec30288c90672f839926cf772f4dbcd9" - sha256 cellar: :any_skip_relocation, ventura: "f90722f53235c60a22cc524a6770cfcab91f75ccaaed01ba77d28886a3175431" - sha256 cellar: :any_skip_relocation, arm64_linux: "f99205ea8737706d7bd4353359ea66999de0db36d766a743751c50c501e9ecd5" - sha256 cellar: :any_skip_relocation, x86_64_linux: "6222827901814a590f86e2fb7ff89ec01a2c062000a65722bfcaaadf956972b3" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "5975934b3348c36c66861d388c3893c513f71ecca7fb0a9369c7cce6a0703771" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "15113fe9ccf013ce066cf2b2fa6006e82840066bdd01d50952e1b97bf3511cc7" + sha256 cellar: :any_skip_relocation, arm64_ventura: "a298d3d8719ac3422edd5443a6a51ce9493d9bacb0a8f2ebbd4c54040f348c83" + sha256 cellar: :any_skip_relocation, sonoma: "004d94732d89832c299a03c80aa8f357e289c529c54e66168f1550803ea3da52" + sha256 cellar: :any_skip_relocation, ventura: "5cc418648d1e8c0be58d65e29c64b391a6d7ab8c17a96dc62936922ddb4f8ee0" + sha256 cellar: :any_skip_relocation, arm64_linux: "007b81e70e97ddee947027e7006a2a018cadee988cfde5885c112d363e9809f1" + sha256 cellar: :any_skip_relocation, x86_64_linux: "0064f005107677f5adffccc8bb03693a6d9c7c6c933cc11632fafe4c39acae13" end depends_on "node@20" From 5e9af6326030d6914665c3042737a6b34858c1a9 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 20:55:04 +0000 Subject: [PATCH 1040/1364] atlas: update 0.33.0 bottle. --- Formula/a/atlas.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/a/atlas.rb b/Formula/a/atlas.rb index a24e2c9866ae6..015e5f046624c 100644 --- a/Formula/a/atlas.rb +++ b/Formula/a/atlas.rb @@ -9,13 +9,13 @@ class Atlas < Formula head "https://github.com/ariga/atlas.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "21f2f5b36678dfd98a4164d39e0f83249976e83336c6a934260da7e056c53c54" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "265178ebc14f011da0909663c86a9cd26ab87dcf9a70acfe16aee930f9dd995f" - sha256 cellar: :any_skip_relocation, arm64_ventura: "796dfd14af7ab4ca09df77a5e2762769d7150e04f8aecab355d806a626e83c2d" - sha256 cellar: :any_skip_relocation, sonoma: "5a0194ed0cc8fb74b985e75f971412625db0b7e4b4d9cdabb4696930aa7fd665" - sha256 cellar: :any_skip_relocation, ventura: "acf6138317c218ca6d2eec374210c2dc34d69093b35e652342b0dcade34172e3" - sha256 cellar: :any_skip_relocation, arm64_linux: "def7166578daebb8f96ecd9c9ef9b71350c6fa4693e11b8b98a3ea18710bf444" - sha256 cellar: :any_skip_relocation, x86_64_linux: "027e1b307871a24aa03e0478f58dcf2e52a3adc4b390adc4f3f3a3ad4bdbedad" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "fec845948808c427e76400861c96b081e073c22261f0276c71703cfa3df5275a" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "3737fc1be1e2d01e9231ede75345cf4c29c43bda88017229a95b039a7af66682" + sha256 cellar: :any_skip_relocation, arm64_ventura: "6287e20d6a36f742a98f659ef00f09b471c9b5804c81c02cdef22a2009a575f5" + sha256 cellar: :any_skip_relocation, sonoma: "6ca3ea148c2f93590fbea6873f824bb5feaafe16a8a7875d5840d6e3dc67c17b" + sha256 cellar: :any_skip_relocation, ventura: "cf9b4b67fa8561ddd40eadc48b7cbeca4dfb85fa5b5ecc7d0c1b12a07fb475bd" + sha256 cellar: :any_skip_relocation, arm64_linux: "37f7fc55f7e070019e2b178e233d467658c373f16d4e5393d267c079fe3a2bdc" + sha256 cellar: :any_skip_relocation, x86_64_linux: "42a7fe502963f23f059c2e1c2458a118cbaea7edbf4b196d0257914185abed78" end depends_on "go" => :build From e0e03a1afa11cabb5eb441c7a97c8eaeda903fcd Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 20:55:56 +0000 Subject: [PATCH 1041/1364] tomcat@10: update 10.1.41 bottle. --- Formula/t/tomcat@10.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/t/tomcat@10.rb b/Formula/t/tomcat@10.rb index 94f58ec40449f..3f5ec87b33ccf 100644 --- a/Formula/t/tomcat@10.rb +++ b/Formula/t/tomcat@10.rb @@ -11,7 +11,7 @@ class TomcatAT10 < Formula end bottle do - sha256 cellar: :any_skip_relocation, all: "f4e7492d4eaf05a3fafa52b6b757ca5744f0e964c1ad61ff859555fb3cbf5fc2" + sha256 cellar: :any_skip_relocation, all: "e509d7be5ba27c453b2d74d0280fe07d0ce45d165525acaa96b74a05a233fd18" end keg_only :versioned_formula From 76565fd9dc0c49c030c5c3a1b80e0e47ee7e2b5d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 20:57:12 +0000 Subject: [PATCH 1042/1364] apko: update 0.27.5 bottle. --- Formula/a/apko.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/a/apko.rb b/Formula/a/apko.rb index 8581ec615e996..30fe3840b5440 100644 --- a/Formula/a/apko.rb +++ b/Formula/a/apko.rb @@ -15,12 +15,12 @@ class Apko < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "6ee79239f3ee66db172a2e01034f6f6e55d6108a4fdec649852aa852d26badf8" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "6ee79239f3ee66db172a2e01034f6f6e55d6108a4fdec649852aa852d26badf8" - sha256 cellar: :any_skip_relocation, arm64_ventura: "6ee79239f3ee66db172a2e01034f6f6e55d6108a4fdec649852aa852d26badf8" - sha256 cellar: :any_skip_relocation, sonoma: "d3b10e25ea1931a3247826c60f1ad51add2bac0026cf77e426a011c36c40f967" - sha256 cellar: :any_skip_relocation, ventura: "d3b10e25ea1931a3247826c60f1ad51add2bac0026cf77e426a011c36c40f967" - sha256 cellar: :any_skip_relocation, x86_64_linux: "9edb821e5ba896bd35f1f4e4ff5fd03acf4cbbd91aebeb5a9d327b6b05d6f8ce" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "8c09f3473d9f3bb59cbb9cf2840272dafd3f73a34dd2d5e33a2f5fdb923dfb4f" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "8c09f3473d9f3bb59cbb9cf2840272dafd3f73a34dd2d5e33a2f5fdb923dfb4f" + sha256 cellar: :any_skip_relocation, arm64_ventura: "8c09f3473d9f3bb59cbb9cf2840272dafd3f73a34dd2d5e33a2f5fdb923dfb4f" + sha256 cellar: :any_skip_relocation, sonoma: "86cb11df89d8d0d100b327083e3709097b024619a74e5fc4fa719ef35ac39a8b" + sha256 cellar: :any_skip_relocation, ventura: "86cb11df89d8d0d100b327083e3709097b024619a74e5fc4fa719ef35ac39a8b" + sha256 cellar: :any_skip_relocation, x86_64_linux: "e6299ac868483a3e0f59c8c745d59b5449e5476f9a22d85c9a0c88238a5be1a0" end depends_on "go" => :build From 00c137ef00add82749d092244e6184d6e133d6c8 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 21:24:08 +0000 Subject: [PATCH 1043/1364] awscli: update 2.27.13 bottle. --- Formula/a/awscli.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/a/awscli.rb b/Formula/a/awscli.rb index baf595b4e0f13..6754bba5b70ad 100644 --- a/Formula/a/awscli.rb +++ b/Formula/a/awscli.rb @@ -9,13 +9,13 @@ class Awscli < Formula head "https://github.com/aws/aws-cli.git", branch: "v2" bottle do - sha256 cellar: :any, arm64_sequoia: "ca00f3ed28b36c4dc126f6c42980ec18cdc9c0f95f68d8f08945c3f4ee991761" - sha256 cellar: :any, arm64_sonoma: "5da08b98ac0ccc5a5c9c3b3928663d0965bdb0ef4f21bead8898a1ea45f70f34" - sha256 cellar: :any, arm64_ventura: "dc839bdd33b64133a4216cfbcee7c8becf301771924fcaec874e5b8d98c1e8b8" - sha256 cellar: :any, sonoma: "01de2f85a1919f0f84ec06f78b5a2116d92662d861cc28c4fd079d86902440e8" - sha256 cellar: :any, ventura: "a7e4b59af4ea92887d122cd1670e1e234d75e2bc50f7a87c8e19d8b01d2c9bcd" - sha256 cellar: :any_skip_relocation, arm64_linux: "f55bd703f56c9b9500f39a212554b4ac8a494096df9d7548f1e48d6a729754c2" - sha256 cellar: :any_skip_relocation, x86_64_linux: "fff3a4271967f2744c7c0cee05a3a764ab841a1a494458bd2c2e9d905717fde4" + sha256 cellar: :any, arm64_sequoia: "9db9be0a383affae78a452b9d8b4e74286bfca57bb7bf59550a46853650b29cd" + sha256 cellar: :any, arm64_sonoma: "7de65e02e82cfe59126b9064008c4d36c711758153327b0b2df1343c9bb99cb7" + sha256 cellar: :any, arm64_ventura: "0988e3c3d922e4fe492c94ef2cfd2131c6e51fcceae28dc4980816f9b452d638" + sha256 cellar: :any, sonoma: "8c8ff1eddf2cb6075fd25e3118fc843ba3c22cb3df3ef032c2dc41ee7c4764c3" + sha256 cellar: :any, ventura: "6424e4240a425c1d0dd1a6aca4cd0e800c563b87eec2f6a6d01be255be918de1" + sha256 cellar: :any_skip_relocation, arm64_linux: "ad84cf32c46bad5c2e6c7f9540fd5f9cfce37daa1787bbbdeded2e3c0362a198" + sha256 cellar: :any_skip_relocation, x86_64_linux: "baf71ee609e7ea2b6c0c706f7ce0ed869ffea652a19fb83ae604c4c6bc06c881" end depends_on "cmake" => :build From 6ac14231fb40712fdba5064ab1a93b3ebe4650b3 Mon Sep 17 00:00:00 2001 From: botantony Date: Mon, 12 May 2025 23:37:37 +0200 Subject: [PATCH 1044/1364] bgpq3 0.1.38 --- Formula/b/bgpq3.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/b/bgpq3.rb b/Formula/b/bgpq3.rb index 8dabaaf21d409..6b2eeffd0ec91 100644 --- a/Formula/b/bgpq3.rb +++ b/Formula/b/bgpq3.rb @@ -1,8 +1,8 @@ class Bgpq3 < Formula desc "BGP filtering automation for Cisco, Juniper, BIRD and OpenBGPD routers" homepage "http://snar.spb.ru/prog/bgpq3/" - url "https://github.com/snar/bgpq3/archive/refs/tags/v0.1.36.1.tar.gz" - sha256 "68d602434d072115b848f6047a7a29812d53c709835a4fbd0ba34dcc31553bcd" + url "https://github.com/snar/bgpq3/archive/refs/tags/v0.1.38.tar.gz" + sha256 "c4a424825e6c9c9ec48c2583dcbbfc3016d15cc0be1dc55d07827e1b9b79888c" license "BSD-2-Clause" head "https://github.com/snar/bgpq3.git", branch: "master" From 0d818c48f3466885622188a50694090cdc396cfa Mon Sep 17 00:00:00 2001 From: botantony Date: Mon, 12 May 2025 23:38:31 +0200 Subject: [PATCH 1045/1364] autobump: add bgpq3 Signed-off-by: botantony --- .github/autobump.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/autobump.txt b/.github/autobump.txt index c94d86788e629..56149e9c49b07 100644 --- a/.github/autobump.txt +++ b/.github/autobump.txt @@ -278,6 +278,7 @@ benthos berglas bettercap bfs +bgpq3 bgpq4 biber bibtex-tidy From 32e4fbaec7672e23c4608fb8b63b6f84c5cbcfde Mon Sep 17 00:00:00 2001 From: botantony Date: Mon, 12 May 2025 23:42:58 +0200 Subject: [PATCH 1046/1364] gamdl 2.4.2 Signed-off-by: botantony --- Formula/g/gamdl.rb | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/Formula/g/gamdl.rb b/Formula/g/gamdl.rb index 7a71b7777d74d..416056b3f5b3f 100644 --- a/Formula/g/gamdl.rb +++ b/Formula/g/gamdl.rb @@ -3,8 +3,8 @@ class Gamdl < Formula desc "Python CLI app for downloading Apple Music songs, music videos and post videos" homepage "https://github.com/glomatico/gamdl" - url "https://files.pythonhosted.org/packages/e8/5d/eaed1b6ef697b3b21d23d79a11d1e292bfd317738480ad6a7a864e37d6d6/gamdl-2.4.1.tar.gz" - sha256 "40e813a5974e5bd0fbee121671aafc855533c86f13aaa2c3442a622cc4fd712e" + url "https://files.pythonhosted.org/packages/ad/4d/7a075db421a05866245974161e5e11f524ebaa97b55069beece758410e30/gamdl-2.4.2.tar.gz" + sha256 "871ae15397949f3e7187a50bd03f51d5894f2457ff6eea08064233062a820b66" license "MIT" bottle do @@ -23,13 +23,13 @@ class Gamdl < Formula depends_on "python@3.13" resource "charset-normalizer" do - url "https://files.pythonhosted.org/packages/16/b0/572805e227f01586461c80e0fd25d65a2115599cc9dad142fee4b747c357/charset_normalizer-3.4.1.tar.gz" - sha256 "44251f18cd68a75b56585dd00dae26183e102cd5e0f9f1466e6df5da2ed64ea3" + url "https://files.pythonhosted.org/packages/e4/33/89c2ced2b67d1c2a61c19c6751aa8902d46ce3dacb23600a283619f5a12d/charset_normalizer-3.4.2.tar.gz" + sha256 "5baececa9ecba31eff645232d59845c07aa030f0c81ee70184a90d35099a0e63" end resource "click" do - url "https://files.pythonhosted.org/packages/b9/2e/0090cbf739cee7d23781ad4b89a9894a41538e4fcf4c31dcdd705b78eb8b/click-8.1.8.tar.gz" - sha256 "ed53c9d8990d83c2a27deae68e4ee337473f6330c040a31d4225c9574d16096a" + url "https://files.pythonhosted.org/packages/cd/0f/62ca20172d4f87d93cf89665fbaedcd560ac48b465bd1d92bfc7ea6b0a41/click-8.2.0.tar.gz" + sha256 "f5452aeddd9988eefa20f90f05ab66f17fce1ee2a36907fd30b05bbb5953814d" end resource "colorama" do @@ -68,13 +68,13 @@ class Gamdl < Formula end resource "prompt-toolkit" do - url "https://files.pythonhosted.org/packages/a1/e1/bd15cb8ffdcfeeb2bdc215de3c3cffca11408d829e4b8416dcfe71ba8854/prompt_toolkit-3.0.50.tar.gz" - sha256 "544748f3860a2623ca5cd6d2795e7a14f3d0e1c3c9728359013f79877fc89bab" + url "https://files.pythonhosted.org/packages/bb/6e/9d084c929dfe9e3bfe0c6a47e31f78a25c54627d64a66e884a8bf5474f1c/prompt_toolkit-3.0.51.tar.gz" + sha256 "931a162e3b27fc90c86f1b48bb1fb2c528c2761475e57c9c06de13311c7b54ed" end resource "protobuf" do - url "https://files.pythonhosted.org/packages/48/d5/cccc7e82bbda9909ced3e7a441a24205ea07fea4ce23a772743c0c7611fa/protobuf-4.25.6.tar.gz" - sha256 "f8cfbae7c5afd0d0eaccbe73267339bff605a2315860bb1ba08eb66670a9a91f" + url "https://files.pythonhosted.org/packages/74/63/84fdeac1f03864c2b8b9f0b7fe711c4af5f95759ee281d2026530086b2f5/protobuf-4.25.7.tar.gz" + sha256 "28f65ae8c14523cc2c76c1e91680958700d3eac69f45c96512c12c63d9a38807" end resource "pycryptodome" do @@ -103,13 +103,13 @@ class Gamdl < Formula end resource "unidecode" do - url "https://files.pythonhosted.org/packages/f7/89/19151076a006b9ac0dd37b1354e031f5297891ee507eb624755e58e10d3e/Unidecode-1.3.8.tar.gz" - sha256 "cfdb349d46ed3873ece4586b96aa75258726e2fa8ec21d6f00a591d98806c2f4" + url "https://files.pythonhosted.org/packages/94/7d/a8a765761bbc0c836e397a2e48d498305a865b70a8600fd7a942e85dcf63/Unidecode-1.4.0.tar.gz" + sha256 "ce35985008338b676573023acc382d62c264f307c8f7963733405add37ea2b23" end resource "urllib3" do - url "https://files.pythonhosted.org/packages/aa/63/e53da845320b757bf29ef6a9062f5c669fe997973f966045cb019c3f4b66/urllib3-2.3.0.tar.gz" - sha256 "f8c5449b3cf0861679ce7e0503c7b44b5ec981bec0d1d3795a07f1ba96f0204d" + url "https://files.pythonhosted.org/packages/8a/78/16493d9c386d8e60e442a35feac5e00f0913c0f4b7c217c11e8ec2ff53e0/urllib3-2.4.0.tar.gz" + sha256 "414bc6535b787febd7567804cc015fee39daab8ad86268f1310a9250697de466" end resource "wcwidth" do @@ -118,8 +118,8 @@ class Gamdl < Formula end resource "yt-dlp" do - url "https://files.pythonhosted.org/packages/fb/ab/8c8635d642397d2ba6e9558edbbd54b1559616dc631d0183b6aa08ed7917/yt_dlp-2025.3.21.tar.gz" - sha256 "5bcf47b2897254ea3816935a8dde47d243bff556782cced6b16a2b85e6b682ba" + url "https://files.pythonhosted.org/packages/75/ca/1d1a33dec2107463f59bc4b448fcf43718d86a36b6150e8a0cfd1a96a893/yt_dlp-2025.4.30.tar.gz" + sha256 "d01367d0c3ae94e35cb1e2eccb7a7c70e181c4ca448f4ee2374f26489d263603" end def install From b39c2b9b33a52e17f96f0065d4cccbbdcc091a82 Mon Sep 17 00:00:00 2001 From: botantony Date: Mon, 12 May 2025 23:43:04 +0200 Subject: [PATCH 1047/1364] autobump: add gamdl Signed-off-by: botantony --- .github/autobump.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/autobump.txt b/.github/autobump.txt index c94d86788e629..9ae1ee1e0bc2c 100644 --- a/.github/autobump.txt +++ b/.github/autobump.txt @@ -1182,6 +1182,7 @@ gabo gallery-dl gama gambit +gamdl game-music-emu gammaray garble From ff30356072a8f67b5ffa95e6dfbb7af42584bfaf Mon Sep 17 00:00:00 2001 From: botantony Date: Mon, 12 May 2025 23:39:06 +0200 Subject: [PATCH 1048/1364] btfs 3.1 --- Formula/b/btfs.rb | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/Formula/b/btfs.rb b/Formula/b/btfs.rb index b0c8d7ee87e7e..eda27faa0b757 100644 --- a/Formula/b/btfs.rb +++ b/Formula/b/btfs.rb @@ -1,10 +1,9 @@ class Btfs < Formula desc "BitTorrent filesystem based on FUSE" homepage "https://github.com/johang/btfs" - url "https://github.com/johang/btfs/archive/refs/tags/v2.24.tar.gz" - sha256 "d71ddefe3c572e05362542a0d9fd0240d8d4e1578ace55a8b3245176e7fd8935" + url "https://github.com/johang/btfs/archive/refs/tags/v3.1.tar.gz" + sha256 "c363f04149f97baf1c5e10ac90677b8309724f2042ab045a45041cfb7b44649b" license "GPL-3.0-only" - revision 1 head "https://github.com/johang/btfs.git", branch: "master" bottle do @@ -17,14 +16,13 @@ class Btfs < Formula depends_on "automake" => :build depends_on "pkgconf" => :build depends_on "curl" - depends_on "libfuse@2" # FUSE 3 issue: https://github.com/johang/btfs/issues/92 + depends_on "libfuse" depends_on "libtorrent-rasterbar" depends_on :linux # on macOS, requires closed-source macFUSE depends_on "openssl@3" def install ENV.cxx11 - inreplace "configure.ac", "fuse >= 2.8.0", "fuse >= 2.7.3" system "autoreconf", "--force", "--install", "--verbose" system "./configure", "--disable-silent-rules", *std_configure_args system "make", "install" From d32a8aead57516ae473af1a240abe4c9522d9806 Mon Sep 17 00:00:00 2001 From: botantony Date: Mon, 12 May 2025 23:39:52 +0200 Subject: [PATCH 1049/1364] autobump: add btfs Signed-off-by: botantony --- .github/autobump.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/autobump.txt b/.github/autobump.txt index c94d86788e629..9a62787d1a3d5 100644 --- a/.github/autobump.txt +++ b/.github/autobump.txt @@ -344,6 +344,7 @@ broot brotli brpc bruno-cli +btfs btop btrfs-progs bubblewrap From 9bf0ba5bca967a3a663d8315619615e696286f78 Mon Sep 17 00:00:00 2001 From: botantony Date: Mon, 12 May 2025 23:58:41 +0200 Subject: [PATCH 1050/1364] git-bug 0.9.0 Signed-off-by: botantony --- Formula/g/git-bug.rb | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/Formula/g/git-bug.rb b/Formula/g/git-bug.rb index 04618f3cccdb7..3b215cd1853ed 100644 --- a/Formula/g/git-bug.rb +++ b/Formula/g/git-bug.rb @@ -1,9 +1,8 @@ class GitBug < Formula desc "Distributed, offline-first bug tracker embedded in git, with bridges" homepage "https://github.com/git-bug/git-bug" - url "https://github.com/git-bug/git-bug.git", - tag: "v0.8.1", - revision: "96c7a111a3cb075b5ce485f709c3eb82da121a50" + url "https://github.com/git-bug/git-bug/archive/refs/tags/v0.9.0.tar.gz" + sha256 "4f9a8d77b0c0e10579d9f28a1355e2d349b0ee83da282daacb17263d40fe8c77" license "GPL-3.0-or-later" head "https://github.com/git-bug/git-bug.git", branch: "master" @@ -20,7 +19,14 @@ class GitBug < Formula def install ENV["GOBIN"] = bin - system "make", "install" + ldflags = %W[ + -s -w + -X github.com/git-bug/git-bug/commands.GitCommit="v#{tap.user}" + -X github.com/git-bug/git-bug/commands.GitLastTag="v#{version}" + -X github.com/git-bug/git-bug/commands.GitExactTag="v#{version}" + ] + system "go", "generate" + system "go", "build", *std_go_args(ldflags:) man1.install Dir["doc/man/*.1"] doc.install Dir["doc/md/*.md"] From 228ac3535fa71cd280984d64a99add24dd875208 Mon Sep 17 00:00:00 2001 From: botantony Date: Mon, 12 May 2025 23:59:02 +0200 Subject: [PATCH 1051/1364] autobump: add git-bug Signed-off-by: botantony --- .github/autobump.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/autobump.txt b/.github/autobump.txt index c94d86788e629..40addd8ca5393 100644 --- a/.github/autobump.txt +++ b/.github/autobump.txt @@ -1241,6 +1241,7 @@ ginac gismo git-absorb git-annex +git-bug git-cinnabar git-cliff git-codereview From 43c60c1195a1544cee4510773d83c01481009c3b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 22:01:00 +0000 Subject: [PATCH 1052/1364] crystal: update 1.16.3 bottle. --- Formula/c/crystal.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/crystal.rb b/Formula/c/crystal.rb index c979257bf2a83..9cafca87f00c2 100644 --- a/Formula/c/crystal.rb +++ b/Formula/c/crystal.rb @@ -20,13 +20,13 @@ class Crystal < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "91206f9deb2a2e62553cb4909a11ad5279f288a0ea8f8197103b2a5b2a03c781" - sha256 cellar: :any, arm64_sonoma: "a0f73997bbb6268a36999522c421921d17a07ceac1b0fd19e8901ea4bdef6a8b" - sha256 cellar: :any, arm64_ventura: "df6879491431e773d06e9bb0ea312bc210fb9ecb522f106f5001e23fb9ff99d1" - sha256 cellar: :any, sonoma: "755202db808772f74342de1826127b4427b637fb292b08d6f91b01cce248f4af" - sha256 cellar: :any, ventura: "76fd47a005d14769ebd33ab083fcc73109ec56033fee7e93b0281471710bcd13" - sha256 cellar: :any_skip_relocation, arm64_linux: "74cf2da2996b4d11ec7eb5db4883237696ecaf8ab576880c36d2d8da6b7ac1b4" - sha256 cellar: :any_skip_relocation, x86_64_linux: "636b1385e439d2bcb4c40529c9832fb72a931dfa962c38f4a084e0c100686f0b" + sha256 cellar: :any, arm64_sequoia: "1528df0078262f0a8a504c5cdb44ba59901f8def69b8356f28041aab529e4373" + sha256 cellar: :any, arm64_sonoma: "2110a2a8a989ada8ac31fff4f65b7ac7e165c2afa05e9b1f0c60e9c8d28a53ae" + sha256 cellar: :any, arm64_ventura: "636d1add07be313d2cd00293b5e3aeb008e9a84d73b4bc140b379da72dc56d2d" + sha256 cellar: :any, sonoma: "88f50621da7850132be73cd5b8cc0d4bea7cce723d5e9cbddaab6ee2a04f55d0" + sha256 cellar: :any, ventura: "51de4537260cbc30d99593c039163d796588c4d2bd9d836e1cf870c21ddbc36a" + sha256 cellar: :any_skip_relocation, arm64_linux: "37192aaf56db85c11672cd0d3d4e12531cc39dc6bb8c2435d34fba6b5fc645bb" + sha256 cellar: :any_skip_relocation, x86_64_linux: "1d4c70aa1b1a53b8182b88e8ec94cd1a2a2f4b053e4bc47bf167ffb586d4fae1" end head do From bd277996f7009fd30ada32d220bb0a199be53bb2 Mon Sep 17 00:00:00 2001 From: Sam Umbach Date: Mon, 12 May 2025 16:59:51 -0400 Subject: [PATCH 1053/1364] double-conversion: fix to build using cmake 4 --- Formula/d/double-conversion.rb | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Formula/d/double-conversion.rb b/Formula/d/double-conversion.rb index 2bfb8333dc54e..ba5d4f9a8195b 100644 --- a/Formula/d/double-conversion.rb +++ b/Formula/d/double-conversion.rb @@ -18,6 +18,13 @@ class DoubleConversion < Formula depends_on "cmake" => :build + # Fix to cmake 4 compatibility + # PR ref: https://github.com/google/double-conversion/pull/240 + patch do + url "https://github.com/google/double-conversion/commit/69880f0e68d6ddcb760285709195d63c5fd193c4.patch?full_index=1" + sha256 "9895afd264e304368d78d83d4bedf85fbd282f79fe99f70cd7384cde2baab329" + end + def install system "cmake", "-S", ".", "-B", "shared", "-DBUILD_SHARED_LIBS=ON", *std_cmake_args system "cmake", "--build", "shared" From c75b9252937a15d033c62fca6b0e5fdfa6ae910a Mon Sep 17 00:00:00 2001 From: Sam Umbach Date: Mon, 12 May 2025 17:00:18 -0400 Subject: [PATCH 1054/1364] libcbor: fix to build using cmake 4 --- Formula/lib/libcbor.rb | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Formula/lib/libcbor.rb b/Formula/lib/libcbor.rb index 6026d22dbc48c..7ad61ee689102 100644 --- a/Formula/lib/libcbor.rb +++ b/Formula/lib/libcbor.rb @@ -17,6 +17,13 @@ class Libcbor < Formula depends_on "cmake" => :build + # Fix to cmake 4 compatibility + # PR ref: https://github.com/PJK/libcbor/pull/355 + patch do + url "https://github.com/PJK/libcbor/commit/1183292d4695300785b272532c1e02d68840e4b8.patch?full_index=1" + sha256 "54c1984fa401a4bf85e9d9cfd1500bfd1f3106cf39e1f72cfdf762dd30643098" + end + def install args = %w[ -DWITH_EXAMPLES=OFF From 7a1461c9c17b10cba1862213f9ca4f2095fc4e4a Mon Sep 17 00:00:00 2001 From: Sam Umbach Date: Mon, 12 May 2025 17:00:39 -0400 Subject: [PATCH 1055/1364] libsamplerate: fix to build using cmake 4 --- Formula/lib/libsamplerate.rb | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/Formula/lib/libsamplerate.rb b/Formula/lib/libsamplerate.rb index cd281cbda041d..931afab76c6f1 100644 --- a/Formula/lib/libsamplerate.rb +++ b/Formula/lib/libsamplerate.rb @@ -19,6 +19,19 @@ class Libsamplerate < Formula depends_on "cmake" => :build depends_on "pkgconf" => :build + # Fix CMake deprecation warning CMP0091 (prereq for cmake 4 compatibility fix below) + # PR ref: https://github.com/libsndfile/libsamplerate/pull/180 + patch do + url "https://github.com/libsndfile/libsamplerate/commit/e4a0ab46887029e0f65f145ba3987cc592f18200.patch?full_index=1" + sha256 "0826fb59d733188645f3dc207c938580970700381b9bc87058b137723cb30bba" + end + # Fix to cmake 4 compatibility + # PR ref: https://github.com/libsndfile/libsamplerate/pull/225 + patch do + url "https://github.com/libsndfile/libsamplerate/commit/1abc639420b2df8b9ff2e0bdcc28cf6613c7c0d0.patch?full_index=1" + sha256 "b6fb61c763a0f072ef2ebb3a311037d2429a5e294141f6d5e552ccd25efabdc0" + end + def install args = ["-DLIBSAMPLERATE_EXAMPLES=OFF"] From 39c8c750afef9a6097146da9c2ec18940ce922c3 Mon Sep 17 00:00:00 2001 From: Sam Umbach Date: Mon, 12 May 2025 17:00:59 -0400 Subject: [PATCH 1056/1364] srt: fix to build using cmake 4 --- Formula/s/srt.rb | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Formula/s/srt.rb b/Formula/s/srt.rb index 68a16c4637149..c84720c051d4d 100644 --- a/Formula/s/srt.rb +++ b/Formula/s/srt.rb @@ -20,6 +20,13 @@ class Srt < Formula depends_on "pkgconf" => :build depends_on "openssl@3" + # Fix to cmake 4 compatibility + # PR ref: https://github.com/Haivision/srt/pull/3167 + patch do + url "https://github.com/Haivision/srt/commit/7962936829e016295e5c570539eb2520b326da4c.patch?full_index=1" + sha256 "e4489630886bf8b26f63a23c8b1aec549f7280f07713ded07fce281e542725f7" + end + def install openssl = Formula["openssl@3"] From 9f3273b619165342446f2eacaea013bb9a7758c7 Mon Sep 17 00:00:00 2001 From: Sam Umbach Date: Mon, 12 May 2025 17:07:20 -0400 Subject: [PATCH 1057/1364] snappy: fix to build using cmake 4 --- Formula/s/snappy.rb | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Formula/s/snappy.rb b/Formula/s/snappy.rb index a55b12a2c2795..b44674293c4d1 100644 --- a/Formula/s/snappy.rb +++ b/Formula/s/snappy.rb @@ -35,6 +35,13 @@ class Snappy < Formula # `folly` issue ref: https://github.com/facebook/folly/issues/1583 patch :DATA + # Fix to cmake 4 compatibility + # PR ref: https://github.com/google/snappy/pull/200 + patch do + url "https://github.com/google/snappy/commit/a688be4b77b954c403db805c8351ff62770f1044.patch?full_index=1" + sha256 "d7ce00be23a95bc438ec00a287de1c52a2b7d9c261a365a4a2b458e29b486fd8" + end + def install ENV.llvm_clang if OS.mac? && (DevelopmentTools.clang_build_version <= 1100) From d25bf510f5b168d90290e93650e3b6b64ec9723d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 22:50:35 +0000 Subject: [PATCH 1058/1364] babl 0.1.114 --- Formula/b/babl.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/b/babl.rb b/Formula/b/babl.rb index bfe2d584abd8c..94b17d57f95cd 100644 --- a/Formula/b/babl.rb +++ b/Formula/b/babl.rb @@ -1,8 +1,8 @@ class Babl < Formula desc "Dynamic, any-to-any, pixel format translation library" homepage "https://www.gegl.org/babl/" - url "https://download.gimp.org/pub/babl/0.1/babl-0.1.112.tar.xz" - sha256 "fb696682421787c8fecc83e8aab48121dec8ee38d119b65291cfcbe315028a79" + url "https://download.gimp.org/pub/babl/0.1/babl-0.1.114.tar.xz" + sha256 "bcbb7786c1e447703db3bc7fa34d62d0d2d117b22f04d8834c7b2d5ded456487" license "LGPL-3.0-or-later" # Use GitHub instead of GNOME's git. The latter is unreliable. head "https://github.com/GNOME/babl.git", branch: "master" From 9ee7290cc5b67f51deff1fbffb80f66be3e903e5 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 22:51:13 +0000 Subject: [PATCH 1059/1364] bibtexconv 2.0.2 --- Formula/b/bibtexconv.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/b/bibtexconv.rb b/Formula/b/bibtexconv.rb index 76e724669c0d7..7cf9f8becb9e7 100644 --- a/Formula/b/bibtexconv.rb +++ b/Formula/b/bibtexconv.rb @@ -1,8 +1,8 @@ class Bibtexconv < Formula desc "BibTeX file converter" homepage "https://github.com/dreibh/bibtexconv" - url "https://github.com/dreibh/bibtexconv/archive/refs/tags/bibtexconv-2.0.1.tar.gz" - sha256 "b85d71000b5b41949adec1165138b68da2cd831da815ca64523dc9843b979c3c" + url "https://github.com/dreibh/bibtexconv/archive/refs/tags/bibtexconv-2.0.2.tar.gz" + sha256 "c9c01c3cd973a773af0b9854f08df31c34c64e6c118b3400db31b4d7fc2ae235" license "GPL-3.0-or-later" head "https://github.com/dreibh/bibtexconv.git", branch: "master" From ecc8572fe2b52ede9f7bce4391898fe2314e6923 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 22:51:47 +0000 Subject: [PATCH 1060/1364] brev 0.6.310 --- Formula/b/brev.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/b/brev.rb b/Formula/b/brev.rb index 23f3eb19634a4..0f7ef22ec2ce8 100644 --- a/Formula/b/brev.rb +++ b/Formula/b/brev.rb @@ -1,8 +1,8 @@ class Brev < Formula desc "CLI tool for managing workspaces provided by brev.dev" homepage "https://developer.nvidia.com/brev" - url "https://github.com/brevdev/brev-cli/archive/refs/tags/v0.6.309.tar.gz" - sha256 "6244a5c211764810e36f2d7b4e529dc2ea9f5183d4405dff1f330b9196528ba9" + url "https://github.com/brevdev/brev-cli/archive/refs/tags/v0.6.310.tar.gz" + sha256 "d7d8a58878c037372022f0c1d8fa58e15eb3d198498b521332d05def84cff351" license "MIT" head "https://github.com/brevdev/brev-cli.git", branch: "main" From 071714100d4205d9cce720f0b1da691bbab0e2bb Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 22:53:41 +0000 Subject: [PATCH 1061/1364] cloudfoundry-cli 8.14.0 --- Formula/c/cloudfoundry-cli.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/cloudfoundry-cli.rb b/Formula/c/cloudfoundry-cli.rb index 22765cf7db7a3..754f734972323 100644 --- a/Formula/c/cloudfoundry-cli.rb +++ b/Formula/c/cloudfoundry-cli.rb @@ -1,8 +1,8 @@ class CloudfoundryCli < Formula desc "Official command-line client for Cloud Foundry" homepage "https://docs.cloudfoundry.org/cf-cli" - url "https://github.com/cloudfoundry/cli/archive/refs/tags/v8.13.0.tar.gz" - sha256 "13c344e0add8876de103e536b383a837f679881813441d985f7503e3126f8de4" + url "https://github.com/cloudfoundry/cli/archive/refs/tags/v8.14.0.tar.gz" + sha256 "44abf756a7ced0fd6dc12d6cb87c26aac5b79a5c6a6871b7f57aa1864521d437" license "Apache-2.0" head "https://github.com/cloudfoundry/cli.git", branch: "main" From 43d5d6266868e3dea9fabf110125636fd1a0d60b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 22:56:45 +0000 Subject: [PATCH 1062/1364] enzyme 0.0.178 --- Formula/e/enzyme.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/e/enzyme.rb b/Formula/e/enzyme.rb index 60ea403e69442..af172bdcbd942 100644 --- a/Formula/e/enzyme.rb +++ b/Formula/e/enzyme.rb @@ -1,8 +1,8 @@ class Enzyme < Formula desc "High-performance automatic differentiation of LLVM" homepage "https://enzyme.mit.edu" - url "https://github.com/EnzymeAD/Enzyme/archive/refs/tags/v0.0.177.tar.gz" - sha256 "dee2b0ceeaa57f85cb3d2192a693e91790623235497194726d5b0e99d003936e" + url "https://github.com/EnzymeAD/Enzyme/archive/refs/tags/v0.0.178.tar.gz" + sha256 "46323d247ce25fd415a597e56468433abe6a0388ffc117f72c2d9acbd0f52e64" license "Apache-2.0" => { with: "LLVM-exception" } head "https://github.com/EnzymeAD/Enzyme.git", branch: "main" From b088776e4c73a82cc7364bc07f115d2a8a4fa58a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 22:58:39 +0000 Subject: [PATCH 1063/1364] gegl 0.4.62 --- Formula/g/gegl.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/g/gegl.rb b/Formula/g/gegl.rb index efbddcdebe7f3..f6b07a1a9d129 100644 --- a/Formula/g/gegl.rb +++ b/Formula/g/gegl.rb @@ -1,8 +1,8 @@ class Gegl < Formula desc "Graph based image processing framework" homepage "https://www.gegl.org/" - url "https://download.gimp.org/pub/gegl/0.4/gegl-0.4.58.tar.xz" - sha256 "d5678bbd5fe535941b82f965b97fcc9385ce936f70c982bd565a53d5519d1bff" + url "https://download.gimp.org/pub/gegl/0.4/gegl-0.4.62.tar.xz" + sha256 "5887576371ebf1d9e90797d10e4b9a7f1658228d4827583e79e1db3d94505c6c" license all_of: ["LGPL-3.0-or-later", "GPL-3.0-or-later", "BSD-3-Clause", "MIT"] head "https://gitlab.gnome.org/GNOME/gegl.git", branch: "master" From f5be449a924c79dcd667827506e9f444849fb2ad Mon Sep 17 00:00:00 2001 From: Patrick Linnane Date: Mon, 12 May 2025 15:59:10 -0700 Subject: [PATCH 1064/1364] nelm 1.3.0 (new formula) Signed-off-by: Patrick Linnane --- .github/autobump.txt | 1 + Formula/n/nelm.rb | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 Formula/n/nelm.rb diff --git a/.github/autobump.txt b/.github/autobump.txt index c94d86788e629..a270e110f52e8 100644 --- a/.github/autobump.txt +++ b/.github/autobump.txt @@ -2454,6 +2454,7 @@ ne neatvi nebula needle +nelm neo4j neocmakelsp neomutt diff --git a/Formula/n/nelm.rb b/Formula/n/nelm.rb new file mode 100644 index 0000000000000..4d4a29cc5c83e --- /dev/null +++ b/Formula/n/nelm.rb @@ -0,0 +1,35 @@ +class Nelm < Formula + desc "Kubernetes deployment tool that manages and deploys Helm Charts" + homepage "https://github.com/werf/nelm" + url "https://github.com/werf/nelm/archive/refs/tags/v1.3.0.tar.gz" + sha256 "23b413b2e302b2b6a0dd6a8585bfc118d45c2bc39a32400cf7c1f02c87b7a7b8" + license "Apache-2.0" + head "https://github.com/werf/nelm.git", branch: "main" + + depends_on "go" => :build + + def install + ldflags = %W[ + -s -w + -X github.com/werf/nelm/internal/common.Version=#{version} + ] + system "go", "build", *std_go_args(ldflags:), "./cmd/nelm" + + generate_completions_from_executable(bin/"nelm", "completion") + end + + test do + assert_match version.to_s, shell_output("#{bin}/nelm version") + + (testpath/"Chart.yaml").write <<~YAML + apiVersion: v2 + name: mychart + version: 1.0.0 + dependencies: + - name: cert-manager + version: 1.13.3 + repository: https://127.0.0.1 + YAML + assert_match "Error: no cached repository", shell_output("#{bin}/nelm chart dependency download 2>&1", 1) + end +end From fc184d14b75022120392039a1db4f96ebefec576 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 22:59:11 +0000 Subject: [PATCH 1065/1364] gitleaks 8.26.0 --- Formula/g/gitleaks.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/g/gitleaks.rb b/Formula/g/gitleaks.rb index 07b21cba36bf9..9d644feb01029 100644 --- a/Formula/g/gitleaks.rb +++ b/Formula/g/gitleaks.rb @@ -1,8 +1,8 @@ class Gitleaks < Formula desc "Audit git repos for secrets" homepage "https://gitleaks.io/" - url "https://github.com/gitleaks/gitleaks/archive/refs/tags/v8.25.1.tar.gz" - sha256 "f39df96c18cbd03a38a882cad5e8ae6699d49f374cd63b540c4b5a8cf06beb05" + url "https://github.com/gitleaks/gitleaks/archive/refs/tags/v8.26.0.tar.gz" + sha256 "08fcf0ec5e7c3e5e8b6c5085df11478c06a4063cb58a64636e74e7f2a2ba903f" license "MIT" head "https://github.com/gitleaks/gitleaks.git", branch: "master" From 1eb03fce8d42013f415e3a0bbf1f517da3bf0d5b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 23:05:47 +0000 Subject: [PATCH 1066/1364] livekit-cli 2.4.7 --- Formula/l/livekit-cli.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/l/livekit-cli.rb b/Formula/l/livekit-cli.rb index 9b87a85725ac9..b6f9621ee0b93 100644 --- a/Formula/l/livekit-cli.rb +++ b/Formula/l/livekit-cli.rb @@ -1,8 +1,8 @@ class LivekitCli < Formula desc "Command-line interface to LiveKit" homepage "https://livekit.io" - url "https://github.com/livekit/livekit-cli/archive/refs/tags/v2.4.6.tar.gz" - sha256 "b0715b4f25bb1df0cea4fd2028a3096aae01aec1dc774a2749a8895d3bd8fec7" + url "https://github.com/livekit/livekit-cli/archive/refs/tags/v2.4.7.tar.gz" + sha256 "6e961852116577b11a057e739adc6ccac72c8d52fa2934cc0e2a94b5319c4db1" license "Apache-2.0" head "https://github.com/livekit/livekit-cli.git", branch: "main" From 11cd160be8adfafc5633ce67018c5d8934a5ec62 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 23:06:08 +0000 Subject: [PATCH 1067/1364] brev: update 0.6.310 bottle. --- Formula/b/brev.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/b/brev.rb b/Formula/b/brev.rb index 0f7ef22ec2ce8..2e8e11b223ad9 100644 --- a/Formula/b/brev.rb +++ b/Formula/b/brev.rb @@ -15,12 +15,12 @@ class Brev < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "62d93163e5ca4ec4f149adf1715899cafaae3ec7bf9204818ed7829b84a13092" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "62d93163e5ca4ec4f149adf1715899cafaae3ec7bf9204818ed7829b84a13092" - sha256 cellar: :any_skip_relocation, arm64_ventura: "62d93163e5ca4ec4f149adf1715899cafaae3ec7bf9204818ed7829b84a13092" - sha256 cellar: :any_skip_relocation, sonoma: "68130acae5a92481a3e9b89a4159702cd59c8b22d0f614429a5aea8277dbb25e" - sha256 cellar: :any_skip_relocation, ventura: "68130acae5a92481a3e9b89a4159702cd59c8b22d0f614429a5aea8277dbb25e" - sha256 cellar: :any_skip_relocation, x86_64_linux: "f4cad3838c487f692d8fd0d79a48c32509c7e9663a704c36bedb3b752a6a7570" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "040bcd8eb795a256abcabd045288da3a641eb82115b610c1050cfe1403689f71" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "040bcd8eb795a256abcabd045288da3a641eb82115b610c1050cfe1403689f71" + sha256 cellar: :any_skip_relocation, arm64_ventura: "040bcd8eb795a256abcabd045288da3a641eb82115b610c1050cfe1403689f71" + sha256 cellar: :any_skip_relocation, sonoma: "d493d3aa98b9cd85ee1ddbd85c832bff44b965795c197179046520a9187f5775" + sha256 cellar: :any_skip_relocation, ventura: "d493d3aa98b9cd85ee1ddbd85c832bff44b965795c197179046520a9187f5775" + sha256 cellar: :any_skip_relocation, x86_64_linux: "de3caa7e2d6f717e621d7d7a83f3739e07f256951bd963e2c311d4fff9bfbcc0" end depends_on "go" => :build From 6b2cfcbbb42e7894af8ebe0b11370a297eb1dad6 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 23:06:09 +0000 Subject: [PATCH 1068/1364] llama.cpp 5360 --- Formula/l/llama.cpp.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/l/llama.cpp.rb b/Formula/l/llama.cpp.rb index 2a428f695f0fa..dff27a5228354 100644 --- a/Formula/l/llama.cpp.rb +++ b/Formula/l/llama.cpp.rb @@ -3,8 +3,8 @@ class LlamaCpp < Formula homepage "https://github.com/ggerganov/llama.cpp" # CMake uses Git to generate version information. url "https://github.com/ggerganov/llama.cpp.git", - tag: "b5350", - revision: "c104023994d36a8e791fc6a43789b84fd552cefc" + tag: "b5360", + revision: "f0d46ef15717cd609a7b69cf6190edde64d466c8" license "MIT" head "https://github.com/ggerganov/llama.cpp.git", branch: "master" From 45891dfd47c25b4fc1d21786d8f167d1dcf906dd Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 23:07:36 +0000 Subject: [PATCH 1069/1364] bibtexconv: update 2.0.2 bottle. --- Formula/b/bibtexconv.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/b/bibtexconv.rb b/Formula/b/bibtexconv.rb index 7cf9f8becb9e7..d87a8a1c448e2 100644 --- a/Formula/b/bibtexconv.rb +++ b/Formula/b/bibtexconv.rb @@ -7,13 +7,13 @@ class Bibtexconv < Formula head "https://github.com/dreibh/bibtexconv.git", branch: "master" bottle do - sha256 cellar: :any, arm64_sequoia: "7a646fda03a468c4cfb0b012f6df3f6cecd3740db220e79d45eb37c1709e67fa" - sha256 cellar: :any, arm64_sonoma: "992439eb9d494474b58380fa04b19be22d7c0b2329b1e9455dfe0a924f49979a" - sha256 cellar: :any, arm64_ventura: "24d29ca3f88714d1ec8771a49e6d629d1b54d3f43b38ba15bb91267e7729483c" - sha256 cellar: :any, sonoma: "b7cad797ef672b779b7f1beb0a7aacc88c8e8c962544bea829b53f36761fcaa8" - sha256 cellar: :any, ventura: "b58be8c6d279e88679518486fe52f07b511c4ef82409032f8a035daef93ac65f" - sha256 cellar: :any_skip_relocation, arm64_linux: "72eb9653e3410802be1ac658103b7d0bbf2bcd68319af951afddc2b6de86ac4f" - sha256 cellar: :any_skip_relocation, x86_64_linux: "855b81063a70f1bc3eea9758c1e789085b1f290de8c16e27747082160586cde2" + sha256 cellar: :any, arm64_sequoia: "fbc4cb16c766ea1a4de4122bfb71200e73c05f52a0be544caaf2744d4a8eee51" + sha256 cellar: :any, arm64_sonoma: "6647b330cce25a922b9a5208e760fef00487d8b7d6046450292bbcb2f1d6bd0d" + sha256 cellar: :any, arm64_ventura: "1834aeedf88c98f331c08e4f2e0f1e83b48e5a7e5525b16456396705b0d4c139" + sha256 cellar: :any, sonoma: "b3eb3ed7dc704e829491462fe927a41b61d3d96fd5e56333220410fe428ab014" + sha256 cellar: :any, ventura: "3d68a045124eddc823b08c7d256aecda7267963c95b5ace61d1c95e10e4a1dd2" + sha256 cellar: :any_skip_relocation, arm64_linux: "91d5174a92ecde399224489caf3d9d853a6ab40598c2868331bce68d4fcaa906" + sha256 cellar: :any_skip_relocation, x86_64_linux: "29113580365e674fa8ab9cda06930f95ce61c103e22c6ea33257b9bd61919079" end depends_on "bison" => :build From d3d168a82caed250eea1469c067974a43b590243 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 23:08:55 +0000 Subject: [PATCH 1070/1364] netlify-cli 21.3.0 --- Formula/n/netlify-cli.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/n/netlify-cli.rb b/Formula/n/netlify-cli.rb index 50cf7cd95bc82..c8c241064bed8 100644 --- a/Formula/n/netlify-cli.rb +++ b/Formula/n/netlify-cli.rb @@ -1,8 +1,8 @@ class NetlifyCli < Formula desc "Netlify command-line tool" homepage "https://www.netlify.com/docs/cli" - url "https://registry.npmjs.org/netlify-cli/-/netlify-cli-21.2.1.tgz" - sha256 "b557b2fccc5005fc9775c5800e314c5975c40343556292513265c8b170c0c9a7" + url "https://registry.npmjs.org/netlify-cli/-/netlify-cli-21.3.0.tgz" + sha256 "75a8ec9e3a25aa4fb6bdf3272eeaa2170e2877ed468601304c9ef05342fde322" license "MIT" head "https://github.com/netlify/cli.git", branch: "main" From 3ea41769bcf5965efd1b0f8018b49b0947b38ec9 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 23:09:16 +0000 Subject: [PATCH 1071/1364] nixpacks 1.39.0 --- Formula/n/nixpacks.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/n/nixpacks.rb b/Formula/n/nixpacks.rb index 3b2f807974fc0..9990e62be55e1 100644 --- a/Formula/n/nixpacks.rb +++ b/Formula/n/nixpacks.rb @@ -1,8 +1,8 @@ class Nixpacks < Formula desc "App source + Nix packages + Docker = Image" homepage "https://nixpacks.com/docs/getting-started" - url "https://github.com/railwayapp/nixpacks/archive/refs/tags/v1.38.0.tar.gz" - sha256 "071c00fa80b8816029b93618f243b54c215fcb1d7be7e464683d8cbaedc21fa9" + url "https://github.com/railwayapp/nixpacks/archive/refs/tags/v1.39.0.tar.gz" + sha256 "ec65a45ddf5a9c33797c1efb73bbcf161c66083ce13c18439d2fb32d50462c21" license "MIT" head "https://github.com/railwayapp/nixpacks.git", branch: "main" From 35b47f7b7e2a739c4bc566255877cf440df8459a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 23:10:17 +0000 Subject: [PATCH 1072/1364] btfs: update 3.1 bottle. --- Formula/b/btfs.rb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Formula/b/btfs.rb b/Formula/b/btfs.rb index eda27faa0b757..f5a17dc5e0d81 100644 --- a/Formula/b/btfs.rb +++ b/Formula/b/btfs.rb @@ -7,9 +7,8 @@ class Btfs < Formula head "https://github.com/johang/btfs.git", branch: "master" bottle do - rebuild 1 - sha256 cellar: :any_skip_relocation, arm64_linux: "741d3c7890097ee5b9e337e0cfd18e8b0c9d221eff0512c3ee9dad59e9052c5b" - sha256 cellar: :any_skip_relocation, x86_64_linux: "c13f8e1ccf19a55a3bfe37a185a7f58d79ec7a2a69e318e662434b917c17b5d1" + sha256 cellar: :any_skip_relocation, arm64_linux: "cb3c4a3351015895e992b3c059b012aa24410edfa4795decafdbe7a850b9201c" + sha256 cellar: :any_skip_relocation, x86_64_linux: "de0d62491fcf2a7793531a3b1e3900f10cca457b2a2f67d04f19588f9f1c0b62" end depends_on "autoconf" => :build From bd9e0ae566216617f79ce6304e1cea19d30fba94 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 23:10:32 +0000 Subject: [PATCH 1073/1364] bgpq3: update 0.1.38 bottle. --- Formula/b/bgpq3.rb | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/Formula/b/bgpq3.rb b/Formula/b/bgpq3.rb index 6b2eeffd0ec91..f597e850f2aef 100644 --- a/Formula/b/bgpq3.rb +++ b/Formula/b/bgpq3.rb @@ -12,18 +12,13 @@ class Bgpq3 < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "4eca4f5cc688d7bfca7689f337cbe77112e688ade4a640718f32270d750959df" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "a26e86fbe0f158032564b36c316161d6296e2f13a6f37887e860454ebf0c5fbf" - sha256 cellar: :any_skip_relocation, arm64_ventura: "18d4d294bcd85daa37e3285a34aa7ed2d45513cd708a2eadc203d5d62ae7b5a3" - sha256 cellar: :any_skip_relocation, arm64_monterey: "890ade49fae97d8e9967362b464b57cc172fb5305e05dee84d7c3b5ab5e869bd" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "b9edea14c24ccca9986d9dbf14cedd8e245fc49ecffb07a3079deff2b6576448" - sha256 cellar: :any_skip_relocation, sonoma: "9aebbaa768f96be65496d9fb1d5878e5e26baca8204693217045a59a2df10d95" - sha256 cellar: :any_skip_relocation, ventura: "e5b38623eed774b049c26c2c6b074ffb5302c38f1545ef96458b5a6dfcbdca8b" - sha256 cellar: :any_skip_relocation, monterey: "7a130fc4a82b1ab7255290dc18058a369ba604905386a32ac7f76a6bab543ee7" - sha256 cellar: :any_skip_relocation, big_sur: "6d04e58f086891a0a8f1bd8c91e813afb4de0fff26f61a8bc30d3c82d2829a42" - sha256 cellar: :any_skip_relocation, catalina: "4294f76491ed0fe10c6df11b695489e2765b7eb8bd4ccfe0adcabced418968a2" - sha256 cellar: :any_skip_relocation, arm64_linux: "7ec3ed3c15537b7e9c8012392054e91e5b1bfa6919c3dbd798fc5dc6a14b447f" - sha256 cellar: :any_skip_relocation, x86_64_linux: "ee8fc268ac1e1293ee27d9b8a82411c7dc98f2a4df8e4a88efed3635699bc4ba" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "234036f637e3d392114a9a92637f28f59820c407803d414e9efff4cde922e506" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "20e940f3930fc35fdb480f156780d53cebe5c18b26e231db42f0667d77d87b50" + sha256 cellar: :any_skip_relocation, arm64_ventura: "c59144d7fa15c862bfdeb5af564871eb28cfbc6112d6e985d9be636de0deee4e" + sha256 cellar: :any_skip_relocation, sonoma: "4f29830a26cca0ebac56d0978d1265d9078c09f782c23062710262296750d916" + sha256 cellar: :any_skip_relocation, ventura: "19510346a7393c8b478610831da0a8d5060932feb543fb48d37709d09cac061b" + sha256 cellar: :any_skip_relocation, arm64_linux: "c5ad42018e54795c6aa663b7cf201eee6abbec7ccd6403041d619b4ecdd2dfa8" + sha256 cellar: :any_skip_relocation, x86_64_linux: "c79dfd70b5f7abf543be803c8f3e65b1c42b5dc746a9380e923599062e360a63" end # Makefile: upstream has been informed of the patch through email (multiple From 10f6c70ae294def5407c07d34e2f9142e77e3d83 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 23:11:39 +0000 Subject: [PATCH 1074/1364] git-bug: update 0.9.0 bottle. --- Formula/g/git-bug.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/g/git-bug.rb b/Formula/g/git-bug.rb index 3b215cd1853ed..9a58485a7dda0 100644 --- a/Formula/g/git-bug.rb +++ b/Formula/g/git-bug.rb @@ -7,12 +7,12 @@ class GitBug < Formula head "https://github.com/git-bug/git-bug.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "aace4173880bff60e66e06833fcb5acbe4e4c1d8f86051ff89fb9566cb6b4a65" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "33fe5500a265b98d4af1445c3e428c15b7a61a206d707a109a3610b3e169a850" - sha256 cellar: :any_skip_relocation, arm64_ventura: "a15b100034db1c38161c6b02a7cfc3fc38b6f680ef4aacd1468031bc28c286d6" - sha256 cellar: :any_skip_relocation, sonoma: "444acfa855ed5379698bfeb4b99075b564b173ec5f1bc3fa141abe0a144858a6" - sha256 cellar: :any_skip_relocation, ventura: "ab1f4c9cd703a55094d10b36c038f95c289de4c30ffb66fb5a18ddb18f2bd04f" - sha256 cellar: :any_skip_relocation, x86_64_linux: "636b5364c54e97dec3062870c780f54b2ffed5a4dc9c3e9c880e98191de502d7" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "b6e286e1832a989871e804177185e0bb01f78e89ef90ed641e0d02a385034561" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "1857c592fa829ce895e10c93a8b6185aa5e842b1881e94c3ed27782b7637e9bf" + sha256 cellar: :any_skip_relocation, arm64_ventura: "e23568875bdeeffbb7670351188452456a842f5d68dc262ba3b882b0568bd75e" + sha256 cellar: :any_skip_relocation, sonoma: "fb78a0c77cc633d5f12112e727018a09c7d03f628034394ddcbc54dd018f34a9" + sha256 cellar: :any_skip_relocation, ventura: "ae66e5b09de6a4f2255274ccfd47372a9d59980185e37181707ba14648fb89ab" + sha256 cellar: :any_skip_relocation, x86_64_linux: "cbc94d27a35a9b46d8368421d80cfeb18f26fcea6655fc41d6fd9b6c49035a6c" end depends_on "go" => :build From 3f303928a11671766d13e670c970894f3cb13e51 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 23:12:03 +0000 Subject: [PATCH 1075/1364] cloudfoundry-cli: update 8.14.0 bottle. --- Formula/c/cloudfoundry-cli.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/c/cloudfoundry-cli.rb b/Formula/c/cloudfoundry-cli.rb index 754f734972323..bfffd73f51606 100644 --- a/Formula/c/cloudfoundry-cli.rb +++ b/Formula/c/cloudfoundry-cli.rb @@ -12,12 +12,12 @@ class CloudfoundryCli < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "227ab5412bb0b0f63ee645b4e40c810e16d6fa7a8a930ab0982548fb3ba2c7f3" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "227ab5412bb0b0f63ee645b4e40c810e16d6fa7a8a930ab0982548fb3ba2c7f3" - sha256 cellar: :any_skip_relocation, arm64_ventura: "227ab5412bb0b0f63ee645b4e40c810e16d6fa7a8a930ab0982548fb3ba2c7f3" - sha256 cellar: :any_skip_relocation, sonoma: "455258ce54c56fe5a6c055c6fedc015be8c1a72c5845078c6c4c7bb399ef5204" - sha256 cellar: :any_skip_relocation, ventura: "455258ce54c56fe5a6c055c6fedc015be8c1a72c5845078c6c4c7bb399ef5204" - sha256 cellar: :any_skip_relocation, x86_64_linux: "9651545bc5f58f839a4b26f585feffb7d6f3852ad5430fcf54aa201f20b850be" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "979ed2b67372ecf27e871ca4ba989d276337b4eb42e0469f6f165031d376b79d" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "979ed2b67372ecf27e871ca4ba989d276337b4eb42e0469f6f165031d376b79d" + sha256 cellar: :any_skip_relocation, arm64_ventura: "979ed2b67372ecf27e871ca4ba989d276337b4eb42e0469f6f165031d376b79d" + sha256 cellar: :any_skip_relocation, sonoma: "096615d910f2d95af59cea9df2bda5a8c330e96685fce9361e3fcd992675f973" + sha256 cellar: :any_skip_relocation, ventura: "096615d910f2d95af59cea9df2bda5a8c330e96685fce9361e3fcd992675f973" + sha256 cellar: :any_skip_relocation, x86_64_linux: "13f87f8c6ed6cb74bc5c049ddd6364113ef9fbcc5b0bc8759d44d40a33b36c53" end depends_on "go" => :build From f309fa9a9eb047d4f8f414482b50f83fa185106f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 23:12:07 +0000 Subject: [PATCH 1076/1364] gamdl: update 2.4.2 bottle. --- Formula/g/gamdl.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/g/gamdl.rb b/Formula/g/gamdl.rb index 416056b3f5b3f..63197e55c7fef 100644 --- a/Formula/g/gamdl.rb +++ b/Formula/g/gamdl.rb @@ -8,13 +8,13 @@ class Gamdl < Formula license "MIT" bottle do - sha256 cellar: :any, arm64_sequoia: "ba3581c7ae81132e1148e689b2574ffeba40ed95368f7e8a5b8dd98ac9a698dd" - sha256 cellar: :any, arm64_sonoma: "fbe4a62b47007a8d3fbff0dac79fcdba969f9df0d26695f8c8fb0ee48305a364" - sha256 cellar: :any, arm64_ventura: "c3c7f7225ff3660e3a0db5058353f55948e4dbb94f5c6370e3d09da5b53fc808" - sha256 cellar: :any, sonoma: "da5929198fec45772924c3d5b6088a6e6b82c843cd92cf6ce6a272e4ad27cb1c" - sha256 cellar: :any, ventura: "28aa31801dd24152f92e1082eeaa836c2b3843087a6856e11522a8611b5438c8" - sha256 cellar: :any_skip_relocation, arm64_linux: "43d1812c842b8dbb7e31be3ad03aca95e229bf2d055fbeea668b921a4952f307" - sha256 cellar: :any_skip_relocation, x86_64_linux: "7913d8e003f11487d28f8094c0659f0e2aca80dfcbe441c206313bb36ac31dd1" + sha256 cellar: :any, arm64_sequoia: "0ba0d60f5911f63de9230a694fcedaf65a0aef990e8e1068d59907e444c3eb8f" + sha256 cellar: :any, arm64_sonoma: "05f27e52b1820fb31d50833793dd28c8df7868f87fdddc283ea78a100f433f43" + sha256 cellar: :any, arm64_ventura: "88e7a032bf498a1e98482987f5524d579137ef1df0ad976302db2b15a9e2584f" + sha256 cellar: :any, sonoma: "826c965882d99085cf2272fc2a91dbedfe6bb781e15ac77b841d5ac3c14b0f47" + sha256 cellar: :any, ventura: "5796ae0d492efe8b6742c2a0a40f4cf3fae0ce06bca1ed2ed62ab698ccf35a6f" + sha256 cellar: :any_skip_relocation, arm64_linux: "23c20e4314803d41a6018e09ff3ca8207f6f3fa6e613fdbacb6eff7e38ccc674" + sha256 cellar: :any_skip_relocation, x86_64_linux: "a13a0a2ed5233cf4f56e333a58658a816a4832c0a16d82dcbe3e05ccc9874bac" end depends_on "certifi" From 33e47400fa7ba8abfd98d96603a776c7e7040414 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 23:13:59 +0000 Subject: [PATCH 1077/1364] render 2.1.4 --- Formula/r/render.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/r/render.rb b/Formula/r/render.rb index 53af6658b24e6..b12f0c113ca02 100644 --- a/Formula/r/render.rb +++ b/Formula/r/render.rb @@ -1,8 +1,8 @@ class Render < Formula desc "Command-line interface for Render" homepage "https://render.com/docs/cli" - url "https://github.com/render-oss/cli/archive/refs/tags/v2.1.3.tar.gz" - sha256 "68eb2bc7129f14c925ee681f97abccd3b1c926936fcf6c94a168504e9326bbf1" + url "https://github.com/render-oss/cli/archive/refs/tags/v2.1.4.tar.gz" + sha256 "337e0c786ae796626ffe51699d67e2a875abb65e61f55489a19e2e120bd2568e" license "Apache-2.0" head "https://github.com/render-oss/cli.git", branch: "main" From 748dff6680d6094632f82b3e61d651d02e74b4d3 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 23:14:51 +0000 Subject: [PATCH 1078/1364] ruby-lsp 0.23.18 --- Formula/r/ruby-lsp.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/r/ruby-lsp.rb b/Formula/r/ruby-lsp.rb index aaa8ed383d2a6..dd7248af5c405 100644 --- a/Formula/r/ruby-lsp.rb +++ b/Formula/r/ruby-lsp.rb @@ -1,8 +1,8 @@ class RubyLsp < Formula desc "Opinionated language server for Ruby" homepage "https://shopify.github.io/ruby-lsp" - url "https://github.com/Shopify/ruby-lsp/archive/refs/tags/v0.23.17.tar.gz" - sha256 "73a4ffe9fca491e97d0d677ac6a54b1b932ebacc3981477fc800966c7cceecbb" + url "https://github.com/Shopify/ruby-lsp/archive/refs/tags/v0.23.18.tar.gz" + sha256 "227b14eeb47ca32c2222117e458a7986ba4e86f610efb340bb2b64d433498030" license "MIT" head "https://github.com/Shopify/ruby-lsp.git", branch: "main" From 44ca3ced9c292b67d0ec9d825b74a8e4cc88b5f4 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 23:15:15 +0000 Subject: [PATCH 1079/1364] sbom-tool 4.0.2 --- Formula/s/sbom-tool.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/s/sbom-tool.rb b/Formula/s/sbom-tool.rb index 0c1e382c35f7f..37e3a823aca02 100644 --- a/Formula/s/sbom-tool.rb +++ b/Formula/s/sbom-tool.rb @@ -1,8 +1,8 @@ class SbomTool < Formula desc "Scalable and enterprise ready tool to create SBOMs for any variety of artifacts" homepage "https://github.com/microsoft/sbom-tool" - url "https://github.com/microsoft/sbom-tool/archive/refs/tags/v3.1.0.tar.gz" - sha256 "3e31ffe0d7bfe26ecfc59772b8e828f08ac8c39a3ddfdc0a24d7d603afa7e45b" + url "https://github.com/microsoft/sbom-tool/archive/refs/tags/v4.0.2.tar.gz" + sha256 "d43efd0ff2444c98102cde9c584bef96db3e740c31e5c5b2b5af68a65940d6b7" license "MIT" head "https://github.com/microsoft/sbom-tool.git", branch: "main" From 21eaec390f4b9763a9f7d8142ab4a7ac32a3dc83 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 23:20:01 +0000 Subject: [PATCH 1080/1364] gitleaks: update 8.26.0 bottle. --- Formula/g/gitleaks.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/g/gitleaks.rb b/Formula/g/gitleaks.rb index 9d644feb01029..8f55724f0f51d 100644 --- a/Formula/g/gitleaks.rb +++ b/Formula/g/gitleaks.rb @@ -15,12 +15,12 @@ class Gitleaks < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "011a1f3cbe5fc44b77398d53715dcd48f039e852b00f434ec8a9dcc54a3ac245" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "011a1f3cbe5fc44b77398d53715dcd48f039e852b00f434ec8a9dcc54a3ac245" - sha256 cellar: :any_skip_relocation, arm64_ventura: "011a1f3cbe5fc44b77398d53715dcd48f039e852b00f434ec8a9dcc54a3ac245" - sha256 cellar: :any_skip_relocation, sonoma: "d7acf025312d5a3bb196c3bd353257e809001e9e3771e045d7cad02316be4ca6" - sha256 cellar: :any_skip_relocation, ventura: "d7acf025312d5a3bb196c3bd353257e809001e9e3771e045d7cad02316be4ca6" - sha256 cellar: :any_skip_relocation, x86_64_linux: "852a657de770fd735ef800b87e7a24817534dade993ecb08bd79595e39a9e62e" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "f5cfd2e08b25c761b208bf286dcaae5fd7a5042671d454b0ef91bf04ccca4224" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "f5cfd2e08b25c761b208bf286dcaae5fd7a5042671d454b0ef91bf04ccca4224" + sha256 cellar: :any_skip_relocation, arm64_ventura: "f5cfd2e08b25c761b208bf286dcaae5fd7a5042671d454b0ef91bf04ccca4224" + sha256 cellar: :any_skip_relocation, sonoma: "0ec08839532355a07149688e7fbf9b9b6d068ef48c178f9abe20d66e884301a5" + sha256 cellar: :any_skip_relocation, ventura: "0ec08839532355a07149688e7fbf9b9b6d068ef48c178f9abe20d66e884301a5" + sha256 cellar: :any_skip_relocation, x86_64_linux: "eb174012f0271f9c3011fcf5d198e3787db559c14b50a8a101287f68d7473f70" end depends_on "go" => :build From b7f9ebb21786b48315c4c1c9ac3dcee2f6c28333 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 23:21:44 +0000 Subject: [PATCH 1081/1364] weaviate 1.30.3 --- Formula/w/weaviate.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/w/weaviate.rb b/Formula/w/weaviate.rb index 92bd1bd6d714a..55d28a2738296 100644 --- a/Formula/w/weaviate.rb +++ b/Formula/w/weaviate.rb @@ -1,8 +1,8 @@ class Weaviate < Formula desc "Open-source vector database that stores both objects and vectors" homepage "https://weaviate.io/developers/weaviate/" - url "https://github.com/weaviate/weaviate/archive/refs/tags/v1.30.2.tar.gz" - sha256 "f987d94ddaf941bcff5f2687ef0cba162125b3f66f79723a6b1c70a740dca946" + url "https://github.com/weaviate/weaviate/archive/refs/tags/v1.30.3.tar.gz" + sha256 "6680c87953376b72c3325fe2757790fad745ea14e4a6fc78208140edcb5c8462" license "BSD-3-Clause" bottle do From 960d29857b605132bb4c539f8cc1c5a03fe56bed Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 23:28:55 +0000 Subject: [PATCH 1082/1364] vulkan-validationlayers: update 1.4.315 bottle. --- Formula/v/vulkan-validationlayers.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/v/vulkan-validationlayers.rb b/Formula/v/vulkan-validationlayers.rb index be37f512a7e09..613bf2bfd3621 100644 --- a/Formula/v/vulkan-validationlayers.rb +++ b/Formula/v/vulkan-validationlayers.rb @@ -12,13 +12,13 @@ class VulkanValidationlayers < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "74c7de17d7ebeb391a2bb1336634c4f79c1570a8126f66d5a3f5400fdaed90fd" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "27e652e217bab2e200285bd3f38b6f6a6dd85724e08725bf6d752b9a8336ba25" - sha256 cellar: :any_skip_relocation, arm64_ventura: "395c49b3982571dbca54d7cd779bb22465ba05e70684f923eed2baf1240db2c3" - sha256 cellar: :any_skip_relocation, sonoma: "8ce22043fd59b12c9af5250129abc7c6817baf8edf1ef4bc3efede74469af83f" - sha256 cellar: :any_skip_relocation, ventura: "d693519026fd6b8b2b69a747498bfc23ee88168c3d5b99c7603a0768a56e1807" - sha256 cellar: :any_skip_relocation, arm64_linux: "c20e7942884a219f292a31c42dd34bb5b6dca784d09c944c341c6f77d6e2e488" - sha256 cellar: :any_skip_relocation, x86_64_linux: "2f68ad05627fc2679f2989aa2c3bc9d11a8137c727c4eac2d39d421a2f450ab2" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "d2d159b2095f256bdf8abf33b8da808420110bcfcd30982be1f65104e6151397" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "21505dcd783e1a9bf26a5a96ec4376b8a133c1fa139be8aa7fcefe73603a320e" + sha256 cellar: :any_skip_relocation, arm64_ventura: "6c1c3555ff2dc0a9a6b531264d176c1fc10e75c2ae2f8ed147a7d2305be4e2d3" + sha256 cellar: :any_skip_relocation, sonoma: "b75e2602655516827e54a80cedf8d1e12e9980a661894f39043c613e64ac2649" + sha256 cellar: :any_skip_relocation, ventura: "484d2ac71d950a8d9d6297125e78fefacae4c5d81fe5b90d4bd335226b060fb2" + sha256 cellar: :any_skip_relocation, arm64_linux: "358eeea0487a878ba45763d639cd06e52c4f5c643b828b94d763059d021231cc" + sha256 cellar: :any_skip_relocation, x86_64_linux: "1b4cac1211a795a80b34e7e1a5702785bae48c187c2d4dadd334c9ad2f0f2afa" end depends_on "cmake" => :build From d6613ddbea8984b75486ede607517a9d6763f548 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 23:29:39 +0000 Subject: [PATCH 1083/1364] nelm: add 1.3.0 bottle. --- Formula/n/nelm.rb | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Formula/n/nelm.rb b/Formula/n/nelm.rb index 4d4a29cc5c83e..52933b4e6ab3d 100644 --- a/Formula/n/nelm.rb +++ b/Formula/n/nelm.rb @@ -6,6 +6,15 @@ class Nelm < Formula license "Apache-2.0" head "https://github.com/werf/nelm.git", branch: "main" + bottle do + sha256 cellar: :any_skip_relocation, arm64_sequoia: "df3f415784e86879b772f1c507394efcdd2d062b4a43989a23557033b0859fc5" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "42d9ed91c8b810a7b2d5a93b84bbb6faddd5a81f0469722628e9608fce92c4d3" + sha256 cellar: :any_skip_relocation, arm64_ventura: "5bbae29c670e94f293d9088c494e33bd1e9ad7d6c5bef0d1d479a5045c303b48" + sha256 cellar: :any_skip_relocation, sonoma: "1a5e472669cc7fbe2dae0c120790e0112d4aa0b98c74d0ecb9b65be66b1b3dec" + sha256 cellar: :any_skip_relocation, ventura: "d8fe1f940454c3a1623c52a05f59a1dc84aa700e0f0a3913b711240e68b9dd41" + sha256 cellar: :any_skip_relocation, x86_64_linux: "bfe86071d6f809f6982f49a9f92f1ca429704a79b22f10caa5d3fea5a3bf8527" + end + depends_on "go" => :build def install From e42daffc14148cb2bede62205c47a5b810424e15 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 23:29:52 +0000 Subject: [PATCH 1084/1364] livekit-cli: update 2.4.7 bottle. --- Formula/l/livekit-cli.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/l/livekit-cli.rb b/Formula/l/livekit-cli.rb index b6f9621ee0b93..d3b862c3ef88b 100644 --- a/Formula/l/livekit-cli.rb +++ b/Formula/l/livekit-cli.rb @@ -7,12 +7,12 @@ class LivekitCli < Formula head "https://github.com/livekit/livekit-cli.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "6f3ac27a6e1254d1be90dcef6d6c1619215720d6679fcd527f659134d69d0d17" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "6f3ac27a6e1254d1be90dcef6d6c1619215720d6679fcd527f659134d69d0d17" - sha256 cellar: :any_skip_relocation, arm64_ventura: "6f3ac27a6e1254d1be90dcef6d6c1619215720d6679fcd527f659134d69d0d17" - sha256 cellar: :any_skip_relocation, sonoma: "0643847c7c56e60066f3b335298eb31a442e592023070f6f6abcc161e86f0e17" - sha256 cellar: :any_skip_relocation, ventura: "0643847c7c56e60066f3b335298eb31a442e592023070f6f6abcc161e86f0e17" - sha256 cellar: :any_skip_relocation, x86_64_linux: "94ecc997d55f7b38ef5ba60dfcb40ae046625a8565ddeaaac610beddc128a170" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "79dd2fff1e7b3c1cdaacd79bda856b370e04c96e4bb2f5f46366ac0aae93023c" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "79dd2fff1e7b3c1cdaacd79bda856b370e04c96e4bb2f5f46366ac0aae93023c" + sha256 cellar: :any_skip_relocation, arm64_ventura: "79dd2fff1e7b3c1cdaacd79bda856b370e04c96e4bb2f5f46366ac0aae93023c" + sha256 cellar: :any_skip_relocation, sonoma: "cd6ccebe5a4d88cb615983e2b0ef668534885c646545eaaf5832aa634827a80d" + sha256 cellar: :any_skip_relocation, ventura: "cd6ccebe5a4d88cb615983e2b0ef668534885c646545eaaf5832aa634827a80d" + sha256 cellar: :any_skip_relocation, x86_64_linux: "c376dadf60c2ed4ab268bc998b10749a0328269d9fd6c57528174baa70a7140d" end depends_on "go" => :build From 733dcb6051fa662593ff0118d8fcd686a309c3b6 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 23:23:15 +0000 Subject: [PATCH 1085/1364] zmap 4.3.4 zmap: remove build patch Signed-off-by: Rui Chen --- Formula/z/zmap.rb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Formula/z/zmap.rb b/Formula/z/zmap.rb index 13f5cc67b4e4c..7d5c435f847b8 100644 --- a/Formula/z/zmap.rb +++ b/Formula/z/zmap.rb @@ -1,8 +1,8 @@ class Zmap < Formula desc "Network scanner for Internet-wide network studies" homepage "https://zmap.io" - url "https://github.com/zmap/zmap/archive/refs/tags/v4.3.3.tar.gz" - sha256 "1a14b5d560d1c931528104d644ae033f4f874a21f67f9e6d04f7173e413561ec" + url "https://github.com/zmap/zmap/archive/refs/tags/v4.3.4.tar.gz" + sha256 "b5936bf5b5390fb50203140e81beac28866374371b1c68329cbbe932cc5ee1d3" license "Apache-2.0" head "https://github.com/zmap/zmap.git", branch: "main" @@ -37,7 +37,6 @@ class Zmap < Formula def install inreplace ["conf/zmap.conf", "src/constants.h", "src/zopt.ggo.in"], "/etc", etc - inreplace "CMakeLists.txt", "set(ZMAP_VERSION DEVELOPMENT)", "set(ZMAP_VERSION #{version})" args = %w[-DENABLE_DEVELOPMENT=OFF -DRESPECT_INSTALL_PREFIX_CONFIG=ON] system "cmake", "-S", ".", "-B", "build", *args, *std_cmake_args From 54fc30082c0009f0fb8561a9899a6f355bd7e754 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 23:32:12 +0000 Subject: [PATCH 1086/1364] enzyme: update 0.0.178 bottle. --- Formula/e/enzyme.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/e/enzyme.rb b/Formula/e/enzyme.rb index af172bdcbd942..3131c07ec603d 100644 --- a/Formula/e/enzyme.rb +++ b/Formula/e/enzyme.rb @@ -7,13 +7,13 @@ class Enzyme < Formula head "https://github.com/EnzymeAD/Enzyme.git", branch: "main" bottle do - sha256 cellar: :any, arm64_sequoia: "884fc492dc61521d43b8b4e56df70a975ac38bb77782e9a8fc37135d766149a2" - sha256 cellar: :any, arm64_sonoma: "7e38329ae7b6897e8c537a3fece321bbbee4cd7a1a93b4048bf5e33f2a80cc32" - sha256 cellar: :any, arm64_ventura: "5a67e81309c384d88cff64a72eb2b74df6f2efc1df7395746e29c55f006028a3" - sha256 cellar: :any, sonoma: "350e9d8e2aa2edfff9dfc1b15792bf8b0194ea36ea15e96326e5249608872650" - sha256 cellar: :any, ventura: "cecc79db2abb25992f455323794921782c1feba032d9b15acd9cd0090032bac2" - sha256 cellar: :any_skip_relocation, arm64_linux: "671a24130661892aaf3335295a71ae3560e131ac18bff848ce80c58c93d5469e" - sha256 cellar: :any_skip_relocation, x86_64_linux: "a70e0d70cc0ec7eebcc2e612858827fe19610f6a743bc1faf5d095e69c3ed449" + sha256 cellar: :any, arm64_sequoia: "8cb12b0df789d7b0954d98e07272f93da37955c9dbfc73997e175955552b00e6" + sha256 cellar: :any, arm64_sonoma: "ac91dd8c3478dba228b7d4601ade6554cbaeac8ea9091f17687c049d372d502f" + sha256 cellar: :any, arm64_ventura: "08b6bf9e83d2c6b5751eb9334d1e99daa245e82405de9a8a6b6f5fccd6f2eb3c" + sha256 cellar: :any, sonoma: "40069f286a5aac716c795a096af03c6d5be453bbcd234f8a1b0cac282587f2aa" + sha256 cellar: :any, ventura: "a3e88288ce93570f201bc942740f8e0d4cc87d1ff0f666955c3e17fcd1171611" + sha256 cellar: :any_skip_relocation, arm64_linux: "04d6e162edaf7413e86f78e42562f065a7cb01ee351614ae1c592d3bd9e91dd4" + sha256 cellar: :any_skip_relocation, x86_64_linux: "df8cfb755dbb8cfe7418c201469db01e258499fb255599da228e9bfe135255bc" end depends_on "cmake" => :build From ce1b80db5bda11b0a856f1b1c83f9b644c6db19a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 23:32:15 +0000 Subject: [PATCH 1087/1364] gegl: update 0.4.62 bottle. --- Formula/g/gegl.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/g/gegl.rb b/Formula/g/gegl.rb index f6b07a1a9d129..257eeacfad70c 100644 --- a/Formula/g/gegl.rb +++ b/Formula/g/gegl.rb @@ -12,13 +12,13 @@ class Gegl < Formula end bottle do - sha256 arm64_sequoia: "e1f6c6ddb1c9da615b91164dbe664ccf4d4980a375ff8cd4d727fc56265052f7" - sha256 arm64_sonoma: "69edb72cd4cef5a11f8df80ed330a2655ce69a1581fb4039ba751a7e0669cb88" - sha256 arm64_ventura: "ea70d43b88bf85c0e49bdac8179a80a4d32baaaedf12acddead7600d432c7160" - sha256 sonoma: "22529927ffc6fcab1be508078bcada7f39a313c6e2339ef11697437132716e48" - sha256 ventura: "de5c3a9b0d64cab82d594b8a26bfbc86ea876fc7756accd1f71ccb2a473e4c64" - sha256 arm64_linux: "e817a645f790147852d2c89c753c3bbe278a03c07a19b52a2807aa0f8dbc9b6d" - sha256 x86_64_linux: "6c279ea6e4337b172e768a6adc2d540cae229a0c5b67e1293b3c2f1272360c2c" + sha256 arm64_sequoia: "f7272f324876d8ca55b210402e3bb91ff5c9f10737802f722975b933f5161c36" + sha256 arm64_sonoma: "986333c8e8ebe1975273ac8f399884e284e51491bc6cfa06fb000f38db46fe27" + sha256 arm64_ventura: "409cae15ff790645758161608ffd49d272a8f78a84f0ba5ca789cb95bf45ed6d" + sha256 sonoma: "8bd1bdb50dcb15a99b52d0ae0853eee3a16ba9c32ba018c70c6636e6869ddb60" + sha256 ventura: "35ea68ae5c2e81be99e64aca0d0fa634d59fd0bfd76d3c68d21265246b435127" + sha256 arm64_linux: "ead3747c178ec15e357985a438a3b9588e4bd8c817faff220c30cc2ac7dfca74" + sha256 x86_64_linux: "4a55a0bad96d4bb63b3d7494cc05b1805b92e55020766f2da5061d66d872eed4" end depends_on "gettext" => :build From dd32b21c7841f7c3aa4f5d230831800d4e0c1d7e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 23:32:28 +0000 Subject: [PATCH 1088/1364] jjui: add 0.8.8 bottle. --- Formula/j/jjui.rb | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Formula/j/jjui.rb b/Formula/j/jjui.rb index 625924b47d77d..b895c56239758 100644 --- a/Formula/j/jjui.rb +++ b/Formula/j/jjui.rb @@ -5,6 +5,15 @@ class Jjui < Formula sha256 "66963f2b091855d1e4116bdf45dbbde728ff6b2a65e4adb879e32249a3693242" license "MIT" + bottle do + sha256 cellar: :any_skip_relocation, arm64_sequoia: "54e7a15721fb267acdaeb43aa73068361593666de8219496e1f19043547662b2" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "54e7a15721fb267acdaeb43aa73068361593666de8219496e1f19043547662b2" + sha256 cellar: :any_skip_relocation, arm64_ventura: "54e7a15721fb267acdaeb43aa73068361593666de8219496e1f19043547662b2" + sha256 cellar: :any_skip_relocation, sonoma: "60186d9a662096c177aea03a42b2fc7b17045f8f04b6a250d39003d6cd0350b5" + sha256 cellar: :any_skip_relocation, ventura: "60186d9a662096c177aea03a42b2fc7b17045f8f04b6a250d39003d6cd0350b5" + sha256 cellar: :any_skip_relocation, x86_64_linux: "c619c378089dea967033ea1e753b09eed71dd8807e4dd10fb505547fdbeb3327" + end + depends_on "go" => :build depends_on "jj" From 41e47644c4a6139f5330749869c072a74b70bf20 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 16:58:50 +0000 Subject: [PATCH 1089/1364] dooit 3.2.0 dooit: add build patch Signed-off-by: Rui Chen --- Formula/d/dooit.rb | 48 +++++++++++++++++++++++++++------------------- 1 file changed, 28 insertions(+), 20 deletions(-) diff --git a/Formula/d/dooit.rb b/Formula/d/dooit.rb index 29086b67e18f6..ff50eca1df1a9 100644 --- a/Formula/d/dooit.rb +++ b/Formula/d/dooit.rb @@ -3,8 +3,8 @@ class Dooit < Formula desc "TUI todo manager" homepage "https://github.com/kraanzu/dooit" - url "https://files.pythonhosted.org/packages/ab/0f/3d3649b0d8e2634e5a5231d08386d0c339510b3f17afe9277c588863006c/dooit-3.1.0.tar.gz" - sha256 "ceb0faa4d5a93976a3895505b66c11a80a16c616d6a7d20bbfa9e6c2dbe7c05a" + url "https://files.pythonhosted.org/packages/00/41/5b1dc3820a54506a12c33c84467f6a12e51b845500a5df39c42cdb3fe4e0/dooit-3.2.0.tar.gz" + sha256 "c7e41bfc57e6f0fae941015936e78025baf77f0bde542f3e5e4c7030ce72656c" license "MIT" head "https://github.com/kraanzu/dooit.git", branch: "main" @@ -24,8 +24,13 @@ class Dooit < Formula depends_on "python@3.13" resource "click" do - url "https://files.pythonhosted.org/packages/96/d3/f04c7bfcf5c1862a2a5b845c6b2b360488cf47af55dfa79c98f6a6bf98b5/click-8.1.7.tar.gz" - sha256 "ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de" + url "https://files.pythonhosted.org/packages/cd/0f/62ca20172d4f87d93cf89665fbaedcd560ac48b465bd1d92bfc7ea6b0a41/click-8.2.0.tar.gz" + sha256 "f5452aeddd9988eefa20f90f05ab66f17fce1ee2a36907fd30b05bbb5953814d" + end + + resource "greenlet" do + url "https://files.pythonhosted.org/packages/34/c1/a82edae11d46c0d83481aacaa1e578fea21d94a1ef400afd734d47ad95ad/greenlet-3.2.2.tar.gz" + sha256 "ad053d34421a2debba45aa3cc39acf454acbcd025b3fc1a9f8a0dee237abd485" end resource "linkify-it-py" do @@ -49,13 +54,13 @@ class Dooit < Formula end resource "platformdirs" do - url "https://files.pythonhosted.org/packages/13/fc/128cc9cb8f03208bdbf93d3aa862e16d376844a14f9a0ce5cf4507372de4/platformdirs-4.3.6.tar.gz" - sha256 "357fb2acbc885b0419afd3ce3ed34564c13c9b95c89360cd9563f73aa5e2b907" + url "https://files.pythonhosted.org/packages/fe/8b/3c73abc9c759ecd3f1f7ceff6685840859e8070c4d947c93fae71f6a0bf2/platformdirs-4.3.8.tar.gz" + sha256 "3d512d96e16bcb959a814c9f348431070822a6496326a4be0911c40b5a74c2bc" end resource "pygments" do - url "https://files.pythonhosted.org/packages/8e/62/8336eff65bcbc8e4cb5d05b55faf041285951b6e80f33e2bff2024788f31/pygments-2.18.0.tar.gz" - sha256 "786ff802f32e91311bff3889f6e9a86e81505fe99f2735bb6d60ae0c5004f199" + url "https://files.pythonhosted.org/packages/7c/2d/c3338d48ea6cc0feb8446d8e6937e1408088a72a39937982cc6111d17f84/pygments-2.19.1.tar.gz" + sha256 "61c16d2a8576dc0649d9f39e089b5f02bcd27fba10d8fb4dcc28173f7a45151f" end resource "pyperclip" do @@ -74,33 +79,33 @@ class Dooit < Formula end resource "rich" do - url "https://files.pythonhosted.org/packages/ab/3a/0316b28d0761c6734d6bc14e770d85506c986c85ffb239e688eeaab2c2bc/rich-13.9.4.tar.gz" - sha256 "439594978a49a09530cff7ebc4b5c7103ef57baf48d5ea3184f21d9a2befa098" + url "https://files.pythonhosted.org/packages/a1/53/830aa4c3066a8ab0ae9a9955976fb770fe9c6102117c8ec4ab3ea62d89e8/rich-14.0.0.tar.gz" + sha256 "82f1bc23a6a21ebca4ae0c45af9bdbc492ed20231dcb63f297d6d1021a9d5725" end resource "six" do - url "https://files.pythonhosted.org/packages/71/39/171f1c67cd00715f190ba0b100d606d440a28c93c7714febeca8b79af85e/six-1.16.0.tar.gz" - sha256 "1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926" + url "https://files.pythonhosted.org/packages/94/e7/b2c673351809dca68a0e064b6af791aa332cf192da575fd474ed7d6f16a2/six-1.17.0.tar.gz" + sha256 "ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81" end resource "sqlalchemy" do - url "https://files.pythonhosted.org/packages/50/65/9cbc9c4c3287bed2499e05033e207473504dc4df999ce49385fb1f8b058a/sqlalchemy-2.0.36.tar.gz" - sha256 "7f2767680b6d2398aea7082e45a774b2b0767b5c8d8ffb9c8b683088ea9b29c5" + url "https://files.pythonhosted.org/packages/68/c3/3f2bfa5e4dcd9938405fe2fab5b6ab94a9248a4f9536ea2fd497da20525f/sqlalchemy-2.0.40.tar.gz" + sha256 "d827099289c64589418ebbcaead0145cd19f4e3e8a93919a0100247af245fa00" end resource "textual" do - url "https://files.pythonhosted.org/packages/61/6a/e643a0d32dc964f831172ff84d4d1b0e3c6675954e74f81c201713c58d69/textual-0.87.1.tar.gz" - sha256 "daf4e248ba3d890831ff2617099535eb835863a2e3609c8ce00af0f6d55ed123" + url "https://files.pythonhosted.org/packages/34/99/8408761a1a1076b2bb69d4859ec110d74be7515552407ac1cb6b68630eb6/textual-3.2.0.tar.gz" + sha256 "d2f3b0c39e02535bb5f2aec1c45e10bd3ee7508ed1e240b7505c3cf02a6f00ed" end resource "typing-extensions" do - url "https://files.pythonhosted.org/packages/df/db/f35a00659bc03fec321ba8bce9420de607a1d37f8342eee1863174c69557/typing_extensions-4.12.2.tar.gz" - sha256 "1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8" + url "https://files.pythonhosted.org/packages/f6/37/23083fcd6e35492953e8d2aaaa68b860eb422b34627b13f2ce3eb6106061/typing_extensions-4.13.2.tar.gz" + sha256 "e6c81219bd689f51865d9e372991c540bda33a0379d5573cddb9a3a23f7caaef" end resource "tzlocal" do - url "https://files.pythonhosted.org/packages/04/d3/c19d65ae67636fe63953b20c2e4a8ced4497ea232c43ff8d01db16de8dc0/tzlocal-5.2.tar.gz" - sha256 "8d399205578f1a9342816409cc1e46a93ebd5755e39ea2d85334bea911bf0e6e" + url "https://files.pythonhosted.org/packages/8b/2e/c14812d3d4d9cd1773c6be938f89e5735a1f11a9f184ac3639b93cef35d5/tzlocal-5.3.1.tar.gz" + sha256 "cceffc7edecefea1f595541dbd6e990cb1ea3d19bf01b2809f362a03dd7921fd" end resource "uc-micro-py" do @@ -109,6 +114,9 @@ class Dooit < Formula end def install + # The source doesn't have a valid SOURCE_DATE_EPOCH, so here we set default. + ENV["SOURCE_DATE_EPOCH"] = "1451574000" + virtualenv_install_with_resources generate_completions_from_executable(bin/"dooit", shells: [:fish, :zsh], shell_parameter_format: :click) From dc9f2123416b0dff6f7761184861824fd19bfa23 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 23:38:23 +0000 Subject: [PATCH 1090/1364] render: update 2.1.4 bottle. --- Formula/r/render.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/r/render.rb b/Formula/r/render.rb index b12f0c113ca02..673f052331cb6 100644 --- a/Formula/r/render.rb +++ b/Formula/r/render.rb @@ -7,12 +7,12 @@ class Render < Formula head "https://github.com/render-oss/cli.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "b58db380f76f4a47467e192a47516a781277648a6a16fd556a316e7ac4ce9f54" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "b58db380f76f4a47467e192a47516a781277648a6a16fd556a316e7ac4ce9f54" - sha256 cellar: :any_skip_relocation, arm64_ventura: "b58db380f76f4a47467e192a47516a781277648a6a16fd556a316e7ac4ce9f54" - sha256 cellar: :any_skip_relocation, sonoma: "1b0c73f1f61eb4ca10eb7377bc021ee4a3e892c797da74ac401350789b7a7ed4" - sha256 cellar: :any_skip_relocation, ventura: "1b0c73f1f61eb4ca10eb7377bc021ee4a3e892c797da74ac401350789b7a7ed4" - sha256 cellar: :any_skip_relocation, x86_64_linux: "c05adba8d5c87144c55255d6d85e3c7fd124c7a5bbd1b58be13f4958e4f381a8" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "e8ef690c5923b9ecbd29e6162dd9f7964f7f20dfaf33e04f51772f78940952af" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "e8ef690c5923b9ecbd29e6162dd9f7964f7f20dfaf33e04f51772f78940952af" + sha256 cellar: :any_skip_relocation, arm64_ventura: "e8ef690c5923b9ecbd29e6162dd9f7964f7f20dfaf33e04f51772f78940952af" + sha256 cellar: :any_skip_relocation, sonoma: "092765d8863cd87864afc40dda4994e9548428babf8a6093a2ed382c01d33458" + sha256 cellar: :any_skip_relocation, ventura: "092765d8863cd87864afc40dda4994e9548428babf8a6093a2ed382c01d33458" + sha256 cellar: :any_skip_relocation, x86_64_linux: "12e12127c0094c0a343e5ae12254a06ba7211c2a3563e248d8c5352dcdf264a4" end depends_on "go" => :build From 9cffae1c6d5b003cca968a750b1df13c83012c3c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 23:41:47 +0000 Subject: [PATCH 1091/1364] nixpacks: update 1.39.0 bottle. --- Formula/n/nixpacks.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/n/nixpacks.rb b/Formula/n/nixpacks.rb index 9990e62be55e1..e7c22a98a8920 100644 --- a/Formula/n/nixpacks.rb +++ b/Formula/n/nixpacks.rb @@ -7,13 +7,13 @@ class Nixpacks < Formula head "https://github.com/railwayapp/nixpacks.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "28e08bc3c346de0acbfabc11f872c6bef1b44ef50f7422acdf23b64c32c84f2a" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "c6784b2b7df3a9bb9ac080a30a744635ad3660abcf63631f44cd6ce79b8859da" - sha256 cellar: :any_skip_relocation, arm64_ventura: "017741349e36620511805fff2f94c2cbe34881c67f4d9f9f7c4827688e744bf1" - sha256 cellar: :any_skip_relocation, sonoma: "df9999ce1819bacc663a9582464ced15049287dccd5d1ff5440b65ce8425952b" - sha256 cellar: :any_skip_relocation, ventura: "b1510e3662ebe7c236ca92fc834e08f27263aef2f6d2aefa141e70046947892e" - sha256 cellar: :any_skip_relocation, arm64_linux: "7f9d592aa1abb4867aa5c417b50095944f3215263896cbe187aa435556134301" - sha256 cellar: :any_skip_relocation, x86_64_linux: "9705db815b261b8863a3d745d0bcb86b775cb4f1123bc8869f5f6211d190fcfd" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "6812145f5c4012be3d49b54eed485a0cd6648ffd432de1817a2264d3a809239e" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "68ed68ee3d7cde690d946a09ddb156344ea161a52eacde1370fcbb81694fbee3" + sha256 cellar: :any_skip_relocation, arm64_ventura: "ea8e4fdf659c3628a45b69ebcfca3aff29c0477f5b2420dde27602d906a9987a" + sha256 cellar: :any_skip_relocation, sonoma: "0aadd297cb4308f8abff20d7a580deeeafe75fb5ba9734076882ab16769326ca" + sha256 cellar: :any_skip_relocation, ventura: "8eef015d3c8c721e6a57a009fb52304c7412aa5d6dec47d5854a9c568687b2d0" + sha256 cellar: :any_skip_relocation, arm64_linux: "8fa13df53ce48b6e2ede328ab20d3e571676f967ac60d02a60b1bd2f5e3f38ba" + sha256 cellar: :any_skip_relocation, x86_64_linux: "54332642d6a027f9d51fbc6c0c97f5b6a9fb6ca4113148abb9aaf7c9be87b68c" end depends_on "rust" => :build From 9875f1cb0b2f8d4cd8c21c62d34726322d748441 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 23:42:02 +0000 Subject: [PATCH 1092/1364] ruby-lsp: update 0.23.18 bottle. --- Formula/r/ruby-lsp.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/r/ruby-lsp.rb b/Formula/r/ruby-lsp.rb index dd7248af5c405..af08aaa297af2 100644 --- a/Formula/r/ruby-lsp.rb +++ b/Formula/r/ruby-lsp.rb @@ -7,13 +7,13 @@ class RubyLsp < Formula head "https://github.com/Shopify/ruby-lsp.git", branch: "main" bottle do - sha256 cellar: :any, arm64_sequoia: "54d27e0f776db716965820144ccc7d38b8f0384969d19cdf722874b343a254b8" - sha256 cellar: :any, arm64_sonoma: "e3d1ea584e3bd00eb536a18f87edfab40ee9f2be0343eea5100bfcb1c46c9c3a" - sha256 cellar: :any, arm64_ventura: "b3c4767152554922f19f3235cf40e8a01a5038f917bc221b0505d94fc81f3314" - sha256 cellar: :any, sonoma: "fd023a463c91105e170b029122d6be931c11ff611790a63ab7ed20533ebea73e" - sha256 cellar: :any, ventura: "77228578f96a1633b91727fd9318abb6c812ffb6d765dcef971efd36c9f46fa4" - sha256 cellar: :any_skip_relocation, arm64_linux: "d5222f0e975691f20726c6e016290c3029aa3b58285f2d308f9c2a72b612483d" - sha256 cellar: :any_skip_relocation, x86_64_linux: "d45381807b898a11d958b5001365a1911b977c79a132ed12dbf62ec7164524ef" + sha256 cellar: :any, arm64_sequoia: "0c5663437b799d919b9678a8fd1826ab7be8ef518c3a27d5d6e274ffc77762a6" + sha256 cellar: :any, arm64_sonoma: "8eba3796496baf403e626fd18521948fc80613dcfb6b2aca0e501eb63c7a2a7b" + sha256 cellar: :any, arm64_ventura: "0dd32320bdf35912300bb0c942d4071a77a7e1fa27515e1add13dfe8a7030f81" + sha256 cellar: :any, sonoma: "4bac869b856b5a4596775df01df95af4d225bf18ab2e31e843bf881cdeb48db6" + sha256 cellar: :any, ventura: "4e966963a4fb1f9e720e10490babfb9e164e02b151c628d2383aa608c3dceac3" + sha256 cellar: :any_skip_relocation, arm64_linux: "71a2ac03f5a52311a79a380c5daa91aed7aa963ed86d7fabbf3bcc2aaaf46d88" + sha256 cellar: :any_skip_relocation, x86_64_linux: "f7a99fbc08e0914664b19a9cb814394740db7df12aed5431433c05c22ba2529c" end depends_on "ruby" From d78baef0ce7e1a699cc56c5c99b8807fa2bce246 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 23:45:22 +0000 Subject: [PATCH 1093/1364] sbom-tool: update 4.0.2 bottle. --- Formula/s/sbom-tool.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/s/sbom-tool.rb b/Formula/s/sbom-tool.rb index 37e3a823aca02..2012d873ea30c 100644 --- a/Formula/s/sbom-tool.rb +++ b/Formula/s/sbom-tool.rb @@ -15,12 +15,12 @@ class SbomTool < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "ff8fbdbfb4a321fc72980e047cf8326fa745ab20d22da59152c3239fd9e58e85" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "c0d387409a55a1965c920dc52033028049ae4bedeb759b054a4e716074763000" - sha256 cellar: :any_skip_relocation, arm64_ventura: "5022471bef61a6cf96c9172c925baf519ac0349f3a9d1e2ea9ebab8ffed1315d" - sha256 cellar: :any_skip_relocation, ventura: "f4d9fc9f31e1bdbacc85656dd6811bb3dc77e7792cf27bd306f534721df57136" - sha256 cellar: :any_skip_relocation, arm64_linux: "a5a92f21640ecabfe329c5b39570ae95c343eb311471bec87fb63958b7bb5b0b" - sha256 cellar: :any_skip_relocation, x86_64_linux: "4c87d83bc21c734cb7cd9355da63ba7b4b592c8996a26629c391b37acdf42615" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "0b43e167fd92bd6766467dd211e96af259d8c219ed962e6ed456cb8125753d78" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "1c4d060153e9ebcad5034a6b6c1bfd4c8451701e4d932751b7106edafd1308b4" + sha256 cellar: :any_skip_relocation, arm64_ventura: "a09960d083006bb438f5b273520851574e24220ffd1d40a23389527a7b109d96" + sha256 cellar: :any_skip_relocation, ventura: "9c8584d1da9e547b774c93d3e3bd11bbf910f0a719dc4766d8c35326a90249da" + sha256 cellar: :any_skip_relocation, arm64_linux: "3128fd9edae1d2d05749daa2bbe4ace7b1530adc31f4f80a6bf5b3414d3dff13" + sha256 cellar: :any_skip_relocation, x86_64_linux: "3ce597bc495dcb19eb349445dd17d584708e7eb198771adc65738972918408de" end depends_on "dotnet@8" From 066a4efd5d7b1a4e76f4b0970be4604e3c074218 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 23:48:09 +0000 Subject: [PATCH 1094/1364] babl: update 0.1.114 bottle. --- Formula/b/babl.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/b/babl.rb b/Formula/b/babl.rb index 94b17d57f95cd..5cfd7f02836aa 100644 --- a/Formula/b/babl.rb +++ b/Formula/b/babl.rb @@ -13,13 +13,13 @@ class Babl < Formula end bottle do - sha256 arm64_sequoia: "a58f2a505e49069e5296b46d6aa8bee3e5761b74f044a96f44e262000cba9c32" - sha256 arm64_sonoma: "333e8751c49a04a3bc4e5772f352bc7c8fe743dc34dc9df2f78e4dbb4bb518d3" - sha256 arm64_ventura: "f14266a96e73d8adca2f443b9a2772bd9f6dc8bc36d9a8ac6dc6457a2979622b" - sha256 sonoma: "3bf47b936a8167c8cc60c0e5c3fcef99a740bb6e55378d509acf43fe8798339e" - sha256 ventura: "ed297904acf6419d5b230c5902a07f6571f623d28089f8f6249aea0de47cafd9" - sha256 arm64_linux: "1017308313da3b6cf79d37943b152f1ba94e3778f22447842cf201a83e1a2abd" - sha256 x86_64_linux: "d59490c60c6f01018183a4bab2a42a5d95a1da63cb8b467a48b40e60cfc88f31" + sha256 arm64_sequoia: "5ce954090d32baf2105b51b9181fc0033dd948598929f5391b17d3f64d89d6fb" + sha256 arm64_sonoma: "ebea9657244533795a3b5244acff93bdb0c68394e3f337b513fe10fa31e82ac2" + sha256 arm64_ventura: "d69c75d99f6b01bb19b7e575bc05f2a105b5d16e6122c106c013163eb0afa63f" + sha256 sonoma: "711bcc1ca2003825471449a9d759f71c34e971909e6b5d46285c0bbc04d37198" + sha256 ventura: "80fac3c8153b352e4cae06c647461c1eccb8caa0295c5472354fd25719240178" + sha256 arm64_linux: "a6b592bfd886d0c851e52d4d58698b4b0f141a7e6c469fde635ba320444c6d48" + sha256 x86_64_linux: "3da3985cdc276fdfed64fce9fffdbbe174f5bd66ba2a9592619b80cc92b95a78" end depends_on "glib" => :build # to add to PKG_CONFIG_PATH for gobject-introspection From 52cf70cbf1172035067bc5eb7400670473487937 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 23:49:16 +0000 Subject: [PATCH 1095/1364] netlify-cli: update 21.3.0 bottle. --- Formula/n/netlify-cli.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/n/netlify-cli.rb b/Formula/n/netlify-cli.rb index c8c241064bed8..2f052b7fdac02 100644 --- a/Formula/n/netlify-cli.rb +++ b/Formula/n/netlify-cli.rb @@ -7,13 +7,13 @@ class NetlifyCli < Formula head "https://github.com/netlify/cli.git", branch: "main" bottle do - sha256 arm64_sequoia: "6e5676e52a6fe801ad3017e0010477a48261176e93810672b5b397b037b23139" - sha256 arm64_sonoma: "dae5359f9cc59300b49a360be3a2f592024ac2759623600a3d0b29e14fe6115c" - sha256 arm64_ventura: "d11a7f00fe3057c69c53007b33fd6ca4ffd63757720b901d0f29ea1929d7f98b" - sha256 sonoma: "d94b5f5f17fb7cd957fc915f1ce457ee59759acd7f3c235ac2da666e201f7b52" - sha256 ventura: "27aac5f72c52b82948fe87edb705461474a76ac9fa8d55a0ae9ff9c07af9504d" - sha256 cellar: :any_skip_relocation, arm64_linux: "767e969577e2b870531fa29249ee5955c996a5a92665f0f59c18f6ed9ed35245" - sha256 cellar: :any_skip_relocation, x86_64_linux: "41741aa6f263b25b8891642e1639441cc42ae0d7e7c40330ec9b2ffcfb29099a" + sha256 arm64_sequoia: "b1d2e02d56bb065075590984be68f4b5857d6dd1bcd5e5fda02ca54661d53ac7" + sha256 arm64_sonoma: "7efbf8ba901ab14a96a5900f02b9ba2dee54e9ebf99153424fe5b86efa0d372a" + sha256 arm64_ventura: "f34e908bc10b8642c6fe587fb9f12f9c4ff50d47c8591d857e3fa12f581fcfcc" + sha256 sonoma: "73f682e0f6a7fb4e59b3d822c5e317c5e7d315b33ba6c044e2f7406eb355266c" + sha256 ventura: "938cb5c52bd2f4de1df7c48fcbb9569cea3ed7aa775d84123bd202c47638a875" + sha256 cellar: :any_skip_relocation, arm64_linux: "eb9438769797ca7386d4c46e1615148bdccb05b98848b0bc39e65b74b7a4c5a1" + sha256 cellar: :any_skip_relocation, x86_64_linux: "187a9cdad20fce0a853780eebe3db3b8d95be0100cdf2170c24d79246141f61b" end depends_on "node" From a852ce2a59f4c465aa322858eb76cb3113047888 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 23:49:53 +0000 Subject: [PATCH 1096/1364] llama.cpp: update 5360 bottle. --- Formula/l/llama.cpp.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/l/llama.cpp.rb b/Formula/l/llama.cpp.rb index dff27a5228354..2fa918c0f5cb0 100644 --- a/Formula/l/llama.cpp.rb +++ b/Formula/l/llama.cpp.rb @@ -19,13 +19,13 @@ class LlamaCpp < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "3a7105f6407b4599d26fdc693095d3b56d860107bc1a419de4af1cc053b5b10a" - sha256 cellar: :any, arm64_sonoma: "61ba5c3db1b864459bd58220e915fe160f226475ce9494ac70759ef527f6f203" - sha256 cellar: :any, arm64_ventura: "681cd640cc3beb7ebb7b8acdd126dbf621f33d386c3859a4e7f8f5be7b9bd85b" - sha256 cellar: :any, sonoma: "d7c042cdb366d45c0f4f6b2e48fd152f3a89739dcfad1b51dffbbd57130dcde5" - sha256 cellar: :any, ventura: "cd5a46cff6fe1ec382887cc030b5b7fd323db976d7d93d01fcdabceaf89cf3d8" - sha256 cellar: :any_skip_relocation, arm64_linux: "11ec431ddc8e395f4617ed9ccae025aad21bc8e7c33544c77c9a9539ba36aa0f" - sha256 cellar: :any_skip_relocation, x86_64_linux: "ed747e51bb73459a6392e4635134828d6642e2bb63508f21ace0d3f5544cadee" + sha256 cellar: :any, arm64_sequoia: "2ef25afa747ce9ccb830d004a79bc0f32947eb76e69255109d3d11c406913950" + sha256 cellar: :any, arm64_sonoma: "3af8608bec24f596fd99c8be784533841a7a9af7eab5133a2f081a02932ffbb1" + sha256 cellar: :any, arm64_ventura: "6959e18fb39e1b2f59465fe52c79118e19b2d0a38dfaaed9c4d9ba10e72d9928" + sha256 cellar: :any, sonoma: "e9bac43647cd1f5cb38c8d784bda5c5d7ca0901dd878e4ea8790a040849cb34a" + sha256 cellar: :any, ventura: "711f58ac70305aa70e8b4d808c306fae05c2f9a710d0ddc1164278855a672e49" + sha256 cellar: :any_skip_relocation, arm64_linux: "a3015000e640887956a35d23b88e138163b3f1bae5a6d387847a9ed1da9ad368" + sha256 cellar: :any_skip_relocation, x86_64_linux: "a5129fbd214441ea1c8137ac082a25a5446169e9c78182a309a49f4231f46cde" end depends_on "cmake" => :build From c0ca69cc282ea2d70c6bc576cc322995dd1312ea Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 12 May 2025 23:52:32 +0000 Subject: [PATCH 1097/1364] zmap: update 4.3.4 bottle. --- Formula/z/zmap.rb | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Formula/z/zmap.rb b/Formula/z/zmap.rb index 7d5c435f847b8..0e4c0034136a0 100644 --- a/Formula/z/zmap.rb +++ b/Formula/z/zmap.rb @@ -12,14 +12,13 @@ class Zmap < Formula end bottle do - rebuild 1 - sha256 arm64_sequoia: "6f46e4e52386e58a63a67a8882fa4bda0e4a78132e60e48c6e3996740ceb9387" - sha256 arm64_sonoma: "1bd4fd2dafafc9e03263cf85b2e07140643c16bdb1aab8ee2283ceeeb716942c" - sha256 arm64_ventura: "7141b33f32eabd728c35914900704f7921cc8d9e37b61b8d074d7dcf7b320e8c" - sha256 sonoma: "da2626616b8f96ac3725b2ebd871d815cf6237a591c23c378cf1ec0a7095b45b" - sha256 ventura: "619fc270bcdedeeea2a309573b8201a64eb45fde9cd9f15fd7a9ac278b2f8db1" - sha256 arm64_linux: "88cb07089110183f13032bce79cdbe1646cee5cc60cd3da6378be24abf44eac9" - sha256 x86_64_linux: "f2c331f1a92fe6c1ea445d7bbc1781cde0eb89bb06ff5e7d056c8c5e20d1f5f1" + sha256 arm64_sequoia: "297abfb8c655871cda8e7957710c352f4010c09ec19adb07bea3c4b235fdd957" + sha256 arm64_sonoma: "45170d73fe6d3ae15919833d77f9c30ceff889e44dd40bf293f5bd6df4418ab8" + sha256 arm64_ventura: "c3628c8ae1ae1bb500fe770668a61b4be782a5e659a68c8cf3ec238c4e22f35e" + sha256 sonoma: "daefd0ba4f61064f028ded544912b684c1b0c399a81b4f99b8ba45af4fd5fa80" + sha256 ventura: "d96bdbf89a92db63caa5c453ad350a470d32cc1c3d2bf0ccc5d6c56d20911018" + sha256 arm64_linux: "7282a45a8902c4e6a32797d7001c24f6c6d3d0e928d3cb1f1e32a6dd4953d470" + sha256 x86_64_linux: "39f86237f9e1c880b41751e79f3407e9614a1ba7aba5db2d06268d7d08323b3d" end depends_on "byacc" => :build From 4088eb3a7e902999acb85e9d9f78ed756718ec24 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 00:02:42 +0000 Subject: [PATCH 1098/1364] dooit: update 3.2.0 bottle. --- Formula/d/dooit.rb | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Formula/d/dooit.rb b/Formula/d/dooit.rb index ff50eca1df1a9..3bc592ff8336f 100644 --- a/Formula/d/dooit.rb +++ b/Formula/d/dooit.rb @@ -9,14 +9,13 @@ class Dooit < Formula head "https://github.com/kraanzu/dooit.git", branch: "main" bottle do - rebuild 1 - sha256 cellar: :any, arm64_sequoia: "28e26bfd0d1b64a2c5e6c8f2530f8226e5293a15831f923879d588a68b8e8e25" - sha256 cellar: :any, arm64_sonoma: "3063a42abfe79996679469529c459da907354d9450a141695a7e412bb8308e33" - sha256 cellar: :any, arm64_ventura: "0e8872e9a7b67579b3693d9a5874084801991ab019c17b1b2683315c7052bd2e" - sha256 cellar: :any, sonoma: "3417fc5d17fa21ad45adaacd71eaf9c370352d41a81f9cc2bc77023524629421" - sha256 cellar: :any, ventura: "5aab34101df08674d9b15a59fe0896f8f43d0c895ffb1a41980c62368ec57e9d" - sha256 cellar: :any_skip_relocation, arm64_linux: "13ec57f38d60cea7e37c327ded456256856a3ab4987d6a4cba68f4af78dd4bae" - sha256 cellar: :any_skip_relocation, x86_64_linux: "d74e67a6601a1be24dae34f987a97d076c551d9f64827451f23beef5d42401e2" + sha256 cellar: :any, arm64_sequoia: "4263ea12518e0b63cb9941091f8a9e12460f8c51237f1e498fa207fa30b0a7c0" + sha256 cellar: :any, arm64_sonoma: "1afd68a5be6b259250b0f6ba3fc786e70b7108d946fef304c837a6ceadcabed4" + sha256 cellar: :any, arm64_ventura: "0eea25ed44fdc4775fb42654eb9de6eb5a3b28339b890f3d0502d409a9a42cfc" + sha256 cellar: :any, sonoma: "e3f606d49c5edd61f956707d1a6d78be832a772557bec0c6ddcabc9948769930" + sha256 cellar: :any, ventura: "9ce81743403b17fb1173b8c3e1fcada2a573c998ad5ddc95f7abf748e23e892f" + sha256 cellar: :any_skip_relocation, arm64_linux: "c5052e0af75cf840b45c49635839174743d271a864f5517685dc2072debc622b" + sha256 cellar: :any_skip_relocation, x86_64_linux: "a3b47e89bce96f9405b0e19492e8d6dbf883e744ab212c7a168b7231eb74abf1" end depends_on "cmake" => :build From 3b3e763227b52298c9f13c70ef3c332e72d132d9 Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Tue, 13 May 2025 01:09:57 +0100 Subject: [PATCH 1099/1364] snakeviz: use correct URL escaping method --- Formula/s/snakeviz.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/s/snakeviz.rb b/Formula/s/snakeviz.rb index 024c22070f513..0e5fcb0eea3f7 100644 --- a/Formula/s/snakeviz.rb +++ b/Formula/s/snakeviz.rb @@ -42,7 +42,7 @@ def install exec bin/"snakeviz", "--port", port.to_s, "--server", output_file end sleep 3 - output = shell_output("curl -s http://localhost:#{port}/snakeviz/#{CGI.escape output_file}") + output = shell_output("curl -s http://localhost:#{port}/snakeviz/#{ERB::Util.url_encode output_file}") assert_match "cProfile", output ensure Process.kill("HUP", pid) From bb6e50d8ca2439acfb3a0cf1f09d814ac8b708ba Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 02:23:23 +0000 Subject: [PATCH 1100/1364] apko 0.27.6 --- Formula/a/apko.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/a/apko.rb b/Formula/a/apko.rb index 30fe3840b5440..b0d772ffae9ca 100644 --- a/Formula/a/apko.rb +++ b/Formula/a/apko.rb @@ -1,8 +1,8 @@ class Apko < Formula desc "Build OCI images from APK packages directly without Dockerfile" homepage "https://github.com/chainguard-dev/apko" - url "https://github.com/chainguard-dev/apko/archive/refs/tags/v0.27.5.tar.gz" - sha256 "2d1c3500e9b240fa6a2c22a08873240c042f47472e495defabe9c973b78c46dd" + url "https://github.com/chainguard-dev/apko/archive/refs/tags/v0.27.6.tar.gz" + sha256 "19339f3063a383b0128f3d9cf8db2542c244f6331cdcfd6b255d8dead0977572" license "Apache-2.0" head "https://github.com/chainguard-dev/apko.git", branch: "main" From 6935a1160dcf8fd6e13f364e37449cef8448ceea Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 02:29:02 +0000 Subject: [PATCH 1101/1364] dolt 1.53.2 --- Formula/d/dolt.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/d/dolt.rb b/Formula/d/dolt.rb index 1f055cda5f361..47a5d6ad12497 100644 --- a/Formula/d/dolt.rb +++ b/Formula/d/dolt.rb @@ -1,8 +1,8 @@ class Dolt < Formula desc "Git for Data" homepage "https://github.com/dolthub/dolt" - url "https://github.com/dolthub/dolt/archive/refs/tags/v1.53.1.tar.gz" - sha256 "7f1ef19a183aaf33bd09f5014d38d7b66803019ac60cec4597b3728d7c3bc160" + url "https://github.com/dolthub/dolt/archive/refs/tags/v1.53.2.tar.gz" + sha256 "863eb983d8fed2886b7c360801b87276a11a00237d3bf2c518ed96b3e728dd4c" license "Apache-2.0" head "https://github.com/dolthub/dolt.git", branch: "main" From 561805cb9d5efaabf6c33817830f4039f3f87635 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 02:31:37 +0000 Subject: [PATCH 1102/1364] garnet 1.0.65 --- Formula/g/garnet.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/g/garnet.rb b/Formula/g/garnet.rb index 54b8b64f13e01..8decde2e16878 100644 --- a/Formula/g/garnet.rb +++ b/Formula/g/garnet.rb @@ -1,8 +1,8 @@ class Garnet < Formula desc "High-performance cache-store" homepage "https://microsoft.github.io/garnet/" - url "https://github.com/microsoft/garnet/archive/refs/tags/v1.0.64.tar.gz" - sha256 "a53ba5e15ba30d869fb86223a14c6e03c5abcc55c49b1d8d9f1ee8af9de8ed61" + url "https://github.com/microsoft/garnet/archive/refs/tags/v1.0.65.tar.gz" + sha256 "14031e65215dd2bd18fd861b8f5154773d06f00430403675626d9fcba93a03f3" license "MIT" bottle do From fff8aaa4b627cf0f2fe3d8092d86efebfe2a0023 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 02:32:14 +0000 Subject: [PATCH 1103/1364] gitea 1.23.8 --- Formula/g/gitea.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/g/gitea.rb b/Formula/g/gitea.rb index 4851a38d7eebe..338409592282e 100644 --- a/Formula/g/gitea.rb +++ b/Formula/g/gitea.rb @@ -1,8 +1,8 @@ class Gitea < Formula desc "Painless self-hosted all-in-one software development service" homepage "https://about.gitea.com/" - url "https://dl.gitea.com/gitea/1.23.7/gitea-src-1.23.7.tar.gz" - sha256 "cc96f04a3b49aefe714bf1d8004a5043a94b90f4cec7ae342f17917ef412a1e2" + url "https://dl.gitea.com/gitea/1.23.8/gitea-src-1.23.8.tar.gz" + sha256 "0ff96c1b7cc0960b5b9d34bd978cedc0f856a168654838bdef3551621f049717" license "MIT" head "https://github.com/go-gitea/gitea.git", branch: "main" From dabe1d3f5934381b188f8ad104d3bb6113f3171e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 02:38:28 +0000 Subject: [PATCH 1104/1364] livekit-cli 2.4.8 --- Formula/l/livekit-cli.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/l/livekit-cli.rb b/Formula/l/livekit-cli.rb index d3b862c3ef88b..b00e159ae69ca 100644 --- a/Formula/l/livekit-cli.rb +++ b/Formula/l/livekit-cli.rb @@ -1,8 +1,8 @@ class LivekitCli < Formula desc "Command-line interface to LiveKit" homepage "https://livekit.io" - url "https://github.com/livekit/livekit-cli/archive/refs/tags/v2.4.7.tar.gz" - sha256 "6e961852116577b11a057e739adc6ccac72c8d52fa2934cc0e2a94b5319c4db1" + url "https://github.com/livekit/livekit-cli/archive/refs/tags/v2.4.8.tar.gz" + sha256 "524d2dec529272e05832d0a842973ed7a3e3b4ee1d80bb9d9f1a3e3614979551" license "Apache-2.0" head "https://github.com/livekit/livekit-cli.git", branch: "main" From ec8c2c7c9519f72094ef463f27c543e82b8f9563 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 02:41:30 +0000 Subject: [PATCH 1105/1364] oj 1.26.5 --- Formula/o/oj.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/o/oj.rb b/Formula/o/oj.rb index cd17693ea6952..d525db400d38a 100644 --- a/Formula/o/oj.rb +++ b/Formula/o/oj.rb @@ -1,8 +1,8 @@ class Oj < Formula desc "JSON parser and visualization tool" homepage "https://github.com/ohler55/ojg" - url "https://github.com/ohler55/ojg/archive/refs/tags/v1.26.4.tar.gz" - sha256 "1793c7a14c5c9c1909274c44bc11a231532fb91c2a8eae8c5f47c1bfc2358b3f" + url "https://github.com/ohler55/ojg/archive/refs/tags/v1.26.5.tar.gz" + sha256 "dfa9ce6608ea3d94584e4a47c6568a90844dd9d8f3fd35f8e893fa7fdd5d7bd7" license "MIT" head "https://github.com/ohler55/ojg.git", branch: "develop" From 254ce94ffc270d04f850c4be59a40bbeef9a6067 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 02:41:57 +0000 Subject: [PATCH 1106/1364] openfga 1.8.12 --- Formula/o/openfga.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/o/openfga.rb b/Formula/o/openfga.rb index bccc898f2ec0a..60ff3c640b8d3 100644 --- a/Formula/o/openfga.rb +++ b/Formula/o/openfga.rb @@ -1,8 +1,8 @@ class Openfga < Formula desc "High performance and flexible authorization/permission engine" homepage "https://openfga.dev/" - url "https://github.com/openfga/openfga/archive/refs/tags/v1.8.11.tar.gz" - sha256 "b4528ec6a4bd913cc892a86f85b3badcaae5a8e474d1169689476b2b591053db" + url "https://github.com/openfga/openfga/archive/refs/tags/v1.8.12.tar.gz" + sha256 "2e938bec6576429fcf9196b7a3413c8314a2f4fe367dc55dbb83864eb485adb0" license "Apache-2.0" head "https://github.com/openfga/openfga.git", branch: "main" From d47fb6fcc48ae52e420464345d37c2c3877c9ae7 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 02:44:42 +0000 Subject: [PATCH 1107/1364] psutils 3.3.10 --- Formula/p/psutils.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/p/psutils.rb b/Formula/p/psutils.rb index 3923149958ca1..88b6ba4370648 100644 --- a/Formula/p/psutils.rb +++ b/Formula/p/psutils.rb @@ -3,8 +3,8 @@ class Psutils < Formula desc "Utilities for manipulating PostScript documents" homepage "https://github.com/rrthomas/psutils" - url "https://files.pythonhosted.org/packages/6f/c9/ed4c246612b0e42afe8fad52a2dddde28f1389997c043e8cf8d414d5a0ee/psutils-3.3.9.tar.gz" - sha256 "12bfde60145846e6aaae9eead8c5f0c4a959528cd171727b6ff7044da5d7e57c" + url "https://files.pythonhosted.org/packages/e1/00/718c0fba71ed7d035013bab4083195c43ec0dfcd894492a8cfb1efd693a7/psutils-3.3.10.tar.gz" + sha256 "698a18f291183d48d63cd43b6a2e43d133e89ab438d5aef5baa24374660729f7" license "GPL-3.0-or-later" bottle do @@ -15,13 +15,13 @@ class Psutils < Formula depends_on "python@3.13" resource "puremagic" do - url "https://files.pythonhosted.org/packages/09/2d/40599f25667733e41bbc3d7e4c7c36d5e7860874aa5fe9c584e90b34954d/puremagic-1.28.tar.gz" - sha256 "195893fc129657f611b86b959aab337207d6df7f25372209269ed9e303c1a8c0" + url "https://files.pythonhosted.org/packages/d6/de/c9dbb741a2e0e657147c6125699e4a2a3b9003840fed62528e17c87c0989/puremagic-1.29.tar.gz" + sha256 "67c115db3f63d43b13433860917b11e2b767e5eaec696a491be2fb544f224f7a" end resource "pypdf" do - url "https://files.pythonhosted.org/packages/6b/9a/72d74f05f64895ebf1c7f6646cf7fe6dd124398c5c49240093f92d6f0fdd/pypdf-5.1.0.tar.gz" - sha256 "425a129abb1614183fd1aca6982f650b47f8026867c0ce7c4b9f281c443d2740" + url "https://files.pythonhosted.org/packages/e0/c8/543f8ae1cd9e182e9f979d9ab1df18e3445350471abadbdabc0166ae5741/pypdf-5.5.0.tar.gz" + sha256 "8ce6a18389f7394fd09a1d4b7a34b097b11c19088a23cfd09e5008f85893e254" end def install From 0dd57f32e690c18118b9d724bb660f09cad8d2cb Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 02:50:17 +0000 Subject: [PATCH 1108/1364] tomcat@9 9.0.105 --- Formula/t/tomcat@9.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Formula/t/tomcat@9.rb b/Formula/t/tomcat@9.rb index c37f621133db5..d39ab44c3e1e1 100644 --- a/Formula/t/tomcat@9.rb +++ b/Formula/t/tomcat@9.rb @@ -1,9 +1,9 @@ class TomcatAT9 < Formula desc "Implementation of Java Servlet and JavaServer Pages" homepage "https://tomcat.apache.org/" - url "https://www.apache.org/dyn/closer.lua?path=tomcat/tomcat-9/v9.0.104/bin/apache-tomcat-9.0.104.tar.gz" - mirror "https://archive.apache.org/dist/tomcat/tomcat-9/v9.0.104/bin/apache-tomcat-9.0.104.tar.gz" - sha256 "fa19751c8f81b294dde346ad93517bded84f40885c442e0a7130da982a22abae" + url "https://www.apache.org/dyn/closer.lua?path=tomcat/tomcat-9/v9.0.105/bin/apache-tomcat-9.0.105.tar.gz" + mirror "https://archive.apache.org/dist/tomcat/tomcat-9/v9.0.105/bin/apache-tomcat-9.0.105.tar.gz" + sha256 "ee86ee179493e610358b23a0f79ba70b9e76ade71157aada9ac7cdcdcdbe35f5" license "Apache-2.0" livecheck do From 1552ff4bd7a61f0aea8853ea9e0f65ff51afd950 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 02:53:03 +0000 Subject: [PATCH 1109/1364] yorkie 0.6.11 --- Formula/y/yorkie.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/y/yorkie.rb b/Formula/y/yorkie.rb index bb8c878c0d00d..382daac1942f7 100644 --- a/Formula/y/yorkie.rb +++ b/Formula/y/yorkie.rb @@ -1,8 +1,8 @@ class Yorkie < Formula desc "Document store for collaborative applications" homepage "https://yorkie.dev/" - url "https://github.com/yorkie-team/yorkie/archive/refs/tags/v0.6.10.tar.gz" - sha256 "cc9b9207f681c8655bec58fb17c1de652a72dd2ecede14558dccb07f5c57fde7" + url "https://github.com/yorkie-team/yorkie/archive/refs/tags/v0.6.11.tar.gz" + sha256 "e8d5b40d69ad96323909fd5dd19142524a52f1916ede18907a14143393773700" license "Apache-2.0" head "https://github.com/yorkie-team/yorkie.git", branch: "main" From d02cb20ac4e5fc9e744c324ddecbd9fe0950a8ef Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 02:57:02 +0000 Subject: [PATCH 1110/1364] garnet: update 1.0.65 bottle. --- Formula/g/garnet.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/g/garnet.rb b/Formula/g/garnet.rb index 8decde2e16878..f0df19cb04115 100644 --- a/Formula/g/garnet.rb +++ b/Formula/g/garnet.rb @@ -6,12 +6,12 @@ class Garnet < Formula license "MIT" bottle do - sha256 cellar: :any, arm64_sequoia: "bc8acce1bfc68f033834c969fe53509c6d4e2220b1467ba678167b3357a65ef1" - sha256 cellar: :any, arm64_sonoma: "195af6f5ac81375f8b17ecb43d6c1782542d7bbc24fa9bb008746ef1eaa70caa" - sha256 cellar: :any, arm64_ventura: "bf5f070f224939b40ab5db8fe6fab7a0d263402820b82bea9cfc84d342d5d303" - sha256 cellar: :any, ventura: "8ccf8d9292aa12c11b3402a14aceca212d499cb3d3f420d8ff76fe60d701f2b6" - sha256 cellar: :any_skip_relocation, arm64_linux: "3d4e4f1551b1376f5decc5e924e985d190053ec1afd86406c45da73fc718e20d" - sha256 cellar: :any_skip_relocation, x86_64_linux: "fe880960f03e6a815cf032dae2c54e7771a06c0e26e035abf0a609beeea365ac" + sha256 cellar: :any, arm64_sequoia: "d0a1d3e720cd16c4530b8d0c0945746050cd00c505e7f3eed0a0683b2afd8d86" + sha256 cellar: :any, arm64_sonoma: "b282882ede5263bde7e6c4bc640cf55303fa6979d7f03fa47ce7d05ba45e9b20" + sha256 cellar: :any, arm64_ventura: "848513e725b102226f497cd533cde81b2b301696e6d10674f76d333cc540666c" + sha256 cellar: :any, ventura: "7f198f55ad233ff97304547b73d17ccef30ea40a862b85404ce2f7638e5b59e5" + sha256 cellar: :any_skip_relocation, arm64_linux: "5b1e9d1fba0d1ae57e828617b25ad5e424e3be2864afbc054096b7aaab0e1286" + sha256 cellar: :any_skip_relocation, x86_64_linux: "97f15a07f4363233e5d1d6e5066698cd2fdefeeee6a0e311cc79dd11be9955bb" end depends_on "valkey" => :test From a622fe1ca1ff445d3d7af6b57ad721a9dc10f8bf Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 02:57:11 +0000 Subject: [PATCH 1111/1364] dolt: update 1.53.2 bottle. --- Formula/d/dolt.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/d/dolt.rb b/Formula/d/dolt.rb index 47a5d6ad12497..b0103c9c2aa09 100644 --- a/Formula/d/dolt.rb +++ b/Formula/d/dolt.rb @@ -12,13 +12,13 @@ class Dolt < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "89865cd9d040533bb6cef6078023c84cea20737a82aeb4d61288dd4333edd91e" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "24de1f2f61172a493948d78bde1b52ebb1a7961e6199fe9ae117197d25898170" - sha256 cellar: :any_skip_relocation, arm64_ventura: "fbf02bb849f067edb1877ec7859f10347fd82b5f2f0329d21dfbb8d4629c8fa1" - sha256 cellar: :any_skip_relocation, sonoma: "78d367bab0729b4a2283bffe251e2816c472b7c098968b7bf6f51c79099f9187" - sha256 cellar: :any_skip_relocation, ventura: "8de1c04430e4095f69f92cc96f64627686e19797e183b311d40245f3f73351a1" - sha256 cellar: :any_skip_relocation, arm64_linux: "4c813ff3849f6a5f50d1534b1aeaf094101fd7a8a16b19881df1ce68e7bb04c3" - sha256 cellar: :any_skip_relocation, x86_64_linux: "c83699b0807942a3c7353a66e738e6e52de59673fc89dd41aed08fc5b0358b3b" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "32b810286e484fc5d155ad6f81963e0b552294bd491459a315622dbd0b2c93d0" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "ce5324076d08135cc2fcd032082e1a647d4763c65569cbefd826049d986a0b98" + sha256 cellar: :any_skip_relocation, arm64_ventura: "4eb7388cee92ea6897ef7358ce77a1667b5ad0c8bf3a285be9ae96a5e86dbd99" + sha256 cellar: :any_skip_relocation, sonoma: "83862ab10476319e91af65ec7c295d214b75cf194f6f61d0eb04d18a37e0bbce" + sha256 cellar: :any_skip_relocation, ventura: "96eae02e31c139f9f61c9fad21358f7676ba6f09a9b43404fca2b95d9db0c251" + sha256 cellar: :any_skip_relocation, arm64_linux: "63bd753cf7b5da388343d87aafc2041e308dc284b3beb51a407ccb2e9b028bfd" + sha256 cellar: :any_skip_relocation, x86_64_linux: "46a420d4c6779d5d65f79dd1b917f67ecc4a255bc43bfa7222d8a5291e00e0c8" end depends_on "go" => :build From 72de0e8eb7d93987a848c30939ce1162eda995dd Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 02:57:26 +0000 Subject: [PATCH 1112/1364] oj: update 1.26.5 bottle. --- Formula/o/oj.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/o/oj.rb b/Formula/o/oj.rb index d525db400d38a..969bf80d3ea44 100644 --- a/Formula/o/oj.rb +++ b/Formula/o/oj.rb @@ -7,13 +7,13 @@ class Oj < Formula head "https://github.com/ohler55/ojg.git", branch: "develop" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "b89c34f41817876dc4aafdebe8afedd5a0cc6d41aef59959391588f9fab269df" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "b89c34f41817876dc4aafdebe8afedd5a0cc6d41aef59959391588f9fab269df" - sha256 cellar: :any_skip_relocation, arm64_ventura: "b89c34f41817876dc4aafdebe8afedd5a0cc6d41aef59959391588f9fab269df" - sha256 cellar: :any_skip_relocation, sonoma: "dbe93b310a313c14605a9402a436d3c722c4f1e1b735a7fc66f8bd9d73e8365f" - sha256 cellar: :any_skip_relocation, ventura: "dbe93b310a313c14605a9402a436d3c722c4f1e1b735a7fc66f8bd9d73e8365f" - sha256 cellar: :any_skip_relocation, arm64_linux: "5f3ef93d62ff8ae49dde6b2de769afd63d7306bf166b9782dc6b8e163a5bd37b" - sha256 cellar: :any_skip_relocation, x86_64_linux: "0d5a269d3093de1027a8b10b857dee23319836b52cdcad76ec2877fda4703ad8" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "7758e7e09c133bb4754fdcac53726583c0f8d27bd11553768212e87eba62026b" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "7758e7e09c133bb4754fdcac53726583c0f8d27bd11553768212e87eba62026b" + sha256 cellar: :any_skip_relocation, arm64_ventura: "7758e7e09c133bb4754fdcac53726583c0f8d27bd11553768212e87eba62026b" + sha256 cellar: :any_skip_relocation, sonoma: "519c8688bf5c29924491d87f7c323dec8104d2a0b68f82d5c5df11a89345d395" + sha256 cellar: :any_skip_relocation, ventura: "519c8688bf5c29924491d87f7c323dec8104d2a0b68f82d5c5df11a89345d395" + sha256 cellar: :any_skip_relocation, arm64_linux: "cf8e9cb061d52938211963f94baa609ed43d33ccee3e8b5f9cc70e48cfa25cee" + sha256 cellar: :any_skip_relocation, x86_64_linux: "8ca280f0077e0c2e62ab224b7f3102b5faa39aa413bb5db455229debaf1f9f27" end depends_on "go" => :build From b701de482b0eab85e04dcd97008a5507202bef4d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 02:57:37 +0000 Subject: [PATCH 1113/1364] apko: update 0.27.6 bottle. --- Formula/a/apko.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/a/apko.rb b/Formula/a/apko.rb index b0d772ffae9ca..6ef88cd21e62d 100644 --- a/Formula/a/apko.rb +++ b/Formula/a/apko.rb @@ -15,12 +15,12 @@ class Apko < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "8c09f3473d9f3bb59cbb9cf2840272dafd3f73a34dd2d5e33a2f5fdb923dfb4f" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "8c09f3473d9f3bb59cbb9cf2840272dafd3f73a34dd2d5e33a2f5fdb923dfb4f" - sha256 cellar: :any_skip_relocation, arm64_ventura: "8c09f3473d9f3bb59cbb9cf2840272dafd3f73a34dd2d5e33a2f5fdb923dfb4f" - sha256 cellar: :any_skip_relocation, sonoma: "86cb11df89d8d0d100b327083e3709097b024619a74e5fc4fa719ef35ac39a8b" - sha256 cellar: :any_skip_relocation, ventura: "86cb11df89d8d0d100b327083e3709097b024619a74e5fc4fa719ef35ac39a8b" - sha256 cellar: :any_skip_relocation, x86_64_linux: "e6299ac868483a3e0f59c8c745d59b5449e5476f9a22d85c9a0c88238a5be1a0" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "6a3ff35f5314526d46db5a91e940254a50d91d9de9f639665f6b15954302122f" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "6a3ff35f5314526d46db5a91e940254a50d91d9de9f639665f6b15954302122f" + sha256 cellar: :any_skip_relocation, arm64_ventura: "6a3ff35f5314526d46db5a91e940254a50d91d9de9f639665f6b15954302122f" + sha256 cellar: :any_skip_relocation, sonoma: "06aa47c2e0f39da8048593bcc6a0379db0b30584514d63ecf671242813069b5d" + sha256 cellar: :any_skip_relocation, ventura: "06aa47c2e0f39da8048593bcc6a0379db0b30584514d63ecf671242813069b5d" + sha256 cellar: :any_skip_relocation, x86_64_linux: "563cc122af84609074adc2a889aa70e7100b0a40c0dd256bb705081f3f44ac9d" end depends_on "go" => :build From 579f28569e9865356dc21446ce311828f38f83ea Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 02:57:45 +0000 Subject: [PATCH 1114/1364] gitea: update 1.23.8 bottle. --- Formula/g/gitea.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/g/gitea.rb b/Formula/g/gitea.rb index 338409592282e..545c97246de50 100644 --- a/Formula/g/gitea.rb +++ b/Formula/g/gitea.rb @@ -14,12 +14,12 @@ class Gitea < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "45edfc8d23b8b2a1b105af9081a022bb465ea68481f68638069a8d2c5d72e15f" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "57afb307527d8a5bd9a464b6db43035a1a5d24140584867ccd630b4c0ec11be9" - sha256 cellar: :any_skip_relocation, arm64_ventura: "2f64d6d968cc72b3b8b1a60cf5be34f7c7a8bbea5451b2808f6d9281e0595b58" - sha256 cellar: :any_skip_relocation, sonoma: "3c98f87db77ee3ef8f9c979189a9366b470faa70516e5a4da0bdb3b38d3ae472" - sha256 cellar: :any_skip_relocation, ventura: "86f6ca474354b870b469deb17ecb20275d27a3436044c4236577931db4211412" - sha256 cellar: :any_skip_relocation, x86_64_linux: "47c02452d9e0cabba583b0a2130b0ac4d5d316c40eb038620b4c02ba0bbcedfd" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "42de7b65a4c03b105051a9d2ddb7488f315e4f671fa5161471b2b7c2cc2f1e65" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "fe0b05e4f4ee0c2e90390b8b23704fb9bb8f70c48e8035f6105647d6a5cad459" + sha256 cellar: :any_skip_relocation, arm64_ventura: "4a78e870f28f58c4cc2c57cac38202b6f2604ace9993c27a8df2c42b678bec4f" + sha256 cellar: :any_skip_relocation, sonoma: "a5262e084497a1b4c679e665eb6d4ce06f8d343c96e2e65dd8af3dfdb386f50b" + sha256 cellar: :any_skip_relocation, ventura: "9264a1e0d3fd6bc2bac7dd1320253b8aba7eb18944eca6ee14aa129a41263daa" + sha256 cellar: :any_skip_relocation, x86_64_linux: "2e754e10538c0c2d4432ebcae1f97781f05097463bd44f52bd61ed735c459538" end depends_on "go" => :build From c603d12bc444e42767ea047b88cb6e3b3fb6488f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 03:01:17 +0000 Subject: [PATCH 1115/1364] livekit-cli: update 2.4.8 bottle. --- Formula/l/livekit-cli.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/l/livekit-cli.rb b/Formula/l/livekit-cli.rb index b00e159ae69ca..acb41cb3f07ba 100644 --- a/Formula/l/livekit-cli.rb +++ b/Formula/l/livekit-cli.rb @@ -7,12 +7,12 @@ class LivekitCli < Formula head "https://github.com/livekit/livekit-cli.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "79dd2fff1e7b3c1cdaacd79bda856b370e04c96e4bb2f5f46366ac0aae93023c" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "79dd2fff1e7b3c1cdaacd79bda856b370e04c96e4bb2f5f46366ac0aae93023c" - sha256 cellar: :any_skip_relocation, arm64_ventura: "79dd2fff1e7b3c1cdaacd79bda856b370e04c96e4bb2f5f46366ac0aae93023c" - sha256 cellar: :any_skip_relocation, sonoma: "cd6ccebe5a4d88cb615983e2b0ef668534885c646545eaaf5832aa634827a80d" - sha256 cellar: :any_skip_relocation, ventura: "cd6ccebe5a4d88cb615983e2b0ef668534885c646545eaaf5832aa634827a80d" - sha256 cellar: :any_skip_relocation, x86_64_linux: "c376dadf60c2ed4ab268bc998b10749a0328269d9fd6c57528174baa70a7140d" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "7151806bfd86d58dc49ebf079e3da137ae15e827c3254996187927ea5096aa6c" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "7151806bfd86d58dc49ebf079e3da137ae15e827c3254996187927ea5096aa6c" + sha256 cellar: :any_skip_relocation, arm64_ventura: "7151806bfd86d58dc49ebf079e3da137ae15e827c3254996187927ea5096aa6c" + sha256 cellar: :any_skip_relocation, sonoma: "d2f49164076745bc6ea192975f98cabe3298312af5bd22acbb0f015b3a05ad91" + sha256 cellar: :any_skip_relocation, ventura: "d2f49164076745bc6ea192975f98cabe3298312af5bd22acbb0f015b3a05ad91" + sha256 cellar: :any_skip_relocation, x86_64_linux: "f8580d4423a8586bdfec8193aa3d65896ac516d867fb6101e348200ae208f407" end depends_on "go" => :build From e8925d35296abd1f27e0f3ef997bc8fa295f90d8 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 03:06:57 +0000 Subject: [PATCH 1116/1364] openfga: update 1.8.12 bottle. --- Formula/o/openfga.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/o/openfga.rb b/Formula/o/openfga.rb index 60ff3c640b8d3..2ae4a14f299e0 100644 --- a/Formula/o/openfga.rb +++ b/Formula/o/openfga.rb @@ -7,12 +7,12 @@ class Openfga < Formula head "https://github.com/openfga/openfga.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "3d939a1d8fe8248f07b07d8fd7b58f6d129a8a65c8c842cff848580e63afa2e6" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "50906d4c5092de16823e5ddd13c53959236942296d958223e8db47fa67e42a4c" - sha256 cellar: :any_skip_relocation, arm64_ventura: "8904a897340f28e8d3ab92b160b6db160b88d0002563fa51aee8db0de9008f01" - sha256 cellar: :any_skip_relocation, sonoma: "356ce312056e53683278c5246d8d8dc26f9faf6c2869cc818c8437636072e8c4" - sha256 cellar: :any_skip_relocation, ventura: "2f6aba2b4041fb0521e7d3e0d3c892a56b151b19c11f62aceebc16c20e0e9b61" - sha256 cellar: :any_skip_relocation, x86_64_linux: "dcf3e46546e99d67cbd4815825d0d5b979f32c50a5f9eff2e211e6e3e74120ce" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "5447d55367b64e98640e25bbd3b1ae59d38688cb6ff96e270f8b0c0c60b81ac2" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "e2a9627a82fc9ab6511760ffa908432e8f6c87dcf533eea02cb9ab71d712ca85" + sha256 cellar: :any_skip_relocation, arm64_ventura: "34147e3d892ca5d756f4374d66f7005c924a831fc68371a35607f7760ce6dbd5" + sha256 cellar: :any_skip_relocation, sonoma: "a42a78962855c8c3beac9ef9cadaea914406f8609f17fa702caff953e503dac9" + sha256 cellar: :any_skip_relocation, ventura: "530198366665eb3c4070e7ed11978d44e76908a62a9cb52f1624536a8c1ee648" + sha256 cellar: :any_skip_relocation, x86_64_linux: "9941db7627c217009327e186e1f5af7aaef1bae8c169786f39f310a2c5a87f0c" end depends_on "go" => :build From 2f8d9dd4efcf8ad6ad04ff0e3e70d77cc5a0acf2 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 03:07:00 +0000 Subject: [PATCH 1117/1364] tomcat@9: update 9.0.105 bottle. --- Formula/t/tomcat@9.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/t/tomcat@9.rb b/Formula/t/tomcat@9.rb index d39ab44c3e1e1..85f996b6a28f9 100644 --- a/Formula/t/tomcat@9.rb +++ b/Formula/t/tomcat@9.rb @@ -11,7 +11,7 @@ class TomcatAT9 < Formula end bottle do - sha256 cellar: :any_skip_relocation, all: "63e90f6d49dffb0cfac18de09c342a956d954a0acb386190bb6a60d18cff2e64" + sha256 cellar: :any_skip_relocation, all: "9d946949fe17b5028e7d1dbdb9823847c1414467451d8cd9a659b76f8ce9abcd" end keg_only :versioned_formula From 4cf19ea9566b31154943f5433120f54134ab4d78 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 03:08:33 +0000 Subject: [PATCH 1118/1364] yorkie: update 0.6.11 bottle. --- Formula/y/yorkie.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/y/yorkie.rb b/Formula/y/yorkie.rb index 382daac1942f7..92603bc2c6fb8 100644 --- a/Formula/y/yorkie.rb +++ b/Formula/y/yorkie.rb @@ -12,12 +12,12 @@ class Yorkie < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "b679e675bafb2d517f91eb5fae47ecc37d0f748b377ad3b38c1d56c965e3ce1b" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "b679e675bafb2d517f91eb5fae47ecc37d0f748b377ad3b38c1d56c965e3ce1b" - sha256 cellar: :any_skip_relocation, arm64_ventura: "b679e675bafb2d517f91eb5fae47ecc37d0f748b377ad3b38c1d56c965e3ce1b" - sha256 cellar: :any_skip_relocation, sonoma: "cab6a4127143ba211b91f2d989b2b98be246c439646f23b739abce8fe3bf6a4b" - sha256 cellar: :any_skip_relocation, ventura: "cab6a4127143ba211b91f2d989b2b98be246c439646f23b739abce8fe3bf6a4b" - sha256 cellar: :any_skip_relocation, x86_64_linux: "ba338f9b06a6477d68f8308dee0ad25e45b6d176e48676a55292bce5a05dde18" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "360b82ba821a553ae22ba7265ada837695c9171f7fa66eaea69db07e056abad3" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "360b82ba821a553ae22ba7265ada837695c9171f7fa66eaea69db07e056abad3" + sha256 cellar: :any_skip_relocation, arm64_ventura: "360b82ba821a553ae22ba7265ada837695c9171f7fa66eaea69db07e056abad3" + sha256 cellar: :any_skip_relocation, sonoma: "70402f16235643d73d7c9b52f6ce45a6edba7e2d71e350b719eec60bcee0a772" + sha256 cellar: :any_skip_relocation, ventura: "70402f16235643d73d7c9b52f6ce45a6edba7e2d71e350b719eec60bcee0a772" + sha256 cellar: :any_skip_relocation, x86_64_linux: "d8545e0e00c4b9e9736865be06dc60698f6ecdae8719c353cf10a1449ecf87c9" end depends_on "go" => :build From 9225473ef672dd1e499b5b2ade653d028db7bb9b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 03:14:56 +0000 Subject: [PATCH 1119/1364] psutils: update 3.3.10 bottle. --- Formula/p/psutils.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/p/psutils.rb b/Formula/p/psutils.rb index 88b6ba4370648..b95b740e9bf67 100644 --- a/Formula/p/psutils.rb +++ b/Formula/p/psutils.rb @@ -8,7 +8,7 @@ class Psutils < Formula license "GPL-3.0-or-later" bottle do - sha256 cellar: :any_skip_relocation, all: "5016215004140f43a79f9ecb8022df760f02f64be2c1ea5670753d7f6398f2ac" + sha256 cellar: :any_skip_relocation, all: "5ac8850f6f31270d73959032ee1f44c86890e03ef54ddb685b7048523c28f0da" end depends_on "libpaper" From 2651c309dbeca4414b6a797379ab5ed6dae83429 Mon Sep 17 00:00:00 2001 From: Dustin Rodrigues Date: Mon, 12 May 2025 23:34:36 -0400 Subject: [PATCH 1120/1364] checkdmarc 5.8.2 --- Formula/c/checkdmarc.rb | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/Formula/c/checkdmarc.rb b/Formula/c/checkdmarc.rb index a7331cfa104b7..8d6d5cfa2f55f 100644 --- a/Formula/c/checkdmarc.rb +++ b/Formula/c/checkdmarc.rb @@ -3,8 +3,8 @@ class Checkdmarc < Formula desc "Command-line parser for SPF and DMARC DNS records" homepage "https://domainaware.github.io/checkdmarc/" - url "https://files.pythonhosted.org/packages/5f/04/c4a416ed5856ebc120e284babe4a813b44fe166547a5921d52d347601681/checkdmarc-5.8.1.tar.gz" - sha256 "a67af55c955c84debc907d3c1cf4d5371ed7a9aa07d82d34e3ab69f762358eb5" + url "https://files.pythonhosted.org/packages/f7/e6/813515c22640d19be3abf40ba6e1c7390b540f11249fe6d928d9ed22577e/checkdmarc-5.8.2.tar.gz" + sha256 "f7775bf19d2841b412e5b954c9f543fc735c83d3a872eb3fb2324e87f0005c92" license "Apache-2.0" head "https://github.com/domainaware/checkdmarc.git", branch: "master" @@ -17,8 +17,8 @@ class Checkdmarc < Formula depends_on "python@3.13" resource "charset-normalizer" do - url "https://files.pythonhosted.org/packages/16/b0/572805e227f01586461c80e0fd25d65a2115599cc9dad142fee4b747c357/charset_normalizer-3.4.1.tar.gz" - sha256 "44251f18cd68a75b56585dd00dae26183e102cd5e0f9f1466e6df5da2ed64ea3" + url "https://files.pythonhosted.org/packages/e4/33/89c2ced2b67d1c2a61c19c6751aa8902d46ce3dacb23600a283619f5a12d/charset_normalizer-3.4.2.tar.gz" + sha256 "5baececa9ecba31eff645232d59845c07aa030f0c81ee70184a90d35099a0e63" end resource "dnspython" do @@ -36,14 +36,19 @@ class Checkdmarc < Formula sha256 "12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9" end + resource "importlib-resources" do + url "https://files.pythonhosted.org/packages/cf/8c/f834fbf984f691b4f7ff60f50b514cc3de5cc08abfc3295564dd89c5e2e7/importlib_resources-6.5.2.tar.gz" + sha256 "185f87adef5bcc288449d98fb4fba07cea78bc036455dd44c5fc4a2fe78fed2c" + end + resource "pem" do url "https://files.pythonhosted.org/packages/05/86/16c0b6789816f8d53f2f208b5a090c9197da8a6dae4d490554bb1bedbb09/pem-23.1.0.tar.gz" sha256 "06503ff2441a111f853ce4e8b9eb9d5fedb488ebdbf560115d3dd53a1b4afc73" end resource "publicsuffixlist" do - url "https://files.pythonhosted.org/packages/43/15/0bb327fbbee1e76077ed47abe4f22a96c3a101fccea658b5dfd2ed802730/publicsuffixlist-1.0.2.20250225.tar.gz" - sha256 "fb78dab1e437a84aacaed63c40fd18a0d34e0bf280d6d8acab890b472fdfd764" + url "https://files.pythonhosted.org/packages/42/52/4d2fe190c785fd8930917bb1412b4c1eff11564e835a63495cf946630236/publicsuffixlist-1.0.2.20250509.tar.gz" + sha256 "4fa37440456e71989ee079144ae279068dcb1cc5625d126affcc8bbc012fda5d" end resource "pyleri" do @@ -67,8 +72,8 @@ class Checkdmarc < Formula end resource "urllib3" do - url "https://files.pythonhosted.org/packages/aa/63/e53da845320b757bf29ef6a9062f5c669fe997973f966045cb019c3f4b66/urllib3-2.3.0.tar.gz" - sha256 "f8c5449b3cf0861679ce7e0503c7b44b5ec981bec0d1d3795a07f1ba96f0204d" + url "https://files.pythonhosted.org/packages/8a/78/16493d9c386d8e60e442a35feac5e00f0913c0f4b7c217c11e8ec2ff53e0/urllib3-2.4.0.tar.gz" + sha256 "414bc6535b787febd7567804cc015fee39daab8ad86268f1310a9250697de466" end resource "xmltodict" do From 7de97e5fb5917e225bb912fce3196b729152756f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 04:13:07 +0000 Subject: [PATCH 1121/1364] checkdmarc: update 5.8.2 bottle. --- Formula/c/checkdmarc.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/c/checkdmarc.rb b/Formula/c/checkdmarc.rb index 8d6d5cfa2f55f..b3d7f1d677519 100644 --- a/Formula/c/checkdmarc.rb +++ b/Formula/c/checkdmarc.rb @@ -9,7 +9,7 @@ class Checkdmarc < Formula head "https://github.com/domainaware/checkdmarc.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, all: "4cc3685d9f35df746b6f139c62a43927e22d9df3775b609a08a848e12174ce2a" + sha256 cellar: :any_skip_relocation, all: "1e4b05d56b7c8033e7f24df7199c7d9a76e8dfd43cc1eb7316e32ec1b316561c" end depends_on "certifi" From c5690e2b4dad542fb68c37495ffd05f2505c9f86 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 04:41:25 +0000 Subject: [PATCH 1122/1364] m4: update 1.4.20 bottle. --- Formula/m/m4.rb | 22 ++++++++-------------- 1 file changed, 8 insertions(+), 14 deletions(-) diff --git a/Formula/m/m4.rb b/Formula/m/m4.rb index b50f8ed90430c..78cf05c855a9b 100644 --- a/Formula/m/m4.rb +++ b/Formula/m/m4.rb @@ -7,20 +7,14 @@ class M4 < Formula license "GPL-3.0-or-later" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "2d39513c268897aab9072ce6b0e15dc8a0a78fc76543e4f25b1cf784ffd976f9" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "f42d89db519a07d67bcaead6c8dfb2da45e8266bebb996dd8b3f19b1ca13b8a0" - sha256 cellar: :any_skip_relocation, arm64_ventura: "11308abe8d607be35da9e88a1d789f191914bf043bca4fdde2b50a6cbf1713cc" - sha256 cellar: :any_skip_relocation, arm64_monterey: "8e9fa0d7d946f7c38e1a6f596aab3169d2440fccd34ec321b9a032d903ec951c" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "ea1be04e51645f9e31c8d2cab6d144bb7f47efb1f35214b9f1014e27db5a3bc1" - sha256 cellar: :any_skip_relocation, sequoia: "16d2da5d758ce23c24fe59d1659ff7ecf076f51105fc4797e0d6b0e6c28fbdc5" - sha256 cellar: :any_skip_relocation, sonoma: "8434a67a4383836b2531a6180e068640c5b482ee6781b673d65712e4fc86ca76" - sha256 cellar: :any_skip_relocation, ventura: "0c7707d23c005fb7cfae158c696f3173698feca3a535d8f22959df18b9659575" - sha256 cellar: :any_skip_relocation, monterey: "8a17c921e5135206c382fc67ae53ba8835684dac5bfe7eb2bcdfa79df4d2731d" - sha256 cellar: :any_skip_relocation, big_sur: "b22472f659112cf12163bba770d891618b3ada5aaf5baa01516d80fef6214617" - sha256 cellar: :any_skip_relocation, catalina: "e0fec6a49fd80cc7279c71f319d70d01ed49e894b53cd91e39f170288232fa93" - sha256 cellar: :any_skip_relocation, mojave: "0cf53207764a2311db75b19628e2395ac6655ea1f7fdac97a33a0de34f315018" - sha256 arm64_linux: "c26b282ce0d99dcfa4aa0946ffcce44f2a18ec9c0e1fd1bcc4986d698f4e0ec1" - sha256 x86_64_linux: "f6d1087a51e0ff2e582b3043a25a51b67971b2246cf65167ef3abf1230160f04" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "80bd9ecaa8798a7db6a2e86acc61089dc31d83e6e9e01495a6a57c3703155f47" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "d218aa1dbe24f70c8386a85aa8e95ffa1a4b875e3ce031061ac45541144f8cba" + sha256 cellar: :any_skip_relocation, arm64_ventura: "d2542fbf7937c71d36279c65313915039fc083dd831831f7b0a6a88caf0ed936" + sha256 cellar: :any_skip_relocation, sequoia: "72ae6db69f54b605594324fbbd4f2d6f6d3317289518ce698c4de2b806ff1b67" + sha256 cellar: :any_skip_relocation, sonoma: "9c949c70570c40706b0bf864e11ff646866072b59df94bd5a5b381b475a52137" + sha256 cellar: :any_skip_relocation, ventura: "11309d2a93df1a7f3aa467d99e2b7f210c5fd3a720831766d47b62e82a1a4068" + sha256 arm64_linux: "8f051741304b492c0ea6cfc4826839c0076e4ef1e4801cf11573b28c20b1b410" + sha256 x86_64_linux: "5f34f9a110c2abb1b32915cbacf6b9ecaddb2ff2438263047c59bb8636c6c220" end keg_only :provided_by_macos From adcee2cd665b55c8a38af19778a3ed668fb1f2b7 Mon Sep 17 00:00:00 2001 From: Phil Dibowitz Date: Mon, 12 May 2025 17:18:34 -0700 Subject: [PATCH 1123/1364] sugarjar 2.0.1 New upstream version. --- Formula/s/sugarjar.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/s/sugarjar.rb b/Formula/s/sugarjar.rb index c3fa2bdde599e..235ffa6a2b7a4 100644 --- a/Formula/s/sugarjar.rb +++ b/Formula/s/sugarjar.rb @@ -1,8 +1,8 @@ class Sugarjar < Formula desc "Helper utility for a better Git/GitHub experience" homepage "https://github.com/jaymzh/sugarjar/" - url "https://github.com/jaymzh/sugarjar/archive/refs/tags/v1.1.3.tar.gz" - sha256 "0ecdf0dcf44fb863b27a965cfe8d52b0436eb46f08503f2ab3a36d0bfea0b6e7" + url "https://github.com/jaymzh/sugarjar/archive/refs/tags/v2.0.1.tar.gz" + sha256 "7ae427d8dff1a293f063617365e76615ea7d238aaa7def260fd2b6f2cfa5e768" license "Apache-2.0" bottle do From 88ff336f63b2d33b5644619e7b9e133069b45a23 Mon Sep 17 00:00:00 2001 From: William Melody Date: Mon, 12 May 2025 21:51:29 -0700 Subject: [PATCH 1124/1364] nb 7.18.2 --- Formula/n/nb.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/n/nb.rb b/Formula/n/nb.rb index cbbf7eec6392b..37267e2b612b0 100644 --- a/Formula/n/nb.rb +++ b/Formula/n/nb.rb @@ -1,8 +1,8 @@ class Nb < Formula desc "Command-line and local web note-taking, bookmarking, and archiving" homepage "https://xwmx.github.io/nb" - url "https://github.com/xwmx/nb/archive/refs/tags/7.18.1.tar.gz" - sha256 "0987af3509d0e7f1ebfb37f75b090e2475a423fbfd7e957bb8f023b6cd054b15" + url "https://github.com/xwmx/nb/archive/refs/tags/7.18.2.tar.gz" + sha256 "ea7353e57e83b3211a98b5e865997ccbc3b185641f98be57c789835245b505d0" license "AGPL-3.0-or-later" head "https://github.com/xwmx/nb.git", branch: "master" From cb39ac80777c51f25fdaed283a5b977dd3af6c12 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Tue, 13 May 2025 04:57:01 +0000 Subject: [PATCH 1125/1364] chapel: update 2.4.0_2 bottle. --- Formula/c/chapel.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/chapel.rb b/Formula/c/chapel.rb index 1de9e29bf2b43..535ea92703e7c 100644 --- a/Formula/c/chapel.rb +++ b/Formula/c/chapel.rb @@ -10,13 +10,13 @@ class Chapel < Formula head "https://github.com/chapel-lang/chapel.git", branch: "main" bottle do - sha256 arm64_sequoia: "39d09a4ea7a236789faabbda9e37a1959092a7e62b78bdc766a103c2a5a7e7dd" - sha256 arm64_sonoma: "ed069fbef4e4c55675657e27889a903dd33dc096211a57fe5e76978969c8d25c" - sha256 arm64_ventura: "f3bb27f2dcc20c01fe7a2ba76f6035b8acbc8f90435c996122065c744f7308cf" - sha256 sonoma: "df799ae0298a4dce4d9723f447fdbb3d1e8d4e6ba9351d3c4d2de36dd21e591e" - sha256 ventura: "d34c180e3189d10e91f9bc0027c2284b5dd56d0c487502d68e5261be3b9ab665" - sha256 arm64_linux: "e4a6d3dc4ab06f2a8274501989aec21ff31f9cbe52eb640e1b27b2c8bc9cd048" - sha256 x86_64_linux: "8b4606eb517371eab693e70bf8b4170fe21d8b8ce411d0fc347e2cd53f780148" + sha256 arm64_sequoia: "ae45c935d3a083686ffc20b62e84b0faae9d5a9701322f338ff29bcb6e377c68" + sha256 arm64_sonoma: "386cffb16177a8d299f5f4bff38e15a90c2fa7c076c92fb9fc258ecc968b0a43" + sha256 arm64_ventura: "f7e776bdf704ff263140b01842811bcee6d553876243be35f3d12cc169b2088b" + sha256 sonoma: "9ea3c09df45a048ea89d80eef45631a30c9075f1f325c6d2485893304f8e60bc" + sha256 ventura: "31436bc68ae8d8ba2efe0326cfcf36f42f291be14249163bbedef1b6f9363154" + sha256 arm64_linux: "acf21794e41a00f9b1e0073c5ce8eb2a00bcf5f57266345d06d8fc7aa467ce5e" + sha256 x86_64_linux: "04c1f4dab972ad1296acf69e8a68e8f85d6b43f3c1e5a940dd0894c4613dc53f" end depends_on "cmake" From 7d94db672259757aebc8ea671700af235021a37f Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Tue, 13 May 2025 04:57:01 +0000 Subject: [PATCH 1126/1364] hwloc: update 2.12.1 bottle. --- Formula/h/hwloc.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/h/hwloc.rb b/Formula/h/hwloc.rb index 88e0cde2befb5..9e49ec81a4d5f 100644 --- a/Formula/h/hwloc.rb +++ b/Formula/h/hwloc.rb @@ -11,13 +11,13 @@ class Hwloc < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "abc5173fdb1e8441a701efb7d3ae8f9214952cbf16e5da71d5a0f9656a0702ed" - sha256 cellar: :any, arm64_sonoma: "c60af835426f941a9a9afdb3174c89f3af17d305c269938bc278330fd0f4002b" - sha256 cellar: :any, arm64_ventura: "8d669ce99bbc2ec2cccbaffc8c40de2699e8987270fe2268b3d943f18aade700" - sha256 cellar: :any, sonoma: "c225a90c17d6d38736b9e1a74ee85b63b0a86888c4dbf5935ff28b25b5240e50" - sha256 cellar: :any, ventura: "8e2f1a677f6982f2ad8517a1114bfb773356fc14c5c81a8da77c14b10a5aef45" - sha256 cellar: :any_skip_relocation, arm64_linux: "b27ce6572ebf1505730dac09ebb79d96736dfcdf0b14bb35f83c747d088f7e7a" - sha256 cellar: :any_skip_relocation, x86_64_linux: "f8fe14dfbcabf567c091b5d2a026546525665f76cf201f93064eddf49c146160" + sha256 cellar: :any, arm64_sequoia: "90fafd57899d674e5f653f5c7c9d964f992877eb2a1d74364ea9cb14f9063149" + sha256 cellar: :any, arm64_sonoma: "ed649bbbddd8352d9d7c8e36f9968cb1975b86378a2ee686637977e6f7a59190" + sha256 cellar: :any, arm64_ventura: "1b19f3b8775e2ed4ec5ec212199c136e3f427321bc4fc19c5a35df543405fbab" + sha256 cellar: :any, sonoma: "270040ceedd93532189119df30d37a666125a16b7679bfb8466e5795d5e788cf" + sha256 cellar: :any, ventura: "d0052e70d0877350983882f598575d38d81e771fe4d567491eae9f25789d45e5" + sha256 cellar: :any_skip_relocation, arm64_linux: "27aadfd1d6983986febec9f2feab8092bbe86561403bcbb6ce1072bcfb0db2e4" + sha256 cellar: :any_skip_relocation, x86_64_linux: "e0cdd5ecab9208d5919050bfecdb84dee087fccaa460d4832e4ed3e859441a9c" end head do From d246cbc8e890d33eeb3a2e4299610e9a521f3a3f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 04:57:11 +0000 Subject: [PATCH 1127/1364] fakeroot 1.37.1.2 --- Formula/f/fakeroot.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/f/fakeroot.rb b/Formula/f/fakeroot.rb index 73c6c6bcd8ee3..0ea055272259e 100644 --- a/Formula/f/fakeroot.rb +++ b/Formula/f/fakeroot.rb @@ -1,8 +1,8 @@ class Fakeroot < Formula desc "Provide a fake root environment" homepage "https://tracker.debian.org/pkg/fakeroot" - url "https://deb.debian.org/debian/pool/main/f/fakeroot/fakeroot_1.37.1.1.orig.tar.gz" - sha256 "86b0b75bf319ca42e525c098675b6ed10a06b76e69ec9ccf20ef5e03883b3a14" + url "https://deb.debian.org/debian/pool/main/f/fakeroot/fakeroot_1.37.1.2.orig.tar.gz" + sha256 "959496928c8a676ec8377f665ff6a19a707bfad693325f9cc4a4126642f53224" license "GPL-3.0-or-later" livecheck do From 06a38447275402febed6305a0473aaca00cc10b6 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Tue, 13 May 2025 04:58:19 +0000 Subject: [PATCH 1128/1364] cmake: update 4.0.2 bottle. --- Formula/c/cmake.rb | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Formula/c/cmake.rb b/Formula/c/cmake.rb index f110a054982d1..4b689ab5c1a13 100644 --- a/Formula/c/cmake.rb +++ b/Formula/c/cmake.rb @@ -17,14 +17,14 @@ class Cmake < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "5fc195bfee6a1a218f792107dcf52da2f49c764dad521367ef8134e65bab442b" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "ff8a06cee1e54ba4bce2a1d8bc81654ee2090a9037cbd323d2d160432b179a8c" - sha256 cellar: :any_skip_relocation, arm64_ventura: "d709ac137ca543c3eb3af98d516a4a321087a57a4c19d0b4b490b8c3176c2b46" - sha256 cellar: :any_skip_relocation, sequoia: "09c377a31e872e5f817e3b31d770c23c8c14975c9481da37621dde81411bc313" - sha256 cellar: :any_skip_relocation, sonoma: "965132c38bfa0fdb8f8ed287f3c66ce9b689ba3d35de9a619083ecb5aaafb0ca" - sha256 cellar: :any_skip_relocation, ventura: "e8b44379ffd02b1e74c9a4b6fb5712940f6bddce83eb6324d3aff28a890971fa" - sha256 cellar: :any_skip_relocation, arm64_linux: "080f7483ffc67e124b6de04623b366512cef0c74962fe8f546ab732684fc7cf0" - sha256 cellar: :any_skip_relocation, x86_64_linux: "93fea13b3848b9b4d3db0848e4e2db49ebd3564c039d35cafe58754789a77373" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "7bd4605b03b0dbf10d547e2ffa34166acd8e77f8f76dac0485d5376715829130" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "0fd627884d0c2819a5c1c100ca7352247c40ca0bd811237139fb50606d78db23" + sha256 cellar: :any_skip_relocation, arm64_ventura: "f4182d37a97d4c4979c9ad22ab7036faa4d965210b9285c0a20144be02578ee6" + sha256 cellar: :any_skip_relocation, sequoia: "91841ca89f8807fe911dfc60d8d72775119dfbe0c105fe4f4793fc59ec281954" + sha256 cellar: :any_skip_relocation, sonoma: "a5999889dd5a97f189fd7ff78b9036cf60c10dc72905c7384f743722d214c460" + sha256 cellar: :any_skip_relocation, ventura: "5b5d12bb69a5bae6ea3ea7ddf0c7356db688959337cdb52f7bb66dc7ca2a1807" + sha256 cellar: :any_skip_relocation, arm64_linux: "9248442ee82a1b3fac2e9b067b0bbe618e400c90947663e706d0d1a1a122133f" + sha256 cellar: :any_skip_relocation, x86_64_linux: "23429f1cc5f10a318bc8ad42eeb32396b09e0a4f56f28535eb06b606bbde987c" end uses_from_macos "ncurses" From ad1f02651e63c596ac326127ff07ebecabb441e6 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Tue, 13 May 2025 04:58:19 +0000 Subject: [PATCH 1129/1364] cmake-docs: update 4.0.2 bottle. --- Formula/c/cmake-docs.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/cmake-docs.rb b/Formula/c/cmake-docs.rb index afbce02378319..c0effc47fa298 100644 --- a/Formula/c/cmake-docs.rb +++ b/Formula/c/cmake-docs.rb @@ -13,13 +13,13 @@ class CmakeDocs < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "66b1349b89aeb52601d5c36965f924da8544fecfc6a70e770096af7ee60340da" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "66b1349b89aeb52601d5c36965f924da8544fecfc6a70e770096af7ee60340da" - sha256 cellar: :any_skip_relocation, arm64_ventura: "66b1349b89aeb52601d5c36965f924da8544fecfc6a70e770096af7ee60340da" - sha256 cellar: :any_skip_relocation, sonoma: "fecfbce50b262f54bf77fa00c957dde6a4d68d24241b14e7263b7ef575bcedfd" - sha256 cellar: :any_skip_relocation, ventura: "fecfbce50b262f54bf77fa00c957dde6a4d68d24241b14e7263b7ef575bcedfd" - sha256 cellar: :any_skip_relocation, arm64_linux: "66b1349b89aeb52601d5c36965f924da8544fecfc6a70e770096af7ee60340da" - sha256 cellar: :any_skip_relocation, x86_64_linux: "66b1349b89aeb52601d5c36965f924da8544fecfc6a70e770096af7ee60340da" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "18befc0d468df5072a1cacd64d34e0a8ec2ab515e3c7303712d50819538af840" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "18befc0d468df5072a1cacd64d34e0a8ec2ab515e3c7303712d50819538af840" + sha256 cellar: :any_skip_relocation, arm64_ventura: "18befc0d468df5072a1cacd64d34e0a8ec2ab515e3c7303712d50819538af840" + sha256 cellar: :any_skip_relocation, sonoma: "01011f228e4eee6a204848b92e7e148143020695407919e6137dfd21f0f05cd2" + sha256 cellar: :any_skip_relocation, ventura: "01011f228e4eee6a204848b92e7e148143020695407919e6137dfd21f0f05cd2" + sha256 cellar: :any_skip_relocation, arm64_linux: "18befc0d468df5072a1cacd64d34e0a8ec2ab515e3c7303712d50819538af840" + sha256 cellar: :any_skip_relocation, x86_64_linux: "18befc0d468df5072a1cacd64d34e0a8ec2ab515e3c7303712d50819538af840" end depends_on "cmake" => :build From b97101f7fff7ceaba90e036155d4bd97b4091575 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 05:00:48 +0000 Subject: [PATCH 1130/1364] imessage-exporter 2.6.2 --- Formula/i/imessage-exporter.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/i/imessage-exporter.rb b/Formula/i/imessage-exporter.rb index 281be2982dd60..f320dc6a4db22 100644 --- a/Formula/i/imessage-exporter.rb +++ b/Formula/i/imessage-exporter.rb @@ -1,8 +1,8 @@ class ImessageExporter < Formula desc "Command-line tool to export and inspect local iMessage database" homepage "https://github.com/ReagentX/imessage-exporter" - url "https://github.com/ReagentX/imessage-exporter/archive/refs/tags/2.6.1.tar.gz" - sha256 "e2b6e4d16953ce3c44c4c10a17a0bb73fa7a12ddca80b8fbe1f21f02c7ed5f48" + url "https://github.com/ReagentX/imessage-exporter/archive/refs/tags/2.6.2.tar.gz" + sha256 "c5c372b6e9e416522be3cc0797557b0fdb0df546b0b48e379d18b56f54b692ea" license "GPL-3.0-only" bottle do From 438aac55f109eb7c01fc0b2e5f569e248caba9c4 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 05:05:41 +0000 Subject: [PATCH 1131/1364] mihomo 1.19.8 --- Formula/m/mihomo.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/m/mihomo.rb b/Formula/m/mihomo.rb index d94378de09420..23d929b453fb0 100644 --- a/Formula/m/mihomo.rb +++ b/Formula/m/mihomo.rb @@ -1,8 +1,8 @@ class Mihomo < Formula desc "Another rule-based tunnel in Go, formerly known as ClashMeta" homepage "https://wiki.metacubex.one" - url "https://github.com/MetaCubeX/mihomo/archive/refs/tags/v1.19.7.tar.gz" - sha256 "b857289776f6ecfedaaca2cdfd9ed39746fda697bdcbbbb0b1bb172f1fc9462d" + url "https://github.com/MetaCubeX/mihomo/archive/refs/tags/v1.19.8.tar.gz" + sha256 "47e38ea4220f5b84485b06d980ff06cc9a48cd7bd9bdf1236168adf728a99835" license "GPL-3.0-or-later" head "https://github.com/MetaCubeX/mihomo.git", branch: "main" From 58ee37789a08b36eaf4c12cc5d41b3d0c95edfde Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 05:06:47 +0000 Subject: [PATCH 1132/1364] nb: update 7.18.2 bottle. --- Formula/n/nb.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/n/nb.rb b/Formula/n/nb.rb index 37267e2b612b0..d358a75801db1 100644 --- a/Formula/n/nb.rb +++ b/Formula/n/nb.rb @@ -7,13 +7,13 @@ class Nb < Formula head "https://github.com/xwmx/nb.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "a3cc1d2c55baa403321ec065f3ddf3e5ffc3381d9ace622a370968ceb88947ea" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "a3cc1d2c55baa403321ec065f3ddf3e5ffc3381d9ace622a370968ceb88947ea" - sha256 cellar: :any_skip_relocation, arm64_ventura: "a3cc1d2c55baa403321ec065f3ddf3e5ffc3381d9ace622a370968ceb88947ea" - sha256 cellar: :any_skip_relocation, sonoma: "c17b46738352fc8c651614f1f68836681ba5b96ed8874fab56d6e94716a660f6" - sha256 cellar: :any_skip_relocation, ventura: "c17b46738352fc8c651614f1f68836681ba5b96ed8874fab56d6e94716a660f6" - sha256 cellar: :any_skip_relocation, arm64_linux: "a3cc1d2c55baa403321ec065f3ddf3e5ffc3381d9ace622a370968ceb88947ea" - sha256 cellar: :any_skip_relocation, x86_64_linux: "a3cc1d2c55baa403321ec065f3ddf3e5ffc3381d9ace622a370968ceb88947ea" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "c9a26190af79c77a3b72abb535679bcf90886bed3fd6ce01bd4bfcf6c14e71db" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "c9a26190af79c77a3b72abb535679bcf90886bed3fd6ce01bd4bfcf6c14e71db" + sha256 cellar: :any_skip_relocation, arm64_ventura: "c9a26190af79c77a3b72abb535679bcf90886bed3fd6ce01bd4bfcf6c14e71db" + sha256 cellar: :any_skip_relocation, sonoma: "58e063ee568394ca01a0cb8537f48e2b85a56b0668123938e943ec229b9bccc4" + sha256 cellar: :any_skip_relocation, ventura: "58e063ee568394ca01a0cb8537f48e2b85a56b0668123938e943ec229b9bccc4" + sha256 cellar: :any_skip_relocation, arm64_linux: "c9a26190af79c77a3b72abb535679bcf90886bed3fd6ce01bd4bfcf6c14e71db" + sha256 cellar: :any_skip_relocation, x86_64_linux: "c9a26190af79c77a3b72abb535679bcf90886bed3fd6ce01bd4bfcf6c14e71db" end depends_on "bat" From 6b5990fbd3684426e90de685a2528d7a804c6879 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 05:08:25 +0000 Subject: [PATCH 1133/1364] sugarjar: update 2.0.1 bottle. --- Formula/s/sugarjar.rb | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/Formula/s/sugarjar.rb b/Formula/s/sugarjar.rb index 235ffa6a2b7a4..5238d6e536f1a 100644 --- a/Formula/s/sugarjar.rb +++ b/Formula/s/sugarjar.rb @@ -6,13 +6,12 @@ class Sugarjar < Formula license "Apache-2.0" bottle do - rebuild 1 - sha256 cellar: :any, arm64_sequoia: "1302c342de73848865a19e3787af42f87ce47be169e9814c97674a54b95606e2" - sha256 cellar: :any, arm64_sonoma: "d395496268c76a8427c9ebd79f338286f14371acf4645bdf4d0f33e12f68327e" - sha256 cellar: :any, arm64_ventura: "fec8c7de866860d40c1aa815823a97f65594a8cb013017eb582944e091ae1571" - sha256 cellar: :any, sonoma: "19e14dd394330e4563d3412ecf1c4c1182998cd89bcd55f607f13187b6b666a4" - sha256 cellar: :any, ventura: "07b6d776bc71f40f660938cc0b7c21bd83e8c3eb15a05afc20f7fb0fa181927b" - sha256 cellar: :any_skip_relocation, x86_64_linux: "ce4aa243579bc576d949b309c7bd17cf15d09dd3ebde286fca60b68466fcfafd" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "dd160e6f1f1274ca6ccd308d7a7b3561797957d2fdddaa97ed06d02b275b195d" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "dd160e6f1f1274ca6ccd308d7a7b3561797957d2fdddaa97ed06d02b275b195d" + sha256 cellar: :any_skip_relocation, arm64_ventura: "dd160e6f1f1274ca6ccd308d7a7b3561797957d2fdddaa97ed06d02b275b195d" + sha256 cellar: :any_skip_relocation, sonoma: "1692b320ec4f62d0e176ac95bd437d706cb8e84720c5aa90a190cb36644e517f" + sha256 cellar: :any_skip_relocation, ventura: "1692b320ec4f62d0e176ac95bd437d706cb8e84720c5aa90a190cb36644e517f" + sha256 cellar: :any_skip_relocation, x86_64_linux: "b9738a3c6fb7a4096ecd215c6557f9bcf2ce2c8216f51066d6ba1a5e4e8a15c1" end depends_on "gh" From 694bbd88081ab9019b4f63bba0c9fe0955bf87e6 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Tue, 13 May 2025 05:11:40 +0000 Subject: [PATCH 1134/1364] cmrc: update 2.0.1 bottle. --- Formula/c/cmrc.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/cmrc.rb b/Formula/c/cmrc.rb index 7bb8c1d1ff276..8124af4aae049 100644 --- a/Formula/c/cmrc.rb +++ b/Formula/c/cmrc.rb @@ -16,8 +16,8 @@ class Cmrc < Formula end bottle do - rebuild 1 - sha256 cellar: :any_skip_relocation, all: "33e1b8facfc9147d12e16f1ea45cb08c26f6e4d9ee5100b298f76a0f01a475ae" + rebuild 2 + sha256 cellar: :any_skip_relocation, all: "bccb869a3fb9486fbd2594d68a8be7fb57819f27764bbf9b3888cdc54d746ce7" end depends_on "cmake" => [:build, :test] From 51a6dfc670847b218b078b3c7dbab9f5d44b5aac Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 05:15:49 +0000 Subject: [PATCH 1135/1364] swiftformat 0.56.0 --- Formula/s/swiftformat.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/s/swiftformat.rb b/Formula/s/swiftformat.rb index ccbc5c2477194..f41bba44f34a9 100644 --- a/Formula/s/swiftformat.rb +++ b/Formula/s/swiftformat.rb @@ -1,8 +1,8 @@ class Swiftformat < Formula desc "Formatting tool for reformatting Swift code" homepage "https://github.com/nicklockwood/SwiftFormat" - url "https://github.com/nicklockwood/SwiftFormat/archive/refs/tags/0.55.6.tar.gz" - sha256 "3914c84ccd1e03a7dd3a518f90b1987c4b7c5dcb7f81b86aad23a3fed53a7b0f" + url "https://github.com/nicklockwood/SwiftFormat/archive/refs/tags/0.56.0.tar.gz" + sha256 "88e08fb85fd72f50061c7a6278517b43029a98bdf39d2d4c635a01ee9b435276" license "MIT" head "https://github.com/nicklockwood/SwiftFormat.git", branch: "develop" From 4d4adf6b64a38388f49ea75e1d6e6f34efd2a7a6 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 05:27:00 +0000 Subject: [PATCH 1136/1364] fakeroot: update 1.37.1.2 bottle. --- Formula/f/fakeroot.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/f/fakeroot.rb b/Formula/f/fakeroot.rb index 0ea055272259e..1fe00e99b8af7 100644 --- a/Formula/f/fakeroot.rb +++ b/Formula/f/fakeroot.rb @@ -11,13 +11,13 @@ class Fakeroot < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "a0f7addfdc6d501b66e2b06354e3b908ba99bdbc24aad71d47dd7d69d19ba502" - sha256 cellar: :any, arm64_sonoma: "93c322f3d6952ee77fe109e6c809fd171d5446473ba1e172374fffcb3c988574" - sha256 cellar: :any, arm64_ventura: "0c554452142dd13cef6396126d3bb79a7a082bd511e35082b01447dab1557369" - sha256 cellar: :any, sonoma: "1e1753fab9fce0fbf19cd037fd3a5ebc0eaa7553854c056a771278a916484f8d" - sha256 cellar: :any, ventura: "ec92b030562cfd54b9958b2a14cba38d5600699015704e4072825cf56b3c1f8b" - sha256 cellar: :any_skip_relocation, arm64_linux: "0755498e4b8e590507a1d1f1c9e23e23cb50152bc691be49ad08d8e160e2bd72" - sha256 cellar: :any_skip_relocation, x86_64_linux: "72b86fc8862a9f301796d52231d7dfa754d396edb3ac9ee7cbc2be6095b36569" + sha256 cellar: :any, arm64_sequoia: "63ce046cb14a93fb98404df474b78719690cac86466b66b3cf0af93e2a16cf80" + sha256 cellar: :any, arm64_sonoma: "8ea63218b4c5fdb3065b1b8e0523a41285d92ea9bda60b1aa2a13e187676a74c" + sha256 cellar: :any, arm64_ventura: "516f46bd515171543b2d7c61bda37d5d777932ed480bc2115c4aa62282ae02db" + sha256 cellar: :any, sonoma: "81d3b0da803e489894fae1d290d78ba1abffbc384f70fc99d3e95d41aebbb4fa" + sha256 cellar: :any, ventura: "b1ca3e8b74313638583ba460578349747d83aca0fd02d9fab62c499cb5104cc5" + sha256 cellar: :any_skip_relocation, arm64_linux: "ffd98968fac850868f65247322949c7b2f9ea381f025ad25a3eecbc518f29a72" + sha256 cellar: :any_skip_relocation, x86_64_linux: "8c8783d27616cc745b74cd2d25b851c38592ebcd2a5f6c60f577087d032a7ce1" end # Needed to apply patches below. Remove when no longer needed. From 2a47605e5dcbe45d3c194a650180a76e33a6cb8b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 05:41:20 +0000 Subject: [PATCH 1137/1364] swiftformat: update 0.56.0 bottle. --- Formula/s/swiftformat.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/s/swiftformat.rb b/Formula/s/swiftformat.rb index f41bba44f34a9..145e2e27eefa6 100644 --- a/Formula/s/swiftformat.rb +++ b/Formula/s/swiftformat.rb @@ -7,13 +7,13 @@ class Swiftformat < Formula head "https://github.com/nicklockwood/SwiftFormat.git", branch: "develop" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "7617fbec05965e628176ee52fd4f329801eaa31d58ef28d719df0e88ec2a75b1" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "21d23eecd29ea88277dac99c69307891c5d211e2ce3d07c8837d288932323638" - sha256 cellar: :any_skip_relocation, arm64_ventura: "4be36964f44ccec1ee52b49c5cfe193cf2663b6577f614ad06bc9d8304ecb5c5" - sha256 cellar: :any_skip_relocation, sonoma: "d2e47ab9381c868c3b26db4310e4444c8def05633cf4b151b2c914855601bb9a" - sha256 cellar: :any_skip_relocation, ventura: "09fcb8588558a4b6bc3ab0871b199b9a6f9cf0fc4678c2a281631e683b2f8e65" - sha256 cellar: :any_skip_relocation, arm64_linux: "dec312c72eaaa7efbe0a4e9ddf94f17376b5e6aad83cee683df24ada6eb0d95f" - sha256 cellar: :any_skip_relocation, x86_64_linux: "ff36605e03ca0da690a99ec69da3edcabc76b407fc41a56f0fbc0ef4888be130" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "0c8299cb42c7453cd9d5dee8e82a20d02b36bc076c57ec8c168d1ca497849de7" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "5aab3754ce7a40acd485ba02a7bb9633e4e80fc0ec621dc2c78cfc2f2087f688" + sha256 cellar: :any_skip_relocation, arm64_ventura: "34cc58ee6dd254e5b6239cb9c09215c964bb53bb54f6ac419c40e9a8bfe2fadb" + sha256 cellar: :any_skip_relocation, sonoma: "1a2592548bed75356c26032cc3d71f63c6ae5c5cfb4bd0c410118a0c270c59fd" + sha256 cellar: :any_skip_relocation, ventura: "dd9b92c9eff14264681b7e20a3855fe9f93af2bcda02f1555c9315bf095dfcb1" + sha256 cellar: :any_skip_relocation, arm64_linux: "6933b0f1bda88ef4bc694f1ddb399772ce127023fd78df3ed9af7fd3bb201c62" + sha256 cellar: :any_skip_relocation, x86_64_linux: "1cacb8521b982b5fec4117f19264fbdffc9abf7077479179f7315a40deadda3d" end depends_on xcode: ["10.1", :build] From af8022895a91ca43e34aff27a0400203f27e1bf3 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 05:41:53 +0000 Subject: [PATCH 1138/1364] mihomo: update 1.19.8 bottle. --- Formula/m/mihomo.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/m/mihomo.rb b/Formula/m/mihomo.rb index 23d929b453fb0..3ae25f64ac0aa 100644 --- a/Formula/m/mihomo.rb +++ b/Formula/m/mihomo.rb @@ -7,13 +7,13 @@ class Mihomo < Formula head "https://github.com/MetaCubeX/mihomo.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "487576b7e27d005c4cee7384ac0830a575fb3dcf7166d53d16906c0dc2e44d98" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "0f702ad61337d91be9fc642ec846204ad38c28690ac0f64e01316f8f11284b79" - sha256 cellar: :any_skip_relocation, arm64_ventura: "78a672edd9e01f7a674ace6fc640f055b26e69b8f665c9c7faf7e1ef86662ddd" - sha256 cellar: :any_skip_relocation, sonoma: "ec2f4d95c9f7c0b67dc6ef3b513416b54732048344243f93317ea4dbd610e713" - sha256 cellar: :any_skip_relocation, ventura: "560392420fe5861818ef20959230fb670c79d47459dfb586185452648c44a455" - sha256 cellar: :any_skip_relocation, arm64_linux: "9a99064668fc1d1d5168e3b039b6a6638b5737b77b930811ea89ce9456f0c934" - sha256 cellar: :any_skip_relocation, x86_64_linux: "347cf3b11d7c3b9744c1b333dc9e917d9ef2b468c85ceb5b96b8b86969dae900" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "e778993459c59f6503b6e5cf36a2510094f56e39563801f811a030b39b49b22e" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "684a00e5f154a0dc54a34efc8860a144b67add97c026366479530cbe5855ebe7" + sha256 cellar: :any_skip_relocation, arm64_ventura: "0ad47220dc55097cae7ea5a0060dc21a15516ca5e9af00b4494940360a57b041" + sha256 cellar: :any_skip_relocation, sonoma: "b26d0e0a997d80a2df55f7d2638b0e389968229598948373f090cff06617d6c9" + sha256 cellar: :any_skip_relocation, ventura: "60d53ce49c24fca624a5e39cd1945e96a88a226cbff99312002b1287a7ee7e7e" + sha256 cellar: :any_skip_relocation, arm64_linux: "20e41714ba9bd2d6bb867f8b85da2a2f57e9ed5a84d52890989b5b4549883452" + sha256 cellar: :any_skip_relocation, x86_64_linux: "e0df5d71a8aa56d7c8f1be92cc5614ac1c75d5c5c842c2c2aa43eef0f42aae71" end depends_on "go" => :build From 0553f4c99d0418a8c918a208b695c014b5de78cb Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 05:42:18 +0000 Subject: [PATCH 1139/1364] imessage-exporter: update 2.6.2 bottle. --- Formula/i/imessage-exporter.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/i/imessage-exporter.rb b/Formula/i/imessage-exporter.rb index f320dc6a4db22..5fa95f4a98b10 100644 --- a/Formula/i/imessage-exporter.rb +++ b/Formula/i/imessage-exporter.rb @@ -6,13 +6,13 @@ class ImessageExporter < Formula license "GPL-3.0-only" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "7bcb0b4e4a9be46ecd2c871759d954a8ff5fcceb60bb67fcc4bad9dc50b8ef25" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "e6f9a90d95c4f14010ea287a353a3393e7fed2015619b382657c489df7b3c565" - sha256 cellar: :any_skip_relocation, arm64_ventura: "43cb02bd5e66ebc2f1cdf8fc095fa3607c68f55dbfb44d86961eb7c8d19d1283" - sha256 cellar: :any_skip_relocation, sonoma: "2ecaa8842f364f122673085d638eb114c2a11f1e014e0b0ba6f577f19a3a65cf" - sha256 cellar: :any_skip_relocation, ventura: "d5403c4656e02bf243278f2fe823902027a30658fe5d61ea45315d12c9134124" - sha256 cellar: :any_skip_relocation, arm64_linux: "7faa3c346c945d0b48923c444e2c1b3c50d51b761a3e84c8c39137cc7818d9e9" - sha256 cellar: :any_skip_relocation, x86_64_linux: "09233965a834de6df03fb5b2a22b3caa7be11cd65c252f64e47d0196fa900229" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "79751187490085c01bd66f6e00e9059e4ca9d4f3d252ead0c0af8a761db47393" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "1ba23b54cbb4f8c006a2f08d94bf548970c8c666a8ccdc4c4b3cb3ebc74c4f6c" + sha256 cellar: :any_skip_relocation, arm64_ventura: "f3ec942d1b835e7cc0aa17273925fdd5cd6a4e94c5aad080c7d60db7bb3bf9b2" + sha256 cellar: :any_skip_relocation, sonoma: "1f0d781c61084cc396e18bf53da6682438be8dc7adeaf804f15002841de0c0a9" + sha256 cellar: :any_skip_relocation, ventura: "8ecf2e0efbe7f76d90c1dac41d03950b8f816c397d835c2f3a78b216c136793f" + sha256 cellar: :any_skip_relocation, arm64_linux: "235b89d49a0956642fc1ad28a9e013c389a05278819dc57ba971012e6e413e9c" + sha256 cellar: :any_skip_relocation, x86_64_linux: "f0d5f24d0c724f8c81528ba216139e05cf6ed1fa9176d985c72ae1ceb36649b5" end depends_on "rust" => :build From 5e08a919bdcf7808edd0bb4ff00f1805b005614d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 07:52:51 +0000 Subject: [PATCH 1140/1364] cdk8s 2.200.69 --- Formula/c/cdk8s.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/cdk8s.rb b/Formula/c/cdk8s.rb index 4ddd54383a67b..e5ed3cb509b0f 100644 --- a/Formula/c/cdk8s.rb +++ b/Formula/c/cdk8s.rb @@ -1,8 +1,8 @@ class Cdk8s < Formula desc "Define k8s native apps and abstractions using object-oriented programming" homepage "https://cdk8s.io/" - url "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.200.68.tgz" - sha256 "10273961f950124d486b5c8978b8fded8bf8e8667439a13898766ebdad6df7a0" + url "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.200.69.tgz" + sha256 "74c9d1398b2468a8d0416832f24665c5f9944c408d74cfaab9079bfa45b2a1b6" license "Apache-2.0" bottle do From 4b894e748f1caec716ee5988be2e8422d8008faf Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 07:54:34 +0000 Subject: [PATCH 1141/1364] checkov 3.2.420 --- Formula/c/checkov.rb | 46 ++++++++++++++++++++++---------------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/Formula/c/checkov.rb b/Formula/c/checkov.rb index 1149ef5ae60d3..ae8bf9a94dbb1 100644 --- a/Formula/c/checkov.rb +++ b/Formula/c/checkov.rb @@ -3,8 +3,8 @@ class Checkov < Formula desc "Prevent cloud misconfigurations during build-time for IaC tools" homepage "https://www.checkov.io/" - url "https://files.pythonhosted.org/packages/e3/db/cfc783e6f9756407b9d685796eada80ec3084137a4fc0f06158311eaeb93/checkov-3.2.410.tar.gz" - sha256 "3bf4ac3e04c791d98c51f99c6bb87dcb1e27512369f9422c07ccc6c1f67167d7" + url "https://files.pythonhosted.org/packages/9e/2f/b7803e6c34e5ce9b5e516983f49b7b10b3d7bfe21676d74791abedf5ff28/checkov-3.2.420.tar.gz" + sha256 "2d31fc673ab4ecddf452f60c7f14852d1efd05efaac840a458676a7f51ec01f2" license "Apache-2.0" livecheck do @@ -36,8 +36,8 @@ class Checkov < Formula uses_from_macos "libffi" resource "aiodns" do - url "https://files.pythonhosted.org/packages/e7/84/41a6a2765abc124563f5380e76b9b24118977729e25a84112f8dfb2b33dc/aiodns-3.2.0.tar.gz" - sha256 "62869b23409349c21b072883ec8998316b234c9a9e36675756e8e317e8768f72" + url "https://files.pythonhosted.org/packages/92/9b/e96226eed7568ddfd075b03695e3e1298d9de48724128a3a2957f5ee6ec8/aiodns-3.4.0.tar.gz" + sha256 "24b0ae58410530367f21234d0c848e4de52c1f16fbddc111726a4ab536ec1b2f" end resource "aiohappyeyeballs" do @@ -70,6 +70,11 @@ class Checkov < Formula sha256 "d0519b1bc867f5f4f4713c41ad0aba73a4a5f007449716b16f385f2166dc6adf" end + resource "asteval" do + url "https://files.pythonhosted.org/packages/b1/ba/31fb900dc07b946450f495d68d0cdeea40d9abda285bff1b9fcea09c08ac/asteval-1.0.5.tar.gz" + sha256 "bac3c8dd6d2b789e959cfec9bb296fb8338eec066feae618c462132701fbc665" + end + resource "attrs" do url "https://files.pythonhosted.org/packages/5a/b0/1367933a8532ee6ff8d63537de4f1177af4bff9f3e829baf7331f595bb24/attrs-25.3.0.tar.gz" sha256 "75d7cefc7fb576747b2c81b4442d4d4a1ce0900973527c011d1030fd3bf4af1b" @@ -131,13 +136,13 @@ class Checkov < Formula end resource "charset-normalizer" do - url "https://files.pythonhosted.org/packages/16/b0/572805e227f01586461c80e0fd25d65a2115599cc9dad142fee4b747c357/charset_normalizer-3.4.1.tar.gz" - sha256 "44251f18cd68a75b56585dd00dae26183e102cd5e0f9f1466e6df5da2ed64ea3" + url "https://files.pythonhosted.org/packages/e4/33/89c2ced2b67d1c2a61c19c6751aa8902d46ce3dacb23600a283619f5a12d/charset_normalizer-3.4.2.tar.gz" + sha256 "5baececa9ecba31eff645232d59845c07aa030f0c81ee70184a90d35099a0e63" end resource "click" do - url "https://files.pythonhosted.org/packages/b9/2e/0090cbf739cee7d23781ad4b89a9894a41538e4fcf4c31dcdd705b78eb8b/click-8.1.8.tar.gz" - sha256 "ed53c9d8990d83c2a27deae68e4ee337473f6330c040a31d4225c9574d16096a" + url "https://files.pythonhosted.org/packages/cd/0f/62ca20172d4f87d93cf89665fbaedcd560ac48b465bd1d92bfc7ea6b0a41/click-8.2.0.tar.gz" + sha256 "f5452aeddd9988eefa20f90f05ab66f17fce1ee2a36907fd30b05bbb5953814d" end resource "click-option-group" do @@ -275,14 +280,9 @@ class Checkov < Formula sha256 "c0946ed31d71f1b732b5aaa6da5a0388a345019af232ce2f49c766e2d6795c51" end - resource "openai" do - url "https://files.pythonhosted.org/packages/49/fe/c21d95cc120928b0f5b44d8c522e48df122be3f1f9d61dfb7bf3d597c95d/openai-0.28.1.tar.gz" - sha256 "4be1dad329a65b4ce1a660fe6d5431b438f429b5855c883435f0f7fcb6d2dcc8" - end - resource "orjson" do - url "https://files.pythonhosted.org/packages/98/c7/03913cc4332174071950acf5b0735463e3f63760c80585ef369270c2b372/orjson-3.10.16.tar.gz" - sha256 "d2aaa5c495e11d17b9b93205f5fa196737ee3202f000aaebf028dc9a73750f10" + url "https://files.pythonhosted.org/packages/81/0b/fea456a3ffe74e70ba30e01ec183a9b26bec4d497f61dcfce1b601059c60/orjson-3.10.18.tar.gz" + sha256 "e8da3947d92123eda795b68228cafe2724815621fe35e8e320a9e9593a4bcd53" end resource "packageurl-python" do @@ -321,8 +321,8 @@ class Checkov < Formula end resource "pycares" do - url "https://files.pythonhosted.org/packages/47/2e/1fab7f91820c788a3d236f8fe25a1ea6c4f51b728fb11d3c05d02e04a5d4/pycares-4.6.1.tar.gz" - sha256 "8a1d981206a16240eedc79b51af3293575715d4b0b971f4eb47e24839d5ab440" + url "https://files.pythonhosted.org/packages/19/7a/01ef7ce35fc1312d6c1c07f3b87f329ad6daf41bb9cd57c8f017e0b653fa/pycares-4.8.0.tar.gz" + sha256 "2fc2ebfab960f654b3e3cf08a732486950da99393a657f8b44618ad3ed2d39c1" end resource "pycep-parser" do @@ -336,13 +336,13 @@ class Checkov < Formula end resource "pydantic" do - url "https://files.pythonhosted.org/packages/10/2e/ca897f093ee6c5f3b0bee123ee4465c50e75431c3d5b6a3b44a47134e891/pydantic-2.11.3.tar.gz" - sha256 "7471657138c16adad9322fe3070c0116dd6c3ad8d649300e3cbdfe91f4db4ec3" + url "https://files.pythonhosted.org/packages/77/ab/5250d56ad03884ab5efd07f734203943c8a8ab40d551e208af81d0257bf2/pydantic-2.11.4.tar.gz" + sha256 "32738d19d63a226a52eed76645a98ee07c1f410ee41d93b4afbfa85ed8111c2d" end resource "pydantic-core" do - url "https://files.pythonhosted.org/packages/17/19/ed6a078a5287aea7922de6841ef4c06157931622c89c2a47940837b5eecd/pydantic_core-2.33.1.tar.gz" - sha256 "bcc9c6fdb0ced789245b02b7d6603e17d1563064ddcfc36f046b61c0c05dd9df" + url "https://files.pythonhosted.org/packages/ad/88/5f2260bdfae97aabf98f1778d43f69574390ad787afb646292a638c923d4/pydantic_core-2.33.2.tar.gz" + sha256 "7cb8bc3605c29176e1b105350d2e6474142d7c1bd1d9327c4a9bdb46bf827acc" end resource "pyparsing" do @@ -461,8 +461,8 @@ class Checkov < Formula end resource "uritools" do - url "https://files.pythonhosted.org/packages/d3/43/4182fb2a03145e6d38698e38b49114ce59bc8c79063452eb585a58f8ce78/uritools-4.0.3.tar.gz" - sha256 "ee06a182a9c849464ce9d5fa917539aacc8edd2a4924d1b7aabeeecabcae3bc2" + url "https://files.pythonhosted.org/packages/36/b1/e482d43db3209663b82a59e37cf31f641254180190667c6b0bf18a297de8/uritools-5.0.0.tar.gz" + sha256 "68180cad154062bd5b5d9ffcdd464f8de6934414b25462ae807b00b8df9345de" end resource "urllib3" do From 282a2145d4b2bc4b1ad6af852da78990af8dc1b2 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 07:58:06 +0000 Subject: [PATCH 1142/1364] dooit 3.2.1 --- Formula/d/dooit.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/d/dooit.rb b/Formula/d/dooit.rb index 3bc592ff8336f..e4322f850ee18 100644 --- a/Formula/d/dooit.rb +++ b/Formula/d/dooit.rb @@ -3,8 +3,8 @@ class Dooit < Formula desc "TUI todo manager" homepage "https://github.com/kraanzu/dooit" - url "https://files.pythonhosted.org/packages/00/41/5b1dc3820a54506a12c33c84467f6a12e51b845500a5df39c42cdb3fe4e0/dooit-3.2.0.tar.gz" - sha256 "c7e41bfc57e6f0fae941015936e78025baf77f0bde542f3e5e4c7030ce72656c" + url "https://files.pythonhosted.org/packages/17/9e/8718c30df1b4e2e71fe1617722dedc70bf981b834547ca40595ae8e4ad23/dooit-3.2.1.tar.gz" + sha256 "b1c0634006b009e983a5eb4c4d003363faac0ea437bec333f76ae31479be7594" license "MIT" head "https://github.com/kraanzu/dooit.git", branch: "main" From cb5e699e651212a641db05602f57dedef1fbc4de Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 08:01:52 +0000 Subject: [PATCH 1143/1364] gauge 1.6.15 --- Formula/g/gauge.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/g/gauge.rb b/Formula/g/gauge.rb index 88e18c8692f8e..4a8dd7c7a7afa 100644 --- a/Formula/g/gauge.rb +++ b/Formula/g/gauge.rb @@ -1,8 +1,8 @@ class Gauge < Formula desc "Test automation tool that supports executable documentation" homepage "https://gauge.org" - url "https://github.com/getgauge/gauge/archive/refs/tags/v1.6.14.tar.gz" - sha256 "ed86c8b8d244c5558ddb220a429c7375dc0e9caf1d9e3c37f624b72839ab70c7" + url "https://github.com/getgauge/gauge/archive/refs/tags/v1.6.15.tar.gz" + sha256 "19cb937635bbc260452b1ab7979d017c5dab7f483f465f43cac24509057b3ee5" license "Apache-2.0" head "https://github.com/getgauge/gauge.git", branch: "master" From 1f9dfdee6db9c647dad576dd9f8a739da32ae6fb Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 08:03:05 +0000 Subject: [PATCH 1144/1364] go-size-analyzer 1.9.0 --- Formula/g/go-size-analyzer.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/g/go-size-analyzer.rb b/Formula/g/go-size-analyzer.rb index be3f5f041934f..192408dc7d703 100644 --- a/Formula/g/go-size-analyzer.rb +++ b/Formula/g/go-size-analyzer.rb @@ -1,8 +1,8 @@ class GoSizeAnalyzer < Formula desc "Analyzing the dependencies in compiled Golang binaries" homepage "https://github.com/Zxilly/go-size-analyzer" - url "https://github.com/Zxilly/go-size-analyzer/archive/refs/tags/v1.8.1.tar.gz" - sha256 "ff14cedf8e475fd4fcebbd955dee408e91e8753827e3c49404be26bd43a8dd22" + url "https://github.com/Zxilly/go-size-analyzer/archive/refs/tags/v1.9.0.tar.gz" + sha256 "0824fdb357fbb8b679c160844ddf76086315fe73fa7383707e07d4c139d8141e" license "AGPL-3.0-only" head "https://github.com/Zxilly/go-size-analyzer.git", branch: "master" From 6b8511a1c426c1cede5c21f1933f48000adeaf37 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 08:05:43 +0000 Subject: [PATCH 1145/1364] ipsw 3.1.603 --- Formula/i/ipsw.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/i/ipsw.rb b/Formula/i/ipsw.rb index 8c85721f77204..86fa826e20d75 100644 --- a/Formula/i/ipsw.rb +++ b/Formula/i/ipsw.rb @@ -1,8 +1,8 @@ class Ipsw < Formula desc "Research tool for iOS & macOS devices" homepage "https://blacktop.github.io/ipsw" - url "https://github.com/blacktop/ipsw/archive/refs/tags/v3.1.602.tar.gz" - sha256 "513aca01feafb93a2cd17463bf99c79ee8caa37609bfa7e93a5a314129083226" + url "https://github.com/blacktop/ipsw/archive/refs/tags/v3.1.603.tar.gz" + sha256 "7edcc34e1182624ff34ea3bb534dd5b3d2141805a23cf1a9e0b9bcb9d02644a0" license "MIT" head "https://github.com/blacktop/ipsw.git", branch: "master" From 6f8938bd4db77047d0b0fd1dbc59ba821e24ac6e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 08:06:08 +0000 Subject: [PATCH 1146/1364] jackett 0.22.1893 --- Formula/j/jackett.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/j/jackett.rb b/Formula/j/jackett.rb index 5ba1f864b85db..cb91b67550d39 100644 --- a/Formula/j/jackett.rb +++ b/Formula/j/jackett.rb @@ -1,8 +1,8 @@ class Jackett < Formula desc "API Support for your favorite torrent trackers" homepage "https://github.com/Jackett/Jackett" - url "https://github.com/Jackett/Jackett/archive/refs/tags/v0.22.1891.tar.gz" - sha256 "287d9274910746e71913744114a4e95df75596bbaec12e7121a6cda90d3a1f71" + url "https://github.com/Jackett/Jackett/archive/refs/tags/v0.22.1893.tar.gz" + sha256 "8b270321b36feafe82aa082f72e3d8f2b117201d92cfffb3ec05bf06ef80192a" license "GPL-2.0-only" head "https://github.com/Jackett/Jackett.git", branch: "master" From 605f89837c651ea288db96f696a8823f2180f155 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 08:07:17 +0000 Subject: [PATCH 1147/1364] kew 3.3.1 --- Formula/k/kew.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/k/kew.rb b/Formula/k/kew.rb index 77c1d7e1f6485..a73a7bfa4467c 100644 --- a/Formula/k/kew.rb +++ b/Formula/k/kew.rb @@ -1,8 +1,8 @@ class Kew < Formula desc "Command-line music player" homepage "https://github.com/ravachol/kew" - url "https://github.com/ravachol/kew/archive/refs/tags/v3.3.0.tar.gz" - sha256 "cc5d1c8f30d9c1d39af452db84bb21c723407b11577c07a108d35f1eaf7dbdf3" + url "https://github.com/ravachol/kew/archive/refs/tags/v3.3.1.tar.gz" + sha256 "3f46a44ed0b3705883692a45068889a9a755d53fa8c8cc2d3489c1f62f44127d" license "GPL-2.0-only" head "https://github.com/ravachol/kew.git", branch: "main" From b19b30ac22087674f2f5e631da49017c1db42c14 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 08:12:14 +0000 Subject: [PATCH 1148/1364] mcpm 1.10.1 --- Formula/m/mcpm.rb | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/Formula/m/mcpm.rb b/Formula/m/mcpm.rb index 25011358d6fbc..89e968808313d 100644 --- a/Formula/m/mcpm.rb +++ b/Formula/m/mcpm.rb @@ -3,8 +3,8 @@ class Mcpm < Formula desc "Open source, community-driven MCP server and client manager" homepage "https://mcpm.sh/" - url "https://files.pythonhosted.org/packages/94/f1/0a218ec45d409d7de6784f746fb159b1a47fe8d4b5ac742bab7421a324f1/mcpm-1.10.0.tar.gz" - sha256 "53925f2c88b9ca67df7751c6fc9a6e1954dc235c3e1236fdbef24605205dad86" + url "https://files.pythonhosted.org/packages/8e/c5/23e7803f1b85ab26125ec044d35990cee6485162aa04f638a6e6b0ddb754/mcpm-1.10.1.tar.gz" + sha256 "def659d3a06e604c69ddd1046bd4a57e84698bc4dacedffa2f382f865fbb2b7e" license "MIT" bottle do @@ -81,8 +81,8 @@ class Mcpm < Formula end resource "mcp" do - url "https://files.pythonhosted.org/packages/ff/97/0a3e08559557b0ac5799f9fb535fbe5a4e4dcdd66ce9d32e7a74b4d0534d/mcp-1.8.0.tar.gz" - sha256 "263dfb700540b726c093f0c3e043f66aded0730d0b51f04eb0a3eb90055fe49b" + url "https://files.pythonhosted.org/packages/95/d2/f587cb965a56e992634bebc8611c5b579af912b74e04eb9164bd49527d21/mcp-1.6.0.tar.gz" + sha256 "d9324876de2c5637369f43161cd71eebfd803df5a95e46225cab8d280e366723" end resource "mdurl" do @@ -125,11 +125,6 @@ class Mcpm < Formula sha256 "41f90bc6f5f177fb41f53e87666db362025010eb28f60a01c9143bfa33a2b2d5" end - resource "python-multipart" do - url "https://files.pythonhosted.org/packages/f3/87/f44d7c9f274c7ee665a29b885ec97089ec5dc034c7f3fafa03da9e39a09e/python_multipart-0.0.20.tar.gz" - sha256 "8dd0cab45b8e23064ae09147625994d090fa46f5b0d1e13af944c331a7fa9d13" - end - resource "requests" do url "https://files.pythonhosted.org/packages/63/70/2bf7780ad2d390a8d301ad0b550f1581eadbd9a20f896afe06353c2a2913/requests-2.32.3.tar.gz" sha256 "55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760" @@ -151,8 +146,8 @@ class Mcpm < Formula end resource "sse-starlette" do - url "https://files.pythonhosted.org/packages/43/be/7e776a29b5f712b5bd13c571256a2470fcf345c562c7b2359f2ee15d9355/sse_starlette-2.3.4.tar.gz" - sha256 "0ffd6bed217cdbb74a84816437c609278003998b4991cd2e6872d0b35130e4d5" + url "https://files.pythonhosted.org/packages/10/5f/28f45b1ff14bee871bacafd0a97213f7ec70e389939a80c60c0fb72a9fc9/sse_starlette-2.3.5.tar.gz" + sha256 "228357b6e42dcc73a427990e2b4a03c023e2495ecee82e14f07ba15077e334b2" end resource "starlette" do From 48e86b11e05f1e39e5f298af2bc4085e5501ef11 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 08:17:56 +0000 Subject: [PATCH 1149/1364] pixi 0.47.0 --- Formula/p/pixi.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/p/pixi.rb b/Formula/p/pixi.rb index 09f95aef4a249..afd514f241688 100644 --- a/Formula/p/pixi.rb +++ b/Formula/p/pixi.rb @@ -1,8 +1,8 @@ class Pixi < Formula desc "Package management made easy" homepage "https://pixi.sh" - url "https://github.com/prefix-dev/pixi/archive/refs/tags/v0.46.0.tar.gz" - sha256 "23d14a2b8216ca7f0e7acc25468ee103f34d2f7062e70f12c0d07e6a8a68b3ea" + url "https://github.com/prefix-dev/pixi/archive/refs/tags/v0.47.0.tar.gz" + sha256 "a1bdf15b861b63d2a7d12947980e415e35d6ae268194b4c09bb765a406fe0259" license "BSD-3-Clause" head "https://github.com/prefix-dev/pixi.git", branch: "main" From c309c5c9f736027c4d2732ce495756003220b46a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 08:26:02 +0000 Subject: [PATCH 1150/1364] terramate 0.13.1 --- Formula/t/terramate.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/t/terramate.rb b/Formula/t/terramate.rb index 2868082f34331..33cd6b6482682 100644 --- a/Formula/t/terramate.rb +++ b/Formula/t/terramate.rb @@ -1,8 +1,8 @@ class Terramate < Formula desc "Managing Terraform stacks with change detections and code generations" homepage "https://terramate.io/docs/" - url "https://github.com/terramate-io/terramate/archive/refs/tags/v0.13.0.tar.gz" - sha256 "fd7d4cacbcb7fd390fa06e5ffe6b014937eb1034db93272307bd406369a8268a" + url "https://github.com/terramate-io/terramate/archive/refs/tags/v0.13.1.tar.gz" + sha256 "fb9dfeb7395e10e2000ed67ab9a6e40edea6d31efcc9f5a84a95f274cb9ec8b9" license "MPL-2.0" head "https://github.com/terramate-io/terramate.git", branch: "main" From 5743d56385e948f393386b2ec72265bce18ea6e6 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 08:26:45 +0000 Subject: [PATCH 1151/1364] tomcat 11.0.7 --- Formula/t/tomcat.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Formula/t/tomcat.rb b/Formula/t/tomcat.rb index f560a955d8038..71f64e4de6806 100644 --- a/Formula/t/tomcat.rb +++ b/Formula/t/tomcat.rb @@ -1,9 +1,9 @@ class Tomcat < Formula desc "Implementation of Java Servlet and JavaServer Pages" homepage "https://tomcat.apache.org/" - url "https://www.apache.org/dyn/closer.lua?path=tomcat/tomcat-11/v11.0.6/bin/apache-tomcat-11.0.6.tar.gz" - mirror "https://archive.apache.org/dist/tomcat/tomcat-11/v11.0.6/bin/apache-tomcat-11.0.6.tar.gz" - sha256 "864458f646bf938d3feb5773456199819b91d52670e4d724b9866ccfd4761cef" + url "https://www.apache.org/dyn/closer.lua?path=tomcat/tomcat-11/v11.0.7/bin/apache-tomcat-11.0.7.tar.gz" + mirror "https://archive.apache.org/dist/tomcat/tomcat-11/v11.0.7/bin/apache-tomcat-11.0.7.tar.gz" + sha256 "2fcece641c62ba1f28e1d7b257493151fc44f161fb391015ee6a95fa71632fb9" license "Apache-2.0" bottle do From cf8d05ee876cb2965b18a3a4e8bc8927061dc263 Mon Sep 17 00:00:00 2001 From: botantony Date: Tue, 13 May 2025 11:01:12 +0200 Subject: [PATCH 1152/1364] observerward 2025.5.12 --- Formula/o/observerward.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/o/observerward.rb b/Formula/o/observerward.rb index 95d30e99d4aa9..3202603f55807 100644 --- a/Formula/o/observerward.rb +++ b/Formula/o/observerward.rb @@ -1,8 +1,8 @@ class Observerward < Formula desc "Web application and service fingerprint identification tool" homepage "https://emo-crab.github.io/observer_ward/" - url "https://github.com/emo-crab/observer_ward/archive/refs/tags/v2025.4.6.tar.gz" - sha256 "541cd65c3f325c2fbaa87c875174c4470d8293a6215db5e212be609796e8cb89" + url "https://github.com/emo-crab/observer_ward/archive/refs/tags/v2025.5.12.tar.gz" + sha256 "fa9dbd296fddde75922459f6808f866390475714d220f783af124889a71705be" license "GPL-3.0-only" bottle do From 16728fa1dd566db3bea25fa210504b3a58ce9604 Mon Sep 17 00:00:00 2001 From: botantony Date: Tue, 13 May 2025 11:01:54 +0200 Subject: [PATCH 1153/1364] autobump: add observerward Signed-off-by: botantony --- .github/autobump.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/autobump.txt b/.github/autobump.txt index 04827efa45bbf..458ffccf16865 100644 --- a/.github/autobump.txt +++ b/.github/autobump.txt @@ -2565,6 +2565,7 @@ oauth2_proxy oauth2c oauth2l objfw +observerward ocaml-findlib ocaml-zarith ocamlbuild From fe922b98688f23657fd456b2636f458ff442e653 Mon Sep 17 00:00:00 2001 From: botantony Date: Tue, 13 May 2025 11:03:34 +0200 Subject: [PATCH 1154/1364] prog8 11.3.2 --- Formula/p/prog8.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/p/prog8.rb b/Formula/p/prog8.rb index b07accb840026..c1467491fd2fe 100644 --- a/Formula/p/prog8.rb +++ b/Formula/p/prog8.rb @@ -1,8 +1,8 @@ class Prog8 < Formula desc "Compiled programming language targeting the 8-bit 6502 CPU family" homepage "https://prog8.readthedocs.io" - url "https://github.com/irmen/prog8/archive/refs/tags/v11.3.1.tar.gz" - sha256 "422f4c0da3d81182ab92ce761729690322a632be087baa5a6c1e9ef8c9827ec6" + url "https://github.com/irmen/prog8/archive/refs/tags/v11.3.2.tar.gz" + sha256 "39612423f6afe025fbd24baeaee2f5d61399ae85b186118bfdd609ca7f85b157" license "GPL-3.0-only" bottle do From 759631d526ed975722d3e5483a8714222fb84100 Mon Sep 17 00:00:00 2001 From: botantony Date: Tue, 13 May 2025 11:04:06 +0200 Subject: [PATCH 1155/1364] autobump: add prog8 Signed-off-by: botantony --- .github/autobump.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/autobump.txt b/.github/autobump.txt index 04827efa45bbf..ffdc258c81879 100644 --- a/.github/autobump.txt +++ b/.github/autobump.txt @@ -2900,6 +2900,7 @@ procps procs profanity proftpd +prog8 proj projectable prometheus From 6e3711a1b71f86b2974ff92e0fc2aa7feb30f6a4 Mon Sep 17 00:00:00 2001 From: Yair Morgenstern Date: Tue, 13 May 2025 12:32:41 +0300 Subject: [PATCH 1156/1364] unciv 4.16.9 Created by https://github.com/mislav/bump-homebrew-formula-action --- Formula/u/unciv.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/u/unciv.rb b/Formula/u/unciv.rb index b153f23273a8c..b4717ba087b9e 100644 --- a/Formula/u/unciv.rb +++ b/Formula/u/unciv.rb @@ -1,8 +1,8 @@ class Unciv < Formula desc "Open-source Android/Desktop remake of Civ V" homepage "https://github.com/yairm210/Unciv" - url "https://github.com/yairm210/Unciv/releases/download/4.16.8/Unciv.jar" - sha256 "35022a0d5643ee87704ad240997cd97b2178bf42bd2dc503bbf85af4adba0464" + url "https://github.com/yairm210/Unciv/releases/download/4.16.9/Unciv.jar" + sha256 "49acdf96f5bd0333992a0c55d309a5a890d1f74ffd7bed3d7a979f9e80e43e23" license "MPL-2.0" livecheck do From 9202c7db966b8f1a8a94db8c472d01549d8b33c5 Mon Sep 17 00:00:00 2001 From: Cimbali Date: Mon, 12 May 2025 10:45:05 +0100 Subject: [PATCH 1157/1364] pympress 1.8.6 - New release - Also fixes setuptools 78 incompatibility - Lighter testing cf. #222431 --- Formula/p/pympress.rb | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/Formula/p/pympress.rb b/Formula/p/pympress.rb index c6a948ddf313c..a112c04ee639a 100644 --- a/Formula/p/pympress.rb +++ b/Formula/p/pympress.rb @@ -3,8 +3,8 @@ class Pympress < Formula desc "Simple and powerful dual-screen PDF reader designed for presentations" homepage "https://github.com/Cimbali/pympress/" - url "https://files.pythonhosted.org/packages/fb/e2/91827c485aae28d69f0b40c6d366b9f6eb96d8208a98af0345e0ade3fbbd/pympress-1.8.5.tar.gz" - sha256 "29bd39115d05f254da993abba42d54a0e9187f4e2ce7c363324b15136c530bf6" + url "https://files.pythonhosted.org/packages/87/66/fb9f8f2975740ea8880de293eb16b543965387881c71ca323a00a5d77d8a/pympress-1.8.6.tar.gz" + sha256 "243dc5dd225acd13fb6bae680e2de1816d521203b98a9cff588b66f141fffd9a" license "GPL-2.0-or-later" head "https://github.com/Cimbali/pympress.git", branch: "main" @@ -33,22 +33,16 @@ class Pympress < Formula end def install - # Workaround for build failure with Setuptools 78 - # Issue ref: https://github.com/Cimbali/pympress/issues/332 - inreplace "pyproject.toml", '"setuptools>=42"', '"setuptools>=42,<78"' - virtualenv_install_with_resources end test do # (pympress:48790): Gtk-WARNING **: 13:03:37.080: cannot open display - ENV["PYMPRESS_HEADLESS_TEST"] = "1" if OS.linux? && ENV["HOMEBREW_GITHUB_ACTIONS"] + ENV["PYMPRESS_HEADLESS_TEST"] = "1" if ENV["HOMEBREW_GITHUB_ACTIONS"] (testpath/"Library/Preferences").mkpath system bin/"pympress", "--quit" - sleep 5 - sleep 15 if OS.mac? && Hardware::CPU.intel? # Check everything ran fine at least until reporting the version string in the log file # which means all dependencies got loaded OK. Do not check actual version numbers as it breaks --HEAD tests. From 066d069e2876f625d6c600695e05c66431bcd9af Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 10:48:49 +0000 Subject: [PATCH 1158/1364] checkov: update 3.2.420 bottle. --- Formula/c/checkov.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/checkov.rb b/Formula/c/checkov.rb index ae8bf9a94dbb1..986e61494b10a 100644 --- a/Formula/c/checkov.rb +++ b/Formula/c/checkov.rb @@ -17,13 +17,13 @@ class Checkov < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "28e929a936bd1a0c06b574c34f2b01cc13749a50599dafbadd979f585b1c7466" - sha256 cellar: :any, arm64_sonoma: "1d8cff710b024e85fa3d80b1bd3ef7deb017410696d57643548f075c003f60ae" - sha256 cellar: :any, arm64_ventura: "dfb7bee7d81c9828395434e71c7b12debc66735f3abdb6b3404b9cd532a44bbd" - sha256 cellar: :any, sonoma: "79a984cde69c6e5eb4271daa874300519cf1c9983f90ccf637b0cf2d036b2c9c" - sha256 cellar: :any, ventura: "f907f6f1ca0fdc65586a4968fdf6d77e8f0310f9b2c5719ed6e7b79638b1d3b3" - sha256 cellar: :any_skip_relocation, arm64_linux: "691b1ba20953010e5c1098a80b2a8a84f667f975f4b56dbf7d02bbd9b9055fc9" - sha256 cellar: :any_skip_relocation, x86_64_linux: "d2a5ae070eccfe195a82e3a5f0d86b2773c7b16aaa78725d1815c7f524c2763a" + sha256 cellar: :any, arm64_sequoia: "9f822cb268769eb36dd022b0d7bbb863b786d0df7123efdb892104199ae00973" + sha256 cellar: :any, arm64_sonoma: "84023eb93fd8128489141ddf66be73b62472197519e7bcf4d3d5cbd75865aada" + sha256 cellar: :any, arm64_ventura: "1798af904e6d7fa5277641c69f38cd7779336c3080cc89ae526b4d015c16372c" + sha256 cellar: :any, sonoma: "4864d2c331a891d96ba88d24ebd221bdafb3e80b453a0a80430d60947b19e84a" + sha256 cellar: :any, ventura: "844f5f804d12488ae39462794a3d73bed14d7e790473203b83a84827b7a6f5ca" + sha256 cellar: :any_skip_relocation, arm64_linux: "61ba314461088f02d2485d8434d782e452342510d8ee492f50fc3ed5eb370e80" + sha256 cellar: :any_skip_relocation, x86_64_linux: "f9e9cef7753cbc19ab2380e4213949c2185455a13011887656d2241bdd3795a3" end depends_on "cmake" => :build # for igraph From 3d675d6f4a67bed43eeec0d8cadad3d9bded7be7 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 10:49:23 +0000 Subject: [PATCH 1159/1364] unciv: update 4.16.9 bottle. --- Formula/u/unciv.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/u/unciv.rb b/Formula/u/unciv.rb index b4717ba087b9e..05cfa4003bc77 100644 --- a/Formula/u/unciv.rb +++ b/Formula/u/unciv.rb @@ -11,7 +11,7 @@ class Unciv < Formula end bottle do - sha256 cellar: :any_skip_relocation, all: "1e56e2deb636a8791e2d7129351e6cb820a24afc562edacf08dc188a42f62539" + sha256 cellar: :any_skip_relocation, all: "7f78a7d0b568cfae93571e9dec960abd6ffe6dae8315b3be222d5bd30022c3a0" end depends_on "openjdk" From 061bc980ed973dfd6456b1af633bb180ceea4270 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 10:49:38 +0000 Subject: [PATCH 1160/1364] tomcat: update 11.0.7 bottle. --- Formula/t/tomcat.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/t/tomcat.rb b/Formula/t/tomcat.rb index 71f64e4de6806..f7b525eea11a6 100644 --- a/Formula/t/tomcat.rb +++ b/Formula/t/tomcat.rb @@ -7,7 +7,7 @@ class Tomcat < Formula license "Apache-2.0" bottle do - sha256 cellar: :any_skip_relocation, all: "b326da10d5b8317c512ab02d31ba321864dbc3b05b2c598d4c600bed885a2575" + sha256 cellar: :any_skip_relocation, all: "2407524101991450c2c48e0ffe61ceb9b05f51ca08742fc3ac8775c5136cea1b" end depends_on "openjdk" From e508fd6ac2e2013661ae78675353d2a1b3d98f68 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 10:49:49 +0000 Subject: [PATCH 1161/1364] dooit: update 3.2.1 bottle. --- Formula/d/dooit.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/d/dooit.rb b/Formula/d/dooit.rb index e4322f850ee18..0b08f5d352ba3 100644 --- a/Formula/d/dooit.rb +++ b/Formula/d/dooit.rb @@ -9,13 +9,13 @@ class Dooit < Formula head "https://github.com/kraanzu/dooit.git", branch: "main" bottle do - sha256 cellar: :any, arm64_sequoia: "4263ea12518e0b63cb9941091f8a9e12460f8c51237f1e498fa207fa30b0a7c0" - sha256 cellar: :any, arm64_sonoma: "1afd68a5be6b259250b0f6ba3fc786e70b7108d946fef304c837a6ceadcabed4" - sha256 cellar: :any, arm64_ventura: "0eea25ed44fdc4775fb42654eb9de6eb5a3b28339b890f3d0502d409a9a42cfc" - sha256 cellar: :any, sonoma: "e3f606d49c5edd61f956707d1a6d78be832a772557bec0c6ddcabc9948769930" - sha256 cellar: :any, ventura: "9ce81743403b17fb1173b8c3e1fcada2a573c998ad5ddc95f7abf748e23e892f" - sha256 cellar: :any_skip_relocation, arm64_linux: "c5052e0af75cf840b45c49635839174743d271a864f5517685dc2072debc622b" - sha256 cellar: :any_skip_relocation, x86_64_linux: "a3b47e89bce96f9405b0e19492e8d6dbf883e744ab212c7a168b7231eb74abf1" + sha256 cellar: :any, arm64_sequoia: "e37a7afc8d90f7cb82e1200d52f42c13a607aa8f077cd53341ef91f5de3dc8e0" + sha256 cellar: :any, arm64_sonoma: "e7e154bc5d9de0cf5cae567412594f24fa498ea07b0cf55e09711113a5987996" + sha256 cellar: :any, arm64_ventura: "dc55258420802ffb5a9548c3a8738c7154cb097b8067ddff730abb3106595555" + sha256 cellar: :any, sonoma: "f54aff321b215c00750af3915b0521fc4a87a88605dd6a03dfc1367ba01fe80b" + sha256 cellar: :any, ventura: "a6ab47d4155d7975c4dff1df2fd9ec5bc915eed49c18b337172c0524dfe3f6d4" + sha256 cellar: :any_skip_relocation, arm64_linux: "6a447372867bc9b9edb2c6883a5d0dfd64902b59f728476b0107906fb27cf48a" + sha256 cellar: :any_skip_relocation, x86_64_linux: "873d55e47cd6db68e435e9cf57e59ce2ce06ea04e8a5d881447a9a1df43bc47d" end depends_on "cmake" => :build From 43a1bc5b94602356240c482b1699d31e8f7ce8e7 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 10:50:39 +0000 Subject: [PATCH 1162/1364] terramate: update 0.13.1 bottle. --- Formula/t/terramate.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/t/terramate.rb b/Formula/t/terramate.rb index 33cd6b6482682..a05b9d5d94d77 100644 --- a/Formula/t/terramate.rb +++ b/Formula/t/terramate.rb @@ -7,12 +7,12 @@ class Terramate < Formula head "https://github.com/terramate-io/terramate.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "5cc4c757f704dc260a7bec44a987a65143f6e159fc3fafb0f7419022d0573fe8" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "5cc4c757f704dc260a7bec44a987a65143f6e159fc3fafb0f7419022d0573fe8" - sha256 cellar: :any_skip_relocation, arm64_ventura: "5cc4c757f704dc260a7bec44a987a65143f6e159fc3fafb0f7419022d0573fe8" - sha256 cellar: :any_skip_relocation, sonoma: "bd422f5df9630dbbde49ff9402d8ccecaa2767e6d68321220ef512716788880b" - sha256 cellar: :any_skip_relocation, ventura: "bd422f5df9630dbbde49ff9402d8ccecaa2767e6d68321220ef512716788880b" - sha256 cellar: :any_skip_relocation, x86_64_linux: "a6e19cf7d47804f39c3f369ccd80cc925ff7c83929ae7a069e8035bff1bc84ca" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "311186c426b93f86c20e4db5ea99a1c8ee5eceef67f30246543b619eea7bc30b" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "311186c426b93f86c20e4db5ea99a1c8ee5eceef67f30246543b619eea7bc30b" + sha256 cellar: :any_skip_relocation, arm64_ventura: "311186c426b93f86c20e4db5ea99a1c8ee5eceef67f30246543b619eea7bc30b" + sha256 cellar: :any_skip_relocation, sonoma: "4873d7e9e964e06ef313ec71d9a686bf8790f9b5d7a552dfc730382dd5aeaadf" + sha256 cellar: :any_skip_relocation, ventura: "4873d7e9e964e06ef313ec71d9a686bf8790f9b5d7a552dfc730382dd5aeaadf" + sha256 cellar: :any_skip_relocation, x86_64_linux: "cc0efccf3289fe0b2996d9917dcf487588168e97fa7ca0501a8bd5daf91eda6d" end depends_on "go" => :build From 84efcf0ed8fa248164f4009f0cc6d3bc99b46196 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 10:50:39 +0000 Subject: [PATCH 1163/1364] pixi: update 0.47.0 bottle. --- Formula/p/pixi.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/p/pixi.rb b/Formula/p/pixi.rb index afd514f241688..067f75eee9788 100644 --- a/Formula/p/pixi.rb +++ b/Formula/p/pixi.rb @@ -15,13 +15,13 @@ class Pixi < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "de93234461d045b1ab78863650e2d9afd9125256fa6705183f4a3ec7837349eb" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "c1ba74a2693be498d535834e733b3e70a215154077997c3a05dae666bff3657d" - sha256 cellar: :any_skip_relocation, arm64_ventura: "78c22df39d321f0da29304ff4ca1dd743dd87e2f48d69b47bc89977857395883" - sha256 cellar: :any_skip_relocation, sonoma: "e14bb3806eccafe3cb70b1cb43ce981a39215e244484c233fc382b4a5773ee0f" - sha256 cellar: :any_skip_relocation, ventura: "d5748017c7e8e51836a3fdb65b59d57841fb6af51fb70b4881d7c32217725939" - sha256 cellar: :any_skip_relocation, arm64_linux: "b8b94a088f1b47fb80f1c1cb00031d8970e7fc6c4e30cae109fa18d060604ff3" - sha256 cellar: :any_skip_relocation, x86_64_linux: "39f570680df875b5ddb774caca208a43d6d432068d07dbba674abcfda45915c8" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "61fdae6bcf25d9d0f0dc4a115d1f318cb7797b6d076f9f56c9c5ce15e3b3a23d" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "fd6f42fc9aab2115fd0cc34aa50ac71149a74b469558ca192cd28be3cfe238dc" + sha256 cellar: :any_skip_relocation, arm64_ventura: "1ab7a204d1da6c9917f9b1b733222a1db66b7d92f12496f415786bb378888389" + sha256 cellar: :any_skip_relocation, sonoma: "dbc475fb568f7aec4d093616c882eacb2248eb7a951221e91239a98188812e76" + sha256 cellar: :any_skip_relocation, ventura: "729d89ffd6c09784b93fb9558553d420f4f1e70b0076addb416e6c8e199022b3" + sha256 cellar: :any_skip_relocation, arm64_linux: "ad0d4dd9eeedb704bbffa7accd3ba5ef84df40a9bcf9a1ad71bfc5705a1d32ce" + sha256 cellar: :any_skip_relocation, x86_64_linux: "3bbcfe741234910c8a70674f3d8091610fbdbaf5e9a657a5be0b4281c022d4e5" end depends_on "cmake" => :build From be6ea3056a342291a202b61bbc014e78197fddb9 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 10:50:43 +0000 Subject: [PATCH 1164/1364] gauge: update 1.6.15 bottle. --- Formula/g/gauge.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/g/gauge.rb b/Formula/g/gauge.rb index 4a8dd7c7a7afa..dc22011013857 100644 --- a/Formula/g/gauge.rb +++ b/Formula/g/gauge.rb @@ -7,12 +7,12 @@ class Gauge < Formula head "https://github.com/getgauge/gauge.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "2277edd55858660e6d4b076dd5373eb88d1bf2e1bc931c355ddb26de61d48e72" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "07379e25eb787dae84c49f0623d876b74f590b59bcfe3539f83188cde7996006" - sha256 cellar: :any_skip_relocation, arm64_ventura: "d616c34862552b141c397c682b413a016e2a4843d8e9d57b7d11e478db591c31" - sha256 cellar: :any_skip_relocation, sonoma: "85661467e4f18730d59dde1b57a1617ef35a2b3239a545ad5e331be750d1260b" - sha256 cellar: :any_skip_relocation, ventura: "7155df13b9fda49aece6e722333bda536b2e5a309a554db853749a17699e2aa1" - sha256 cellar: :any_skip_relocation, x86_64_linux: "c1693ced066ca1a009255ba3dedf68d2d887fdf7481d0973a5682a0374a1d0e3" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "9aaddc6d88c42f1a9610c326795a6ca6d3a9b767657e4c85dbcd9b8317c6cb2e" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "4ebf9f59fc33da5d8af6c792f9dba342c014426ab669cbaa8f213d615e04ecd4" + sha256 cellar: :any_skip_relocation, arm64_ventura: "68ad4df098c28c71640762b85e52531a39402f0aeb92b26b2e1629cdf77d12a3" + sha256 cellar: :any_skip_relocation, sonoma: "868c8a1ec76518606b0a00c244283b83011e3a02b1767b7ae61219fe41da2641" + sha256 cellar: :any_skip_relocation, ventura: "a8e81e7d54e7b55f785237a3f0c19c7314b3646ddadf77331d14257adf5b33e4" + sha256 cellar: :any_skip_relocation, x86_64_linux: "b58654b2af8e69d38597ea641a0ac98405f7ad37ebc3c1b6213e074026ec3908" end depends_on "go" => :build From 6d709a2524dc1d3bd0f2be90a4392fab2dfcd150 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 10:50:59 +0000 Subject: [PATCH 1165/1364] mcpm: update 1.10.1 bottle. --- Formula/m/mcpm.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/m/mcpm.rb b/Formula/m/mcpm.rb index 89e968808313d..5bfa77a2a9bd2 100644 --- a/Formula/m/mcpm.rb +++ b/Formula/m/mcpm.rb @@ -8,13 +8,13 @@ class Mcpm < Formula license "MIT" bottle do - sha256 cellar: :any, arm64_sequoia: "7017317d7d5c0e0e009eb22579b4804eeb5def5737ef5b326c57c0b11557f61f" - sha256 cellar: :any, arm64_sonoma: "75ad34c17e51d7d34c178242ffaaa890a4204404f49aa04cbc568f2e53435fc5" - sha256 cellar: :any, arm64_ventura: "5fa222701518b8b669bce7d50963bdcd60f0618e0b7a32e4ed3b40ca673dc074" - sha256 cellar: :any, sonoma: "55833aaf33162c54bdc99f83e9ac273982dab37043610497ec2fb1239f73d13b" - sha256 cellar: :any, ventura: "ec278cc90877e655b554db4056057fd119f271948c14ba52804be7f82aea6367" - sha256 cellar: :any_skip_relocation, arm64_linux: "89f6fb299938ecd97505fac2a260ccbf4b01f2dfbb2e8cbfd5d2b2b02d148bae" - sha256 cellar: :any_skip_relocation, x86_64_linux: "7fc70519f0f577a4fb8630785f2769f7c5be3293a384f466ee565bfa04203180" + sha256 cellar: :any, arm64_sequoia: "2b5de759869fcb4a56966ec6559be65ebeb5c5fa759055a966c9bcbbb4a795d4" + sha256 cellar: :any, arm64_sonoma: "b20db71e51aa6dc914147cfbaa5f5c05008f84d30918b32f765c6a9528ad8794" + sha256 cellar: :any, arm64_ventura: "bb1fea39adce3877e4265277d75715acb508f2d2310d556b0c5a313219ce33be" + sha256 cellar: :any, sonoma: "b7ea10040759e9150b9489e2274bb79ef38a2b97c2ac5ecf8fe4eb7760cfa6ec" + sha256 cellar: :any, ventura: "f8ac796fea1da4887a74c8c7ea5c4de5a533e4d9478c7997bf6f0925fe7777e6" + sha256 cellar: :any_skip_relocation, arm64_linux: "1a0260e0148482ed7133f6a5868603686a3734168cba2afcb96c3baa8b3920e5" + sha256 cellar: :any_skip_relocation, x86_64_linux: "74bbb594518c07253c6c58fb802065dacc6706fee0c144ce12f3dab0a2f629fc" end depends_on "rust" => :build From 896144964718992f2553e70b4dff7cd2ee958a3d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 10:51:17 +0000 Subject: [PATCH 1166/1364] jackett: update 0.22.1893 bottle. --- Formula/j/jackett.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/j/jackett.rb b/Formula/j/jackett.rb index cb91b67550d39..0fde5e1f1fe8c 100644 --- a/Formula/j/jackett.rb +++ b/Formula/j/jackett.rb @@ -7,12 +7,12 @@ class Jackett < Formula head "https://github.com/Jackett/Jackett.git", branch: "master" bottle do - sha256 cellar: :any, arm64_sequoia: "747dc4833dfe3214edd06717a6daa4c3ee41f7fe8dd753982721d24f2a3ec603" - sha256 cellar: :any, arm64_sonoma: "10982ae966e36f77a050d171c2822b2113693ca4e48f7fe7dc3b14018071029e" - sha256 cellar: :any, arm64_ventura: "346be76e9934927094dc2f993cf579ef947a8ddfb54426bac738d04d183b31ad" - sha256 cellar: :any, ventura: "21b3944e0e3948150032ec2b088f379a2e66ee3397cffd89c849d9dc3733df47" - sha256 cellar: :any_skip_relocation, arm64_linux: "cb689850859389cc975ba09acf247cd2779d6560d280bc2f566adb69c248fb58" - sha256 cellar: :any_skip_relocation, x86_64_linux: "8ff3fdce859f6b719e3defe259eebf8074614d6e75cab0b75fc54a2d940c1a38" + sha256 cellar: :any, arm64_sequoia: "261febb8da0db589450da375de368e3831ef7666d2ee1c84f6c576db93fbeb20" + sha256 cellar: :any, arm64_sonoma: "a43c0e0cac0e9fcf93c1c87e2215ff647e14a80f4ea9f9d2828ddb1437909d05" + sha256 cellar: :any, arm64_ventura: "24fa4523e6a62d8243d1bd010e745d9ec819b4f01551484ab0f41047735314e2" + sha256 cellar: :any, ventura: "20ae1d98c583c1fe39a99443da4610f041e556f708f27504b5cd883bdf01576d" + sha256 cellar: :any_skip_relocation, arm64_linux: "2aa9981f727f61b25074402189d80d2919d2e14ad0b7a3fe04a20adaf54dcba2" + sha256 cellar: :any_skip_relocation, x86_64_linux: "8d9ce6f0645862b5fb831589af25c53da946ff495350449c41762332d5040501" end depends_on "dotnet@8" From 2b889e6fa7ec5b6ca0d56b71f66d03e318327d15 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 10:51:18 +0000 Subject: [PATCH 1167/1364] kew: update 3.3.1 bottle. --- Formula/k/kew.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/k/kew.rb b/Formula/k/kew.rb index a73a7bfa4467c..a4e6e59816c10 100644 --- a/Formula/k/kew.rb +++ b/Formula/k/kew.rb @@ -7,13 +7,13 @@ class Kew < Formula head "https://github.com/ravachol/kew.git", branch: "main" bottle do - sha256 cellar: :any, arm64_sequoia: "1c712be978ea3db621047c10fdc39516d88954b53eb6f2a87063e164eb876de2" - sha256 cellar: :any, arm64_sonoma: "a79e91436d8469140d9758150f8dc08c835f54e914e49330259362b7219447cd" - sha256 cellar: :any, arm64_ventura: "c8c49addba389a35fd75c8962fa762304b65ab76903b2972d1957c04579beb99" - sha256 cellar: :any, sonoma: "d88894eb75f99e78fa95d3634ff87a1ba69ad37732ccac33664d7da4c4f3929b" - sha256 cellar: :any, ventura: "e55d85b4233710730f9312b701798b64a1241f3914da01f655e1547100fab3a3" - sha256 cellar: :any_skip_relocation, arm64_linux: "c1127b6e3b95392e76323cceac2a4b876b47c92984594d5b198e447d5f877cfd" - sha256 cellar: :any_skip_relocation, x86_64_linux: "1a4639820ac751eaee647846b14902d9eb9aec3513d9b8a07a758460a2c378fb" + sha256 cellar: :any, arm64_sequoia: "2ce80a01fc75059293ee66208190d499a52d4f32a8b7e9919f819eb351210b35" + sha256 cellar: :any, arm64_sonoma: "6cfec841b1e60c2aef87aa648a790592010a664fb087ba52d93a0ce46f20681d" + sha256 cellar: :any, arm64_ventura: "ed2272e22450924248a6d9096faa123311b40a22e3eba67656063128e0242288" + sha256 cellar: :any, sonoma: "d4b3f837e58363dd4900b0162826e7eab4f3ad3556dc15c54138be179aae0c8b" + sha256 cellar: :any, ventura: "78fe764681c69279aa1e434f6e44175abe43ec0c28cff50a92d5b3ae6f4ea274" + sha256 cellar: :any_skip_relocation, arm64_linux: "34e56c94bef89398c9621e5ef86fa59bb4562ff7a4e18277cb9574c775145acd" + sha256 cellar: :any_skip_relocation, x86_64_linux: "80c6c483fc263417a274fb886f36fcd01a82dc8f2bd34c2c82ce8402a7e367a1" end depends_on "pkgconf" => :build From c75aa7a9f8c9aa6738955d26dc25bcf50d8a6535 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 10:51:19 +0000 Subject: [PATCH 1168/1364] ipsw: update 3.1.603 bottle. --- Formula/i/ipsw.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/i/ipsw.rb b/Formula/i/ipsw.rb index 86fa826e20d75..1890cc5878624 100644 --- a/Formula/i/ipsw.rb +++ b/Formula/i/ipsw.rb @@ -12,13 +12,13 @@ class Ipsw < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "6930d0c420cbe38de25c10a5d0f44aafb4d6fb517c9343e59e4ad05a0b9d7c5e" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "8628ac79ded85cc17dfe0fd52b5111dbfd9d4179c635afd5235e71883d8b11e8" - sha256 cellar: :any_skip_relocation, arm64_ventura: "0496beb579bbdb1fe961d870b63f6f397124afa9eaaf22ea9bcfefa59e76c2dd" - sha256 cellar: :any_skip_relocation, sonoma: "9fbd544a4b477c895524f21a1796f4342db2741cec5035a1bccc27b6af80b56d" - sha256 cellar: :any_skip_relocation, ventura: "30b8b7767cb8ebff07f32c4eb8e474ac2f1c70d82c7d12552afe5a06607b7df1" - sha256 cellar: :any_skip_relocation, arm64_linux: "c5680bc25f88544e4541f707bfe39e98a0b183d5e2b7147259e9cfa81abf5749" - sha256 cellar: :any_skip_relocation, x86_64_linux: "0e4e8e61960c75bbfba986e2810714a2e825de82a0963a6076c25467c6b07ebb" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "638043508131bdff4e50cf64b026740287c6540402d1dd4026d4be5d4217920e" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "91cebc30440a26e1778e0c3a526c0812fb365a80ed96fec45fcd3bc742cdfa09" + sha256 cellar: :any_skip_relocation, arm64_ventura: "ac0fc9e3a0308c906233994f4ed3d477c4c088a492e1df3433fc392f568d7043" + sha256 cellar: :any_skip_relocation, sonoma: "e1cb741b139c07ef907ec3dafa9d58a5afd0b0ce724b188856724f654d2becf6" + sha256 cellar: :any_skip_relocation, ventura: "7372c6f00dd779f70d51dd3a92ec3a329e84bdd98d3c65b9ceffa63feb5bc390" + sha256 cellar: :any_skip_relocation, arm64_linux: "04fcc9a17c03a1d81b68ddcc60a62e46a764921adefbe7674b8566b1bb533607" + sha256 cellar: :any_skip_relocation, x86_64_linux: "77d45edc7f8e5b7a277764ecd0110abf99939ff0cd72f0c2427df6feef0b64b6" end depends_on "go" => :build From 3c4dddf32946d946b2f17c95900986d939247e1a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 10:51:39 +0000 Subject: [PATCH 1169/1364] go-size-analyzer: update 1.9.0 bottle. --- Formula/g/go-size-analyzer.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/g/go-size-analyzer.rb b/Formula/g/go-size-analyzer.rb index 192408dc7d703..67ac742dbfa15 100644 --- a/Formula/g/go-size-analyzer.rb +++ b/Formula/g/go-size-analyzer.rb @@ -7,12 +7,12 @@ class GoSizeAnalyzer < Formula head "https://github.com/Zxilly/go-size-analyzer.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "4da41aa716cfc5d6eaed59bf2e493d34abef25cb0c03675673814d79a8f29a98" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "d88340042f2896e0b615cc3c57d7fe851c1c12f5a716778860ffc11a9bfad2f4" - sha256 cellar: :any_skip_relocation, arm64_ventura: "b3dc86b1901a29153f024a77ffc4a881ae744a1bad9c0493174596975780c25d" - sha256 cellar: :any_skip_relocation, sonoma: "34a9cad8228d6fbbf79e8a6a481b18ba2ee09f705ebd9153dbfab17c5422bcc8" - sha256 cellar: :any_skip_relocation, ventura: "481f1630a562c723f6d53f5eb0e4d0fec670ba8dfe2ac62dd3b08acad4b03dcb" - sha256 cellar: :any_skip_relocation, x86_64_linux: "d936214d9ff34693f3c1883dcf9047c2f05ac0f444b17976cd5334ea6b3514bf" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "000dc6caa458ea104f69da4a8cf80bbb0868c0ff88384a7238a1459d67b3b512" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "ff7869cb5538f9e1e82dc2a762eca8affd2d9bc1987981d1ab3079a755288702" + sha256 cellar: :any_skip_relocation, arm64_ventura: "c324edda7e56c0981f8942fc4c29befec8ad0bd7cdbd4c77f74dea013880e053" + sha256 cellar: :any_skip_relocation, sonoma: "67220ff1a03a683fc2b5b15c4003f0552e6411c15b182fe26c2e471b1bd0a7ef" + sha256 cellar: :any_skip_relocation, ventura: "0781699c91c5222ba2f8ab88cc444e9a504a7095395d690bc8cb704a81675be1" + sha256 cellar: :any_skip_relocation, x86_64_linux: "84ef2745381b213ede0374d1b13a61fccebd26055653a594230f8b8a60671a12" end depends_on "go" => [:build, :test] From f0272a0f3580e1c8355348b5ce16fe8684934475 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 10:53:26 +0000 Subject: [PATCH 1170/1364] cargo-edit 0.13.4 --- Formula/c/cargo-edit.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/cargo-edit.rb b/Formula/c/cargo-edit.rb index 3f8a748a11d21..b30aa12c44e9c 100644 --- a/Formula/c/cargo-edit.rb +++ b/Formula/c/cargo-edit.rb @@ -1,8 +1,8 @@ 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/refs/tags/v0.13.3.tar.gz" - sha256 "df53ad2288cb9f9ee3ebc0eea389ec14e4e0fbf9cdefda75e5b0eedd0a550be1" + url "https://github.com/killercup/cargo-edit/archive/refs/tags/v0.13.4.tar.gz" + sha256 "afcf319c43bc1ca025c7607e7a2ddd429ff8fd65026acc4e1864c7853ccefb5b" license "MIT" bottle do From af607469e94c50341df634d67a694cc324b8e168 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 10:54:18 +0000 Subject: [PATCH 1171/1364] chainloop-cli 1.2.0 --- Formula/c/chainloop-cli.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/chainloop-cli.rb b/Formula/c/chainloop-cli.rb index 37e5ff060afa2..c8937bd852a26 100644 --- a/Formula/c/chainloop-cli.rb +++ b/Formula/c/chainloop-cli.rb @@ -1,8 +1,8 @@ class ChainloopCli < Formula desc "CLI for interacting with Chainloop" homepage "https://docs.chainloop.dev" - url "https://github.com/chainloop-dev/chainloop/archive/refs/tags/v1.1.0.tar.gz" - sha256 "a23597a7f69524b652d2cbde7ae3f166f3580bb3c2bd9027daf92147646f46d2" + url "https://github.com/chainloop-dev/chainloop/archive/refs/tags/v1.2.0.tar.gz" + sha256 "816dcdcae2ef52fec23b44fcc6dc7e5662336c8bedeeb01fec3ba5cfa8ca35c8" license "Apache-2.0" head "https://github.com/chainloop-dev/chainloop.git", branch: "main" From e9a14bfcee3e61c10a7ef01f644690bbf17fe89e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 10:55:40 +0000 Subject: [PATCH 1172/1364] cpu_features 0.10.1 --- Formula/c/cpu_features.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/cpu_features.rb b/Formula/c/cpu_features.rb index cd4bee48a4e35..c87f382c70404 100644 --- a/Formula/c/cpu_features.rb +++ b/Formula/c/cpu_features.rb @@ -1,8 +1,8 @@ class CpuFeatures < Formula desc "Cross platform C99 library to get cpu features at runtime" homepage "https://github.com/google/cpu_features" - url "https://github.com/google/cpu_features/archive/refs/tags/v0.10.0.tar.gz" - sha256 "dc1be36d02b178e904aa91cce5c2701fe418d728f1c0a130a4196b66b087471a" + url "https://github.com/google/cpu_features/archive/refs/tags/v0.10.1.tar.gz" + sha256 "52639b380fced11d738f8b151dbfee63fb94957731d07f1966c812e5b90cbad4" license "Apache-2.0" head "https://github.com/google/cpu_features.git", branch: "main" From bcad887595932cc65f7c7a0ba7eaa062c1690d23 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 10:57:13 +0000 Subject: [PATCH 1173/1364] doctl 1.126.0 --- Formula/d/doctl.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/d/doctl.rb b/Formula/d/doctl.rb index 56ea3b83a6d0e..6bd50d26e58f1 100644 --- a/Formula/d/doctl.rb +++ b/Formula/d/doctl.rb @@ -1,8 +1,8 @@ class Doctl < Formula desc "Command-line tool for DigitalOcean" homepage "https://github.com/digitalocean/doctl" - url "https://github.com/digitalocean/doctl/archive/refs/tags/v1.125.1.tar.gz" - sha256 "c0bd65a5dd7ecff92dbaebc9e809605749e8b97bcd068656929447ee87e1cb9a" + url "https://github.com/digitalocean/doctl/archive/refs/tags/v1.126.0.tar.gz" + sha256 "13fe74dd886418c6731bb55427f89bd904e3692f9280f3668ee5fa5000783be0" license "Apache-2.0" head "https://github.com/digitalocean/doctl.git", branch: "main" From 0ef36a3665607a2bb061b3296dc0382a3ba2dd58 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 10:59:09 +0000 Subject: [PATCH 1174/1364] fortitude 0.7.3 --- Formula/f/fortitude.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/f/fortitude.rb b/Formula/f/fortitude.rb index 220bcff8f3864..f273c9ac164d2 100644 --- a/Formula/f/fortitude.rb +++ b/Formula/f/fortitude.rb @@ -1,8 +1,8 @@ class Fortitude < Formula desc "Fortran linter" homepage "https://fortitude.readthedocs.io/en/stable/" - url "https://github.com/PlasmaFAIR/fortitude/archive/refs/tags/v0.7.2.tar.gz" - sha256 "0b4b3e70b83f35251f9b51bbd06321f99c1978bc09f311b8d2e4c090c603e371" + url "https://github.com/PlasmaFAIR/fortitude/archive/refs/tags/v0.7.3.tar.gz" + sha256 "caf5148a20a433e8031fbb875465648ca7a918fd975dd704249e41d7a98bafe6" license "MIT" head "https://github.com/PlasmaFAIR/fortitude.git", branch: "main" From 9cb6b986a0c3f27225a38c2c20e387147055d5f9 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 11:02:07 +0000 Subject: [PATCH 1175/1364] huggingface-cli 0.31.2 --- Formula/h/huggingface-cli.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Formula/h/huggingface-cli.rb b/Formula/h/huggingface-cli.rb index 9cd0877d9bfed..54436226fc855 100644 --- a/Formula/h/huggingface-cli.rb +++ b/Formula/h/huggingface-cli.rb @@ -3,8 +3,8 @@ class HuggingfaceCli < Formula desc "Client library for huggingface.co hub" homepage "https://huggingface.co/docs/huggingface_hub/index" - url "https://files.pythonhosted.org/packages/df/22/8eb91736b1dcb83d879bd49050a09df29a57cc5cd9f38e48a4b1c45ee890/huggingface_hub-0.30.2.tar.gz" - sha256 "9a7897c5b6fd9dad3168a794a8998d6378210f5b9688d0dfc180b1a228dc2466" + url "https://files.pythonhosted.org/packages/3b/7b/09ab792c463975fcd0a81f459b5e900057dabbbc274ff253bb28d58ebfce/huggingface_hub-0.31.2.tar.gz" + sha256 "7053561376ed7f6ffdaecf09cc54d70dc784ac6315fa4bb9b93e19662b029675" license "Apache-2.0" bottle do @@ -23,8 +23,8 @@ class HuggingfaceCli < Formula depends_on "python@3.13" resource "charset-normalizer" do - url "https://files.pythonhosted.org/packages/16/b0/572805e227f01586461c80e0fd25d65a2115599cc9dad142fee4b747c357/charset_normalizer-3.4.1.tar.gz" - sha256 "44251f18cd68a75b56585dd00dae26183e102cd5e0f9f1466e6df5da2ed64ea3" + url "https://files.pythonhosted.org/packages/e4/33/89c2ced2b67d1c2a61c19c6751aa8902d46ce3dacb23600a283619f5a12d/charset_normalizer-3.4.2.tar.gz" + sha256 "5baececa9ecba31eff645232d59845c07aa030f0c81ee70184a90d35099a0e63" end resource "filelock" do From 4bf03a31b480ee9671fed163f5bab2576be55f96 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 11:04:01 +0000 Subject: [PATCH 1176/1364] kotlin 2.1.21 --- Formula/k/kotlin.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/k/kotlin.rb b/Formula/k/kotlin.rb index 58829ff4ff1ab..55d03feef8d7e 100644 --- a/Formula/k/kotlin.rb +++ b/Formula/k/kotlin.rb @@ -1,8 +1,8 @@ class Kotlin < Formula desc "Statically typed programming language for the JVM" homepage "https://kotlinlang.org/" - url "https://github.com/JetBrains/kotlin/releases/download/v2.1.20/kotlin-compiler-2.1.20.zip" - sha256 "a118197b0de55ffab2bc8d5cd03a5e39033cfb53383d6931bc761dec0784891a" + url "https://github.com/JetBrains/kotlin/releases/download/v2.1.21/kotlin-compiler-2.1.21.zip" + sha256 "1ba08a8b45da99339a0601134cc037b54cf85e9bc0edbe76dcbd27c2d684a977" license "Apache-2.0" # Upstream maintains multiple major/minor versions and the "latest" release From 555025bedaa5b38558e61ff3a27f32fe1c8eed6a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 11:10:05 +0000 Subject: [PATCH 1177/1364] passt 2025_05_12.8ec1341 --- Formula/p/passt.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Formula/p/passt.rb b/Formula/p/passt.rb index 8a6691a15f378..b0052057e9f2f 100644 --- a/Formula/p/passt.rb +++ b/Formula/p/passt.rb @@ -1,9 +1,9 @@ class Passt < Formula desc "User-mode networking daemons for virtual machines and namespaces" homepage "https://passt.top/passt/about/" - url "https://passt.top/passt/snapshot/passt-2025_05_07.eea8a76.tar.xz" - version "2025_05_07.eea8a76" - sha256 "527e5b95d464913ac7748ed530c1e497356d0ded3299c73793efc2e7e575ca49" + url "https://passt.top/passt/snapshot/passt-2025_05_12.8ec1341.tar.xz" + version "2025_05_12.8ec1341" + sha256 "0e2f72073a2ab8c9a4dbb604d18b7f3c0c3bd37106453fbf22d1e4f410d0f7df" license all_of: ["GPL-2.0-or-later", "BSD-3-Clause"] head "git://passt.top/passt", branch: "master" From 3d60de3af0fa8bd24b5facb893b6acd5c3db4235 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 11:12:48 +0000 Subject: [PATCH 1178/1364] renovate 40.11.10 --- Formula/r/renovate.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/r/renovate.rb b/Formula/r/renovate.rb index 4e7e0810f0365..a35084919662a 100644 --- a/Formula/r/renovate.rb +++ b/Formula/r/renovate.rb @@ -1,8 +1,8 @@ class Renovate < Formula desc "Automated dependency updates. Flexible so you don't need to be" homepage "https://github.com/renovatebot/renovate" - url "https://registry.npmjs.org/renovate/-/renovate-40.11.0.tgz" - sha256 "b7a2e8b0298d49f501ff22c6abe50b51bc72522a666b38b777c07e0b5de38216" + url "https://registry.npmjs.org/renovate/-/renovate-40.11.10.tgz" + sha256 "67b0996966d38f9232130ddf66698df826d02faa1167f2998ac3ba966a6648a5" license "AGPL-3.0-only" # There are thousands of renovate releases on npm and the page the `Npm` From 0942e090d03550c55749b661eeba5b45e2e75945 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 11:15:04 +0000 Subject: [PATCH 1179/1364] solargraph 0.54.3 --- Formula/s/solargraph.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/s/solargraph.rb b/Formula/s/solargraph.rb index 7a926fcddde7e..c1bef6976c6ed 100644 --- a/Formula/s/solargraph.rb +++ b/Formula/s/solargraph.rb @@ -3,8 +3,8 @@ class Solargraph < Formula homepage "https://solargraph.org" # Must be git, because solargraph.gemspec uses git ls-files url "https://github.com/castwide/solargraph.git", - tag: "v0.54.2", - revision: "254f658a657dd8703cdd01663148dea14c2dabff" + tag: "v0.54.3", + revision: "414d40afd1015ce7ad682412ac4669c548a89bce" license "MIT" bottle do From fea31fada9d904fe3526dc27c93ab3598aafbe18 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 11:36:01 +0000 Subject: [PATCH 1180/1364] doctl: update 1.126.0 bottle. --- Formula/d/doctl.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/d/doctl.rb b/Formula/d/doctl.rb index 6bd50d26e58f1..d348b6d117b44 100644 --- a/Formula/d/doctl.rb +++ b/Formula/d/doctl.rb @@ -7,12 +7,12 @@ class Doctl < Formula head "https://github.com/digitalocean/doctl.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "35151b37f1184b6c22f61def101de5cbc2872feb3265f36b8f9a1d1e3465e7ea" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "35151b37f1184b6c22f61def101de5cbc2872feb3265f36b8f9a1d1e3465e7ea" - sha256 cellar: :any_skip_relocation, arm64_ventura: "35151b37f1184b6c22f61def101de5cbc2872feb3265f36b8f9a1d1e3465e7ea" - sha256 cellar: :any_skip_relocation, sonoma: "261cb75af12f9cb56c936cce5a9baf147802cfbc6f4d120a702d4c8edffc1200" - sha256 cellar: :any_skip_relocation, ventura: "261cb75af12f9cb56c936cce5a9baf147802cfbc6f4d120a702d4c8edffc1200" - sha256 cellar: :any_skip_relocation, x86_64_linux: "a33bdd1235e95a4a293bdb6770152a23cccba7da1dc1da9055a8724ca5a6e397" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "b1f9b7fec821afb4ac937afbdfe6fcb44d9a425ced63e899c5140bce2a9ac8b4" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "b1f9b7fec821afb4ac937afbdfe6fcb44d9a425ced63e899c5140bce2a9ac8b4" + sha256 cellar: :any_skip_relocation, arm64_ventura: "b1f9b7fec821afb4ac937afbdfe6fcb44d9a425ced63e899c5140bce2a9ac8b4" + sha256 cellar: :any_skip_relocation, sonoma: "45867fa35a1bcd50bb29661a7a62c5c452b8413d6a754a1318d7775366376111" + sha256 cellar: :any_skip_relocation, ventura: "45867fa35a1bcd50bb29661a7a62c5c452b8413d6a754a1318d7775366376111" + sha256 cellar: :any_skip_relocation, x86_64_linux: "780c1ce0842592f7c34fef07e836866ba00787d9f3f7d963d93dc0f864c5542c" end depends_on "go" => :build From 8390ce6e8984e721323ba97b03221d4d583cd2d1 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 11:36:13 +0000 Subject: [PATCH 1181/1364] huggingface-cli: update 0.31.2 bottle. --- Formula/h/huggingface-cli.rb | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/Formula/h/huggingface-cli.rb b/Formula/h/huggingface-cli.rb index 54436226fc855..389b6a0772429 100644 --- a/Formula/h/huggingface-cli.rb +++ b/Formula/h/huggingface-cli.rb @@ -8,13 +8,12 @@ class HuggingfaceCli < Formula license "Apache-2.0" bottle do - rebuild 1 - sha256 cellar: :any, arm64_sequoia: "86ed26b9bbbcf21c4455ac453a883203e5b996e38b2bb9520baf8a4340cf3ff3" - sha256 cellar: :any, arm64_sonoma: "23fc5816693986c048bf17d71dcbe18f82fd3432d2c1c0eb24aba9539fd50205" - sha256 cellar: :any, arm64_ventura: "a88511d5f2bf276790e04774ced50313d8d1c54b5a0e03058e1f832ddcd8638f" - sha256 cellar: :any, sonoma: "adaf5e83b1699e9a16ec7de13fbe40f8067cd050a9b2f181eecc76f2abd3bf61" - sha256 cellar: :any, ventura: "6d9f217d8624c99714c2719ea25aa5e03c8c56e9796f3a699b66fea19c144ab9" - sha256 cellar: :any_skip_relocation, x86_64_linux: "fed5909c86e6848ad6728917760c16bdd989c4886b5122075e74eaa4c75f41ee" + sha256 cellar: :any, arm64_sequoia: "0814aa2c707380d887a444d591ff127fcefd6539c099110a9f4486a824f5a726" + sha256 cellar: :any, arm64_sonoma: "1412911b19e5b33993e492ff434999d57afc68db2db688cd67b89cd4f62735c6" + sha256 cellar: :any, arm64_ventura: "10da1c26829853a38a65923694b0757fa7bbfa73e2af202f487b9333b0910cd2" + sha256 cellar: :any, sonoma: "e4a2fa6869d8f8db6ccb9ecf61d4d1ced8dc79f9870f2a345966d32dbd1b681d" + sha256 cellar: :any, ventura: "3061fdba22bf94c4340614acb0822bbefdda1b5c8df6ef51abf7378cc1716d5c" + sha256 cellar: :any_skip_relocation, x86_64_linux: "ef08c2bde722866281684832b425d49db96705f48ec44c0d266eba28c6808f7b" end depends_on "certifi" From 4e1d9be2d3d144a9b9e2b7ab42ce43f6f36bd5aa Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 11:36:23 +0000 Subject: [PATCH 1182/1364] chainloop-cli: update 1.2.0 bottle. --- Formula/c/chainloop-cli.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/c/chainloop-cli.rb b/Formula/c/chainloop-cli.rb index c8937bd852a26..17b4f4458ab28 100644 --- a/Formula/c/chainloop-cli.rb +++ b/Formula/c/chainloop-cli.rb @@ -7,12 +7,12 @@ class ChainloopCli < Formula head "https://github.com/chainloop-dev/chainloop.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "23bbdf30c04523a8510dbcb7335f47d432e60ee5900a2eab755df7bb05d74265" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "5790700ea663d6ddfebeff798fdd45774b7dac0e3e96712d1908ab028858b7c4" - sha256 cellar: :any_skip_relocation, arm64_ventura: "92cad91ce4a6e4c402522b88d500c6b39d68a8fc0d13fffd41f27d5dd80b34ef" - sha256 cellar: :any_skip_relocation, sonoma: "a7e56dce78e20adb59f521679472786b1db7d347d483a306624fda9947a62e3f" - sha256 cellar: :any_skip_relocation, ventura: "bbba81f3d73075c9d8c07435e229a3ae69c8795496923e91c47ede3b54251eab" - sha256 cellar: :any_skip_relocation, x86_64_linux: "a1c178d9973fb7df4c2e7c4a0e4ac02a089bf3ed3bb84288bd41fbcfa5f77ff0" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "153dd49ed71604732274ecb719d59782dcedae44c91e488c6069abd93df0ea0a" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "fc8aa07b865762299cf05524c58a8335e9269550a99b4015a2a9e357cb94a45f" + sha256 cellar: :any_skip_relocation, arm64_ventura: "b5297143aefef94843e40f911fbdb1e9c79fa4796bb4a802197e5799dcb95d5b" + sha256 cellar: :any_skip_relocation, sonoma: "7d529f8190293b8f7152dcd4560e1f8860a9182269bd4db79d0185e85a0ef527" + sha256 cellar: :any_skip_relocation, ventura: "3ed8125e302870579184ddf5abc193dba5f6ec035d53be7739d32e47dadd09b4" + sha256 cellar: :any_skip_relocation, x86_64_linux: "e809a07bc86b8bb185f0e1f51f0886febe9024397b6d7986168f8b3323a7c0dd" end depends_on "go" => :build From f9062de88bb41bafc3db1941502ade76980f806e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 11:36:48 +0000 Subject: [PATCH 1183/1364] passt: update 2025_05_12.8ec1341 bottle. --- Formula/p/passt.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/p/passt.rb b/Formula/p/passt.rb index b0052057e9f2f..87bc5304b7a64 100644 --- a/Formula/p/passt.rb +++ b/Formula/p/passt.rb @@ -8,8 +8,8 @@ class Passt < Formula head "git://passt.top/passt", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_linux: "1f9353b7ad6dbedb901f49361da5d2976019d2cec985e63ad5a81aefc70ae219" - sha256 cellar: :any_skip_relocation, x86_64_linux: "3d9b36baaa8019560bfde6cd211a655b0a6fb35beff9a8de246212bc0332428a" + sha256 cellar: :any_skip_relocation, arm64_linux: "aedae3e99a9dc67df0690c9a1a168dd3ad33b923294825fcb15ba6e6b5df380a" + sha256 cellar: :any_skip_relocation, x86_64_linux: "5466a3d8359e64160aa75aa414b39ea77c514a83ad46246c3734680ae57ec32c" end depends_on :linux From 0c8094b736c653b7faa045d8885078930f9fa79b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 11:37:38 +0000 Subject: [PATCH 1184/1364] cdk8s: update 2.200.69 bottle. --- Formula/c/cdk8s.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/cdk8s.rb b/Formula/c/cdk8s.rb index e5ed3cb509b0f..8f2d6a97c6b26 100644 --- a/Formula/c/cdk8s.rb +++ b/Formula/c/cdk8s.rb @@ -6,13 +6,13 @@ class Cdk8s < Formula license "Apache-2.0" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "3ffea2a696d1e2bec65e31da0b292c5eeb422c459f2fa8d9e37552859afb4c67" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "3ffea2a696d1e2bec65e31da0b292c5eeb422c459f2fa8d9e37552859afb4c67" - sha256 cellar: :any_skip_relocation, arm64_ventura: "3ffea2a696d1e2bec65e31da0b292c5eeb422c459f2fa8d9e37552859afb4c67" - sha256 cellar: :any_skip_relocation, sonoma: "07de0b34f28b60970f8b6b1539b75bccbc2a562dbb94be4c956ce1642db20623" - sha256 cellar: :any_skip_relocation, ventura: "07de0b34f28b60970f8b6b1539b75bccbc2a562dbb94be4c956ce1642db20623" - sha256 cellar: :any_skip_relocation, arm64_linux: "3ffea2a696d1e2bec65e31da0b292c5eeb422c459f2fa8d9e37552859afb4c67" - sha256 cellar: :any_skip_relocation, x86_64_linux: "3ffea2a696d1e2bec65e31da0b292c5eeb422c459f2fa8d9e37552859afb4c67" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "cdc9b769e50030cebb8f56eb682bbaca53efe9f7797c56e303a9b7278cd76f28" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "cdc9b769e50030cebb8f56eb682bbaca53efe9f7797c56e303a9b7278cd76f28" + sha256 cellar: :any_skip_relocation, arm64_ventura: "cdc9b769e50030cebb8f56eb682bbaca53efe9f7797c56e303a9b7278cd76f28" + sha256 cellar: :any_skip_relocation, sonoma: "68b9155fe936fe5e213588fba8ae763ec8e2d65e4471faa64e26cd50c53780c1" + sha256 cellar: :any_skip_relocation, ventura: "68b9155fe936fe5e213588fba8ae763ec8e2d65e4471faa64e26cd50c53780c1" + sha256 cellar: :any_skip_relocation, arm64_linux: "cdc9b769e50030cebb8f56eb682bbaca53efe9f7797c56e303a9b7278cd76f28" + sha256 cellar: :any_skip_relocation, x86_64_linux: "cdc9b769e50030cebb8f56eb682bbaca53efe9f7797c56e303a9b7278cd76f28" end depends_on "node" From 58f8618dd4a0fd551baecbe8602b47cf22a98bc0 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 11:39:10 +0000 Subject: [PATCH 1185/1364] solargraph: update 0.54.3 bottle. --- Formula/s/solargraph.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/s/solargraph.rb b/Formula/s/solargraph.rb index c1bef6976c6ed..5e6c4b7ef6784 100644 --- a/Formula/s/solargraph.rb +++ b/Formula/s/solargraph.rb @@ -8,13 +8,13 @@ class Solargraph < Formula license "MIT" bottle do - sha256 cellar: :any, arm64_sequoia: "3cca71b6d1ea27e92f5fa79eb05d6f21bd36ad8cf2b271d281e467e734a8a1ef" - sha256 cellar: :any, arm64_sonoma: "cec093409e5ae1e38933e65359969db77a2063f38b7e7fca5e9e954263815ef6" - sha256 cellar: :any, arm64_ventura: "0fe8a5beb7b45731459239fca1fbd7574d72c1abc5571e060671c7547617418b" - sha256 cellar: :any, sonoma: "2c79f8d40a3993c2abd591eda730c59dba2a9a650933027144ce75dba764530c" - sha256 cellar: :any, ventura: "c693000278be5acd0934127e53b5fa4ba8df6f68c9d428269c53302fcca5784e" - sha256 cellar: :any_skip_relocation, arm64_linux: "b9fb91ea6fb244c0313eb2b9d4f3303515182a044b44d2a138d514daaf76af8f" - sha256 cellar: :any_skip_relocation, x86_64_linux: "f30993e8b37e669746f188c1df9c361b1b5e3d2575d4683d891042731e51b56f" + sha256 cellar: :any, arm64_sequoia: "47a3383918cf7d2023ad3e58b01aacaf78cec3c8fd4cfe329787959538765d2c" + sha256 cellar: :any, arm64_sonoma: "b70208727a32a9e3b00d3845d548228aed4f1e70f79b897d8536deae6c45705d" + sha256 cellar: :any, arm64_ventura: "30972ac826baa6466bb4c256ad2a83bd6ff7877ca5b9eef5ba729d10a51068e2" + sha256 cellar: :any, sonoma: "baade9b24a8e946348edca4822a4013fec6257ec239837fb31108faf87c5f983" + sha256 cellar: :any, ventura: "65bc79773ceabc3f6d4ca2960bcbf20838e022709cd63484b8ef8ae4edf2efac" + sha256 cellar: :any_skip_relocation, arm64_linux: "e77e7754b28f39670ee539ef4e557bc3a38ac6eb74786479ea22be522c4c8688" + sha256 cellar: :any_skip_relocation, x86_64_linux: "883605d2776919f0eaf263b7cb22e2597a7194c40be56249b6ce136995ed9aea" end depends_on "ruby" # Requires >= Ruby 2.7 From 0f9e02243aaf047f975ba4d1f598cb2108f76506 Mon Sep 17 00:00:00 2001 From: botantony Date: Tue, 13 May 2025 13:45:16 +0200 Subject: [PATCH 1186/1364] ripgrep-all 0.10.9 --- Formula/r/ripgrep-all.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/r/ripgrep-all.rb b/Formula/r/ripgrep-all.rb index 31d36f9c3acdf..2116ec7020566 100644 --- a/Formula/r/ripgrep-all.rb +++ b/Formula/r/ripgrep-all.rb @@ -1,8 +1,8 @@ class RipgrepAll < Formula desc "Wrapper around ripgrep that adds multiple rich file types" homepage "https://github.com/phiresky/ripgrep-all" - url "https://github.com/phiresky/ripgrep-all/archive/refs/tags/v0.10.6.tar.gz" - sha256 "06cd619ad6638be206266a77fdf11034dc2dc15d97b3a057b0d6280a17334680" + url "https://github.com/phiresky/ripgrep-all/archive/refs/tags/v0.10.9.tar.gz" + sha256 "a5b3150940dcddd35a26e9de398f11a563d0466a335e5450ceb7ff369e9fef45" license "AGPL-3.0-or-later" head "https://github.com/phiresky/ripgrep-all.git", branch: "master" From 43f64a0d6cf1af3ba91223524c74101c8eeeea0a Mon Sep 17 00:00:00 2001 From: botantony Date: Tue, 13 May 2025 13:45:48 +0200 Subject: [PATCH 1187/1364] autobump: add ripgrep-all Signed-off-by: botantony --- .github/autobump.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/autobump.txt b/.github/autobump.txt index 04827efa45bbf..d7908ab33232e 100644 --- a/.github/autobump.txt +++ b/.github/autobump.txt @@ -3098,6 +3098,7 @@ riemann riemann-client rio rip2 +ripgrep-all ripsecrets riscv64-elf-gcc risor From 813eebe34a9036e5a16f7173ea69d5329c06bc73 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 12:51:58 +0000 Subject: [PATCH 1188/1364] observerward: update 2025.5.12 bottle. --- Formula/o/observerward.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/o/observerward.rb b/Formula/o/observerward.rb index 3202603f55807..3c2e07558721b 100644 --- a/Formula/o/observerward.rb +++ b/Formula/o/observerward.rb @@ -6,13 +6,13 @@ class Observerward < Formula license "GPL-3.0-only" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "5e129ce6364d8a9eb066886b119a83983691679d31fd5293a0cee0fe92dd58ff" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "9883fc2df42873b5ccde235a7b06fa78f9cadfcc526aca9f6f08719ab79b98e5" - sha256 cellar: :any_skip_relocation, arm64_ventura: "99653209dce7dd93b9717314a732238e2ea86c82009a7e3898434d423937b792" - sha256 cellar: :any_skip_relocation, sonoma: "c836d277e6b7f544e6c038dd06bbafa05a75ee85d62ba50d492da58d07e9a160" - sha256 cellar: :any_skip_relocation, ventura: "ad5b83baaf54b11245da36e412b657a3d615a1d0256401e455c6d4270286f031" - sha256 cellar: :any_skip_relocation, arm64_linux: "08159c8f4bac4f7c9cc60e1eec1e40ec40867c83a2d4ca29278c302aaa98dc4b" - sha256 cellar: :any_skip_relocation, x86_64_linux: "0433a57de44c745da0612b2023a2ab37d132c4e10a578c42285ab5fb3d60aaff" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "b61a88a4458cd8d77bba2ade624bc1372bcb962acf2b603a440d14257604f6e3" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "7b70a0fdbfd57a89f00472154b6356e4646e10661de85062b11cc3a056c918eb" + sha256 cellar: :any_skip_relocation, arm64_ventura: "82e51377aaf1ccc282e5bad98458cf414694f98280fb3a5bae5f95071af63d29" + sha256 cellar: :any_skip_relocation, sonoma: "420d0238bbe5f3fb0d35a13b0b242407cbbe911c93f9bd67132799fec67037a6" + sha256 cellar: :any_skip_relocation, ventura: "e43d06f4796829a426e3c7e6630f8da6a4773a97b3c42f019dee7d1660d6c973" + sha256 cellar: :any_skip_relocation, arm64_linux: "71a533afe0bad172e5f65381d0e56fc241e79b341353ea74a52ec25093532037" + sha256 cellar: :any_skip_relocation, x86_64_linux: "6b663a20648f24504d7ef3c466de7019490379a46250df6266f29de12529c70c" end depends_on "rust" => :build From 02b270bd8110b0df44f79bd64ae6f83c0e47ac13 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 12:52:09 +0000 Subject: [PATCH 1189/1364] prog8: update 11.3.2 bottle. --- Formula/p/prog8.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/p/prog8.rb b/Formula/p/prog8.rb index c1467491fd2fe..f78e10d39ddf9 100644 --- a/Formula/p/prog8.rb +++ b/Formula/p/prog8.rb @@ -6,13 +6,13 @@ class Prog8 < Formula license "GPL-3.0-only" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "f1f9c9f5ea277e8e91be2fdb82e5f5b75d2068be9d5f84c2227c9084440710ea" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "59e74bbf9bb2ffcc46edac8e2ad6196d6f35ed4b3c075e334a895ec72bd880f3" - sha256 cellar: :any_skip_relocation, arm64_ventura: "b74170737b1ff7770dea373c38967cef5d5c3fa91b290266a9c0700adeb661db" - sha256 cellar: :any_skip_relocation, sonoma: "5f5db5419f6f6de56899450048af0b14e91c449ab6e8b38c3b2ebde1927830f1" - sha256 cellar: :any_skip_relocation, ventura: "2c06d315c0891a11aff0e61e8e7abe27ffaca0de46a387d7fbb5befebc3f2c45" - sha256 cellar: :any_skip_relocation, arm64_linux: "1cbf2b9fcd1961b727872fd9ad3d0eb2b032b0a7b9550586f98e2a4a84a070b1" - sha256 cellar: :any_skip_relocation, x86_64_linux: "e52e4af9cbf9a7e8ecf6655debcfd73ac8552f6b5b03766f0bc9b3e0f8ff554a" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "e344f91aa025a43bb4dfb6ef80427a6b478a9a28f6331dace1ebb4b5d246c132" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "5598c73083fb8ff691d02dc8ee4804d3a54c504940cd9dfc8e30352f05bf4814" + sha256 cellar: :any_skip_relocation, arm64_ventura: "7cbb13a489ddeacfab5fcae06883d3e2a72fe744ef542343ecc80b23085d31c7" + sha256 cellar: :any_skip_relocation, sonoma: "d63a966cbc3cdd8dcc03fefb6d49359479ac958db7db535b6f5113cf9e6ddee0" + sha256 cellar: :any_skip_relocation, ventura: "cfc9589da9661c562130bbc27af11d4ee9f55c8add4df376e0c4ab565e569d84" + sha256 cellar: :any_skip_relocation, arm64_linux: "4287878ae4f311ce7a610a9be14160d79051e77276318f4e9702a06b0b40bcc0" + sha256 cellar: :any_skip_relocation, x86_64_linux: "cf5e61604b9294ec1db85479d8620b3ab5bd042db434ea6e59ab029857468374" end depends_on "gradle" => :build From 4f827fc285d65449f0ec58aff2df51ae8369f854 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 12:52:43 +0000 Subject: [PATCH 1190/1364] renovate: update 40.11.10 bottle. --- Formula/r/renovate.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/r/renovate.rb b/Formula/r/renovate.rb index a35084919662a..9945f116c4546 100644 --- a/Formula/r/renovate.rb +++ b/Formula/r/renovate.rb @@ -17,13 +17,13 @@ class Renovate < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "ca7dbf8850d5d99cf30244eb9a3005c80fb42f92515b45a24b6c2411ccf2f5b5" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "6885a91e9d46dd5647578e041330b2fc5f6a7c289b2a373a490608759dd5284d" - sha256 cellar: :any_skip_relocation, arm64_ventura: "279a32df2732329a6280220d3be3c7efbfc222de5416303c2f0d5a8793e2c11a" - sha256 cellar: :any_skip_relocation, sonoma: "0aa8c252b9ba207badf4e11f0edc8d8f4c2ef27c7fd4711c738cc30dbb242e35" - sha256 cellar: :any_skip_relocation, ventura: "ae4ef6f3a0b5dab77a6e75e4c9129369801c25e88ba5fba3d80ae7985b7614e3" - sha256 cellar: :any_skip_relocation, arm64_linux: "d523c967216d6954d7e4198e3e134c5512542033c227818410face56187ccc35" - sha256 cellar: :any_skip_relocation, x86_64_linux: "76a2f82113f66a86b8775297ed350e950d459711532db821f1cc419a3fb4d7f5" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "3136407a31636dc6f7acec3c7f144868d1bc7172e6f3348b4e5de8c0374e6bc8" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "79fffb93834a9a826e288d0ce42302250c33c3fa6f84c26583648f2bf62df90b" + sha256 cellar: :any_skip_relocation, arm64_ventura: "76d607147f5c47562ad8f79ceae1c6cfcddb038821ed8b5e055f7acd3b4b2ff9" + sha256 cellar: :any_skip_relocation, sonoma: "2227a6159136efaa2663033922b2948eff7ff43530d8a1eff0c7c34a813dce40" + sha256 cellar: :any_skip_relocation, ventura: "74231b83baf3a6e6279b1868432da981de1888b99b8203f45ead9a7cf77bd5f6" + sha256 cellar: :any_skip_relocation, arm64_linux: "7b8c04d3e9e0abb6c7e231b90848aa838a1522cc7090cc4003a145983a3ab25d" + sha256 cellar: :any_skip_relocation, x86_64_linux: "beb79f45e2acffbe19d36f25b090bb2dff98be1507c8aab2ac7d5d0a5ad72928" end depends_on "node@22" From 33371b43fa754553ee94bc16fc595cae22b8fecd Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 12:52:48 +0000 Subject: [PATCH 1191/1364] kotlin: update 2.1.21 bottle. --- Formula/k/kotlin.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/k/kotlin.rb b/Formula/k/kotlin.rb index 55d03feef8d7e..1960f0bd4a56a 100644 --- a/Formula/k/kotlin.rb +++ b/Formula/k/kotlin.rb @@ -14,7 +14,7 @@ class Kotlin < Formula end bottle do - sha256 cellar: :any_skip_relocation, all: "a0a17cc4fea3ab754df942bc1d7630dd494b05bd538f20097c9a960b58ed8d0e" + sha256 cellar: :any_skip_relocation, all: "6e6e5ee2272357a918c3b94dea13c00f9a943dac1d80becb8ed8d70e6e3ec876" end depends_on "openjdk" From bd9ad7d3f9ae9c29e5a075a54ace406c8aedd67b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 12:54:02 +0000 Subject: [PATCH 1192/1364] fortitude: update 0.7.3 bottle. --- Formula/f/fortitude.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/f/fortitude.rb b/Formula/f/fortitude.rb index f273c9ac164d2..6e3fdc15b27b9 100644 --- a/Formula/f/fortitude.rb +++ b/Formula/f/fortitude.rb @@ -7,13 +7,13 @@ class Fortitude < Formula head "https://github.com/PlasmaFAIR/fortitude.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "232cd119f99c016fa944e0adb12e4ef8d39e670e99088faea46854089cc4d264" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "3ef277dfe226d974987427553d312405e2e9ba5350c0d21e9c3bc3a963aee4d7" - sha256 cellar: :any_skip_relocation, arm64_ventura: "76b0ad825f929bab7793c2bdd45046b5a4522740b6a2901aca94094f9aa66f7d" - sha256 cellar: :any_skip_relocation, sonoma: "62efc25e568080166966066296b7f30623905602770052c65835743623ee4b61" - sha256 cellar: :any_skip_relocation, ventura: "70fb40912641fa23f7bfe4af27410dedfdb61a9d3a693b2d0e7d6994bf90b60a" - sha256 cellar: :any_skip_relocation, arm64_linux: "6b65006ff9713bbb87122e5188dcd3e6e7a875d0890f642b73e9570fd930e278" - sha256 cellar: :any_skip_relocation, x86_64_linux: "812f3fcf3f2c5c699192f8d5b0bcdfbefd98336858427ab7f90ff7e3be299acf" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "ed2b0286e104580fbf915dd75496887b73dfbc88655b8e2e5f0821f8cacaf22c" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "8483c2d3e04ac4b51a5b93bc240e2d705787c3124cb72a51ba3c06083728bbf4" + sha256 cellar: :any_skip_relocation, arm64_ventura: "fd5779fad276c55e617f17b25eb9f65f373065904f9ff6e1449d667c4a066c21" + sha256 cellar: :any_skip_relocation, sonoma: "61ecad6849848b886b9f329ef9181698353451e449d0b1fb55eca8df12fae2fe" + sha256 cellar: :any_skip_relocation, ventura: "c8d4eb7505ef1419e13bea9d8ba4545da5cf77623d592dccedb18783abb041c6" + sha256 cellar: :any_skip_relocation, arm64_linux: "45f26b0cce1726051a7e9190bcab48c032aca7c26536e97f98751ca6cdf37221" + sha256 cellar: :any_skip_relocation, x86_64_linux: "8ef4e870c67cbba08a4e9a8a913521a2280f832adcb538e48937404d1b804a3e" end depends_on "rust" => :build From f2a18fd29f522e624f438cc950b6299fd00ddf9c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 12:54:12 +0000 Subject: [PATCH 1193/1364] cpu_features: update 0.10.1 bottle. --- Formula/c/cpu_features.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/cpu_features.rb b/Formula/c/cpu_features.rb index c87f382c70404..eb27dd5ccb1ea 100644 --- a/Formula/c/cpu_features.rb +++ b/Formula/c/cpu_features.rb @@ -7,13 +7,13 @@ class CpuFeatures < Formula head "https://github.com/google/cpu_features.git", branch: "main" bottle do - sha256 cellar: :any, arm64_sequoia: "c20bb96f3ed6b0a436d1e5ef4352e2362668d88c119340f19d8d5566c1f1302d" - sha256 cellar: :any, arm64_sonoma: "0f8f698cad043f1c27984083dead6d7a4d133283873339078720becf5b2a2e89" - sha256 cellar: :any, arm64_ventura: "17d2dc220735c2cc356c1cf995e13d8dbf5011903e2e0048c5a875ea97ead59b" - sha256 cellar: :any, sonoma: "bdd716ad8038f9dbb12d8ec5080b03330825027e023d574cf755bb8f91d300b1" - sha256 cellar: :any, ventura: "472190b6db3f3255849897768e6b90c48d2348ad52b845dae54a040893fb2ee7" - sha256 cellar: :any_skip_relocation, arm64_linux: "30c446e08c12c07373c65c5c71e4c6268d72464d1763716a90ccaae1277a3078" - sha256 cellar: :any_skip_relocation, x86_64_linux: "50756e6931f77d6095ff2cf4606373c779f0c358315ffaa8df08d37345e3b98d" + sha256 cellar: :any, arm64_sequoia: "945475dbda6e53ed6b0099e872921e81866dc0417ff7374afd0d6338d382eb0a" + sha256 cellar: :any, arm64_sonoma: "735d42534147a399b2918ed40ee5cabcb2766a5c2eadbd02cb22208f296184c5" + sha256 cellar: :any, arm64_ventura: "e2e94da759d6d2f19a74806f3892dc53d737bdc487438c7e600863b1873230c2" + sha256 cellar: :any, sonoma: "473045353940853796b7698a7fb015255acd4fba2721ae20440669a7cf6fed51" + sha256 cellar: :any, ventura: "e5e805ca6fae1c04da955ebfd6eac72e60f28eee7219a51d91bda7a7340d1ed3" + sha256 cellar: :any_skip_relocation, arm64_linux: "71a88007b4da1b4346f18463e45ab8722c8177f62155ba53fd7cd8451145ef1e" + sha256 cellar: :any_skip_relocation, x86_64_linux: "9f4909cd169aaa589c4f32fb189f6457127355b2064689303bf96a720c120494" end depends_on "cmake" => :build From f14dbaea8463965c7ccd3b4824aa16f286694813 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 12:54:23 +0000 Subject: [PATCH 1194/1364] cargo-edit: update 0.13.4 bottle. --- Formula/c/cargo-edit.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/cargo-edit.rb b/Formula/c/cargo-edit.rb index b30aa12c44e9c..213e0103aeb0e 100644 --- a/Formula/c/cargo-edit.rb +++ b/Formula/c/cargo-edit.rb @@ -6,13 +6,13 @@ class CargoEdit < Formula license "MIT" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "f5be403a9d73e9a2d7b5ec95d069667a813a3dcbb8ff687b26cfda33697c9399" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "4bc2b1ce0900e9c8f194d69d0dc2b16f0c87f4237a94fc48fad23d24567f2e0f" - sha256 cellar: :any_skip_relocation, arm64_ventura: "ed3d0a080dc043f81dee1e0326ebd60a323540b724c338706639c1939297d4f3" - sha256 cellar: :any_skip_relocation, sonoma: "23bf54f34ce8ada9f79ffadc59a86eebac2f0415f58df832d65fb1e71408373d" - sha256 cellar: :any_skip_relocation, ventura: "ffeaf27cbde3d20afbd3a082cbec77993d7c1c3019fed5573e571cddb9f28c26" - sha256 cellar: :any_skip_relocation, arm64_linux: "b725e30c9cdaf9b90537f90ced1cefef7ffa7239d1bedf6c74209ecbfc606376" - sha256 cellar: :any_skip_relocation, x86_64_linux: "d6a588435811c6f563bf536f72408959215cddc77cea20f078fc73eceeff8343" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "fc75aa0aea555ef185487163cadf6be4866fd70070f082196d3b2ea3a9a3e2f8" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "5a0c502eb246b65d9b03044c10d81322ab2620c3a079aaee41f140f60eb58116" + sha256 cellar: :any_skip_relocation, arm64_ventura: "b663208ea57a084f3639e4c86ed88eeadc025d9f36567abbc95c982ff839be24" + sha256 cellar: :any_skip_relocation, sonoma: "c65290bb99961818bd4d171286ffb3c2139662fc1ab41a0e3537eb55a24908bf" + sha256 cellar: :any_skip_relocation, ventura: "bf751186034030f204157b263a7635d003e9cec188c46680c4a2f52f2b04df29" + sha256 cellar: :any_skip_relocation, arm64_linux: "757345eb13f3bbcb8308def799492ffbff4dc41dd49739c35e27c7524a3e4313" + sha256 cellar: :any_skip_relocation, x86_64_linux: "4ef9f1924afcba2ba4591ee5954a3994abfa51e044f1f28695754447e96a3eab" end depends_on "pkgconf" => :build From ea7418a34d0655494c8b4f2068c6c3fd5504f7d6 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 12:55:40 +0000 Subject: [PATCH 1195/1364] ripgrep-all: update 0.10.9 bottle. --- Formula/r/ripgrep-all.rb | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/Formula/r/ripgrep-all.rb b/Formula/r/ripgrep-all.rb index 2116ec7020566..9dc1312314c6a 100644 --- a/Formula/r/ripgrep-all.rb +++ b/Formula/r/ripgrep-all.rb @@ -7,15 +7,13 @@ class RipgrepAll < Formula head "https://github.com/phiresky/ripgrep-all.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "9ca56dfddd20a516d15595624ac9931aa57ba62a8eae1573c950c95d19424c9f" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "2036831e61b84f77ba55d1e02d9be3cde6e5d696d45bd10b4fbb17b830419a64" - sha256 cellar: :any_skip_relocation, arm64_ventura: "b6db7b666345a08fd47ab3a328b746a937d0dff8b2045d73f2f8a4589567a9ab" - sha256 cellar: :any_skip_relocation, arm64_monterey: "c0d511ae4e4f4c5c4eb4d68a4a0b0eaebee100e0ff164b9dc562c5fce94e21a0" - sha256 cellar: :any_skip_relocation, sonoma: "e91435c58cd5563a065f830506dc069a36bc1fae46c930b218feef20d900c8ef" - sha256 cellar: :any_skip_relocation, ventura: "73eb0bb280d911bd0ff69eb99196088f69baea927e8907af895ae17bba8da89a" - sha256 cellar: :any_skip_relocation, monterey: "5daf59c3d753b18a621e779ee139bd8f57d9d624194325847c18656ecb0f55a1" - sha256 cellar: :any_skip_relocation, arm64_linux: "c030d69b3f4002038ac19ba8e666b6631f11798da328fac6424a0bb818def088" - sha256 cellar: :any_skip_relocation, x86_64_linux: "1339a4b63e0bcbe33b32bbcb4ec11b1cb89430673a986c05e1b2c21fb46a67bc" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "2a1935b715dabb6d04c7650f07092ed20883a28d3230c82a189eaf4be8e6ca46" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "3b5ecb4c9267c51f42fb2917f6531bdfeb178ad790e7ef2674b968a40d2944a1" + sha256 cellar: :any_skip_relocation, arm64_ventura: "30359e9de5c05c815de5df2ac83cc35fbaad2ecbdbe7494f59cc58f204e098c5" + sha256 cellar: :any_skip_relocation, sonoma: "a5d4ca5f5398c6f3bfb53a77bb71aeed0545e50da5bca533f22786d350404fed" + sha256 cellar: :any_skip_relocation, ventura: "5071868007570a23d9fdd76e6a48f27cce497b5180d49d9ba3f0ff926d39ac71" + sha256 cellar: :any_skip_relocation, arm64_linux: "dcecce222556591cdb97455f0cc481591db30b115aa9d8725e971ce598b50b81" + sha256 cellar: :any_skip_relocation, x86_64_linux: "33d24a8354f0cf5c79af8490ed2436537437f20c321c4f1b88e1b6c6f30430d6" end depends_on "rust" => :build From 72ceb58185ace2137f7f1bbaf71c3c9f71047468 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 13:08:33 +0000 Subject: [PATCH 1196/1364] weaviate: update 1.30.3 bottle. --- Formula/w/weaviate.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/w/weaviate.rb b/Formula/w/weaviate.rb index 55d28a2738296..6aacd61590412 100644 --- a/Formula/w/weaviate.rb +++ b/Formula/w/weaviate.rb @@ -6,12 +6,12 @@ class Weaviate < Formula license "BSD-3-Clause" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "20a8fcb09de6dfffdcb4ad8a7284367657c729ff990ac6eee55f1bb2313c32b7" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "20a8fcb09de6dfffdcb4ad8a7284367657c729ff990ac6eee55f1bb2313c32b7" - sha256 cellar: :any_skip_relocation, arm64_ventura: "20a8fcb09de6dfffdcb4ad8a7284367657c729ff990ac6eee55f1bb2313c32b7" - sha256 cellar: :any_skip_relocation, sonoma: "88167360f28cb85a6f7a304f880a356b5948dd58b34b2e2d0bc597fef79133c9" - sha256 cellar: :any_skip_relocation, ventura: "88167360f28cb85a6f7a304f880a356b5948dd58b34b2e2d0bc597fef79133c9" - sha256 cellar: :any_skip_relocation, x86_64_linux: "db698d07ac25917e5af761cd92069e90b8b138ea8d60da965710e9cd8fcb4847" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "c9d3bbbda72fa3a140fcc398d59ed75e64fe0704ac42e2f0a8f62b6a13d6a277" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "c9d3bbbda72fa3a140fcc398d59ed75e64fe0704ac42e2f0a8f62b6a13d6a277" + sha256 cellar: :any_skip_relocation, arm64_ventura: "c9d3bbbda72fa3a140fcc398d59ed75e64fe0704ac42e2f0a8f62b6a13d6a277" + sha256 cellar: :any_skip_relocation, sonoma: "431b95ebdb73b7eeafbdec3ffba86ecb5d91e69fb3a41763d7e689b059fa734c" + sha256 cellar: :any_skip_relocation, ventura: "431b95ebdb73b7eeafbdec3ffba86ecb5d91e69fb3a41763d7e689b059fa734c" + sha256 cellar: :any_skip_relocation, x86_64_linux: "cd05d35f5a837a0060328885d02f56331bd2c928c799674f72c03b715b1b0c96" end depends_on "go" => :build From cbabddac9e7551aef0979abe2d7e40805e7b7c7e Mon Sep 17 00:00:00 2001 From: Eric Knibbe Date: Tue, 13 May 2025 09:16:38 -0400 Subject: [PATCH 1197/1364] adb-enhanced: mention adb requirement --- Formula/a/adb-enhanced.rb | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Formula/a/adb-enhanced.rb b/Formula/a/adb-enhanced.rb index 29d7129df7fad..55e902ef9fd63 100644 --- a/Formula/a/adb-enhanced.rb +++ b/Formula/a/adb-enhanced.rb @@ -33,6 +33,15 @@ def install virtualenv_install_with_resources end + def caveats + <<~EOS + At runtime, adb must be accessible from your PATH. + + You can install adb from Homebrew Cask: + brew install --cask android-platform-tools + EOS + end + test do assert_match version.to_s, shell_output("#{bin}/adbe --version") # ADB is not intentionally supplied From 520e8b1f329f190ede57fb617ad8008012a4f53d Mon Sep 17 00:00:00 2001 From: Eric Knibbe Date: Tue, 13 May 2025 09:36:08 -0400 Subject: [PATCH 1198/1364] rdb: fix download URL --- Formula/r/rdb.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/r/rdb.rb b/Formula/r/rdb.rb index 64e9600a3f2f5..8ae52a17eb114 100644 --- a/Formula/r/rdb.rb +++ b/Formula/r/rdb.rb @@ -1,8 +1,8 @@ class Rdb < Formula desc "Redis RDB parser" homepage "https://github.com/HDT3213/rdb/" - url "https://github.com/HDT3213/rdb/archive/refs/tags/v.1.1.0.tar.gz" - sha256 "005ddb5f1f4985425919cd66c70f717410475e2d16d6bdada2f9d02b85fccc39" + url "https://github.com/HDT3213/rdb/archive/refs/tags/v1.1.0.tar.gz" + sha256 "88a56e1e022ea1522fb68e3e54e4dc603827494d994f4b5a24ae8c17ecee2069" license "Apache-2.0" bottle do From c8d4e918b1aa8e4a69769ce6138d5e4128e61002 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 13:55:57 +0000 Subject: [PATCH 1199/1364] cloudflare-wrangler 4.15.0 --- Formula/c/cloudflare-wrangler.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/cloudflare-wrangler.rb b/Formula/c/cloudflare-wrangler.rb index 3d162eb324bd5..364770db5ce01 100644 --- a/Formula/c/cloudflare-wrangler.rb +++ b/Formula/c/cloudflare-wrangler.rb @@ -1,8 +1,8 @@ class CloudflareWrangler < Formula desc "CLI tool for Cloudflare Workers" homepage "https://github.com/cloudflare/workers-sdk" - url "https://registry.npmjs.org/wrangler/-/wrangler-4.14.4.tgz" - sha256 "d5cfbfe958e486b0c18a51d534e53475953164cff74ebccde1231ff71284a36c" + url "https://registry.npmjs.org/wrangler/-/wrangler-4.15.0.tgz" + sha256 "79f6aa9699177521b6c55e5a22c2800c37857e40881f7297d5e5eda0ae1e8d1e" license any_of: ["Apache-2.0", "MIT"] bottle do From 44a56013a55e8081c100c1f543d6d4d40273bf66 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 13:56:32 +0000 Subject: [PATCH 1200/1364] composer 2.8.9 --- Formula/c/composer.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/composer.rb b/Formula/c/composer.rb index 6ddf181c59776..62fc0bd12b8eb 100644 --- a/Formula/c/composer.rb +++ b/Formula/c/composer.rb @@ -1,8 +1,8 @@ class Composer < Formula desc "Dependency Manager for PHP" homepage "https://getcomposer.org/" - url "https://getcomposer.org/download/2.8.8/composer.phar" - sha256 "957263e284b9f7a13d7f475dc65f3614d151b0c4dcc7e8761f7e7f749447fb68" + url "https://getcomposer.org/download/2.8.9/composer.phar" + sha256 "8e8829ec2b97fcb05158236984bc252bef902e7b8ff65555a1eeda4ec13fb82b" license "MIT" livecheck do From 4c7a352db4bc5487e8aa4c4f70714e703d991715 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 13:56:56 +0000 Subject: [PATCH 1201/1364] cot 0.3.0 --- Formula/c/cot.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/cot.rb b/Formula/c/cot.rb index 8e68860c5f981..67402b3b71dc5 100644 --- a/Formula/c/cot.rb +++ b/Formula/c/cot.rb @@ -1,8 +1,8 @@ class Cot < Formula desc "Rust web framework for lazy developers" homepage "https://cot.rs" - url "https://github.com/cot-rs/cot/archive/refs/tags/cot-v0.2.2.tar.gz" - sha256 "e0bb713221cbc294a6b51477d2ca54cb9aeb381f43de34244c03107b162771bc" + url "https://github.com/cot-rs/cot/archive/refs/tags/cot-v0.3.0.tar.gz" + sha256 "d359d5948c0d5d8487c467a420b0b8a3b0dd8e76a4dc5b1392b21b11badf8dd4" license "Apache-2.0" bottle do From acd5a80d5959993928330c873aa4491cfb433b12 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 13:59:08 +0000 Subject: [PATCH 1202/1364] dysk 2.10.1 --- Formula/d/dysk.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/d/dysk.rb b/Formula/d/dysk.rb index 948f99517203d..d2818d582c4be 100644 --- a/Formula/d/dysk.rb +++ b/Formula/d/dysk.rb @@ -1,8 +1,8 @@ class Dysk < Formula desc "Linux utility to get information on filesystems, like df but better" homepage "https://dystroy.org/dysk/" - url "https://github.com/Canop/dysk/archive/refs/tags/v2.10.0.tar.gz" - sha256 "af6a19493f3ca1d471605cd3e40016aaf89d383c87705f6c32d8232b7e433c14" + url "https://github.com/Canop/dysk/archive/refs/tags/v2.10.1.tar.gz" + sha256 "3b7576b700b11052123a91780a6af26fbbd2560ad31fef917af8df8fcceffa04" license "MIT" head "https://github.com/Canop/dysk.git", branch: "main" From de36070130cbd416a55f8b4a25fc50024b1d3f7b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 14:11:14 +0000 Subject: [PATCH 1203/1364] maturin 1.8.6 --- Formula/m/maturin.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/m/maturin.rb b/Formula/m/maturin.rb index 4fa59de7f5af3..4175cf0ac1524 100644 --- a/Formula/m/maturin.rb +++ b/Formula/m/maturin.rb @@ -1,8 +1,8 @@ class Maturin < Formula desc "Build and publish Rust crates as Python packages" homepage "https://github.com/PyO3/maturin" - url "https://github.com/PyO3/maturin/archive/refs/tags/v1.8.5.tar.gz" - sha256 "4511c34d4a362ba27aaf95b711f371e06e742b4a0d4e31f6e0c0243af636b07a" + url "https://github.com/PyO3/maturin/archive/refs/tags/v1.8.6.tar.gz" + sha256 "ab092813266355e08b2feeb0b138c8a47be7cac44a0ed45c9e04722ae94b8bf5" license any_of: ["Apache-2.0", "MIT"] head "https://github.com/PyO3/maturin.git", branch: "main" From 177babc7938fa5800c819dc831cab8d5120cb328 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 14:11:39 +0000 Subject: [PATCH 1204/1364] metals 1.5.3 --- Formula/m/metals.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/m/metals.rb b/Formula/m/metals.rb index 36e3deb0fd0e0..3e9e34d4e7d59 100644 --- a/Formula/m/metals.rb +++ b/Formula/m/metals.rb @@ -1,8 +1,8 @@ class Metals < Formula desc "Scala language server" homepage "https://github.com/scalameta/metals" - url "https://github.com/scalameta/metals/archive/refs/tags/v1.5.2.tar.gz" - sha256 "e961a43afa10d386192a4aa018025972166b3dfa046653cb6aa8b2bdcd065594" + url "https://github.com/scalameta/metals/archive/refs/tags/v1.5.3.tar.gz" + sha256 "008a39fd5b8c8589cf6221e3baaf887cab4f3c7554a7be91a875b02cf1da9578" license "Apache-2.0" # Some version tags don't become a release, so it's necessary to check the From e91e62398e4665c981120468cea5d38410c47e87 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 14:12:09 +0000 Subject: [PATCH 1205/1364] mkdocs-material 9.6.14 --- Formula/m/mkdocs-material.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Formula/m/mkdocs-material.rb b/Formula/m/mkdocs-material.rb index 9cb4f8cab3899..1474afa0b32c7 100644 --- a/Formula/m/mkdocs-material.rb +++ b/Formula/m/mkdocs-material.rb @@ -2,8 +2,8 @@ class MkdocsMaterial < Formula include Language::Python::Virtualenv desc "Material Design theme for MkDocs" homepage "https://squidfunk.github.io/mkdocs-material/" - url "https://files.pythonhosted.org/packages/2c/7d/fbf31a796feb2a796194b587153c5fa9e722720e9d3e338168402dde73ed/mkdocs_material-9.6.13.tar.gz" - sha256 "7bde7ebf33cfd687c1c86c08ed8f6470d9a5ba737bd89e7b3e5d9f94f8c72c16" + url "https://files.pythonhosted.org/packages/b3/fa/0101de32af88f87cf5cc23ad5f2e2030d00995f74e616306513431b8ab4b/mkdocs_material-9.6.14.tar.gz" + sha256 "39d795e90dce6b531387c255bd07e866e027828b7346d3eba5ac3de265053754" license "MIT" bottle do @@ -42,8 +42,8 @@ class MkdocsMaterial < Formula end resource "click" do - url "https://files.pythonhosted.org/packages/b9/2e/0090cbf739cee7d23781ad4b89a9894a41538e4fcf4c31dcdd705b78eb8b/click-8.1.8.tar.gz" - sha256 "ed53c9d8990d83c2a27deae68e4ee337473f6330c040a31d4225c9574d16096a" + url "https://files.pythonhosted.org/packages/cd/0f/62ca20172d4f87d93cf89665fbaedcd560ac48b465bd1d92bfc7ea6b0a41/click-8.2.0.tar.gz" + sha256 "f5452aeddd9988eefa20f90f05ab66f17fce1ee2a36907fd30b05bbb5953814d" end resource "colorama" do From f07f73a6fff0fa9bca87dd92718f7b04f86cbd21 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 14:13:14 +0000 Subject: [PATCH 1206/1364] mx 7.49.1 --- Formula/m/mx.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/m/mx.rb b/Formula/m/mx.rb index dec232d30dc56..be24e0f2a32d5 100644 --- a/Formula/m/mx.rb +++ b/Formula/m/mx.rb @@ -1,8 +1,8 @@ class Mx < Formula desc "Command-line tool used for the development of Graal projects" homepage "https://github.com/graalvm/mx" - url "https://github.com/graalvm/mx/archive/refs/tags/7.49.0.tar.gz" - sha256 "79fa861d4adc2daef73d713181206f111ae4287735444cf4ad13675d48cb7a53" + url "https://github.com/graalvm/mx/archive/refs/tags/7.49.1.tar.gz" + sha256 "78c49294d7933d2feb51c5cba1ff2396f40f6d7004c7be87cfa3c8d11e78d9c9" license "GPL-2.0-only" livecheck do From c053eabf22c107b380ffa11a5ba6ce7d26fddcd1 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 14:14:05 +0000 Subject: [PATCH 1207/1364] newrelic-cli 0.98.1 --- Formula/n/newrelic-cli.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/n/newrelic-cli.rb b/Formula/n/newrelic-cli.rb index 3c5ab2d5ae20b..87da8658a52b5 100644 --- a/Formula/n/newrelic-cli.rb +++ b/Formula/n/newrelic-cli.rb @@ -1,8 +1,8 @@ class NewrelicCli < Formula desc "Command-line interface for New Relic" homepage "https://github.com/newrelic/newrelic-cli" - url "https://github.com/newrelic/newrelic-cli/archive/refs/tags/v0.98.0.tar.gz" - sha256 "2d55fbbfc42e7684e9af893205a2af309299d1d960c1a7ffdde5599df41746d5" + url "https://github.com/newrelic/newrelic-cli/archive/refs/tags/v0.98.1.tar.gz" + sha256 "47001c18b182174f78379d26d54c99bf37b15f1b9fa758747b70e5229791f127" license "Apache-2.0" head "https://github.com/newrelic/newrelic-cli.git", branch: "main" From c28ce544983c481a5f7af8134bfc7abb1f82b06e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 14:18:19 +0000 Subject: [PATCH 1208/1364] dysk: update 2.10.1 bottle. --- Formula/d/dysk.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/d/dysk.rb b/Formula/d/dysk.rb index d2818d582c4be..f3a7a3725b173 100644 --- a/Formula/d/dysk.rb +++ b/Formula/d/dysk.rb @@ -7,8 +7,8 @@ class Dysk < Formula head "https://github.com/Canop/dysk.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_linux: "b08e95593bf00aecc2d9fe10c7374390ee4aad11fd0a215894396f9e92131178" - sha256 cellar: :any_skip_relocation, x86_64_linux: "620f28a2fdc6ae12ce19aa83229dbae4361cd2de75266daa629aad90270dfc9f" + sha256 cellar: :any_skip_relocation, arm64_linux: "66a69344a33513bf01fec33960a6b88f6bee689671af08704efbb6481ec4f06b" + sha256 cellar: :any_skip_relocation, x86_64_linux: "99f1b6df656fad0babd80cdeb986bc97043ae9636d2215fb79031d1c751607f8" end depends_on "rust" => :build From df7623e036c007d0af1d9de15d52f1c92986327c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 14:20:41 +0000 Subject: [PATCH 1209/1364] ruby-lsp 0.23.19 --- Formula/r/ruby-lsp.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/r/ruby-lsp.rb b/Formula/r/ruby-lsp.rb index af08aaa297af2..9f21d4f17f41c 100644 --- a/Formula/r/ruby-lsp.rb +++ b/Formula/r/ruby-lsp.rb @@ -1,8 +1,8 @@ class RubyLsp < Formula desc "Opinionated language server for Ruby" homepage "https://shopify.github.io/ruby-lsp" - url "https://github.com/Shopify/ruby-lsp/archive/refs/tags/v0.23.18.tar.gz" - sha256 "227b14eeb47ca32c2222117e458a7986ba4e86f610efb340bb2b64d433498030" + url "https://github.com/Shopify/ruby-lsp/archive/refs/tags/v0.23.19.tar.gz" + sha256 "a4b1cb46940800fff9ab357f737fb50f1631f5eab2d9cebe25ca94e6852f97ce" license "MIT" head "https://github.com/Shopify/ruby-lsp.git", branch: "main" From 41f6bb3663c60f67bb9a5e7bbed5cce87c2e3c39 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 14:21:04 +0000 Subject: [PATCH 1210/1364] cloudflare-wrangler: update 4.15.0 bottle. --- Formula/c/cloudflare-wrangler.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/cloudflare-wrangler.rb b/Formula/c/cloudflare-wrangler.rb index 364770db5ce01..9c7a1f52cac43 100644 --- a/Formula/c/cloudflare-wrangler.rb +++ b/Formula/c/cloudflare-wrangler.rb @@ -6,13 +6,13 @@ class CloudflareWrangler < Formula license any_of: ["Apache-2.0", "MIT"] bottle do - sha256 cellar: :any, arm64_sequoia: "1a844164b4e55c04e6bbf24cd274075969a65edfd2c3e7a0f53558ae09318573" - sha256 cellar: :any, arm64_sonoma: "1a844164b4e55c04e6bbf24cd274075969a65edfd2c3e7a0f53558ae09318573" - sha256 cellar: :any, arm64_ventura: "1a844164b4e55c04e6bbf24cd274075969a65edfd2c3e7a0f53558ae09318573" - sha256 sonoma: "08fc9980984266ef1ecbe7e023ce5675977f0765fbcb9d7bfc33b2f9e06b4a2a" - sha256 ventura: "08fc9980984266ef1ecbe7e023ce5675977f0765fbcb9d7bfc33b2f9e06b4a2a" - sha256 cellar: :any_skip_relocation, arm64_linux: "986c7917a335cd72a3cb386aba42f48aebccff6f6c380dadc90541ebe5a7dcea" - sha256 cellar: :any_skip_relocation, x86_64_linux: "867a665eb319df8c02b827c14f82ebdd07ded40d5de9a4352e179810fb9a9c9f" + sha256 cellar: :any, arm64_sequoia: "f69c6992f0a64c0ea8a58589b016daf48a1bfe3e227458726210479970131282" + sha256 cellar: :any, arm64_sonoma: "f69c6992f0a64c0ea8a58589b016daf48a1bfe3e227458726210479970131282" + sha256 cellar: :any, arm64_ventura: "f69c6992f0a64c0ea8a58589b016daf48a1bfe3e227458726210479970131282" + sha256 sonoma: "40180777914ca3dd19a3cd5bea5daf1c18cef2f534e1fb27740d0aa4f472ae6e" + sha256 ventura: "40180777914ca3dd19a3cd5bea5daf1c18cef2f534e1fb27740d0aa4f472ae6e" + sha256 cellar: :any_skip_relocation, arm64_linux: "3876aa9f39dda22b27fdcfd310d04c102bbab756b47bb5ec7f3b76be3dca381e" + sha256 cellar: :any_skip_relocation, x86_64_linux: "93a511bb7e4a6f915326748742654a3d0bf2db61f887367367af34a5c7f4bdda" end depends_on "node" From 2a0e9717b0f79481ac8f005b03602d756bbb07ee Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 14:24:42 +0000 Subject: [PATCH 1211/1364] testkube 2.1.151 --- Formula/t/testkube.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/t/testkube.rb b/Formula/t/testkube.rb index bf33c6b99f284..115b805e01267 100644 --- a/Formula/t/testkube.rb +++ b/Formula/t/testkube.rb @@ -1,8 +1,8 @@ class Testkube < Formula desc "Kubernetes-native framework for test definition and execution" homepage "https://testkube.io" - url "https://github.com/kubeshop/testkube/archive/refs/tags/v2.1.150.tar.gz" - sha256 "7f5c06c223f8e888ed2c5f341cf03de7f3a29271fdf478173351e7647a471d8f" + url "https://github.com/kubeshop/testkube/archive/refs/tags/v2.1.151.tar.gz" + sha256 "c2add33e2972afa180b1a659ff8bf6c6169f5a2c6133eeea8a4e8ac8a99d72e8" license "MIT" head "https://github.com/kubeshop/testkube.git", branch: "main" From ff666dea25ea172ff29de37bf79fa52c63ec502a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 14:27:00 +0000 Subject: [PATCH 1212/1364] cot: update 0.3.0 bottle. --- Formula/c/cot.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/cot.rb b/Formula/c/cot.rb index 67402b3b71dc5..597cd529615fa 100644 --- a/Formula/c/cot.rb +++ b/Formula/c/cot.rb @@ -6,13 +6,13 @@ class Cot < Formula license "Apache-2.0" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "51667d2ec75320b17f9115f6fe39f4b7af19bb8a27d2ce213bf4271d130b5275" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "e74bde63d349de1e09489c0609296f955538bd36b2e80d746817359eefc099f8" - sha256 cellar: :any_skip_relocation, arm64_ventura: "a5126ede263141e425a9ff2f873a8a8c72b661a3f2251431ba19da1e36782a6b" - sha256 cellar: :any_skip_relocation, sonoma: "3a6dbd24762d373ba27583b736e3fde6ee61af45267844305f0c894c40e02a37" - sha256 cellar: :any_skip_relocation, ventura: "15572f7ed85601d2b73125f9ac719b73c32d8e1ba0b429b80ecd134c18d01ac3" - sha256 cellar: :any_skip_relocation, arm64_linux: "1b2d1bc3df69a33aeee9bc3e980345fe567fb0833e99927b431a23bc6f6556d1" - sha256 cellar: :any_skip_relocation, x86_64_linux: "e47ec43adbc1a6cc0945e11fad5cf4ee5f8b1a325578803a93ee0f778f5e9e33" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "8a4ad582601b310fd2032dccd7c8cda5b35feda347b0c006fe6a85f489b04200" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "07cacb84310c872b8566dd2ddd5368a5bb86107b9a42413af21ba3532cab7c20" + sha256 cellar: :any_skip_relocation, arm64_ventura: "bcc642f86d4aa89724026def2ea07b430d895debbe52b33fe206f06065fd3289" + sha256 cellar: :any_skip_relocation, sonoma: "327458cea9ea8a0a50e32a12d4e7c9f3670c1bf19f90f236969db25ec0b2aaa5" + sha256 cellar: :any_skip_relocation, ventura: "e1da2d011a0f15e92755babb6d161b480eb60d404858ab0972ecdefd62995785" + sha256 cellar: :any_skip_relocation, arm64_linux: "843c192cb4f5f4045241702c2eeb9d094df3792c5699b1ba446ce5092711bd1d" + sha256 cellar: :any_skip_relocation, x86_64_linux: "6dc8c54af49b1b0b31391d096e5e89ce4856d680c55539838a30afc9c3cf491f" end depends_on "rust" => :build From 3df9644ec59c08384719f1619e1248d69f6b73e5 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 14:28:10 +0000 Subject: [PATCH 1213/1364] yash 2.59 --- Formula/y/yash.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/y/yash.rb b/Formula/y/yash.rb index 4e4278d793274..3ce8e6fef7d17 100644 --- a/Formula/y/yash.rb +++ b/Formula/y/yash.rb @@ -1,8 +1,8 @@ class Yash < Formula desc "Yet another shell: a POSIX-compliant command-line shell" homepage "https://magicant.github.io/yash/" - url "https://github.com/magicant/yash/releases/download/2.58.1/yash-2.58.1.tar.xz" - sha256 "7674ece98dc77bcc753db49c4311c30532f981682205f9047f20213a3a6755bb" + url "https://github.com/magicant/yash/releases/download/2.59/yash-2.59.tar.xz" + sha256 "299a50ea70f23dcbb94cf278f3e99e788b20b613185a0426ed5fdd189b1711ee" license "GPL-2.0-or-later" bottle do From 9dac928533fb27ddc825440877b59e64f56a512a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 14:37:06 +0000 Subject: [PATCH 1214/1364] newrelic-cli: update 0.98.1 bottle. --- Formula/n/newrelic-cli.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/n/newrelic-cli.rb b/Formula/n/newrelic-cli.rb index 87da8658a52b5..8ef141a38290b 100644 --- a/Formula/n/newrelic-cli.rb +++ b/Formula/n/newrelic-cli.rb @@ -12,13 +12,13 @@ class NewrelicCli < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "18407cd6b4fbd8f124a09d8fff8987b9482bd7fc4f23337dbe69917a522e6791" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "2d638074c9d8c6a232d3a0e3c8892d2ba6fe0e8e9f61ef6e093c3037156b2577" - sha256 cellar: :any_skip_relocation, arm64_ventura: "c7f0ad3b59f86016820c9ff2056c0cd7161e47c4b3a1d4e2ab967d79c353fb00" - sha256 cellar: :any_skip_relocation, sonoma: "6402891ee87487c276e82a1eba4a815b54359abec58a7a9362c76b825ee00251" - sha256 cellar: :any_skip_relocation, ventura: "7dc2af43ad7f0550c8cd7e5dadd3e037fd6576a35ab040f662bcdac9cafd7dd3" - sha256 cellar: :any_skip_relocation, arm64_linux: "07811c402fac007db59e9fa3fbc27670bcaf421360633198462d1777386ef28a" - sha256 cellar: :any_skip_relocation, x86_64_linux: "46a4f2f4802f1a94d14efad4777564a3a0ade43064548d262ab9a1fd72ee35fc" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "f64bafdc73d31f602d40601ab2aafd707f5868ef4211332a668483731ddcb756" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "52190dcde901e97910d4b2bd70334c97f6ba879d66cc429883427ad68ee6e8b5" + sha256 cellar: :any_skip_relocation, arm64_ventura: "a58608ce81d79a971bb0060a5a9b221aa9498af003e1d2158adcbf4ed11e40d5" + sha256 cellar: :any_skip_relocation, sonoma: "3016a064f1ae0cd45ec854a1d13214327eeb7ea6f49d257bfdc551522536d377" + sha256 cellar: :any_skip_relocation, ventura: "d1b2cb9dbc12c573c8990c531ea6d1831c3511c3e3c6b147f13ce524fa1eaf99" + sha256 cellar: :any_skip_relocation, arm64_linux: "9571d13045ffc68e1089cf6dc884d2a036b09382f9bda0f1e6f73f8bd56433bc" + sha256 cellar: :any_skip_relocation, x86_64_linux: "f8dfcc74062a9615324f6e802b8f66f9d68d470baef9e53f71de01497963dd5b" end depends_on "go" => :build From 2855890c8854f40ae3821f7b4a9ab92285613b1f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 14:38:26 +0000 Subject: [PATCH 1215/1364] metals: update 1.5.3 bottle. --- Formula/m/metals.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/m/metals.rb b/Formula/m/metals.rb index 3e9e34d4e7d59..90b592ca42f11 100644 --- a/Formula/m/metals.rb +++ b/Formula/m/metals.rb @@ -13,13 +13,13 @@ class Metals < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "3ec5166dec9f73897a0c2bed54561532f3ba96860cac82786c264f53df7cd015" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "3be3e75ec85f178bae8ae6be53569353cffa880cef21c4ef9f31e72a755ffe83" - sha256 cellar: :any_skip_relocation, arm64_ventura: "760e4cd8a5b0441dded0d6edcdd10fbb65720762ff5a10fff242059811c5350f" - sha256 cellar: :any_skip_relocation, sonoma: "fc2a3b4701d2fd52f4545a89d7bed7e88ac0827ab9d75e3a42892de33a3ed14f" - sha256 cellar: :any_skip_relocation, ventura: "2849c6b6df1937e75f052c481b3b74b4d777c2d8557fb0b1b2b9b05b7a8c6f69" - sha256 cellar: :any_skip_relocation, arm64_linux: "bec136cfc0c576dabe8ed533cc00a537bbc001d4cf8b9747c35a2d22b18caf81" - sha256 cellar: :any_skip_relocation, x86_64_linux: "a10bb3b687a1c3207b15c1f9aa2c4efb6ed2c03613c8656d2414e3703487a059" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "5d375d0d8813da31c2f4bc9a1ec5799fea294f1f1bc88b1ed4dc5b6d93cf1d53" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "2e6bbdd1472833d5412bebcf5af842c85dcf30319c49d5fbd87fe3ceb41c22f4" + sha256 cellar: :any_skip_relocation, arm64_ventura: "147516fe36c60676aa1923d958ea50e3f8b572fdfa8b6109a83eca3134683847" + sha256 cellar: :any_skip_relocation, sonoma: "11cd8d503e6dcc3193aa69cbdfed6068bfc9ff8d6b60c6d089b4c449a447d30a" + sha256 cellar: :any_skip_relocation, ventura: "daf54b479006a2a8b59760297593649bea3589f5c7a6cf4de8cbf6d44531157a" + sha256 cellar: :any_skip_relocation, arm64_linux: "6b0853607504f74c18109afda0b65d62ce439d3b11fb3d575cfc694d4a80ba0f" + sha256 cellar: :any_skip_relocation, x86_64_linux: "ba54ad830ad08452908417651cfec07ca8c4d83b75ac9d5a79533e6d0cb09e14" end depends_on "sbt" => :build From e61970624404c13135a5f1e03688d52b1704c1b9 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 14:44:13 +0000 Subject: [PATCH 1216/1364] mx: update 7.49.1 bottle. --- Formula/m/mx.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/m/mx.rb b/Formula/m/mx.rb index be24e0f2a32d5..c2e03920748ff 100644 --- a/Formula/m/mx.rb +++ b/Formula/m/mx.rb @@ -11,7 +11,7 @@ class Mx < Formula end bottle do - sha256 cellar: :any_skip_relocation, all: "3d2b211342eb8d264d93fdefad7c25a87fd0a4afa8fd45379eadb1d8d62cb0a3" + sha256 cellar: :any_skip_relocation, all: "f0b25851905d16be1a8158f781627d246e5a45fc8b18c360089de7dcc4798fb1" end depends_on "openjdk" => :test From dcaeca661b7d730f43289d44ee7bb498a085888b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 14:50:00 +0000 Subject: [PATCH 1217/1364] mkdocs-material: update 9.6.14 bottle. --- Formula/m/mkdocs-material.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/m/mkdocs-material.rb b/Formula/m/mkdocs-material.rb index 1474afa0b32c7..54ea79a4a0748 100644 --- a/Formula/m/mkdocs-material.rb +++ b/Formula/m/mkdocs-material.rb @@ -7,13 +7,13 @@ class MkdocsMaterial < Formula license "MIT" bottle do - sha256 cellar: :any, arm64_sequoia: "f621f1152c315ec1533d7c4042983692bccb8d5bff8f63f7cb3bcc6e74d4fbea" - sha256 cellar: :any, arm64_sonoma: "5c06e8c5d627f69dbc8bf69590eccbd8bfd3c544f538dde539ec8e656ea281a5" - sha256 cellar: :any, arm64_ventura: "01062062b3e91228cbd14857b313ff68bde352d91af3ddc55a26a47871ec053e" - sha256 cellar: :any, sonoma: "83f4d5feab4869bab14274257c926c9b12ba00f9c2a60f0a30b30e37db0d121e" - sha256 cellar: :any, ventura: "ccc1a7ebfc0a8623edf19b3ca50d964b14416650ef5fa9b85c6bc05cf99a0d31" - sha256 cellar: :any_skip_relocation, arm64_linux: "36251dcba78b7d2155ba610effdb8c3964bc3103a25760c9f25593d4c0fb369c" - sha256 cellar: :any_skip_relocation, x86_64_linux: "52e3cbbf7b2ff89505bfd3feec42fb57ce05a5bf8358dc4942df7f50ca4d0f73" + sha256 cellar: :any, arm64_sequoia: "0e91741378cbf7f59a15a2b44c34cde15c7a6a5c55025e432084da8c700fe026" + sha256 cellar: :any, arm64_sonoma: "ccb033943c42c4fb467be5050f46e523b3829aedad110c556a13255416ba415d" + sha256 cellar: :any, arm64_ventura: "5b22330cd379dae30cf252f9e88aee00cd977ea3d7a4e22cc1376bf6ebac016e" + sha256 cellar: :any, sonoma: "0b6ff46b2a1176b34b19260786159e7240ae628ee974446dc15bb39bb566141d" + sha256 cellar: :any, ventura: "e17adccd68c47a24e7e4710c787daed969edd5f117fe2674ce57989d454871ed" + sha256 cellar: :any_skip_relocation, arm64_linux: "ece77c6c4ed36eb494fb265e9f4eb4f560b1a735899fe567bb84b9f7b887797f" + sha256 cellar: :any_skip_relocation, x86_64_linux: "95b6e1e5e768ec5bcc6ef9fd193dc80792841435f3d69a798450f54bbc23819d" end depends_on "libyaml" From dd80bd111bbce74afef362e9712e7c2c033403d1 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 14:54:38 +0000 Subject: [PATCH 1218/1364] maturin: update 1.8.6 bottle. --- Formula/m/maturin.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/m/maturin.rb b/Formula/m/maturin.rb index 4175cf0ac1524..6612bfcd0cc98 100644 --- a/Formula/m/maturin.rb +++ b/Formula/m/maturin.rb @@ -7,13 +7,13 @@ class Maturin < Formula head "https://github.com/PyO3/maturin.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "45023642be0bdbeebd2ccb366854671a22f4c48f062e761819db133c0f484a58" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "8a3163f46427caf116fea34298c29a01826a8a128f85e87db16a96b625c819d5" - sha256 cellar: :any_skip_relocation, arm64_ventura: "4468f591de327b6a1d2cd9b85066cb9bb018510c32dcf894b2bbf3bbfc202917" - sha256 cellar: :any_skip_relocation, sonoma: "96e60903db8132db5caea8c8d23e71cee848561a9b4afe3dfc912b58f223c30f" - sha256 cellar: :any_skip_relocation, ventura: "e12da1af1f31873a5412d56a437bc57cc9205cb2285ae510b76d99b085523946" - sha256 cellar: :any_skip_relocation, arm64_linux: "4bcce8890749e3f37bf3658b14ff428e6d1c7700b8f49da87f171208656e5a41" - sha256 cellar: :any_skip_relocation, x86_64_linux: "18e142ff49fe39aa3a7cf5cbdf44b146c650f1954724421e298e9c12a8f5dad7" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "d4604fc872a8d902a59f8f8f00aed7ebc6e84697abc8aba7eb841db1614697fa" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "ffd64bda1299b9fbbf6ff9739f102652ae0d447ba3e65d0b7695dc92e8cb8c66" + sha256 cellar: :any_skip_relocation, arm64_ventura: "18a29b6b4ee5e90e9479c4388c2235073d2336d0f333b97a91d13de51330deb7" + sha256 cellar: :any_skip_relocation, sonoma: "983104a3c26f06773586c01d329dbeb90920707d55210d8683fd3a1cfee16513" + sha256 cellar: :any_skip_relocation, ventura: "0791bd493ee99234a59419e8352275c992131e38be0239d659fe0aa76b15cab1" + sha256 cellar: :any_skip_relocation, arm64_linux: "88a16df0161807aa5c4feda7bfeb2a66a3e2f5406d353d995dd83dd6eaef3a44" + sha256 cellar: :any_skip_relocation, x86_64_linux: "123b144d3952ff54df35a13843738028fc5e8b72d3165b9ebf28e59a52b83bb1" end depends_on "python@3.13" => :test From ccb86844f2579a5dc15497b5e68df72b409f5467 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 14:59:36 +0000 Subject: [PATCH 1219/1364] composer: update 2.8.9 bottle. --- Formula/c/composer.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/composer.rb b/Formula/c/composer.rb index 62fc0bd12b8eb..8e90b9270e809 100644 --- a/Formula/c/composer.rb +++ b/Formula/c/composer.rb @@ -11,13 +11,13 @@ class Composer < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "4e528b9bc47d85e801cee93236367f5abf7a52001864ca8492a52a75479f2414" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "4e528b9bc47d85e801cee93236367f5abf7a52001864ca8492a52a75479f2414" - sha256 cellar: :any_skip_relocation, arm64_ventura: "4e528b9bc47d85e801cee93236367f5abf7a52001864ca8492a52a75479f2414" - sha256 cellar: :any_skip_relocation, sonoma: "c07890dce3f5995d1c14f30d8b20d91e60628aab80bdd9f29551ec63eff295d7" - sha256 cellar: :any_skip_relocation, ventura: "c07890dce3f5995d1c14f30d8b20d91e60628aab80bdd9f29551ec63eff295d7" - sha256 cellar: :any_skip_relocation, arm64_linux: "54e14a3f2ada5b903018d3c4795a346277aed4c0487c8643c1f8ea3dae0bdff1" - sha256 cellar: :any_skip_relocation, x86_64_linux: "54e14a3f2ada5b903018d3c4795a346277aed4c0487c8643c1f8ea3dae0bdff1" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "a05a5caf378a6feffbe8eb20a6df237f2fbdcd4ad95c330523721cba76c5ae24" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "a05a5caf378a6feffbe8eb20a6df237f2fbdcd4ad95c330523721cba76c5ae24" + sha256 cellar: :any_skip_relocation, arm64_ventura: "a05a5caf378a6feffbe8eb20a6df237f2fbdcd4ad95c330523721cba76c5ae24" + sha256 cellar: :any_skip_relocation, sonoma: "1f0caa6188458c601c106506cc548b99c711f6cd267cbe757ea80cc0307aac40" + sha256 cellar: :any_skip_relocation, ventura: "1f0caa6188458c601c106506cc548b99c711f6cd267cbe757ea80cc0307aac40" + sha256 cellar: :any_skip_relocation, arm64_linux: "00b726600dae89baf262d48d9919975579522b14e5a163506aedba18a74d3eab" + sha256 cellar: :any_skip_relocation, x86_64_linux: "00b726600dae89baf262d48d9919975579522b14e5a163506aedba18a74d3eab" end depends_on "php" From ea31e5ab57e60b9fd1d3ffcf100d841704ce9ca2 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 15:19:31 +0000 Subject: [PATCH 1220/1364] yash: update 2.59 bottle. --- Formula/y/yash.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/y/yash.rb b/Formula/y/yash.rb index 3ce8e6fef7d17..45680f024341b 100644 --- a/Formula/y/yash.rb +++ b/Formula/y/yash.rb @@ -6,13 +6,13 @@ class Yash < Formula license "GPL-2.0-or-later" bottle do - sha256 arm64_sequoia: "225741eb8fbdb9e8d8d15641fe12e222aea819c9128016e50bc3a1de9c3ed942" - sha256 arm64_sonoma: "5c0f1b84ae52d14b5ed0f37c327fdbcdd1f83efc2fec2e4b921a046a601a9d3e" - sha256 arm64_ventura: "5cc35eb53ea7858696f8fd8840938b44557108cdc470992b22b44512392af10a" - sha256 sonoma: "5032275245e9f6c97ec3627cd86ddbc0f891f660cfc83a25bdff0820d6adfba7" - sha256 ventura: "ae453a1e123424f174d835a3d50af92490a4b480ffdc968395efe54fd30d82db" - sha256 arm64_linux: "f93e1510e25427961b0fb8cb302977ff7e3e5762cedbec7d3654c6f73c8885be" - sha256 x86_64_linux: "ee8f5b1b250186c56ba08df649cacc7471e009748a0e525cf1f83a68879476c3" + sha256 arm64_sequoia: "41f426ba54fdffc5d4268b54bb785b4244af0448459a8c56c429552ff5a0c13c" + sha256 arm64_sonoma: "a07798ce2eb7e193860da5aa67f45d00520b102e122e1fcdb5659d013f40b711" + sha256 arm64_ventura: "341778e242efa6a5966d00e13a4eb09ddbe9a462557d8caf747f4c9fcc786383" + sha256 sonoma: "c40888effd879a9b14b1c7348bfebbf980a7899bc143360cfd55654fe9151bea" + sha256 ventura: "74c532d36d767b362e6852adaa511a97d535fd61f730e246869248401d73fe3c" + sha256 arm64_linux: "767918f66d255a55c2fe13abab8f8ca75924df9c989f5aa2487923be4ed3901a" + sha256 x86_64_linux: "c792d79a9395f94d8155878614249008f72798f58496bfff55522dcdcb85c038" end head do From 151e4b12ae6b1b2f0ad177e695541a4bcd411cc9 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 15:20:03 +0000 Subject: [PATCH 1221/1364] testkube: update 2.1.151 bottle. --- Formula/t/testkube.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/t/testkube.rb b/Formula/t/testkube.rb index 115b805e01267..0fdc49fec1555 100644 --- a/Formula/t/testkube.rb +++ b/Formula/t/testkube.rb @@ -12,12 +12,12 @@ class Testkube < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "70645be2f903622d5d0acd6351da7cd8146f83a2bc3eddecef71c872b7988a7b" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "70645be2f903622d5d0acd6351da7cd8146f83a2bc3eddecef71c872b7988a7b" - sha256 cellar: :any_skip_relocation, arm64_ventura: "70645be2f903622d5d0acd6351da7cd8146f83a2bc3eddecef71c872b7988a7b" - sha256 cellar: :any_skip_relocation, sonoma: "ac3224360690527478e2858782191b6d9b36c06bee75b87b746a420478c8f28f" - sha256 cellar: :any_skip_relocation, ventura: "ac3224360690527478e2858782191b6d9b36c06bee75b87b746a420478c8f28f" - sha256 cellar: :any_skip_relocation, x86_64_linux: "af64df28091c269f77a7b6e7c53afcd930925fdfaf2fc3d6d75ac92e2100af81" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "a7f455954e3dbc4b5f456cb1a3e962b3fb50b48658018c85116d1726d5768503" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "a7f455954e3dbc4b5f456cb1a3e962b3fb50b48658018c85116d1726d5768503" + sha256 cellar: :any_skip_relocation, arm64_ventura: "a7f455954e3dbc4b5f456cb1a3e962b3fb50b48658018c85116d1726d5768503" + sha256 cellar: :any_skip_relocation, sonoma: "cc88a59812508dfec41ce02a690d432213df463bab12446be0ce1c64cc61e4da" + sha256 cellar: :any_skip_relocation, ventura: "cc88a59812508dfec41ce02a690d432213df463bab12446be0ce1c64cc61e4da" + sha256 cellar: :any_skip_relocation, x86_64_linux: "d65d1eb0931dce8b62f62e03528a0f4e224761052a9af47d9fc9e77a699fea0e" end depends_on "go" => :build From bca5851b69cf29006cd7e1e2480bde43057b4ec8 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 15:24:58 +0000 Subject: [PATCH 1222/1364] ruby-lsp: update 0.23.19 bottle. --- Formula/r/ruby-lsp.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/r/ruby-lsp.rb b/Formula/r/ruby-lsp.rb index 9f21d4f17f41c..f1617eaabcbef 100644 --- a/Formula/r/ruby-lsp.rb +++ b/Formula/r/ruby-lsp.rb @@ -7,13 +7,13 @@ class RubyLsp < Formula head "https://github.com/Shopify/ruby-lsp.git", branch: "main" bottle do - sha256 cellar: :any, arm64_sequoia: "0c5663437b799d919b9678a8fd1826ab7be8ef518c3a27d5d6e274ffc77762a6" - sha256 cellar: :any, arm64_sonoma: "8eba3796496baf403e626fd18521948fc80613dcfb6b2aca0e501eb63c7a2a7b" - sha256 cellar: :any, arm64_ventura: "0dd32320bdf35912300bb0c942d4071a77a7e1fa27515e1add13dfe8a7030f81" - sha256 cellar: :any, sonoma: "4bac869b856b5a4596775df01df95af4d225bf18ab2e31e843bf881cdeb48db6" - sha256 cellar: :any, ventura: "4e966963a4fb1f9e720e10490babfb9e164e02b151c628d2383aa608c3dceac3" - sha256 cellar: :any_skip_relocation, arm64_linux: "71a2ac03f5a52311a79a380c5daa91aed7aa963ed86d7fabbf3bcc2aaaf46d88" - sha256 cellar: :any_skip_relocation, x86_64_linux: "f7a99fbc08e0914664b19a9cb814394740db7df12aed5431433c05c22ba2529c" + sha256 cellar: :any, arm64_sequoia: "594a56cd3590b30ece45356d6b9b2d37224d15affe507609ccdafd335180067b" + sha256 cellar: :any, arm64_sonoma: "119507bdf39763fbc168d04da7348a5653d8da2175fc8fa3e20bc99a6605c1da" + sha256 cellar: :any, arm64_ventura: "8ec8df73070dea6c14d64162ca18d99c72ca53208ceeb577c9ae74882b498a13" + sha256 cellar: :any, sonoma: "106b36060d228efd5f2dc9567ed460660aac9455e037ec8231ffaf3d4abfc779" + sha256 cellar: :any, ventura: "23578db4d5c43a79878cd3716d3bd523da4964a45b5ceeebf6d3c3bd72dabee0" + sha256 cellar: :any_skip_relocation, arm64_linux: "ef4a9daadf992cdbefe664d5199d957bb1eb7c729543dd983da14597f3639a10" + sha256 cellar: :any_skip_relocation, x86_64_linux: "1e3beae4c6c2777c3ec84fd3d173743438338345356a750f880254b93817012c" end depends_on "ruby" From edfb7be0caeb217791d6d1e7f8ad7e9dc03c261c Mon Sep 17 00:00:00 2001 From: l5io <47201130+l5io@users.noreply.github.com> Date: Tue, 13 May 2025 11:12:08 -0500 Subject: [PATCH 1223/1364] mesheryctl 0.8.80 Created by https://github.com/mislav/bump-homebrew-formula-action --- Formula/m/mesheryctl.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/m/mesheryctl.rb b/Formula/m/mesheryctl.rb index d9c417e2933ed..8b6b069c70363 100644 --- a/Formula/m/mesheryctl.rb +++ b/Formula/m/mesheryctl.rb @@ -2,8 +2,8 @@ class Mesheryctl < Formula desc "Command-line utility for Meshery, the cloud native management plane" homepage "https://meshery.io" url "https://github.com/meshery/meshery.git", - tag: "v0.8.77", - revision: "b4f623bd45805568472a4260e782361fe1e6d81f" + tag: "v0.8.80", + revision: "061e80bd9a554305b8bbbf8ef00ccf662ec9cc78" license "Apache-2.0" head "https://github.com/meshery/meshery.git", branch: "master" From cf16f6dd9ed5bf52e601d32f5571f70581c0335f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 16:59:32 +0000 Subject: [PATCH 1224/1364] dagger 0.18.7 --- Formula/d/dagger.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/d/dagger.rb b/Formula/d/dagger.rb index 72faffb519289..127d28de66daf 100644 --- a/Formula/d/dagger.rb +++ b/Formula/d/dagger.rb @@ -1,8 +1,8 @@ class Dagger < Formula desc "Portable devkit for CI/CD pipelines" homepage "https://dagger.io" - url "https://github.com/dagger/dagger/archive/refs/tags/v0.18.6.tar.gz" - sha256 "8267c50c7721d4ff8a1767f2d5c25c147001602296ab34aa96ea68974bcd2b17" + url "https://github.com/dagger/dagger/archive/refs/tags/v0.18.7.tar.gz" + sha256 "385beabbec0c7cee357418417447f4f65cec124f961ec4f85c16c29c5fe55ccd" license "Apache-2.0" head "https://github.com/dagger/dagger.git", branch: "main" From 5ed0b18f585287c50ce2f34d11c720acb1295e29 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 17:02:37 +0000 Subject: [PATCH 1225/1364] fern-api 0.60.30 --- Formula/f/fern-api.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/f/fern-api.rb b/Formula/f/fern-api.rb index 9bf1a21f12877..772cc488efca3 100644 --- a/Formula/f/fern-api.rb +++ b/Formula/f/fern-api.rb @@ -1,8 +1,8 @@ class FernApi < Formula desc "Stripe-level SDKs and Docs for your API" homepage "https://buildwithfern.com/" - url "https://registry.npmjs.org/fern-api/-/fern-api-0.60.29.tgz" - sha256 "b4be178d45ea8e6e7e4ce4a4d90585e1d8e8885f24747762e37d37189199d87b" + url "https://registry.npmjs.org/fern-api/-/fern-api-0.60.30.tgz" + sha256 "f6e5808391a5386954f9a603e0b6f768ecd97f1a37aaf133733f3d4891bd391b" license "Apache-2.0" head "https://github.com/fern-api/fern.git", branch: "main" From b02ba43baa9b4d9a825df3d6f3e16bfb59fce786 Mon Sep 17 00:00:00 2001 From: botantony Date: Tue, 13 May 2025 18:33:11 +0200 Subject: [PATCH 1226/1364] cookcli 0.10.0 (new formula) Signed-off-by: botantony --- Formula/c/cookcli.rb | 45 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 Formula/c/cookcli.rb diff --git a/Formula/c/cookcli.rb b/Formula/c/cookcli.rb new file mode 100644 index 0000000000000..7b0d20b9760a1 --- /dev/null +++ b/Formula/c/cookcli.rb @@ -0,0 +1,45 @@ +class Cookcli < Formula + desc "CLI-tool for cooking recipes formated using Cooklang" + homepage "https://cooklang.org" + url "https://github.com/cooklang/cookcli/archive/refs/tags/v0.10.0.tar.gz" + sha256 "6832191a18e4e4a2d9f5e3227631b7c598d239f01f0560bc226cc3ef3948194b" + license "MIT" + head "https://github.com/cooklang/cookcli.git", branch: "main" + + depends_on "rust" => :build + depends_on "openssl@3" + + def install + ENV["OPENSSL_NO_VENDOR"] = "1" + ENV["OPENSSL_DIR"] = Formula["openssl@3"].opt_prefix + system "cargo", "install", *std_cargo_args + end + + test do + assert_match version.to_s, shell_output("#{bin}/cook --version") + + (testpath/"pancakes.cook").write <<~COOK + Crack the @eggs{3} into a #blender, then add the @plain flour{125%g}, + @milk{250%ml} and @sea salt{1%pinch}, and blitz until smooth. + COOK + (testpath/"expected.md").write <<~MARKDOWN + ## Ingredients + + - *3* eggs + - *125 g* plain flour + - *250 ml* milk + - *1 pinch* sea salt + + ## Cookware + + - blender + + ## Steps + + 1. Crack the eggs into a blender, then add the plain flour, milk and sea salt, + and blitz until smooth. + MARKDOWN + assert_match (testpath/"expected.md").read, + shell_output("#{bin}/cook recipe read --format markdown pancakes.cook") + end +end From c99b135af81362e49e28eaac691ca0e966cce014 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 17:05:14 +0000 Subject: [PATCH 1227/1364] git-machete 3.35.0 --- Formula/g/git-machete.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/g/git-machete.rb b/Formula/g/git-machete.rb index 897a24d2896ed..dc716881577d5 100644 --- a/Formula/g/git-machete.rb +++ b/Formula/g/git-machete.rb @@ -3,8 +3,8 @@ class GitMachete < Formula desc "Git repository organizer & rebase workflow automation tool" homepage "https://github.com/VirtusLab/git-machete" - url "https://files.pythonhosted.org/packages/43/57/b5adc580fe87496a285a1f5a80a190c1b10cdf1224a5f49511638bbb86d8/git_machete-3.34.1.tar.gz" - sha256 "c1ee92a06fd3f1139326dfb45abfc0813ca64f354bd001ff4117968b0af0d450" + url "https://files.pythonhosted.org/packages/ed/3d/286c1d6fd3e37b22b0d26291874e5e2b7e3749879dd508afac3502f220b6/git_machete-3.35.0.tar.gz" + sha256 "e6986362955060d31f0b3dd797e11e0caf6c081bb532d141cd571f445625b1ee" license "MIT" bottle do From 5db1bd2b6479f76c61a83e64360c8335090fce87 Mon Sep 17 00:00:00 2001 From: botantony Date: Tue, 13 May 2025 18:33:43 +0200 Subject: [PATCH 1228/1364] autobump: add cookcli Signed-off-by: botantony --- .github/autobump.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/autobump.txt b/.github/autobump.txt index b46020eebc56b..94a2c14e62b6e 100644 --- a/.github/autobump.txt +++ b/.github/autobump.txt @@ -635,6 +635,7 @@ contentful-cli convco convmv convox +cookcli cookiecutter copa copier From c09bcb60ddc7f90aa42ac8f0fc73746c5b010db4 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 17:09:02 +0000 Subject: [PATCH 1229/1364] jenkins 2.510 --- Formula/j/jenkins.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/j/jenkins.rb b/Formula/j/jenkins.rb index b9c8fa658491c..e0f9e93707f12 100644 --- a/Formula/j/jenkins.rb +++ b/Formula/j/jenkins.rb @@ -1,8 +1,8 @@ class Jenkins < Formula desc "Extendable open source continuous integration server" homepage "https://www.jenkins.io/" - url "https://get.jenkins.io/war/2.509/jenkins.war" - sha256 "32c0cb0c9e030cb0472c80ed4e1e4eb252a10fbed59de8c987d6aaba6718b1b2" + url "https://get.jenkins.io/war/2.510/jenkins.war" + sha256 "d927b218f024395fe341cbb7296ee40687ca5e5fba2866284ebf40aa9d1fefec" license "MIT" livecheck do From b6f5458fb0dbfb06c5a7d48b6f5f54848ac0e213 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 17:10:12 +0000 Subject: [PATCH 1230/1364] kew 3.3.2 --- Formula/k/kew.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/k/kew.rb b/Formula/k/kew.rb index a4e6e59816c10..da480c7f5c934 100644 --- a/Formula/k/kew.rb +++ b/Formula/k/kew.rb @@ -1,8 +1,8 @@ class Kew < Formula desc "Command-line music player" homepage "https://github.com/ravachol/kew" - url "https://github.com/ravachol/kew/archive/refs/tags/v3.3.1.tar.gz" - sha256 "3f46a44ed0b3705883692a45068889a9a755d53fa8c8cc2d3489c1f62f44127d" + url "https://github.com/ravachol/kew/archive/refs/tags/v3.3.2.tar.gz" + sha256 "fb9370e78da2861cbae9ebf2b16e77a4fbba964999fd19e311184b50b117a6ca" license "GPL-2.0-only" head "https://github.com/ravachol/kew.git", branch: "main" From bdb7eda53731e6835dbd0c49eda244e000d4fb5e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 17:14:20 +0000 Subject: [PATCH 1231/1364] llama.cpp 5370 --- Formula/l/llama.cpp.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/l/llama.cpp.rb b/Formula/l/llama.cpp.rb index 2fa918c0f5cb0..95566be8f9546 100644 --- a/Formula/l/llama.cpp.rb +++ b/Formula/l/llama.cpp.rb @@ -3,8 +3,8 @@ class LlamaCpp < Formula homepage "https://github.com/ggerganov/llama.cpp" # CMake uses Git to generate version information. url "https://github.com/ggerganov/llama.cpp.git", - tag: "b5360", - revision: "f0d46ef15717cd609a7b69cf6190edde64d466c8" + tag: "b5370", + revision: "71bdbdb58757d508557e6d8b387f666cdfb25c5e" license "MIT" head "https://github.com/ggerganov/llama.cpp.git", branch: "master" From 0cd670b4293aa4475c9994ad726ad022f597b2bc Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 17:15:47 +0000 Subject: [PATCH 1232/1364] mergiraf 0.8.0 --- Formula/m/mergiraf.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/m/mergiraf.rb b/Formula/m/mergiraf.rb index e83424498b60a..0e99be6efb389 100644 --- a/Formula/m/mergiraf.rb +++ b/Formula/m/mergiraf.rb @@ -1,8 +1,8 @@ class Mergiraf < Formula desc "Syntax-aware git merge driver" homepage "https://mergiraf.org" - url "https://codeberg.org/mergiraf/mergiraf/archive/v0.7.0.tar.gz" - sha256 "832be00ee71308c2a5eaa6918933d858e4ff8e062803d8a69a8aa97c361be6a6" + url "https://codeberg.org/mergiraf/mergiraf/archive/v0.8.0.tar.gz" + sha256 "77a7e27c317a60b6babd3fad426b8db648887cc2d48e59dbc62ef1484f673105" license "GPL-3.0-only" head "https://codeberg.org/mergiraf/mergiraf.git", branch: "main" From 1ba056ca9bf7b90ec0e6d56d639b6173ed1b654c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 17:21:38 +0000 Subject: [PATCH 1233/1364] pnpm 10.11.0 --- Formula/p/pnpm.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/p/pnpm.rb b/Formula/p/pnpm.rb index 855a2bceab176..ba52140229d40 100644 --- a/Formula/p/pnpm.rb +++ b/Formula/p/pnpm.rb @@ -1,8 +1,8 @@ class Pnpm < Formula desc "Fast, disk space efficient package manager" homepage "https://pnpm.io/" - url "https://registry.npmjs.org/pnpm/-/pnpm-10.10.0.tgz" - sha256 "fa0f513aa8191764d2b6b432420788c270f07b4f999099b65bb2010eec702a30" + url "https://registry.npmjs.org/pnpm/-/pnpm-10.11.0.tgz" + sha256 "a69e9cb077da419d47d18f1dd52e207245b29cac6e076acedbeb8be3b1a67bd7" license "MIT" livecheck do From 85626ed3803c9946ac2b0adea7c9008ecb34b781 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 17:24:41 +0000 Subject: [PATCH 1234/1364] roxctl 4.7.3 --- Formula/r/roxctl.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/r/roxctl.rb b/Formula/r/roxctl.rb index e19390fa3b889..38e81a07cf27b 100644 --- a/Formula/r/roxctl.rb +++ b/Formula/r/roxctl.rb @@ -1,8 +1,8 @@ class Roxctl < Formula desc "CLI for Stackrox" homepage "https://www.stackrox.io/" - url "https://github.com/stackrox/stackrox/archive/refs/tags/4.7.2.tar.gz" - sha256 "cf810c876d7b0519ce9ea0662c8d42962d95f3f76e995d8c8849460ecf0da34b" + url "https://github.com/stackrox/stackrox/archive/refs/tags/4.7.3.tar.gz" + sha256 "5e6d08b85446d36dbf804cfdd9468b339d78b5e7fee72415be3b233faf775d98" license "Apache-2.0" head "https://github.com/stackrox/stackrox.git", branch: "master" From 162ca947e8eb65dd9cc7bac5f0c6c8be918e4fb1 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 17:28:43 +0000 Subject: [PATCH 1235/1364] dagger: update 0.18.7 bottle. --- Formula/d/dagger.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/d/dagger.rb b/Formula/d/dagger.rb index 127d28de66daf..cd41baa24aedd 100644 --- a/Formula/d/dagger.rb +++ b/Formula/d/dagger.rb @@ -12,12 +12,12 @@ class Dagger < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "c7124a6988af0aedf13a39d8aaf6d8fa10a5a644ff2ee14d18f20afddadd78b6" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "c7124a6988af0aedf13a39d8aaf6d8fa10a5a644ff2ee14d18f20afddadd78b6" - sha256 cellar: :any_skip_relocation, arm64_ventura: "c7124a6988af0aedf13a39d8aaf6d8fa10a5a644ff2ee14d18f20afddadd78b6" - sha256 cellar: :any_skip_relocation, sonoma: "d667ff10d2372c4457e04a351c89bff4e2f5a8ac6fa97d59ec3992b1be6a650d" - sha256 cellar: :any_skip_relocation, ventura: "d667ff10d2372c4457e04a351c89bff4e2f5a8ac6fa97d59ec3992b1be6a650d" - sha256 cellar: :any_skip_relocation, x86_64_linux: "aef399c6a3b01ebe79a724b9e2e33aeb61f3938027975dfbd10b24d6ea699720" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "fb9b11abbdefe398730fe21aff95dd804db971f6a8da09a71d341c9511b90527" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "fb9b11abbdefe398730fe21aff95dd804db971f6a8da09a71d341c9511b90527" + sha256 cellar: :any_skip_relocation, arm64_ventura: "fb9b11abbdefe398730fe21aff95dd804db971f6a8da09a71d341c9511b90527" + sha256 cellar: :any_skip_relocation, sonoma: "23a9f1b0f9696ca5401ebaa196b7058ad05c21261270428fe58298e4225c56ec" + sha256 cellar: :any_skip_relocation, ventura: "23a9f1b0f9696ca5401ebaa196b7058ad05c21261270428fe58298e4225c56ec" + sha256 cellar: :any_skip_relocation, x86_64_linux: "75078eca567e1d99e0332735f5e625c593b90f8b2955942619f5c019822d3f80" end depends_on "go" => :build From 46014aa3bafa37239dd56086262b0219bdcbf0cb Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 17:28:47 +0000 Subject: [PATCH 1236/1364] mesheryctl: update 0.8.80 bottle. --- Formula/m/mesheryctl.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/m/mesheryctl.rb b/Formula/m/mesheryctl.rb index 8b6b069c70363..310699b29c4cf 100644 --- a/Formula/m/mesheryctl.rb +++ b/Formula/m/mesheryctl.rb @@ -10,13 +10,13 @@ class Mesheryctl < Formula no_autobump! because: :bumped_by_upstream bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "8897b97553dc6092355d5d725a77b429322ccc2dc818aca5ac4d122cbd5ccc7a" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "8897b97553dc6092355d5d725a77b429322ccc2dc818aca5ac4d122cbd5ccc7a" - sha256 cellar: :any_skip_relocation, arm64_ventura: "8897b97553dc6092355d5d725a77b429322ccc2dc818aca5ac4d122cbd5ccc7a" - sha256 cellar: :any_skip_relocation, sonoma: "bfc586a1a72e492aa53d3b60347b9f533db6f64ab7ece499ee4e5eef53b816e6" - sha256 cellar: :any_skip_relocation, ventura: "bfc586a1a72e492aa53d3b60347b9f533db6f64ab7ece499ee4e5eef53b816e6" - sha256 cellar: :any_skip_relocation, arm64_linux: "3be9086ca099289b2384e3f33c98957a6525b80ebda8533bb67304e2c52edcf2" - sha256 cellar: :any_skip_relocation, x86_64_linux: "1b503fca9f69785b90550e426aa8d17777e8ae078e8322653de37b53cfcbb35d" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "86c4381cc91ddfcf182bc205801af01579aaf4199562d4a97aad851af177be95" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "86c4381cc91ddfcf182bc205801af01579aaf4199562d4a97aad851af177be95" + sha256 cellar: :any_skip_relocation, arm64_ventura: "86c4381cc91ddfcf182bc205801af01579aaf4199562d4a97aad851af177be95" + sha256 cellar: :any_skip_relocation, sonoma: "649118912642456ef29f25f280c2f35f340c2f36400497c82c06d0ec431472dd" + sha256 cellar: :any_skip_relocation, ventura: "649118912642456ef29f25f280c2f35f340c2f36400497c82c06d0ec431472dd" + sha256 cellar: :any_skip_relocation, arm64_linux: "38bc29ec3550d0c21a328a78e113104476659a9e99bbee685075d5f1897cd063" + sha256 cellar: :any_skip_relocation, x86_64_linux: "d5054426d55f281b16bd512160513923ac16ad7844e3a863c79fcd0cdf55724c" end depends_on "go" => :build From aee76f9a34990091ee0119c90f76a53cdb5ff314 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 17:28:49 +0000 Subject: [PATCH 1237/1364] fern-api: update 0.60.30 bottle. --- Formula/f/fern-api.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/f/fern-api.rb b/Formula/f/fern-api.rb index 772cc488efca3..b754602fd8147 100644 --- a/Formula/f/fern-api.rb +++ b/Formula/f/fern-api.rb @@ -7,7 +7,7 @@ class FernApi < Formula head "https://github.com/fern-api/fern.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, all: "8bafedbe279cbd50fa295639196246835d08d081e31adc64b7da2109a5902923" + sha256 cellar: :any_skip_relocation, all: "9a695969d427195c6a3ae2bc37f728c9ba829cd851b0ba54fda13591a86cf33f" end depends_on "node" From c977ac8fbde272de6f36b721ef4d9dae6f73c224 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 17:28:49 +0000 Subject: [PATCH 1238/1364] git-machete: update 3.35.0 bottle. --- Formula/g/git-machete.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/g/git-machete.rb b/Formula/g/git-machete.rb index dc716881577d5..0a8cea2bda850 100644 --- a/Formula/g/git-machete.rb +++ b/Formula/g/git-machete.rb @@ -8,7 +8,7 @@ class GitMachete < Formula license "MIT" bottle do - sha256 cellar: :any_skip_relocation, all: "927787a2bba17874fb8e41108395f17a620370c99dfab14ced5815c847b1416f" + sha256 cellar: :any_skip_relocation, all: "983dff8968437cf9167387da592ff6ca0adbf4f91e31b9f48aad719d2c34a4ce" end depends_on "python@3.13" From 126982dcb586b01fb9507ddf674a5c6fa69236f7 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 17:30:39 +0000 Subject: [PATCH 1239/1364] tox 4.26.0 --- Formula/t/tox.rb | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/Formula/t/tox.rb b/Formula/t/tox.rb index 58137837397c5..b37eba6c4a2ff 100644 --- a/Formula/t/tox.rb +++ b/Formula/t/tox.rb @@ -3,8 +3,8 @@ class Tox < Formula desc "Generic Python virtualenv management and test command-line tool" homepage "https://tox.wiki/en/latest/" - url "https://files.pythonhosted.org/packages/fe/87/692478f0a194f1cad64803692642bd88c12c5b64eee16bf178e4a32e979c/tox-4.25.0.tar.gz" - sha256 "dd67f030317b80722cf52b246ff42aafd3ed27ddf331c415612d084304cf5e52" + url "https://files.pythonhosted.org/packages/fd/3c/dcec0c00321a107f7f697fd00754c5112572ea6dcacb40b16d8c3eea7c37/tox-4.26.0.tar.gz" + sha256 "a83b3b67b0159fa58e44e646505079e35a43317a62d2ae94725e0586266faeca" license "MIT" bottle do @@ -45,13 +45,13 @@ class Tox < Formula end resource "packaging" do - url "https://files.pythonhosted.org/packages/d0/63/68dbb6eb2de9cb10ee4c9c14a0148804425e13c4fb20d61cce69f53106da/packaging-24.2.tar.gz" - sha256 "c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f" + url "https://files.pythonhosted.org/packages/a1/d4/1fc4078c65507b51b96ca8f8c3ba19e6a61c8253c72794544580a7b6c24d/packaging-25.0.tar.gz" + sha256 "d443872c98d677bf60f6a1f2f8c1cb748e8fe762d2bf9d3148b5599295b0fc4f" end resource "platformdirs" do - url "https://files.pythonhosted.org/packages/b6/2d/7d512a3913d60623e7eb945c6d1b4f0bddf1d0b7ada5225274c87e5b53d1/platformdirs-4.3.7.tar.gz" - sha256 "eb437d586b6a0986388f0d6f74aa0cde27b48d0e3d66843640bfb6bdcdb6e351" + url "https://files.pythonhosted.org/packages/fe/8b/3c73abc9c759ecd3f1f7ceff6685840859e8070c4d947c93fae71f6a0bf2/platformdirs-4.3.8.tar.gz" + sha256 "3d512d96e16bcb959a814c9f348431070822a6496326a4be0911c40b5a74c2bc" end resource "pluggy" do @@ -60,13 +60,13 @@ class Tox < Formula end resource "pyproject-api" do - url "https://files.pythonhosted.org/packages/7e/66/fdc17e94486836eda4ba7113c0db9ac7e2f4eea1b968ee09de2fe75e391b/pyproject_api-1.9.0.tar.gz" - sha256 "7e8a9854b2dfb49454fae421cb86af43efbb2b2454e5646ffb7623540321ae6e" + url "https://files.pythonhosted.org/packages/19/fd/437901c891f58a7b9096511750247535e891d2d5a5a6eefbc9386a2b41d5/pyproject_api-1.9.1.tar.gz" + sha256 "43c9918f49daab37e302038fc1aed54a8c7a91a9fa935d00b9a485f37e0f5335" end resource "virtualenv" do - url "https://files.pythonhosted.org/packages/c7/9c/57d19fa093bcf5ac61a48087dd44d00655f85421d1aa9722f8befbf3f40a/virtualenv-20.29.3.tar.gz" - sha256 "95e39403fcf3940ac45bc717597dba16110b74506131845d9b687d5e73d947ac" + url "https://files.pythonhosted.org/packages/56/2c/444f465fb2c65f40c3a104fd0c495184c4f2336d65baf398e3c75d72ea94/virtualenv-20.31.2.tar.gz" + sha256 "e10c0a9d02835e592521be48b332b6caee6887f332c111aa79a09b9e79efc2af" end def install From 7b5456e6c06321c9ecd394e35ab0b465048d74e6 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 17:32:09 +0000 Subject: [PATCH 1240/1364] vercel-cli 41.7.6 --- Formula/v/vercel-cli.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/v/vercel-cli.rb b/Formula/v/vercel-cli.rb index 8cecab06491b0..f91ab7b033531 100644 --- a/Formula/v/vercel-cli.rb +++ b/Formula/v/vercel-cli.rb @@ -1,8 +1,8 @@ class VercelCli < Formula desc "Command-line interface for Vercel" homepage "https://vercel.com/home" - url "https://registry.npmjs.org/vercel/-/vercel-41.7.4.tgz" - sha256 "4e97f7e7ad953fca34c1e38f21417a9fc3e0725e155511e825e7aa09da51246a" + url "https://registry.npmjs.org/vercel/-/vercel-41.7.6.tgz" + sha256 "af88191ce8ffc4910525913ce9a6d285c596cdd97f114caa6ac2d36beda8c947" license "Apache-2.0" bottle do From 15ac06fa4119d3317e87ec188964f971dba45eac Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 17:34:00 +0000 Subject: [PATCH 1241/1364] jenkins: update 2.510 bottle. --- Formula/j/jenkins.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/j/jenkins.rb b/Formula/j/jenkins.rb index e0f9e93707f12..8a918adad6e1c 100644 --- a/Formula/j/jenkins.rb +++ b/Formula/j/jenkins.rb @@ -11,7 +11,7 @@ class Jenkins < Formula end bottle do - sha256 cellar: :any_skip_relocation, all: "23cd6afa956e3c877ffb1247133ad8c30c4f02e10cdd75ff0b3aa849f94b9bc3" + sha256 cellar: :any_skip_relocation, all: "3b909f98b24ae1acaf23a0a5080bfe0e428ce0bc96632f7fc32b2d72f4f9e78f" end head do From e47eb00c5b77c85dfb5c5fe473bcc15825ef9d01 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 17:34:07 +0000 Subject: [PATCH 1242/1364] xgboost 3.0.1 --- Formula/x/xgboost.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/x/xgboost.rb b/Formula/x/xgboost.rb index eb5e8b1549b0a..efde43aee29b4 100644 --- a/Formula/x/xgboost.rb +++ b/Formula/x/xgboost.rb @@ -1,8 +1,8 @@ class Xgboost < Formula desc "Scalable, Portable and Distributed Gradient Boosting Library" homepage "https://xgboost.ai/" - url "https://github.com/dmlc/xgboost/releases/download/v3.0.0/xgboost-src-3.0.0.tar.gz" - sha256 "431222b47085b9c3504d77ef59cfa23ae4fe9d701085313f47217e49e8823326" + url "https://github.com/dmlc/xgboost/releases/download/v3.0.1/xgboost-src-3.0.1.tar.gz" + sha256 "46e6815fd24dec7e17ed6e9327cc062da098387ee36358e3e0a43fc43939a8b1" license "Apache-2.0" bottle do From fa49c3a4fa7ceafc880174fdb4396d7a86807da8 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 17:36:14 +0000 Subject: [PATCH 1243/1364] kew: update 3.3.2 bottle. --- Formula/k/kew.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/k/kew.rb b/Formula/k/kew.rb index da480c7f5c934..6aaf54defc41e 100644 --- a/Formula/k/kew.rb +++ b/Formula/k/kew.rb @@ -7,13 +7,13 @@ class Kew < Formula head "https://github.com/ravachol/kew.git", branch: "main" bottle do - sha256 cellar: :any, arm64_sequoia: "2ce80a01fc75059293ee66208190d499a52d4f32a8b7e9919f819eb351210b35" - sha256 cellar: :any, arm64_sonoma: "6cfec841b1e60c2aef87aa648a790592010a664fb087ba52d93a0ce46f20681d" - sha256 cellar: :any, arm64_ventura: "ed2272e22450924248a6d9096faa123311b40a22e3eba67656063128e0242288" - sha256 cellar: :any, sonoma: "d4b3f837e58363dd4900b0162826e7eab4f3ad3556dc15c54138be179aae0c8b" - sha256 cellar: :any, ventura: "78fe764681c69279aa1e434f6e44175abe43ec0c28cff50a92d5b3ae6f4ea274" - sha256 cellar: :any_skip_relocation, arm64_linux: "34e56c94bef89398c9621e5ef86fa59bb4562ff7a4e18277cb9574c775145acd" - sha256 cellar: :any_skip_relocation, x86_64_linux: "80c6c483fc263417a274fb886f36fcd01a82dc8f2bd34c2c82ce8402a7e367a1" + sha256 cellar: :any, arm64_sequoia: "bc78f3d99403655dca8757cb5e8e6de8a21290a112843bd342d7cfdf7793ba93" + sha256 cellar: :any, arm64_sonoma: "7305c92588e8a78f5ae84351952dcb21dc39ca35a89052e44f6db3e2a804e630" + sha256 cellar: :any, arm64_ventura: "cd64bf2f2f29e329eb6f3e8a55d3d11ef7c15493707900388924ca911e77df36" + sha256 cellar: :any, sonoma: "219bd573818a01d2fab477890d823c11f196d8b21888ff0c16418a159931d04b" + sha256 cellar: :any, ventura: "3f0696160fa9fcf6fbbc56de1ae1f51859638fdbedb30d73eeb902f4fbbcc353" + sha256 cellar: :any_skip_relocation, arm64_linux: "82081ff98ae1497433c8c234b17475f5301f56e2b03951ab63f7f2119bfae6e7" + sha256 cellar: :any_skip_relocation, x86_64_linux: "822a8fde5ed035a1d31eb4ba714958ec871a3561e3eeac489143f4bbb60c5d76" end depends_on "pkgconf" => :build From 60cb0ab70ff79895bbe82ae7d498c008e2d926b7 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 17:38:16 +0000 Subject: [PATCH 1244/1364] mergiraf: update 0.8.0 bottle. --- Formula/m/mergiraf.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/m/mergiraf.rb b/Formula/m/mergiraf.rb index 0e99be6efb389..c0393add2e9d8 100644 --- a/Formula/m/mergiraf.rb +++ b/Formula/m/mergiraf.rb @@ -7,13 +7,13 @@ class Mergiraf < Formula head "https://codeberg.org/mergiraf/mergiraf.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "bc19668b7d887750161602c4b0fb1edac87722cf0d63667c008005da4e96ae48" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "606c13c8073fd3cf02537018738cf3a2a3f96c27b1928edc46c5c02983444c7d" - sha256 cellar: :any_skip_relocation, arm64_ventura: "4d1a253f74d693eaa4fb12c9d4894c20f1e8af15dd74fec4cb82f6d2ce36e768" - sha256 cellar: :any_skip_relocation, sonoma: "415e7e545c1895bb2889212b3a192f2623f58a42ae2a4702a8939b612b9e0a93" - sha256 cellar: :any_skip_relocation, ventura: "713ffa6a42720004b4b91d7ae0da7ca6ddd016300852913f9387fedb84f92dcd" - sha256 cellar: :any_skip_relocation, arm64_linux: "65bd6d5978813a2c753b434e94b80f9baef2eda669f4a31e6ecb56d16c61ff05" - sha256 cellar: :any_skip_relocation, x86_64_linux: "fae21bedeceb61a35295a1450a6b796988b1a1e68a476dd6ad65440ecd0d67ee" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "8e34612a680493ba907fa4a2cfc3b9999ce9791985c9f6426bab235e50d2fff9" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "e260505c1c1b17533e87550004026f3bf6cc28edb554d42166c32311ab43297a" + sha256 cellar: :any_skip_relocation, arm64_ventura: "c6ecc221c9a95265df64bd1d577091db78ac579b5e53d9ef5f384d70a8502c3e" + sha256 cellar: :any_skip_relocation, sonoma: "df251f754c964da92d4d5b8bb453bf18e5da71780ffea6b82cbd4ee53290bb5f" + sha256 cellar: :any_skip_relocation, ventura: "429c2fdc52a580d90b62698b5f07d000afdee4d9f46ec47f8dac3a5df3455829" + sha256 cellar: :any_skip_relocation, arm64_linux: "9deae7208ea102a840e63e50b04ed3cf80d60b289ac9e7c8bf4d145bc9960c2e" + sha256 cellar: :any_skip_relocation, x86_64_linux: "0ef53a28bf831e9e7d0c0889879010332c814e3ccad29fb4e646dafce77ea620" end depends_on "rust" => :build From 7bcab2a0761bc8dc55d5f5c66e69a500dd33181e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 17:49:53 +0000 Subject: [PATCH 1245/1364] llama.cpp: update 5370 bottle. --- Formula/l/llama.cpp.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/l/llama.cpp.rb b/Formula/l/llama.cpp.rb index 95566be8f9546..47ce6b4f9cba1 100644 --- a/Formula/l/llama.cpp.rb +++ b/Formula/l/llama.cpp.rb @@ -19,13 +19,13 @@ class LlamaCpp < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "2ef25afa747ce9ccb830d004a79bc0f32947eb76e69255109d3d11c406913950" - sha256 cellar: :any, arm64_sonoma: "3af8608bec24f596fd99c8be784533841a7a9af7eab5133a2f081a02932ffbb1" - sha256 cellar: :any, arm64_ventura: "6959e18fb39e1b2f59465fe52c79118e19b2d0a38dfaaed9c4d9ba10e72d9928" - sha256 cellar: :any, sonoma: "e9bac43647cd1f5cb38c8d784bda5c5d7ca0901dd878e4ea8790a040849cb34a" - sha256 cellar: :any, ventura: "711f58ac70305aa70e8b4d808c306fae05c2f9a710d0ddc1164278855a672e49" - sha256 cellar: :any_skip_relocation, arm64_linux: "a3015000e640887956a35d23b88e138163b3f1bae5a6d387847a9ed1da9ad368" - sha256 cellar: :any_skip_relocation, x86_64_linux: "a5129fbd214441ea1c8137ac082a25a5446169e9c78182a309a49f4231f46cde" + sha256 cellar: :any, arm64_sequoia: "b2a1cb851d13cbd526d7156f0f2f6a39a8168a8e83f12c69bfb9305a9e5cc561" + sha256 cellar: :any, arm64_sonoma: "2a78fb962ea04d7828a1dd452fd96a50598c53d2cd35fa4f7d10a1991636826c" + sha256 cellar: :any, arm64_ventura: "2a346d0c409ec9c2d14c6b693f7730e4abf33d489806b956b89e79edecce540a" + sha256 cellar: :any, sonoma: "02f46b4f4049acd09b7b9ce42a8d3bb428c023ef682661c719ff1aded97d8205" + sha256 cellar: :any, ventura: "18d5ec72959ad1d1376314c69c46b28fb65727d1f1f08d7fcb39f92e7818629c" + sha256 cellar: :any_skip_relocation, arm64_linux: "9be67fff1b16b9fefe28b287e03b9086dd9084a5b2afbf81311e15d46b877808" + sha256 cellar: :any_skip_relocation, x86_64_linux: "f622a221251660039b420d71c52beaa42280f20206df73c0b0900ac1cf477a59" end depends_on "cmake" => :build From 59ac581eeaaba387b10eb126df8b4c437edec30e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 17:52:19 +0000 Subject: [PATCH 1246/1364] roxctl: update 4.7.3 bottle. --- Formula/r/roxctl.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/r/roxctl.rb b/Formula/r/roxctl.rb index 38e81a07cf27b..a833cee1e51d5 100644 --- a/Formula/r/roxctl.rb +++ b/Formula/r/roxctl.rb @@ -12,13 +12,13 @@ class Roxctl < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "7fd6fc84cc8911454aa3c80038ef458b7c301e6f12824b8250e35bff687e9af5" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "11bc4fc2c18b5bfacb8422a1abd4b141ebd5f0c5626f2f2fbc637a30c5de9e99" - sha256 cellar: :any_skip_relocation, arm64_ventura: "97fe83918261beb043d43aab66d94e78c6726a7d42c22ba6e7f27e432546ef53" - sha256 cellar: :any_skip_relocation, sonoma: "aa8637b95dd437fa47b3ab98c0042a4648541a5807b830fe32548ab8d11e2075" - sha256 cellar: :any_skip_relocation, ventura: "9a4bde0023cd16c1e9ae65688145cb76a96d1c708dd602e9ffa4c9277ec4f41c" - sha256 cellar: :any_skip_relocation, arm64_linux: "fed2f79484a5547e8e6f097fda87a6fbb7d4f375ea4559a3fe896be5847b2627" - sha256 cellar: :any_skip_relocation, x86_64_linux: "f831de84e06706b3017b5910864e4c33c98527d55f82d33addf13301bc54aabf" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "9ac8c3e8bcd6371dc472620797137d648d7986d912339e6af9c79c35fbf6ffb7" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "6aca654c20b635210618ac9a887df28dd5fca6e38be55dede1510ac2e4734154" + sha256 cellar: :any_skip_relocation, arm64_ventura: "da90686df6007e0ed53981c9e0fa0389e9f8d66bce3669b7b14e28d75f3f36f6" + sha256 cellar: :any_skip_relocation, sonoma: "d9e1a9df31e42688987103592beda1a89fb949d4535a1137ce0ac90eb2713b80" + sha256 cellar: :any_skip_relocation, ventura: "62daa61b24b69c0ae5f898be75fd6065a1c7f7fcfa39adb1c2b306adb4aa314c" + sha256 cellar: :any_skip_relocation, arm64_linux: "ee3ce7e447d322c5f41a54e6cc439f26b7e9d6cb3e3c67ef06c9d4bf1f54c1c0" + sha256 cellar: :any_skip_relocation, x86_64_linux: "0f9e4dad320346264fb4ea364fbf736660a674623e43ec82019f36f5b0c843e3" end depends_on "go" => :build From eaec9cd0aec722a0dc200faea1d0e9cd23c9bab6 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 17:58:37 +0000 Subject: [PATCH 1247/1364] pnpm: update 10.11.0 bottle. --- Formula/p/pnpm.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/p/pnpm.rb b/Formula/p/pnpm.rb index ba52140229d40..555a55d2f1199 100644 --- a/Formula/p/pnpm.rb +++ b/Formula/p/pnpm.rb @@ -13,13 +13,13 @@ class Pnpm < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "2d29d258e3c744f6c4227e5011629fe0f93b6a71d4d4485cfd8b2223da6ab001" - sha256 cellar: :any, arm64_sonoma: "2d29d258e3c744f6c4227e5011629fe0f93b6a71d4d4485cfd8b2223da6ab001" - sha256 cellar: :any, arm64_ventura: "2d29d258e3c744f6c4227e5011629fe0f93b6a71d4d4485cfd8b2223da6ab001" - sha256 cellar: :any, sonoma: "b8f1a95d0c7ae56af113ce2add4a1a220cb97fdc1e17ca3a3a2b8bd0482ed827" - sha256 cellar: :any, ventura: "b8f1a95d0c7ae56af113ce2add4a1a220cb97fdc1e17ca3a3a2b8bd0482ed827" - sha256 cellar: :any_skip_relocation, arm64_linux: "ec7f6f896ae0a98a7d082d787995506a8ea3bd72ba368ae4320cca4d97596e8f" - sha256 cellar: :any_skip_relocation, x86_64_linux: "ec7f6f896ae0a98a7d082d787995506a8ea3bd72ba368ae4320cca4d97596e8f" + sha256 cellar: :any, arm64_sequoia: "991ed869cc2b766673e5cf015c60d4a7a02f15ab5cb5751080c9cbe19f6c05ba" + sha256 cellar: :any, arm64_sonoma: "991ed869cc2b766673e5cf015c60d4a7a02f15ab5cb5751080c9cbe19f6c05ba" + sha256 cellar: :any, arm64_ventura: "991ed869cc2b766673e5cf015c60d4a7a02f15ab5cb5751080c9cbe19f6c05ba" + sha256 cellar: :any, sonoma: "bb8ea180f59e9c1c54daa31fd13fdd25d1236440d6861af734214891f77dcc97" + sha256 cellar: :any, ventura: "bb8ea180f59e9c1c54daa31fd13fdd25d1236440d6861af734214891f77dcc97" + sha256 cellar: :any_skip_relocation, arm64_linux: "885044cafbac9751c1c356228f291f0004bc30947a223823b61e3cedc581c3e1" + sha256 cellar: :any_skip_relocation, x86_64_linux: "885044cafbac9751c1c356228f291f0004bc30947a223823b61e3cedc581c3e1" end depends_on "node" => [:build, :test] From d131d8693b2fdfb20197270a365bc12c7997e6d7 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 18:11:08 +0000 Subject: [PATCH 1248/1364] tox: update 4.26.0 bottle. --- Formula/t/tox.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/t/tox.rb b/Formula/t/tox.rb index b37eba6c4a2ff..ca334efa6cdbd 100644 --- a/Formula/t/tox.rb +++ b/Formula/t/tox.rb @@ -8,13 +8,13 @@ class Tox < Formula license "MIT" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "60fbbd50f127caebbc3fbb689b48bc39ac03e2fc7e1c3bd79990118fd9acabe1" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "60fbbd50f127caebbc3fbb689b48bc39ac03e2fc7e1c3bd79990118fd9acabe1" - sha256 cellar: :any_skip_relocation, arm64_ventura: "60fbbd50f127caebbc3fbb689b48bc39ac03e2fc7e1c3bd79990118fd9acabe1" - sha256 cellar: :any_skip_relocation, sonoma: "dbf0ac4e113cb80fc2f04610f26093f09f32d7d7bd68e4b7cc355c494d524572" - sha256 cellar: :any_skip_relocation, ventura: "dbf0ac4e113cb80fc2f04610f26093f09f32d7d7bd68e4b7cc355c494d524572" - sha256 cellar: :any_skip_relocation, arm64_linux: "6fdf10223ff4cd149b14d0dbdd417078b912480262a43dc5bc04531f1828cc4d" - sha256 cellar: :any_skip_relocation, x86_64_linux: "6fdf10223ff4cd149b14d0dbdd417078b912480262a43dc5bc04531f1828cc4d" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "745eb097b1ceb6793571f913ae515498928ef5d3387dd842a9559012509c3fe0" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "745eb097b1ceb6793571f913ae515498928ef5d3387dd842a9559012509c3fe0" + sha256 cellar: :any_skip_relocation, arm64_ventura: "745eb097b1ceb6793571f913ae515498928ef5d3387dd842a9559012509c3fe0" + sha256 cellar: :any_skip_relocation, sonoma: "2a23254ef16866567119d273b490606682e712724d45b8cca8f54c34507caee2" + sha256 cellar: :any_skip_relocation, ventura: "2a23254ef16866567119d273b490606682e712724d45b8cca8f54c34507caee2" + sha256 cellar: :any_skip_relocation, arm64_linux: "434e5a9bb91fa8bd2a5be477c014aed0c8bbcb805d7a4ae800a8eb1054ecec40" + sha256 cellar: :any_skip_relocation, x86_64_linux: "434e5a9bb91fa8bd2a5be477c014aed0c8bbcb805d7a4ae800a8eb1054ecec40" end depends_on "python@3.13" From c50149a5d417cbf8351d873a88a53ae92982cbed Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 18:11:14 +0000 Subject: [PATCH 1249/1364] xgboost: update 3.0.1 bottle. --- Formula/x/xgboost.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/x/xgboost.rb b/Formula/x/xgboost.rb index efde43aee29b4..bde26297db576 100644 --- a/Formula/x/xgboost.rb +++ b/Formula/x/xgboost.rb @@ -6,13 +6,13 @@ class Xgboost < Formula license "Apache-2.0" bottle do - sha256 cellar: :any, arm64_sequoia: "816bbf526b721b6148e1f45f0847b5f4f3dd5112380a2b8ec51e194ba4967241" - sha256 cellar: :any, arm64_sonoma: "da1936de67d47a562398b23de44450b3478b3cbc4f61ffb143b7cb0d0294993e" - sha256 cellar: :any, arm64_ventura: "171a801dd77c6307080a660c262eab6c23ad348b2cb659ba843f33c0fb0e2d39" - sha256 cellar: :any, sonoma: "7ce28b44718e3415d78bb6ef198241440cd25652e9e710377e493ea1fe8800f7" - sha256 cellar: :any, ventura: "35f94a6e6164a0bb74cba08dfc5cbea5a06f34d0e9d870313fefef4fe2e92733" - sha256 cellar: :any_skip_relocation, arm64_linux: "00c0d77d1d9e588d7f487fbeb676beaf83ab84d6fc39f18f084d56e5151cfaa8" - sha256 cellar: :any_skip_relocation, x86_64_linux: "ce3db74dd3619467a24975aa1bb2d291124f40adbda6c0c653d35a8d42cd6c5c" + sha256 cellar: :any, arm64_sequoia: "f54c01465fa7cd273fb4e3a16bbab055c42d4e17bd9fdbc63f22a0fc33378d7b" + sha256 cellar: :any, arm64_sonoma: "89e1e89aceac1097cdabe6c1e6dbff5c8e8f8b5507f1c7f76d5e7a1969ecb2af" + sha256 cellar: :any, arm64_ventura: "b2e320c5d39b13451d1f2b60507c8e39ce783cfa092ef29a8e40e029fc160edb" + sha256 cellar: :any, sonoma: "24c4a206e034d793a6a6f41d39f65714b9ae515b02c699ce571362db020ef064" + sha256 cellar: :any, ventura: "4e8fedb128abd3b2937123e82ad0794d564c3c5c605da9d4ba6d0fea7acee01e" + sha256 cellar: :any_skip_relocation, arm64_linux: "fcd0ba0ccfb88a2685ee3075b9e63172403158060cf08c9cd986f106796cde52" + sha256 cellar: :any_skip_relocation, x86_64_linux: "4b57b046b244948706780f88732f47e06e813d74510785592edf29c3dd7dcd83" end depends_on "cmake" => :build From 8cd0908aa585260a01fe70c140f5b2f8e3ee9d54 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 18:11:31 +0000 Subject: [PATCH 1250/1364] vercel-cli: update 41.7.6 bottle. --- Formula/v/vercel-cli.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/v/vercel-cli.rb b/Formula/v/vercel-cli.rb index f91ab7b033531..ce2cf4670c563 100644 --- a/Formula/v/vercel-cli.rb +++ b/Formula/v/vercel-cli.rb @@ -6,13 +6,13 @@ class VercelCli < Formula license "Apache-2.0" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "6c15941524330c9e1952288e8c415f2fbafd3fd686cbb47578a0627983f498cf" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "6c15941524330c9e1952288e8c415f2fbafd3fd686cbb47578a0627983f498cf" - sha256 cellar: :any_skip_relocation, arm64_ventura: "6c15941524330c9e1952288e8c415f2fbafd3fd686cbb47578a0627983f498cf" - sha256 cellar: :any_skip_relocation, sonoma: "bb0713c34f4ffba016543b3770f1655440c6f4aa35484ecf8830ed4c677893c8" - sha256 cellar: :any_skip_relocation, ventura: "bb0713c34f4ffba016543b3770f1655440c6f4aa35484ecf8830ed4c677893c8" - sha256 cellar: :any_skip_relocation, arm64_linux: "8dcdc6278d27768cac9c57f7ee5c315f98a96002955a19a26b7248a574eeb457" - sha256 cellar: :any_skip_relocation, x86_64_linux: "5ce6d4bd8d3a9e086669e0ec7416a50e4195f99f97ee3b97f2cb11d1a41963e2" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "c73c2fb67b1924158c41368d83b6f0295952b7d3fad50d18685551793e6bc2e5" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "c73c2fb67b1924158c41368d83b6f0295952b7d3fad50d18685551793e6bc2e5" + sha256 cellar: :any_skip_relocation, arm64_ventura: "c73c2fb67b1924158c41368d83b6f0295952b7d3fad50d18685551793e6bc2e5" + sha256 cellar: :any_skip_relocation, sonoma: "cfeca53145c53fc09c460b17421f392ca54ee81b139f15d4524bd57b2fd7fd30" + sha256 cellar: :any_skip_relocation, ventura: "cfeca53145c53fc09c460b17421f392ca54ee81b139f15d4524bd57b2fd7fd30" + sha256 cellar: :any_skip_relocation, arm64_linux: "dadaec9734d2aaf9058283032512a1c29f34e404387d1d9d00a439dd0d804a47" + sha256 cellar: :any_skip_relocation, x86_64_linux: "ed69cb8cea57a5c9cb7075b4a3f71e2e44350d80f918c0a27193eba45288c4bb" end depends_on "node" From 213eac3164323e49a59007b4fb725ca824ae4f62 Mon Sep 17 00:00:00 2001 From: botantony Date: Tue, 13 May 2025 17:19:49 +0200 Subject: [PATCH 1251/1364] mupdf 1.26.0 --- Formula/m/mupdf.rb | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Formula/m/mupdf.rb b/Formula/m/mupdf.rb index a894634efec23..65f564b82b920 100644 --- a/Formula/m/mupdf.rb +++ b/Formula/m/mupdf.rb @@ -1,8 +1,8 @@ class Mupdf < Formula desc "Lightweight PDF and XPS viewer" homepage "https://mupdf.com/" - url "https://mupdf.com/downloads/archive/mupdf-1.25.6-source.tar.gz" - sha256 "5a51d8bd5ed690d3c8bf82b3c7c3f1cf5f9dde40887a36e3b5aa78a7e3ccd1bb" + url "https://mupdf.com/downloads/archive/mupdf-1.26.0-source.tar.gz" + sha256 "d896f89eabfc5aaaabcdddc30f4592f6df33075640759292dd338d8e69e59c63" license "AGPL-3.0-or-later" head "https://git.ghostscript.com/mupdf.git", branch: "master" @@ -24,6 +24,7 @@ class Mupdf < Formula depends_on "llvm" => :build depends_on "pkgconf" => :build depends_on "swig" => :build + depends_on "brotli" depends_on "freetype" depends_on "gumbo-parser" depends_on "harfbuzz" @@ -38,6 +39,10 @@ class Mupdf < Formula uses_from_macos "zlib" + on_macos do + depends_on "libarchive" + end + on_linux do depends_on "freeglut" depends_on "libx11" @@ -78,6 +83,7 @@ def install ["LEPTONICA", "lept"], ["LIBJPEG", "libjpeg"], ["OPENJPEG", "libopenjp2"], + ["TESSERACT", "tesseract"], ].each do |argname, libname| args << "SYS_#{argname}_CFLAGS=#{Utils.safe_popen_read("pkgconf", "--cflags", libname).strip}" args << "SYS_#{argname}_LIBS=#{Utils.safe_popen_read("pkgconf", "--libs", libname).strip}" From 3d7f6dd10e2b2dc8c211f0b808b6bd074e3eaba0 Mon Sep 17 00:00:00 2001 From: botantony Date: Tue, 13 May 2025 17:19:50 +0200 Subject: [PATCH 1252/1364] mupdf-tools 1.26.0 --- Formula/m/mupdf-tools.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/m/mupdf-tools.rb b/Formula/m/mupdf-tools.rb index 1f326afa36330..7fc6982d1496d 100644 --- a/Formula/m/mupdf-tools.rb +++ b/Formula/m/mupdf-tools.rb @@ -1,8 +1,8 @@ class MupdfTools < Formula desc "Lightweight PDF and XPS viewer" homepage "https://mupdf.com/" - url "https://mupdf.com/downloads/archive/mupdf-1.25.6-source.tar.gz" - sha256 "5a51d8bd5ed690d3c8bf82b3c7c3f1cf5f9dde40887a36e3b5aa78a7e3ccd1bb" + url "https://mupdf.com/downloads/archive/mupdf-1.26.0-source.tar.gz" + sha256 "d896f89eabfc5aaaabcdddc30f4592f6df33075640759292dd338d8e69e59c63" license "AGPL-3.0-or-later" head "https://git.ghostscript.com/mupdf.git", branch: "master" From 4c33250d0c9ea2329a07bfd87d30ee052b2be28a Mon Sep 17 00:00:00 2001 From: botantony Date: Tue, 13 May 2025 17:20:31 +0200 Subject: [PATCH 1253/1364] autobump: add mupdf and mupdf-tools Signed-off-by: botantony --- .github/autobump.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/autobump.txt b/.github/autobump.txt index b46020eebc56b..a1b93792b1c32 100644 --- a/.github/autobump.txt +++ b/.github/autobump.txt @@ -2411,6 +2411,8 @@ multi-gitter multitail muon muparser +mupdf +mupdf-tools murex musikcube mutt From 8716c8e2093bf2349c15182693487c8bd0ea7447 Mon Sep 17 00:00:00 2001 From: botantony Date: Tue, 13 May 2025 19:11:11 +0200 Subject: [PATCH 1254/1364] fancy-cat: revision bump (mupdf 1.26.0) Signed-off-by: botantony --- Formula/f/fancy-cat.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/f/fancy-cat.rb b/Formula/f/fancy-cat.rb index 4d14c5b0fa8ec..7e19c1794b134 100644 --- a/Formula/f/fancy-cat.rb +++ b/Formula/f/fancy-cat.rb @@ -4,7 +4,7 @@ class FancyCat < Formula url "https://github.com/freref/fancy-cat/archive/refs/tags/v0.4.0.tar.gz" sha256 "bce101d5eb009ec9057f7b87f6ad767ee96238abcee8854a9db7febd0229a2bf" license "AGPL-3.0-or-later" - revision 2 + revision 3 bottle do sha256 cellar: :any, arm64_sequoia: "a701bbfd37f493909b68c5f13cc3802c1468eb1b291fb4aa955dd6dd4ee9c82d" From fcde6aa2867c72e034396435f600f4656b707453 Mon Sep 17 00:00:00 2001 From: botantony Date: Tue, 13 May 2025 19:11:24 +0200 Subject: [PATCH 1255/1364] pymupdf: revision bump (mupdf 1.26.0) Signed-off-by: botantony --- Formula/p/pymupdf.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/p/pymupdf.rb b/Formula/p/pymupdf.rb index e2dfe446b9a44..029abd31998ba 100644 --- a/Formula/p/pymupdf.rb +++ b/Formula/p/pymupdf.rb @@ -4,6 +4,7 @@ class Pymupdf < Formula url "https://files.pythonhosted.org/packages/f9/af/3d5d363241b9a74470273cf1534436f13a0a61fc5ef6efd19e5afe9de812/pymupdf-1.25.5.tar.gz" sha256 "5f96311cacd13254c905f6654a004a0a2025b71cabc04fda667f5472f72c15a0" license "AGPL-3.0-only" + revision 1 bottle do sha256 cellar: :any, arm64_sequoia: "3b76825052eaaac7c71e5be853196d5ba19fd98be5885a2e01f69f07dd65ab46" From 7a07aed8b43b83fd76aab02fb131ad6c79100044 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 19:11:29 +0000 Subject: [PATCH 1256/1364] pympress: update 1.8.6 bottle. --- Formula/p/pympress.rb | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Formula/p/pympress.rb b/Formula/p/pympress.rb index a112c04ee639a..97334478d594e 100644 --- a/Formula/p/pympress.rb +++ b/Formula/p/pympress.rb @@ -9,14 +9,13 @@ class Pympress < Formula head "https://github.com/Cimbali/pympress.git", branch: "main" bottle do - rebuild 1 - sha256 cellar: :any_skip_relocation, arm64_sequoia: "f316d72786b317ac5b21e31d01c8cef6127f1f7f7ce6b118daa135c92741c105" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "0505c142b3daa22ce3e5ee1ddd0573e5181a86648a729922024f5fac4e1ab894" - sha256 cellar: :any_skip_relocation, arm64_ventura: "8ce2f60ddac40de33cc031840e04394845868616a0eaa6a745cde325857c432c" - sha256 cellar: :any_skip_relocation, sonoma: "f283e466751b2d7830e51cc7d443e548abf7b3d6f3052f019bf69c579af74760" - sha256 cellar: :any_skip_relocation, ventura: "b64e3e0efbad5aae12e6641c4f50feaac3b59a6904f52a48aa3e88324cd094c6" - sha256 cellar: :any_skip_relocation, arm64_linux: "b1ef86cd9f32e930f359ab3ab6fc5edba54923183a019b36811076d16634da34" - sha256 cellar: :any_skip_relocation, x86_64_linux: "13ab4556e72e88102a4dbac70df1e885a231cf90a0a1ece7e60c9413ff782bec" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "64f35865fbde010d4e3de039977eec6bc1bbe6dabb19fca1f9c3f9da709e1593" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "ad170caf12af4322d5b0f819cdf13616af3d389de0400f157ac7638cce10fcff" + sha256 cellar: :any_skip_relocation, arm64_ventura: "3ec3fed16c5ce89078a32c6b63d2f1c14753463ccfc5ec2a15d2d04f133714fc" + sha256 cellar: :any_skip_relocation, sonoma: "a2674da110b3e8914940e4433d6a2be31235f1ebd87e6511d5365e0fda822b8f" + sha256 cellar: :any_skip_relocation, ventura: "4bddb67288e852dd28024c0f2d850f09f7c26c4becf42aa4701e0e4904579e7e" + sha256 cellar: :any_skip_relocation, arm64_linux: "d0bc4386fb18cdbfb144e8ffb7d532a55eacee02a76540260f5ccda0e7104e06" + sha256 cellar: :any_skip_relocation, x86_64_linux: "d0bc4386fb18cdbfb144e8ffb7d532a55eacee02a76540260f5ccda0e7104e06" end depends_on "gobject-introspection" From d6f7b7e15dcec7619df805d5d94bb957f67468b4 Mon Sep 17 00:00:00 2001 From: botantony Date: Tue, 13 May 2025 21:11:18 +0200 Subject: [PATCH 1257/1364] eleventy 3.1.0 Signed-off-by: botantony --- .github/autobump.txt | 1 + Formula/e/eleventy.rb | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/autobump.txt b/.github/autobump.txt index b46020eebc56b..ebc459820b277 100644 --- a/.github/autobump.txt +++ b/.github/autobump.txt @@ -945,6 +945,7 @@ ejabberd ejdb eksctl elan-init +eleventy elfutils elfx86exts elixir diff --git a/Formula/e/eleventy.rb b/Formula/e/eleventy.rb index 9b8524e0672cd..c3b5264da62e6 100644 --- a/Formula/e/eleventy.rb +++ b/Formula/e/eleventy.rb @@ -1,10 +1,10 @@ class Eleventy < Formula desc "Simpler static site generator" homepage "https://www.11ty.dev" - url "https://registry.npmjs.org/@11ty/eleventy/-/eleventy-3.0.0.tgz" - sha256 "821cd03bbaecf7dd657db6d20e3373e62fc30d78c44828b1334672294f924ec1" + url "https://registry.npmjs.org/@11ty/eleventy/-/eleventy-3.1.0.tgz" + sha256 "8789663b03755a7155e491abfda9a5139c628ab4da4adc1567e118aa7180f07a" license "MIT" - head "https://github.com/11ty/eleventy.git", branch: "master" + head "https://github.com/11ty/eleventy.git", branch: "main" bottle do sha256 cellar: :any_skip_relocation, arm64_sequoia: "402360f36070efe864dfb0667e28d74500204bbf9bb355f119d0b4fe53b6585e" From 5f611a0efea9497f29548dac718156f7aded593f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 17:27:21 +0000 Subject: [PATCH 1258/1364] soci 4.1.1 soci: update build and test Signed-off-by: Rui Chen --- Formula/s/soci.rb | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/Formula/s/soci.rb b/Formula/s/soci.rb index cef423b22b06c..ca572a420da7f 100644 --- a/Formula/s/soci.rb +++ b/Formula/s/soci.rb @@ -1,8 +1,8 @@ class Soci < Formula desc "Database access library for C++" homepage "https://soci.sourceforge.net/" - url "https://downloads.sourceforge.net/project/soci/soci/soci-4.0.3/soci-4.0.3.zip" - sha256 "598abf573252caf71790af5ff15beca20af548440b610e70468edfd3c12d47b0" + url "https://downloads.sourceforge.net/project/soci/soci/soci-4.1.1/soci-4.1.1.zip" + sha256 "b59bc01ec20fd9776cdb071f600acbe66b5a3f3350561abb97f5707649921d9c" license "BSL-1.0" livecheck do @@ -29,15 +29,16 @@ class Soci < Formula depends_on "sqlite" def install - args = %w[ - -DCMAKE_CXX_STANDARD=11 - -DSOCI_TESTS:BOOL=OFF - -DWITH_SQLITE3:BOOL=ON - -DWITH_BOOST:BOOL=OFF - -DWITH_MYSQL:BOOL=OFF - -DWITH_ODBC:BOOL=OFF - -DWITH_ORACLE:BOOL=OFF - -DWITH_POSTGRESQL:BOOL=OFF + args = %W[ + -DCMAKE_CXX_STANDARD=14 + -DSOCI_TESTS=OFF + -DWITH_SQLITE3=ON + -DWITH_BOOST=OFF + -DWITH_MYSQL=OFF + -DWITH_ODBC=OFF + -DWITH_ORACLE=OFF + -DWITH_POSTGRESQL=OFF + -DCMAKE_INSTALL_RPATH=#{rpath} ] system "cmake", "-S", ".", "-B", "build", *args, *std_cmake_args @@ -60,7 +61,7 @@ def install soci::session sql(backEnd, connectString); } CPP - system ENV.cxx, "-o", "test", "test.cxx", "-std=c++11", "-L#{lib}", "-lsoci_core", "-lsoci_empty" + system ENV.cxx, "-o", "test", "test.cxx", "-std=c++14", "-L#{lib}", "-lsoci_core", "-lsoci_empty" system "./test" end end From 21d6129b9593798dad28ad3af5c0ad2dac6330eb Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 19:28:43 +0000 Subject: [PATCH 1259/1364] eleventy: update 3.1.0 bottle. --- Formula/e/eleventy.rb | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/Formula/e/eleventy.rb b/Formula/e/eleventy.rb index c3b5264da62e6..f1c063a52bd94 100644 --- a/Formula/e/eleventy.rb +++ b/Formula/e/eleventy.rb @@ -7,13 +7,7 @@ class Eleventy < Formula head "https://github.com/11ty/eleventy.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "402360f36070efe864dfb0667e28d74500204bbf9bb355f119d0b4fe53b6585e" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "402360f36070efe864dfb0667e28d74500204bbf9bb355f119d0b4fe53b6585e" - sha256 cellar: :any_skip_relocation, arm64_ventura: "402360f36070efe864dfb0667e28d74500204bbf9bb355f119d0b4fe53b6585e" - sha256 cellar: :any_skip_relocation, sonoma: "b66c70dea8df5e3fac4f1801024d57dc533df2d12bdf016983527f12c18700a2" - sha256 cellar: :any_skip_relocation, ventura: "b66c70dea8df5e3fac4f1801024d57dc533df2d12bdf016983527f12c18700a2" - sha256 cellar: :any_skip_relocation, arm64_linux: "3c027b2de87504c8e55ed9bbe9d230c9866076f93654f64e21c935f762aa8485" - sha256 cellar: :any_skip_relocation, x86_64_linux: "402360f36070efe864dfb0667e28d74500204bbf9bb355f119d0b4fe53b6585e" + sha256 cellar: :any_skip_relocation, all: "bd17d0b480dd7ffdcda8420d3fa497e36ec2e47b63ef586b2ebebd53e389c054" end depends_on "node" From fd9055132a481d7272e4e50eeeb8b60fb7f9bf36 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Tue, 13 May 2025 19:31:29 +0000 Subject: [PATCH 1260/1364] harfbuzz: update 11.2.1 bottle. --- Formula/h/harfbuzz.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/h/harfbuzz.rb b/Formula/h/harfbuzz.rb index 6c1ba742ed9e1..bbaf93b1e12a6 100644 --- a/Formula/h/harfbuzz.rb +++ b/Formula/h/harfbuzz.rb @@ -7,13 +7,13 @@ class Harfbuzz < Formula head "https://github.com/harfbuzz/harfbuzz.git", branch: "main" bottle do - sha256 cellar: :any, arm64_sequoia: "546c301c29fc48740f82b9d2202d39ae0ee8e6f835daf1bc6aec6e9503806f7b" - sha256 cellar: :any, arm64_sonoma: "5a69b227896c824e52aa734b0645083da9fd70739cb795e51897d312dbf92f08" - sha256 cellar: :any, arm64_ventura: "b10a408d6ed82ceb154de15010808e2820c8e2f8ebf4baa47908f161e42ff05f" - sha256 cellar: :any, sonoma: "ca9e8cfc6a6d015f817ed688f5ed9a88eaec664cfefc718703623ecfe48f8b4c" - sha256 cellar: :any, ventura: "9eee3faa7b27a93b4d8baa262995213af707fd9fb5575fada010d718b638b7e3" - sha256 arm64_linux: "b5c1731cf04293ff7b8869bdf8ca3f6de4c65f1239a9e6e75b7e95a2093b40c3" - sha256 x86_64_linux: "0aa988712520c9a1b2ea9995c9e6b77ff72b04a2313ee264f68e33f85a3115c0" + sha256 cellar: :any, arm64_sequoia: "c2bfac8d26f33150c1fbe86293113c217b6a452c347a509428f3a7ee4752b956" + sha256 cellar: :any, arm64_sonoma: "509842a43792ef0fac0bc55a0cffd4eb424ae91ea576de4bb58903c787913986" + sha256 cellar: :any, arm64_ventura: "f3f560cff261aaf4d8f6adb7312673d85b4bddec40a1ecad7ee9c618998aa09f" + sha256 cellar: :any, sonoma: "fa2402380d3f6f5f3c9aa13ea3414c49ffba1f7f243ca78a77e761eabd6beb34" + sha256 cellar: :any, ventura: "d61d888fc759b1ed1ee9e1d7b72fc0668425f55979b800823d809efaba8ca112" + sha256 arm64_linux: "b531487da9f408317fcf04ec5101a12b089e52ac85b960a4e76c8800c083a3ed" + sha256 x86_64_linux: "a3c3cee38367d44e713a98a09e117cd831cad5c67fb52fe67d75a81450b9d94a" end depends_on "gobject-introspection" => :build From ed8702814c48be7c88718b05195b1df95f74d53c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 19:49:53 +0000 Subject: [PATCH 1261/1364] awscli 2.27.14 --- Formula/a/awscli.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/a/awscli.rb b/Formula/a/awscli.rb index 6754bba5b70ad..fff238918317a 100644 --- a/Formula/a/awscli.rb +++ b/Formula/a/awscli.rb @@ -3,8 +3,8 @@ class Awscli < Formula desc "Official Amazon AWS command-line interface" homepage "https://aws.amazon.com/cli/" - url "https://github.com/aws/aws-cli/archive/refs/tags/2.27.13.tar.gz" - sha256 "a898d170edb802aa3422da00be1a3ddb31281a381f069ca55ad6c67b71550633" + url "https://github.com/aws/aws-cli/archive/refs/tags/2.27.14.tar.gz" + sha256 "77405496f4c07188b8e1f8b0a367e75d81f88849eef075d6b077cdd31a03ba87" license "Apache-2.0" head "https://github.com/aws/aws-cli.git", branch: "v2" From 05b5615dfe285e1714412e47f10e9e030e8306a4 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 19:53:00 +0000 Subject: [PATCH 1262/1364] code-cli 1.100.1 --- Formula/c/code-cli.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/code-cli.rb b/Formula/c/code-cli.rb index 5a5d836766230..c21ef3f1b9e15 100644 --- a/Formula/c/code-cli.rb +++ b/Formula/c/code-cli.rb @@ -1,8 +1,8 @@ class CodeCli < Formula desc "Command-line interface built-in Visual Studio Code" homepage "https://github.com/microsoft/vscode" - url "https://github.com/microsoft/vscode/archive/refs/tags/1.100.0.tar.gz" - sha256 "b47bb68595466c9182fa5cdcc1d3298486e5f914fd9892cd11ce1a5eb254cea7" + url "https://github.com/microsoft/vscode/archive/refs/tags/1.100.1.tar.gz" + sha256 "628afc21dacd066eccaae5ce1ee71b6b552f035703d825e26aa78528925c4f15" license "MIT" head "https://github.com/microsoft/vscode.git", branch: "main" From b5d0002413aee08f83bdc3b77d5d379ce3a7acde Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 19:56:25 +0000 Subject: [PATCH 1263/1364] dotnet 9.0.5 --- Formula/d/dotnet.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Formula/d/dotnet.rb b/Formula/d/dotnet.rb index 5d7176dae45b7..4dad219b5dfff 100644 --- a/Formula/d/dotnet.rb +++ b/Formula/d/dotnet.rb @@ -7,12 +7,12 @@ class Dotnet < Formula stable do # Source-build tag announced at https://github.com/dotnet/source-build/discussions - url "https://github.com/dotnet/dotnet/archive/refs/tags/v9.0.4.tar.gz" - sha256 "5e698595d2614c41993c4579be09c1304bde57842ad101719873ef67ee3941ad" + url "https://github.com/dotnet/dotnet/archive/refs/tags/v9.0.5.tar.gz" + sha256 "0ff026271b8e21db503284b5cfae8e0546f009d18581497ba754084729dc74c3" resource "release.json" do - url "https://github.com/dotnet/dotnet/releases/download/v9.0.4/release.json" - sha256 "8c3f0005b9c02634d917bfaf07d9ce70c72ba48e84e6d96de4c03d76b304658b" + url "https://github.com/dotnet/dotnet/releases/download/v9.0.5/release.json" + sha256 "36900c37e54d780ade35f2eaeaa9bf2dc1e7789b5d82c6c11a63d0da2853f813" livecheck do formula :parent From 8aedcf084792bf95cdc01d02436c10f24811fc26 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 19:57:24 +0000 Subject: [PATCH 1264/1364] dotnet@8 8.0.16 --- Formula/d/dotnet@8.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Formula/d/dotnet@8.rb b/Formula/d/dotnet@8.rb index 06d0687b21ed5..f347c72fd9846 100644 --- a/Formula/d/dotnet@8.rb +++ b/Formula/d/dotnet@8.rb @@ -2,8 +2,8 @@ class DotnetAT8 < Formula desc ".NET Core" homepage "https://dotnet.microsoft.com/" # Source-build tag announced at https://github.com/dotnet/source-build/discussions - url "https://github.com/dotnet/dotnet/archive/refs/tags/v8.0.15.tar.gz" - sha256 "b5a609cc4b77212d1f29f2ce06f579ec6ae9ba64b0ff6d38f828dd459016652b" + url "https://github.com/dotnet/dotnet/archive/refs/tags/v8.0.16.tar.gz" + sha256 "a722ead5ff5f7635a99920a22fc0665370d443db6469fc06ce7634e200ef9790" license "MIT" livecheck do @@ -44,8 +44,8 @@ class DotnetAT8 < Formula end resource "release.json" do - url "https://github.com/dotnet/dotnet/releases/download/v8.0.15/release.json" - sha256 "5aa2b801041b3f688b4685e05948ce0230e117c0b7f7c9f543cb1fdf7cca25fb" + url "https://github.com/dotnet/dotnet/releases/download/v8.0.16/release.json" + sha256 "3d85b5918a91afe65c64c53af3c9a7d3ff4ff72ea7dcdf70f552c0512d1d9c43" livecheck do formula :parent From e504528ebd62770aac8a6ec9a2c3f08a5005d424 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 19:58:56 +0000 Subject: [PATCH 1265/1364] fern-api 0.60.31 --- Formula/f/fern-api.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/f/fern-api.rb b/Formula/f/fern-api.rb index b754602fd8147..9d3c58dff9ddd 100644 --- a/Formula/f/fern-api.rb +++ b/Formula/f/fern-api.rb @@ -1,8 +1,8 @@ class FernApi < Formula desc "Stripe-level SDKs and Docs for your API" homepage "https://buildwithfern.com/" - url "https://registry.npmjs.org/fern-api/-/fern-api-0.60.30.tgz" - sha256 "f6e5808391a5386954f9a603e0b6f768ecd97f1a37aaf133733f3d4891bd391b" + url "https://registry.npmjs.org/fern-api/-/fern-api-0.60.31.tgz" + sha256 "2b3eb15b69c835c8fa845ce8ccd9d8323b52f743acd130df3ea00cd8612de80d" license "Apache-2.0" head "https://github.com/fern-api/fern.git", branch: "main" From 2c548e84993522bc33a08080b65a6a3016dbd207 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 19:59:28 +0000 Subject: [PATCH 1266/1364] flyctl 0.3.121 --- Formula/f/flyctl.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/f/flyctl.rb b/Formula/f/flyctl.rb index ce97c2d9002e1..31e46107eeca0 100644 --- a/Formula/f/flyctl.rb +++ b/Formula/f/flyctl.rb @@ -2,8 +2,8 @@ class Flyctl < Formula desc "Command-line tools for fly.io services" homepage "https://fly.io" url "https://github.com/superfly/flyctl.git", - tag: "v0.3.120", - revision: "498db94b9b6a33511096494e4d5b29ed4684d3c0" + tag: "v0.3.121", + revision: "f2cfb3cf266e4209e40e36716cd2cf74c3b660d7" license "Apache-2.0" head "https://github.com/superfly/flyctl.git", branch: "master" From 4891705e65fb038a83d7008df0ec666a1f71d61a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 20:06:34 +0000 Subject: [PATCH 1267/1364] livekit-cli 2.4.9 --- Formula/l/livekit-cli.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/l/livekit-cli.rb b/Formula/l/livekit-cli.rb index acb41cb3f07ba..c1e377dfc01d5 100644 --- a/Formula/l/livekit-cli.rb +++ b/Formula/l/livekit-cli.rb @@ -1,8 +1,8 @@ class LivekitCli < Formula desc "Command-line interface to LiveKit" homepage "https://livekit.io" - url "https://github.com/livekit/livekit-cli/archive/refs/tags/v2.4.8.tar.gz" - sha256 "524d2dec529272e05832d0a842973ed7a3e3b4ee1d80bb9d9f1a3e3614979551" + url "https://github.com/livekit/livekit-cli/archive/refs/tags/v2.4.9.tar.gz" + sha256 "92d017478f4b95e2756ed6292932a2668ac027c0bef7a0748d72192cbd48a9cf" license "Apache-2.0" head "https://github.com/livekit/livekit-cli.git", branch: "main" From 22ece43e019ed6870c5656f69926a424b9ab54d4 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 20:07:34 +0000 Subject: [PATCH 1268/1364] melange 0.24.0 --- Formula/m/melange.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/m/melange.rb b/Formula/m/melange.rb index 598dc799a938f..ad8891e1af8bd 100644 --- a/Formula/m/melange.rb +++ b/Formula/m/melange.rb @@ -1,8 +1,8 @@ class Melange < Formula desc "Build APKs from source code" homepage "https://github.com/chainguard-dev/melange" - url "https://github.com/chainguard-dev/melange/archive/refs/tags/v0.23.17.tar.gz" - sha256 "af7cfcc8a88803d2f4c4a51d910e58aa76eb573eb380cefcc7473e80ec28308e" + url "https://github.com/chainguard-dev/melange/archive/refs/tags/v0.24.0.tar.gz" + sha256 "b1e90f2d90ddf1c1e83f0ac6096e317e46805adf513bdfa48f62b79ef437c539" license "Apache-2.0" head "https://github.com/chainguard-dev/melange.git", branch: "main" From f4473c646a61ed10d350ae53acf127eb8711b8d8 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 20:07:54 +0000 Subject: [PATCH 1269/1364] metabase 0.54.7 --- Formula/m/metabase.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/m/metabase.rb b/Formula/m/metabase.rb index 9c335976aa677..04e6ad353e539 100644 --- a/Formula/m/metabase.rb +++ b/Formula/m/metabase.rb @@ -1,8 +1,8 @@ class Metabase < Formula desc "Business intelligence report server" homepage "https://www.metabase.com/" - url "https://downloads.metabase.com/v0.54.6/metabase.jar" - sha256 "0c72f1640f28edf829633f6a0123c46899478d8e6bd04cc9a072fd2f574a1571" + url "https://downloads.metabase.com/v0.54.7/metabase.jar" + sha256 "63257bf260a91f7bbe4d3074ac703b8aae61bb9f0fab54429b236ca58c2db650" license "AGPL-3.0-only" livecheck do From ccd3e53d61ce5ebe022433432ff3ddd3fea38eb5 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 20:08:36 +0000 Subject: [PATCH 1270/1364] moon 1.35.7 --- Formula/m/moon.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/m/moon.rb b/Formula/m/moon.rb index bfb09b610a852..4d2edaf860406 100644 --- a/Formula/m/moon.rb +++ b/Formula/m/moon.rb @@ -1,8 +1,8 @@ class Moon < Formula desc "Task runner and repo management tool for the web ecosystem, written in Rust" homepage "https://moonrepo.dev/moon" - url "https://github.com/moonrepo/moon/archive/refs/tags/v1.35.6.tar.gz" - sha256 "ad358f73812f35080cd5e9b4c3bac07972a67309cb7dde2fe7ea1a2e07392dd4" + url "https://github.com/moonrepo/moon/archive/refs/tags/v1.35.7.tar.gz" + sha256 "096ebf70acac0331b4083ba8d9e62388cd1c411936faed45df366e4766180638" license "MIT" head "https://github.com/moonrepo/moon.git", branch: "master" From dd1b771de83cddabe875b4e2ad4f69d2e5d580f5 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 20:12:15 +0000 Subject: [PATCH 1271/1364] pocketbase 0.28.1 --- Formula/p/pocketbase.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/p/pocketbase.rb b/Formula/p/pocketbase.rb index 164a9b4a20eac..dc05fc41682d1 100644 --- a/Formula/p/pocketbase.rb +++ b/Formula/p/pocketbase.rb @@ -1,8 +1,8 @@ class Pocketbase < Formula desc "Open source backend for your next project in 1 file" homepage "https://pocketbase.io/" - url "https://github.com/pocketbase/pocketbase/archive/refs/tags/v0.28.0.tar.gz" - sha256 "3d17eb510f3d700a10b02fc4a6bacbe063b06e9241f30b036fec346b8d2e2923" + url "https://github.com/pocketbase/pocketbase/archive/refs/tags/v0.28.1.tar.gz" + sha256 "27a162a62f547b786b12d16813948473c67da201df4d367982f4d7fc4bda6f4b" license "MIT" bottle do From 19e375411efd171609c24df4e30c6a9f69da0616 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 20:14:38 +0000 Subject: [PATCH 1272/1364] rover 0.30.0 --- Formula/r/rover.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/r/rover.rb b/Formula/r/rover.rb index da2c7fce5ace2..75f0dfb15abcf 100644 --- a/Formula/r/rover.rb +++ b/Formula/r/rover.rb @@ -1,8 +1,8 @@ class Rover < Formula desc "CLI for managing and maintaining data graphs with Apollo Studio" homepage "https://www.apollographql.com/docs/rover/" - url "https://github.com/apollographql/rover/archive/refs/tags/v0.29.1.tar.gz" - sha256 "985010623436bb3b6e6828f9ef2b005cdb962fb6f32db4a29fd91e3cf3143a07" + url "https://github.com/apollographql/rover/archive/refs/tags/v0.30.0.tar.gz" + sha256 "009e40675a057dceed38f9c80da63a4b1c73377345fc1eb74aff97d814532a1e" license "MIT" head "https://github.com/apollographql/rover.git", branch: "main" From 7e5794ffec9787b8682d588cbd106dd07cff6b28 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 20:21:25 +0000 Subject: [PATCH 1273/1364] wstunnel 10.3.0 --- Formula/w/wstunnel.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/w/wstunnel.rb b/Formula/w/wstunnel.rb index 143138d14cac7..72d28b4135b9d 100644 --- a/Formula/w/wstunnel.rb +++ b/Formula/w/wstunnel.rb @@ -1,8 +1,8 @@ class Wstunnel < Formula desc "Tunnel all your traffic over Websocket or HTTP2" homepage "https://github.com/erebe/wstunnel" - url "https://github.com/erebe/wstunnel/archive/refs/tags/v10.2.0.tar.gz" - sha256 "e5b29465c447c110e4f7d2c1e99a9e6e883f2ddaf6373459d1008607811e637d" + url "https://github.com/erebe/wstunnel/archive/refs/tags/v10.3.0.tar.gz" + sha256 "ede8dfb23fbab3ed5090a256ea79290c036b04e3312b8ad487d47bc5e71ff570" license "BSD-3-Clause" head "https://github.com/erebe/wstunnel.git", branch: "main" From 9fde6176864412fb8dbb84b619cf869fdca8fbdb Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 20:22:12 +0000 Subject: [PATCH 1274/1364] yoke 0.12.7 --- Formula/y/yoke.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/y/yoke.rb b/Formula/y/yoke.rb index 5c1e0389ba71f..88bf12ab4c397 100644 --- a/Formula/y/yoke.rb +++ b/Formula/y/yoke.rb @@ -3,8 +3,8 @@ class Yoke < Formula homepage "https://yokecd.github.io/docs/" # We use a git checkout since the build relies on tags for the version url "https://github.com/yokecd/yoke.git", - tag: "v0.12.6", - revision: "494c01f52f1622d5f023085b64585fcf6cf61bbf" + tag: "v0.12.7", + revision: "16303ef5ec0ef6f0b8757cfb5b730f95ba2f33b1" license "MIT" head "https://github.com/yokecd/yoke.git", branch: "main" From 3e9d24c10f89efc8bc178430f46b34c28cbd00b3 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 20:22:25 +0000 Subject: [PATCH 1275/1364] yyjson 0.11.1 --- Formula/y/yyjson.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/y/yyjson.rb b/Formula/y/yyjson.rb index 32da3d4d6a52a..9a4713d061f26 100644 --- a/Formula/y/yyjson.rb +++ b/Formula/y/yyjson.rb @@ -1,8 +1,8 @@ class Yyjson < Formula desc "High performance JSON library written in ANSI C" homepage "https://github.com/ibireme/yyjson" - url "https://github.com/ibireme/yyjson/archive/refs/tags/0.11.0.tar.gz" - sha256 "0cc453318ff299ab61ec233b5b92dd474dee39028ad77904b19a45a79651574e" + url "https://github.com/ibireme/yyjson/archive/refs/tags/0.11.1.tar.gz" + sha256 "610a38a5e59192063f5f581ce0c3c1869971c458ea11b58dfe00d1c8269e255d" license "MIT" head "https://github.com/ibireme/yyjson.git", branch: "master" From f79029cf117e8b50ccd556c832ac13e2f0edc40c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 20:36:17 +0000 Subject: [PATCH 1276/1364] melange: update 0.24.0 bottle. --- Formula/m/melange.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/m/melange.rb b/Formula/m/melange.rb index ad8891e1af8bd..8df5493bd280b 100644 --- a/Formula/m/melange.rb +++ b/Formula/m/melange.rb @@ -12,12 +12,12 @@ class Melange < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "01ddfe0b6df070f71df65ca6c0f0fa8fa0829e0c0cd5846d8c6948705e6d1538" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "e951846ea50121a10eb5d6694878bfb3d41a7f6102d2469026281a43eb40ce6b" - sha256 cellar: :any_skip_relocation, arm64_ventura: "0dde179ad7c0f66fa8a649ebbddef1799ea07c24e6da7ee811b7e4eabe4b7245" - sha256 cellar: :any_skip_relocation, sonoma: "60e5f4bfa0c114df394375073c4a9fe96ae213b8d102a483bcb63c510c734c95" - sha256 cellar: :any_skip_relocation, ventura: "b50714ee5644c4c370a0a428edd046166543e134647de29756988878a7e62bd3" - sha256 cellar: :any_skip_relocation, x86_64_linux: "3e21bde3386058f476fa437f47d5f0be70bf69ea41d569b4b8f7bcf232b6ca46" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "673d0096592665ee9a81f1e23b663ed3a9c11b5c86d52388d0923f4014260e15" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "7193723e019f909885528dd0fd5b4133723488f3d185db5c43b61447bde79681" + sha256 cellar: :any_skip_relocation, arm64_ventura: "f4503730af611a59a27e0e0bc9133ff5a8aefa471c53a60d5ef2b1bb146eaba3" + sha256 cellar: :any_skip_relocation, sonoma: "8eb09a9a306083a3483d3b3347abb77d7daed89cb376a8e71e3699278df9782f" + sha256 cellar: :any_skip_relocation, ventura: "d048d7e294a3a37fa576f61872005d4cef38b9502875e67d53d90b84f8aafc73" + sha256 cellar: :any_skip_relocation, x86_64_linux: "2ba4b36f2246a47ebb2bbf2fe5e87a5fed3c58ba8a825753ce1ef1bd23d3556e" end depends_on "go" => :build From 96ec1a2805ac62146cf4e86a0d9d3e11c461a444 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 20:52:24 +0000 Subject: [PATCH 1277/1364] pocketbase: update 0.28.1 bottle. --- Formula/p/pocketbase.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/p/pocketbase.rb b/Formula/p/pocketbase.rb index dc05fc41682d1..c4808d7d9983e 100644 --- a/Formula/p/pocketbase.rb +++ b/Formula/p/pocketbase.rb @@ -6,13 +6,13 @@ class Pocketbase < Formula license "MIT" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "7dd2a8a13e2299964fd85ef8f7a46d636032517c49c582cfa8dd42a9d2f2b8b5" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "7dd2a8a13e2299964fd85ef8f7a46d636032517c49c582cfa8dd42a9d2f2b8b5" - sha256 cellar: :any_skip_relocation, arm64_ventura: "7dd2a8a13e2299964fd85ef8f7a46d636032517c49c582cfa8dd42a9d2f2b8b5" - sha256 cellar: :any_skip_relocation, sonoma: "92bcf76893094c36c4cc7242bacbf749aa6aa882f0fe372e73df53e4ab00a5bc" - sha256 cellar: :any_skip_relocation, ventura: "92bcf76893094c36c4cc7242bacbf749aa6aa882f0fe372e73df53e4ab00a5bc" - sha256 cellar: :any_skip_relocation, arm64_linux: "b4112eefb4b85aba9ca152d656aa1771e69dd8fe68a3af9930349711b35db7ae" - sha256 cellar: :any_skip_relocation, x86_64_linux: "e94499c36a9e54394f52ce5640c986edcbbb100c869a9c1b55c8fc3ad71e835c" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "2fa8308cf24cadfb6c185a18cfe318e2ca03fc7f46960606ef90a7d62c2fbaf5" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "2fa8308cf24cadfb6c185a18cfe318e2ca03fc7f46960606ef90a7d62c2fbaf5" + sha256 cellar: :any_skip_relocation, arm64_ventura: "2fa8308cf24cadfb6c185a18cfe318e2ca03fc7f46960606ef90a7d62c2fbaf5" + sha256 cellar: :any_skip_relocation, sonoma: "57ef31113ba7513a9ba22737c579e4dbd0d390a5e858172950c0f6ba3117f67f" + sha256 cellar: :any_skip_relocation, ventura: "57ef31113ba7513a9ba22737c579e4dbd0d390a5e858172950c0f6ba3117f67f" + sha256 cellar: :any_skip_relocation, arm64_linux: "9e741fbb3e07adeb307aa6a0912575091166b8fd4957249872bc8108fcd1634c" + sha256 cellar: :any_skip_relocation, x86_64_linux: "6ed0509aede1a79739508551e7871b0ca839e6d2f82f23c40c981d5d45e32d40" end depends_on "go" => :build From 0724d04505abdc4a75dd69a3b73798697d9e5dc8 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 20:52:34 +0000 Subject: [PATCH 1278/1364] fern-api: update 0.60.31 bottle. --- Formula/f/fern-api.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/f/fern-api.rb b/Formula/f/fern-api.rb index 9d3c58dff9ddd..c09e7035948bf 100644 --- a/Formula/f/fern-api.rb +++ b/Formula/f/fern-api.rb @@ -7,7 +7,7 @@ class FernApi < Formula head "https://github.com/fern-api/fern.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, all: "9a695969d427195c6a3ae2bc37f728c9ba829cd851b0ba54fda13591a86cf33f" + sha256 cellar: :any_skip_relocation, all: "a63fcfa985d3a35f9dd8319556f7787b17cbe8fe14df67b16589c0a45f661204" end depends_on "node" From d83ea38f7f4f51884977571c69e0bf30d7d33f90 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 20:52:36 +0000 Subject: [PATCH 1279/1364] livekit-cli: update 2.4.9 bottle. --- Formula/l/livekit-cli.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/l/livekit-cli.rb b/Formula/l/livekit-cli.rb index c1e377dfc01d5..508304062a2f0 100644 --- a/Formula/l/livekit-cli.rb +++ b/Formula/l/livekit-cli.rb @@ -7,12 +7,12 @@ class LivekitCli < Formula head "https://github.com/livekit/livekit-cli.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "7151806bfd86d58dc49ebf079e3da137ae15e827c3254996187927ea5096aa6c" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "7151806bfd86d58dc49ebf079e3da137ae15e827c3254996187927ea5096aa6c" - sha256 cellar: :any_skip_relocation, arm64_ventura: "7151806bfd86d58dc49ebf079e3da137ae15e827c3254996187927ea5096aa6c" - sha256 cellar: :any_skip_relocation, sonoma: "d2f49164076745bc6ea192975f98cabe3298312af5bd22acbb0f015b3a05ad91" - sha256 cellar: :any_skip_relocation, ventura: "d2f49164076745bc6ea192975f98cabe3298312af5bd22acbb0f015b3a05ad91" - sha256 cellar: :any_skip_relocation, x86_64_linux: "f8580d4423a8586bdfec8193aa3d65896ac516d867fb6101e348200ae208f407" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "2b571a9f3b3e7c4d4eac1eeaf9486ba6b3ff558d717b01bcc722deec829e75cd" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "2b571a9f3b3e7c4d4eac1eeaf9486ba6b3ff558d717b01bcc722deec829e75cd" + sha256 cellar: :any_skip_relocation, arm64_ventura: "2b571a9f3b3e7c4d4eac1eeaf9486ba6b3ff558d717b01bcc722deec829e75cd" + sha256 cellar: :any_skip_relocation, sonoma: "84040615d95c96e1cae68405db375adbd2601131312d0c6e5b5cfbad82e099f8" + sha256 cellar: :any_skip_relocation, ventura: "84040615d95c96e1cae68405db375adbd2601131312d0c6e5b5cfbad82e099f8" + sha256 cellar: :any_skip_relocation, x86_64_linux: "2e3b830b1ec80a6e37c241810cfbb1c0d4e10201952ed43e372c2871c6a644eb" end depends_on "go" => :build From 42ba104cc5b12e25f1ab85de7151f2826537ab41 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 20:55:14 +0000 Subject: [PATCH 1280/1364] flyctl: update 0.3.121 bottle. --- Formula/f/flyctl.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/f/flyctl.rb b/Formula/f/flyctl.rb index 31e46107eeca0..86d0f307dd46c 100644 --- a/Formula/f/flyctl.rb +++ b/Formula/f/flyctl.rb @@ -18,13 +18,13 @@ class Flyctl < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "adf9d14e623e76673c4f40283cc680a415eeac6cb8916fa21c385798a1876f92" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "adf9d14e623e76673c4f40283cc680a415eeac6cb8916fa21c385798a1876f92" - sha256 cellar: :any_skip_relocation, arm64_ventura: "adf9d14e623e76673c4f40283cc680a415eeac6cb8916fa21c385798a1876f92" - sha256 cellar: :any_skip_relocation, sonoma: "ec44f2115cfe3af942f886363ebac48ee0e7250378731ffdfbd675c6be17dde2" - sha256 cellar: :any_skip_relocation, ventura: "ec44f2115cfe3af942f886363ebac48ee0e7250378731ffdfbd675c6be17dde2" - sha256 cellar: :any_skip_relocation, arm64_linux: "f27a9b5e39f1929517522a894446035d4a2da86e40d09896a5d628784ed4b146" - sha256 cellar: :any_skip_relocation, x86_64_linux: "42c6393bd8a6b8feab8ef64e7fd5b69fd18ecb9998b64e239ef515318cce9b05" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "305339a5488b10f497e89d1d73b4f2b76ec2c0afe4e47e6c4e8bfe622700e8a1" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "305339a5488b10f497e89d1d73b4f2b76ec2c0afe4e47e6c4e8bfe622700e8a1" + sha256 cellar: :any_skip_relocation, arm64_ventura: "305339a5488b10f497e89d1d73b4f2b76ec2c0afe4e47e6c4e8bfe622700e8a1" + sha256 cellar: :any_skip_relocation, sonoma: "70f8e035756a0f94a0d497ee0413ce2f86cc9b064a94b1b8be73a1f1fc05d29b" + sha256 cellar: :any_skip_relocation, ventura: "70f8e035756a0f94a0d497ee0413ce2f86cc9b064a94b1b8be73a1f1fc05d29b" + sha256 cellar: :any_skip_relocation, arm64_linux: "be3174b773e417733b732e42300ebbbf316ae9e4952d74c18f275cd4fe099374" + sha256 cellar: :any_skip_relocation, x86_64_linux: "9e342167e0961b5ee72f630a70136e4cb2a979fefc53a073d9c0275dee438116" end depends_on "go" => :build From 3c7936963ad886b4d5b6eddcc2e3a570e7ca99b5 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 20:55:35 +0000 Subject: [PATCH 1281/1364] code-cli: update 1.100.1 bottle. --- Formula/c/code-cli.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/code-cli.rb b/Formula/c/code-cli.rb index c21ef3f1b9e15..6ca684f9d10eb 100644 --- a/Formula/c/code-cli.rb +++ b/Formula/c/code-cli.rb @@ -12,13 +12,13 @@ class CodeCli < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "355728f3d3379f1534014b67e1ba47ab496ace391dff6c65020892fc86c78094" - sha256 cellar: :any, arm64_sonoma: "cbbed511508b65c761cfc12528799b009b5def747f4944a2dfc317fbe7fa18ec" - sha256 cellar: :any, arm64_ventura: "bc0416e85118eb7b717a32e6a5ecc77aae41a437f5ec6a8c8dccc92b271c4237" - sha256 cellar: :any, sonoma: "a961e0e1a5be991520bd04cc415c4fa143f306637f070a8175203897567312f0" - sha256 cellar: :any, ventura: "7ec64ccc1057679b9fe6f6f6f67da7d93dffe61baf27e499ac28595593ad7db6" - sha256 cellar: :any_skip_relocation, arm64_linux: "9a75053b6d3e4f9e9a91a9bb5289222c0433231465d40d5b4a2ffdd16ada7a02" - sha256 cellar: :any_skip_relocation, x86_64_linux: "0c1293e84cfc4b199a3972ebab27f3ef70e21c19b69b9050218ab46c42e0a97d" + sha256 cellar: :any, arm64_sequoia: "830fed57abed8a8dbe2b353f3cd673d58ceba17e77434576cab5f680ad064b92" + sha256 cellar: :any, arm64_sonoma: "9f91c9da76ec67ffe29e039cd0efc496ac5ed13edd5a6f2e083d29106049989d" + sha256 cellar: :any, arm64_ventura: "928f1125da46c3f3b76126e3fb9184605feb9f461975f01f8649c907d686c467" + sha256 cellar: :any, sonoma: "96dda0be2a0b234be4a4a51dcbaf39b1311d4fdc7678862e72746eb1beab170a" + sha256 cellar: :any, ventura: "6742d8b09388df1ebd02b87e3a41376083a9256496588b99adb2a3549553c687" + sha256 cellar: :any_skip_relocation, arm64_linux: "d4ef659e84605e21504eba8b1a8914336b4a6dc721e79609783f99a168506be8" + sha256 cellar: :any_skip_relocation, x86_64_linux: "3efd6261e86f2c741bb835d0544845625a881fcd23cbc9a66cdfb9be739d0106" end depends_on "rust" => :build From c4e01ce76ac4780ee974945db985a7068495aefa Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 20:56:31 +0000 Subject: [PATCH 1282/1364] metabase: update 0.54.7 bottle. --- Formula/m/metabase.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/m/metabase.rb b/Formula/m/metabase.rb index 04e6ad353e539..5cc6c76784747 100644 --- a/Formula/m/metabase.rb +++ b/Formula/m/metabase.rb @@ -11,7 +11,7 @@ class Metabase < Formula end bottle do - sha256 cellar: :any_skip_relocation, all: "537723ebfe4e4819a38f6bd0ea7bf22067327673b01395a2672c98f7bcecf9ce" + sha256 cellar: :any_skip_relocation, all: "dfae765818ce9476eddf330c00696ab7de20b6292cb9ad0b9427c7bc9bb13c33" end head do From a7acc4602e69722d16d9047af7a0cea5445318aa Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 20:58:57 +0000 Subject: [PATCH 1283/1364] yoke: update 0.12.7 bottle. --- Formula/y/yoke.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/y/yoke.rb b/Formula/y/yoke.rb index 88bf12ab4c397..9f933739be9e2 100644 --- a/Formula/y/yoke.rb +++ b/Formula/y/yoke.rb @@ -9,13 +9,13 @@ class Yoke < Formula head "https://github.com/yokecd/yoke.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "13cdbe69c990a2ea0ee2720b9f8da7be2e6dd9ee283d31213e21e486fa64dd41" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "2ccddf3eb119f8c108496c655f351f5f3dd594bff7095b80338367528f0a7340" - sha256 cellar: :any_skip_relocation, arm64_ventura: "eccb101d4515957ede2060416582489a68280c307bec7a7b94f33e1c04f7b510" - sha256 cellar: :any_skip_relocation, sonoma: "7d9bda3438f119f5da84c9b6df9bbb02523024c8c0d71102c3a01e732e767a59" - sha256 cellar: :any_skip_relocation, ventura: "ad326c0ee2d251634043443d1ebf3e51d90971384206002957a4ebae7dcf0f83" - sha256 cellar: :any_skip_relocation, arm64_linux: "188ed5506dc85459a8d22eaea18982ba147f2419dc559151fe4ab47b2bfd5a0e" - sha256 cellar: :any_skip_relocation, x86_64_linux: "55b73893d6fc650ce7b5349ebaa7a48b1648109cc0438e39382882bb7fb0b302" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "3afd21ea1cb4562da21d5119970b026d36312c1c1e48261d7f78249d368fba49" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "473182ec76837e592bcbb8ed32aea8bf5df4df79355e77626094ceec5933e804" + sha256 cellar: :any_skip_relocation, arm64_ventura: "290cf8e60f8707c230e6c00d81b4ffea7e71b8d69e7fb0f9e71b79031df18bb8" + sha256 cellar: :any_skip_relocation, sonoma: "c6cf62088b2fa5862e510f8414951eb985a7bc01b33849fe1550cd2f49d60d0b" + sha256 cellar: :any_skip_relocation, ventura: "b28b38152f5c7180bb72cf27b68ef93deda2753796f8cb732af92728a928fe03" + sha256 cellar: :any_skip_relocation, arm64_linux: "af09c6f6977f11733f687f068feac6aaf67a6c0b97b0ed847734ba58730a5a9d" + sha256 cellar: :any_skip_relocation, x86_64_linux: "0de857cdd1495526c741dc316eb0ef26899b86d70db636bf60e2ae07b38e9c87" end depends_on "go" => :build From 772aa69d2e92cbc11a90c29f412b8e841b0aa1cc Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 20:59:09 +0000 Subject: [PATCH 1284/1364] moon: update 1.35.7 bottle. --- Formula/m/moon.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/m/moon.rb b/Formula/m/moon.rb index 4d2edaf860406..7b7d5fda7dc7b 100644 --- a/Formula/m/moon.rb +++ b/Formula/m/moon.rb @@ -12,13 +12,13 @@ class Moon < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "6fb2d6cc1b5c40063cb3525eb9240c04f0b5f43644168e6a65801b8084dab229" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "4896c4c5872f04331a2935eb781b89f3e46025e336a1617ddcfc6ac923c321d8" - sha256 cellar: :any_skip_relocation, arm64_ventura: "2e0c1eaf5860be27e5e346a89eaf88a511e1350887fd8436ea6eaea3b93d9c68" - sha256 cellar: :any_skip_relocation, sonoma: "95c1342246c3720f668dc6b2b067e36191f410b97f3842f47e6b00c63dbba07a" - sha256 cellar: :any_skip_relocation, ventura: "caa1085aa3c1516eedabf9cfc25319e7b53cb3a4cfb4125382518c7870db3571" - sha256 cellar: :any_skip_relocation, arm64_linux: "8eac85f47140029a974da8488678ea6cf3dcffa99e4991f83edb139c1219e526" - sha256 cellar: :any_skip_relocation, x86_64_linux: "8de658fd56f578a812903db31aa084385bad43c16e50f2d710d723a483b1b278" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "9bb7afacaa8b6d4119c9fbf42a1a68726eef9b7cf2bd6eaaa412404e91cb3dd6" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "f4fdedf83412ba16edf07c7ddccce2bdd3b50d3565a31ff29451e52431c9f668" + sha256 cellar: :any_skip_relocation, arm64_ventura: "7a4b2f9e28d437c6d1e1cfcd9f44179079a50cb09110263115b9f6bba2fe1c42" + sha256 cellar: :any_skip_relocation, sonoma: "69b49c416be826e34ecb2491a998bd27da23174d40202e297c486aec76186e1d" + sha256 cellar: :any_skip_relocation, ventura: "f9e46fdfd72a2abce480c8148ffb8ebfd8f18a7f1c44645fea5e06e2423da3e6" + sha256 cellar: :any_skip_relocation, arm64_linux: "0767da4db4ab491194384460c021c33481dd2c2edff50b658c56849f22b7b316" + sha256 cellar: :any_skip_relocation, x86_64_linux: "1b0069a7844114b970a61b65da4228ae150ff6dd7da2a8da89d68f88c1b978cd" end depends_on "pkgconf" => :build From 6850b36310ae88bb346937731776ed5e54fe0742 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 21:01:54 +0000 Subject: [PATCH 1285/1364] rover: update 0.30.0 bottle. --- Formula/r/rover.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/r/rover.rb b/Formula/r/rover.rb index 75f0dfb15abcf..a959234d86218 100644 --- a/Formula/r/rover.rb +++ b/Formula/r/rover.rb @@ -7,13 +7,13 @@ class Rover < Formula head "https://github.com/apollographql/rover.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "a583eaac0abe5b051b88007433f8a0b4a7ffd5e757db6ff2cefa6974d62b699b" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "bc6c53369ef112ca9bd66ef0a04e7ec9896a7077218b273287a76ade3cf07572" - sha256 cellar: :any_skip_relocation, arm64_ventura: "a65c8c071206d0528894f788ed2fa529de51a2c9bafe631db98377d21330d785" - sha256 cellar: :any_skip_relocation, sonoma: "657c49dcd16188f25c41ff49b3d5f9b90f9db64abd1b9f1a9d6b99484ae20164" - sha256 cellar: :any_skip_relocation, ventura: "1091fdbc8b75b742d6b3864dafa95324bcc8346b61247e31366999122d1824d4" - sha256 cellar: :any_skip_relocation, arm64_linux: "4e0e56ba0bbfaa53f36daf68b12a8b1191c94841c168376ff394e9e5b928d5d9" - sha256 cellar: :any_skip_relocation, x86_64_linux: "c4e4fd7d41c1aeaee8293f4a6d506ddd33f1f2b38f1ebba5e3a93ba4ef6d565b" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "c5e4d3f0c2e539d36ca8024256e5dc1b8c3b731029665aeca6d20a690b0055da" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "913324f5229cdf80016038d417b47c7fba79bdc88c8b569259face8b484dfca8" + sha256 cellar: :any_skip_relocation, arm64_ventura: "3f6d29452f0bd8be47ee15e296608a03995cf659d5febeddd3658561fc54e166" + sha256 cellar: :any_skip_relocation, sonoma: "877873455ecfc85b0c7f64a0ec3d1ea3e41e99482dda0052722a1d9f5025042a" + sha256 cellar: :any_skip_relocation, ventura: "c96681d67269607ef428823e304bb1e003cd24d0e64809161824753bd309915d" + sha256 cellar: :any_skip_relocation, arm64_linux: "150bf577a258c946a757a13a58a4460503b40961a1d02d1f882c39ec2cfd8ae0" + sha256 cellar: :any_skip_relocation, x86_64_linux: "c0c8e1273d337b194b4411703f8567f770689a823dfae611f610ffa04bc251ed" end depends_on "rust" => :build From 0e9e21223dbed4757363aa52d78a91a3def0f26d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 21:07:48 +0000 Subject: [PATCH 1286/1364] yyjson: update 0.11.1 bottle. --- Formula/y/yyjson.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/y/yyjson.rb b/Formula/y/yyjson.rb index 9a4713d061f26..8ec0df6aaa264 100644 --- a/Formula/y/yyjson.rb +++ b/Formula/y/yyjson.rb @@ -7,13 +7,13 @@ class Yyjson < Formula head "https://github.com/ibireme/yyjson.git", branch: "master" bottle do - sha256 cellar: :any, arm64_sequoia: "68d35b2ca7d96abf364d85272a5c72745bdfcc82e9da37b2af786c1944b0316d" - sha256 cellar: :any, arm64_sonoma: "7491ad6b1c88e3db721c1f048ab42c8537b80c67ed938dfcd3a71b1ab24f4b7c" - sha256 cellar: :any, arm64_ventura: "100373898fcf7f9e61ca575e3b903c1cf6f9266636bb8d27f8fb696158b8a04f" - sha256 cellar: :any, sonoma: "10829f95adddff68018a86f3aa357d7f98851c61435e56c147b742ba784032be" - sha256 cellar: :any, ventura: "5b9f3ef229e75245654a76c3d17c2c35bf61d1fe1fd89469cd08ebb9e24edd0d" - sha256 cellar: :any_skip_relocation, arm64_linux: "3f60959122ff0b42dc3e10bd2f948fbc226c4b8da575683154eb367a4a7eb2b2" - sha256 cellar: :any_skip_relocation, x86_64_linux: "6e29aa5d24a555b58224b3f416287dc121132dbfa04412af8c1c2412494ae2ef" + sha256 cellar: :any, arm64_sequoia: "be33f4c52f3a3ca9e3bec1672536ba743a3b1635d42179ab9173b945b9d4a6c4" + sha256 cellar: :any, arm64_sonoma: "6ff845ea14ced22f1f3585c87f32dcbbfdcc43da79b047c2b7e03eb403edabb7" + sha256 cellar: :any, arm64_ventura: "a27c8654370e7639f4358137195d56e38bd8b99f32eaa9d3bbf530b449116b5c" + sha256 cellar: :any, sonoma: "d0c7ae8b75e9aaca959798ab7e39093f7afcd76584bcc46edb8c74425af4c255" + sha256 cellar: :any, ventura: "4f6b77f8784820f415fcc8ce870181dccae2a7c6b322d46e781d3ebdedda20e5" + sha256 cellar: :any_skip_relocation, arm64_linux: "91527b3761383f2f462b56111bff0add9a29daa372db3a81a69ca6e2102874e3" + sha256 cellar: :any_skip_relocation, x86_64_linux: "7cc670a7221472e4bc8893a82e54b0d7c7a777486db590d1b068714b7e107570" end depends_on "cmake" => :build From 402b3af6ad28a59fcb4f887fcd3344efb946d487 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 21:09:03 +0000 Subject: [PATCH 1287/1364] wstunnel: update 10.3.0 bottle. --- Formula/w/wstunnel.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/w/wstunnel.rb b/Formula/w/wstunnel.rb index 72d28b4135b9d..aaaaac97a88ad 100644 --- a/Formula/w/wstunnel.rb +++ b/Formula/w/wstunnel.rb @@ -15,13 +15,13 @@ class Wstunnel < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "37087a7c1dfe67b61fe2d91c10aa6ef203bc2cf16dc726fcaa6dcc28c0e4a282" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "28ebaec804efedd2d0ea729524ecdce4b224b594575740907b2d97cb60213bd9" - sha256 cellar: :any_skip_relocation, arm64_ventura: "ad3eaaf6382533c30f1d8ae528a9d13dec05433321e5d237d920e8f661de738d" - sha256 cellar: :any_skip_relocation, sonoma: "1cce15bbc4f38d5294eab53411cad2acfb9914d850e1e1a9fe3d6c13ad66eb09" - sha256 cellar: :any_skip_relocation, ventura: "dce50becdc45bb17dad79eec62a6e61d65b9b779e097a43a7d1ea843d8be807a" - sha256 cellar: :any_skip_relocation, arm64_linux: "4a4f49da0e0675859eb7fe252f9b8e0fa17225d28a6e12accd6677aeee7efacd" - sha256 cellar: :any_skip_relocation, x86_64_linux: "6f71fe635fb3472976cb60580cf7ffd7ad8a9e162089840246addca6411beb80" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "9a6cf8987b383e34be36f8edd410285113f335e45298dfe8793972ee9fd50c13" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "a122452ab5d4b180d80d724942910802026d8319d1dd0a9eb06bd1e39d18244a" + sha256 cellar: :any_skip_relocation, arm64_ventura: "58cc16dfd1eb40a0f4c5a131f1baf96098b76ffd9f2e9a0120a8aa9f4ad88b5b" + sha256 cellar: :any_skip_relocation, sonoma: "7fe8ae254394d5c4cbc8c8ee50b52b6753c1b560cdcc18b09e5c8276a345cbe1" + sha256 cellar: :any_skip_relocation, ventura: "3fc4bcb8ec223b9215c38062eb98870dafa6023db6198a6d7f196da17b0cb79d" + sha256 cellar: :any_skip_relocation, arm64_linux: "a94291e5ddd138b46255f4495ddc0b7fbf3e2b1b8a6082abb1706ce8d7170c75" + sha256 cellar: :any_skip_relocation, x86_64_linux: "9c24dd1a9d46fb302d5397fb5707833bc4b6024e8a857f7f1fbea5d728a12700" end depends_on "rust" => :build From 78c82ece57c93c9a436cacd328a3dfe550838e61 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 22:50:51 +0000 Subject: [PATCH 1288/1364] bkmr 4.22.1 --- Formula/b/bkmr.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/b/bkmr.rb b/Formula/b/bkmr.rb index 51689b344cad3..53f49ee738ab4 100644 --- a/Formula/b/bkmr.rb +++ b/Formula/b/bkmr.rb @@ -1,8 +1,8 @@ class Bkmr < Formula desc "Unified CLI Tool for Bookmark, Snippet, and Knowledge Management" homepage "https://github.com/sysid/bkmr" - url "https://github.com/sysid/bkmr/archive/refs/tags/v4.22.0.tar.gz" - sha256 "f98f323060b7498376a4d5e9fc69759ccd9fac9ac5190463a73a9d1ad4069a8b" + url "https://github.com/sysid/bkmr/archive/refs/tags/v4.22.1.tar.gz" + sha256 "9e43df28b7f447ae55534a7621e216293015cc0a626a9dcc89d3e9f4edb51beb" license "BSD-3-Clause" head "https://github.com/sysid/bkmr.git", branch: "main" From 58fece6c51e7c9ef2006b4b4b534257f0b617365 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 22:53:48 +0000 Subject: [PATCH 1289/1364] cubejs-cli 1.3.14 --- Formula/c/cubejs-cli.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/cubejs-cli.rb b/Formula/c/cubejs-cli.rb index 43d8875e4c73a..68d8892d3adf4 100644 --- a/Formula/c/cubejs-cli.rb +++ b/Formula/c/cubejs-cli.rb @@ -1,8 +1,8 @@ class CubejsCli < Formula desc "Cube.js command-line interface" homepage "https://cube.dev/" - url "https://registry.npmjs.org/cubejs-cli/-/cubejs-cli-1.3.13.tgz" - sha256 "f3b80ef03b02cee4dcba2a872a99a0b875d2a353dbbda395f2aefdcd9043dd44" + url "https://registry.npmjs.org/cubejs-cli/-/cubejs-cli-1.3.14.tgz" + sha256 "9e1bceee75c407db759be096952d4fd73d397f727bdf38ae7a4eaf96f581a0ba" license "Apache-2.0" bottle do From 3cdf31e65c831d6eae14090b384a81a1404fdede Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 22:54:48 +0000 Subject: [PATCH 1290/1364] dnscontrol 4.20.0 --- Formula/d/dnscontrol.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/d/dnscontrol.rb b/Formula/d/dnscontrol.rb index 60a77a995c3d2..59a44382d495d 100644 --- a/Formula/d/dnscontrol.rb +++ b/Formula/d/dnscontrol.rb @@ -1,8 +1,8 @@ class Dnscontrol < Formula desc "Synchronize your DNS to multiple providers from a simple DSL" homepage "https://dnscontrol.org/" - url "https://github.com/StackExchange/dnscontrol/archive/refs/tags/v4.19.0.tar.gz" - sha256 "70720e89ef3bed8bb362faa0731ae8d30960b869bb45201d811f679daa2152dc" + url "https://github.com/StackExchange/dnscontrol/archive/refs/tags/v4.20.0.tar.gz" + sha256 "61fae2bf6fe20a8bb2f4b3313ea4c3add3068e280a2fb74b02e18c8fbe65c17b" license "MIT" version_scheme 1 head "https://github.com/StackExchange/dnscontrol.git", branch: "main" From 5389eb4502061153c8e7d758babd12f4c9290ef9 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 22:55:50 +0000 Subject: [PATCH 1291/1364] enzyme 0.0.179 --- Formula/e/enzyme.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/e/enzyme.rb b/Formula/e/enzyme.rb index 3131c07ec603d..20f0962ab1c16 100644 --- a/Formula/e/enzyme.rb +++ b/Formula/e/enzyme.rb @@ -1,8 +1,8 @@ class Enzyme < Formula desc "High-performance automatic differentiation of LLVM" homepage "https://enzyme.mit.edu" - url "https://github.com/EnzymeAD/Enzyme/archive/refs/tags/v0.0.178.tar.gz" - sha256 "46323d247ce25fd415a597e56468433abe6a0388ffc117f72c2d9acbd0f52e64" + url "https://github.com/EnzymeAD/Enzyme/archive/refs/tags/v0.0.179.tar.gz" + sha256 "738e2277aadb67733b4546b7abcade212452bec97e67db9620a7840fa70270da" license "Apache-2.0" => { with: "LLVM-exception" } head "https://github.com/EnzymeAD/Enzyme.git", branch: "main" From bce8839c6a62629281a04084940bf0a02eecebe4 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 22:56:41 +0000 Subject: [PATCH 1292/1364] fern-api 0.61.1 --- Formula/f/fern-api.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/f/fern-api.rb b/Formula/f/fern-api.rb index c09e7035948bf..762f961d82bf4 100644 --- a/Formula/f/fern-api.rb +++ b/Formula/f/fern-api.rb @@ -1,8 +1,8 @@ class FernApi < Formula desc "Stripe-level SDKs and Docs for your API" homepage "https://buildwithfern.com/" - url "https://registry.npmjs.org/fern-api/-/fern-api-0.60.31.tgz" - sha256 "2b3eb15b69c835c8fa845ce8ccd9d8323b52f743acd130df3ea00cd8612de80d" + url "https://registry.npmjs.org/fern-api/-/fern-api-0.61.1.tgz" + sha256 "29a5738c25827ed2e483d8facc13e6380704e56d0c6f7ea3ef099524dd49750e" license "Apache-2.0" head "https://github.com/fern-api/fern.git", branch: "main" From afd8324b2fbfadcc2f2f2068c3a6403f5c630548 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 22:58:37 +0000 Subject: [PATCH 1293/1364] gotz 0.1.15 --- Formula/g/gotz.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/g/gotz.rb b/Formula/g/gotz.rb index 3ec795c584e54..84c094fe08a9e 100644 --- a/Formula/g/gotz.rb +++ b/Formula/g/gotz.rb @@ -1,8 +1,8 @@ class Gotz < Formula desc "Displays timezones in your terminal" homepage "https://github.com/merschformann/gotz" - url "https://github.com/merschformann/gotz/archive/refs/tags/v0.1.14.tar.gz" - sha256 "44258a08762fda0f0f6eb5afe4eefc8256539da1a8215f77048c1c6f0f0070e5" + url "https://github.com/merschformann/gotz/archive/refs/tags/v0.1.15.tar.gz" + sha256 "8ab6167d9a98717a8548ff60b0f454c42f116e94216e3a5d83deb711c035b270" license "MIT" head "https://github.com/merschformann/gotz.git", branch: "main" From b4f46d26841d1759f68d9ecf1b06df4359049571 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 23:04:11 +0000 Subject: [PATCH 1294/1364] manticoresearch 9.5.4 --- Formula/m/manticoresearch.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/m/manticoresearch.rb b/Formula/m/manticoresearch.rb index 8c6fa1b147ae5..f9911906a8b4d 100644 --- a/Formula/m/manticoresearch.rb +++ b/Formula/m/manticoresearch.rb @@ -1,8 +1,8 @@ class Manticoresearch < Formula desc "Open source text search engine" homepage "https://manticoresearch.com" - url "https://github.com/manticoresoftware/manticoresearch/archive/refs/tags/9.5.2.tar.gz" - sha256 "0b42383bcb6e08ad48440819a4ca5cb8553004b63d7ad265c9501e765ce94806" + url "https://github.com/manticoresoftware/manticoresearch/archive/refs/tags/9.5.4.tar.gz" + sha256 "9e910b027a3a26a3857994f7b1a257a1ffcdd56f8e4686f095d6f612eaedd9af" license all_of: [ "GPL-3.0-or-later", "GPL-2.0-only", # wsrep From 6fef9a916ebcdaa9511830891aaff67e515794d6 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 23:15:21 +0000 Subject: [PATCH 1295/1364] terragrunt 0.78.4 --- Formula/t/terragrunt.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/t/terragrunt.rb b/Formula/t/terragrunt.rb index f56af090c9b8c..2c6e79b20dbe0 100644 --- a/Formula/t/terragrunt.rb +++ b/Formula/t/terragrunt.rb @@ -1,8 +1,8 @@ class Terragrunt < Formula desc "Thin wrapper for Terraform e.g. for locking state" homepage "https://terragrunt.gruntwork.io/" - url "https://github.com/gruntwork-io/terragrunt/archive/refs/tags/v0.78.3.tar.gz" - sha256 "dc8c21e17e7014e4e6afdd40279284654bc241a741c7528c03c32d80e0a94c84" + url "https://github.com/gruntwork-io/terragrunt/archive/refs/tags/v0.78.4.tar.gz" + sha256 "e86148898fe22326bc55a96b0d9c546e7278139afa6bda99cfad4a316bb52866" license "MIT" # Upstream creates releases that use a stable tag (e.g., `v1.2.3`) but are From 781cf9cbfce22993239123d95bee64a80ecf338c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 23:44:53 +0000 Subject: [PATCH 1296/1364] awscli: update 2.27.14 bottle. --- Formula/a/awscli.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/a/awscli.rb b/Formula/a/awscli.rb index fff238918317a..e4ba48beaccef 100644 --- a/Formula/a/awscli.rb +++ b/Formula/a/awscli.rb @@ -9,13 +9,13 @@ class Awscli < Formula head "https://github.com/aws/aws-cli.git", branch: "v2" bottle do - sha256 cellar: :any, arm64_sequoia: "9db9be0a383affae78a452b9d8b4e74286bfca57bb7bf59550a46853650b29cd" - sha256 cellar: :any, arm64_sonoma: "7de65e02e82cfe59126b9064008c4d36c711758153327b0b2df1343c9bb99cb7" - sha256 cellar: :any, arm64_ventura: "0988e3c3d922e4fe492c94ef2cfd2131c6e51fcceae28dc4980816f9b452d638" - sha256 cellar: :any, sonoma: "8c8ff1eddf2cb6075fd25e3118fc843ba3c22cb3df3ef032c2dc41ee7c4764c3" - sha256 cellar: :any, ventura: "6424e4240a425c1d0dd1a6aca4cd0e800c563b87eec2f6a6d01be255be918de1" - sha256 cellar: :any_skip_relocation, arm64_linux: "ad84cf32c46bad5c2e6c7f9540fd5f9cfce37daa1787bbbdeded2e3c0362a198" - sha256 cellar: :any_skip_relocation, x86_64_linux: "baf71ee609e7ea2b6c0c706f7ce0ed869ffea652a19fb83ae604c4c6bc06c881" + sha256 cellar: :any, arm64_sequoia: "1bd95c3f6036480660de805acbf047374472c97309ce438be0513423bef1316b" + sha256 cellar: :any, arm64_sonoma: "64cfb3b4b79237fb115a94cf28a39c0c10d30428aec56d7c9a79f8b95b6dd0a6" + sha256 cellar: :any, arm64_ventura: "b5d5ac7032930f796d53dd86d7923da6744a3336a81ac738721e53149e9bdad5" + sha256 cellar: :any, sonoma: "c6dcba2f8b9620e0d55c2e226e55528859d21cba974092fb3ca2fb04070fff55" + sha256 cellar: :any, ventura: "25d0bc52cd01ff0e5ab79ec6540f629083387569a97cfeea65e4f6c81d202885" + sha256 cellar: :any_skip_relocation, arm64_linux: "83bec53b5417fb76a7a5e318d9fb3572cf8f5e1909e05159c5c7fd69efdcc0ef" + sha256 cellar: :any_skip_relocation, x86_64_linux: "c116d8ef20ea9afa26eec460c0befd348fc68a03395270e4535f9c052139fe9f" end depends_on "cmake" => :build From 371ce1e3dd74079d801c23317a74192727e28f56 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 23:45:01 +0000 Subject: [PATCH 1297/1364] dotnet@8: update 8.0.16 bottle. --- Formula/d/dotnet@8.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/d/dotnet@8.rb b/Formula/d/dotnet@8.rb index f347c72fd9846..7856ccb24bfb9 100644 --- a/Formula/d/dotnet@8.rb +++ b/Formula/d/dotnet@8.rb @@ -12,12 +12,12 @@ class DotnetAT8 < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "877f75a1c1be25e2c576dd7460294a5be64d74134be6a935750b11ca5a6f48c6" - sha256 cellar: :any, arm64_sonoma: "05c6f461b2712cd7f02953ff986e6006333d3adba9be736ef73e17db3daac9e9" - sha256 cellar: :any, arm64_ventura: "7c8c2fcc6559f1d1d08a8e137208b26283cdcc1dafe11e6b682c92e7cebce81b" - sha256 cellar: :any, ventura: "deceafdae583e9f751b04c2bcc94a7c8abd1fafc2f5f7ce34d0e2a6404839b1a" - sha256 cellar: :any_skip_relocation, arm64_linux: "aa4f5dc4dd114b4b4d9b75ea25cfc529f5010b69b03627f8da4349fd9c9a8c1b" - sha256 cellar: :any_skip_relocation, x86_64_linux: "3228271fef72208720f6713e77485d8fb15597501cd460c03ca42037f1579995" + sha256 cellar: :any, arm64_sequoia: "fd1d4dc64caaa5ca9738dd99c40f598ffe28017dc94d36b589cb522f84de5423" + sha256 cellar: :any, arm64_sonoma: "01df057c866f41909dc9e5691e656a8607fb34de62fb0faf23f31c65b0ba5556" + sha256 cellar: :any, arm64_ventura: "136ac1159cf77b58b9b770769dcc0e03dd4b7f4ea49724d6b2d18ab1ff13f462" + sha256 cellar: :any, ventura: "261d97665ee9dcf394b6ad5b89bc6d39f7f231a36db90f44b465dac14cecc57e" + sha256 cellar: :any_skip_relocation, arm64_linux: "e74118639a11bf3873efee66edb3b778ed5ef7d9e8ec3287fbd3a813306ef612" + sha256 cellar: :any_skip_relocation, x86_64_linux: "f14a7a2e7158f440d8cf82ea8e272be2ee2750740a0509643dd3e2e60290ca43" end keg_only :versioned_formula From 002055cb8566e15ffde9f3788a4e837067731246 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 23:45:05 +0000 Subject: [PATCH 1298/1364] dotnet: update 9.0.5 bottle. --- Formula/d/dotnet.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/d/dotnet.rb b/Formula/d/dotnet.rb index 4dad219b5dfff..80fd87b459bca 100644 --- a/Formula/d/dotnet.rb +++ b/Formula/d/dotnet.rb @@ -26,12 +26,12 @@ class Dotnet < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "a7cbfbeab74a248d6e4b2e3ec40e8b47445d2ee90363fa67495d59db47d66cc7" - sha256 cellar: :any, arm64_sonoma: "9861446e20266effcf0e0ca050e4f50323cc4fabfa279c979c0ca76c957a854e" - sha256 cellar: :any, arm64_ventura: "381f31fa92d80801c1f627b7a6ef866f0a58017e5c8b9ed867e711156988b2e3" - sha256 cellar: :any, ventura: "ce40a8d6fe1708a58cefef177d2c3725d2f202dd44e1dc46a3bdab340c69ab40" - sha256 cellar: :any_skip_relocation, arm64_linux: "47e66ee1526a06e4f5ddfcbbabdb04260dd51862ef53752c5b787c4b097f4e89" - sha256 cellar: :any_skip_relocation, x86_64_linux: "034c924d5ab4c59092567a14978c87276aee0583995491256a5fdb1712ee86a9" + sha256 cellar: :any, arm64_sequoia: "9a9c0fea3897f713604263ce3d25755cdc1cc34e9728ce384b1674a23adaf081" + sha256 cellar: :any, arm64_sonoma: "a6be60a96abea6c0c5262c1ee7ef44396cf96837c434beb2f1d7ae0643cffaad" + sha256 cellar: :any, arm64_ventura: "73b20278e33fb2c051e60b19b9aaf216c6edfb6e9b4b615f8a65ee53edff7d00" + sha256 cellar: :any, ventura: "e8e49e3b7d72dbd6adf719f368d0a38bb78a3e29e0368b828339657f765c2fa5" + sha256 cellar: :any_skip_relocation, arm64_linux: "4bc91b3b6e5934256b7c52e0e4028442cc0c263786408f7c10cab58ecdc96942" + sha256 cellar: :any_skip_relocation, x86_64_linux: "238d53cd94923a17447e797249358c06e6e5f8b4574a51bd87fb3c7734c7c39b" end depends_on "cmake" => :build From 28acfe6b28ab851430e533cdc5a2f0fcd627b3e3 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 23:45:30 +0000 Subject: [PATCH 1299/1364] bkmr: update 4.22.1 bottle. --- Formula/b/bkmr.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/b/bkmr.rb b/Formula/b/bkmr.rb index 53f49ee738ab4..ea6965e95c1f7 100644 --- a/Formula/b/bkmr.rb +++ b/Formula/b/bkmr.rb @@ -7,13 +7,13 @@ class Bkmr < Formula head "https://github.com/sysid/bkmr.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "cb5f5c94fd33deb2797271aaa6ee63c075f4cdab24eba4c567d51029d2be174a" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "66c2653ba61a6598421a1f612c858527c5ff9a0fff1115837270e2f41431e762" - sha256 cellar: :any_skip_relocation, arm64_ventura: "ccf15e03093c4675ee573d40915144f179c47bf2a764ef14899e1af8d4995f7d" - sha256 cellar: :any_skip_relocation, sonoma: "1584fcdc3ff5e6be384cc985a946728aa5b6158af411d80006444c1f3e70109b" - sha256 cellar: :any_skip_relocation, ventura: "910ecd555e20c26b8bfde7259ae8db9e23865d242d9fd1395f2ea44e8e6122be" - sha256 cellar: :any_skip_relocation, arm64_linux: "2d62da14e3ffd2fdfdea9378088db3404049b14d10b448306af1cd0a90c430ff" - sha256 cellar: :any_skip_relocation, x86_64_linux: "c7627ec66de3b2c227aa9b6f752558f854c96da7f1708567ff1834b8dd4e7b29" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "6d786be0518a1a3e1983d6ac8bf45efb0b56efaabdbc260bc8ff7ccd8344734c" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "74667f04641b12ff057f84d94b78ce1b6e3116789e71e61d6c1e6554f0da9cc3" + sha256 cellar: :any_skip_relocation, arm64_ventura: "5f86fe92160ecef2ce827b8b9dff26a67ff329c3decd8fe378c105116877f135" + sha256 cellar: :any_skip_relocation, sonoma: "c897e4f546732eac0e06bdb5ce4f2e822b4081a5714e73167c78289b735850f2" + sha256 cellar: :any_skip_relocation, ventura: "476f9cfddb8a3f425259ecaa1dd7e2177806aea9998befe35fc40b22a227fce0" + sha256 cellar: :any_skip_relocation, arm64_linux: "e9b738cda96d7f09a465bd9c560f9c52b0faaf1574fa551359d11bae57eb6e0c" + sha256 cellar: :any_skip_relocation, x86_64_linux: "6a14a68d59e62bd12ab7564e8224e58546c5bda3a92c5df755815f58d3d6033a" end depends_on "rust" => :build From b56faf8c6d48973c2b0668c296021fcbb3ceacf5 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 23:45:31 +0000 Subject: [PATCH 1300/1364] gotz: update 0.1.15 bottle. --- Formula/g/gotz.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/g/gotz.rb b/Formula/g/gotz.rb index 84c094fe08a9e..cbc3e751fd236 100644 --- a/Formula/g/gotz.rb +++ b/Formula/g/gotz.rb @@ -7,13 +7,13 @@ class Gotz < Formula head "https://github.com/merschformann/gotz.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "4317835c1730257089a65d977a268a6eba6a834f123d9ef66abf9f58e7a93159" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "4317835c1730257089a65d977a268a6eba6a834f123d9ef66abf9f58e7a93159" - sha256 cellar: :any_skip_relocation, arm64_ventura: "4317835c1730257089a65d977a268a6eba6a834f123d9ef66abf9f58e7a93159" - sha256 cellar: :any_skip_relocation, sonoma: "84b6e31be4184df0b1eed709ac11f277ba1364332218b51ed04cf82014cd2d69" - sha256 cellar: :any_skip_relocation, ventura: "84b6e31be4184df0b1eed709ac11f277ba1364332218b51ed04cf82014cd2d69" - sha256 cellar: :any_skip_relocation, arm64_linux: "2f61d161279f1eeba162c82dfe5f4c15d5ba6ab01ca3eb34d099673ef07e1d1a" - sha256 cellar: :any_skip_relocation, x86_64_linux: "1bd56b05cc1dcc194266bd0c14e305cefbd3861c4c52c04dbddcfecf49b44312" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "b75ae4c58731840fe9ba17b09378742700f717d193aeeb9e532b705b78d993be" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "b75ae4c58731840fe9ba17b09378742700f717d193aeeb9e532b705b78d993be" + sha256 cellar: :any_skip_relocation, arm64_ventura: "b75ae4c58731840fe9ba17b09378742700f717d193aeeb9e532b705b78d993be" + sha256 cellar: :any_skip_relocation, sonoma: "f35197d8f5d2ebdd0fe4c50fc98508544cf6f3abff6424e57a09faf83506bfa9" + sha256 cellar: :any_skip_relocation, ventura: "f35197d8f5d2ebdd0fe4c50fc98508544cf6f3abff6424e57a09faf83506bfa9" + sha256 cellar: :any_skip_relocation, arm64_linux: "9267b0365ca7e9ae17f11c3cdc3b7ea3c47aaf751ce458a9549c34aeab1e7f92" + sha256 cellar: :any_skip_relocation, x86_64_linux: "a90de77faf04ceafa5b9a07dfe685ddba60dd8ec2d395e3da1b62c15230cc44e" end depends_on "go" => :build From 78b364cfd9ec6c3f1857e797e5173881b52db08a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 23:45:32 +0000 Subject: [PATCH 1301/1364] cubejs-cli: update 1.3.14 bottle. --- Formula/c/cubejs-cli.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/cubejs-cli.rb b/Formula/c/cubejs-cli.rb index 68d8892d3adf4..219ae813117dc 100644 --- a/Formula/c/cubejs-cli.rb +++ b/Formula/c/cubejs-cli.rb @@ -6,13 +6,13 @@ class CubejsCli < Formula license "Apache-2.0" bottle do - sha256 cellar: :any, arm64_sequoia: "5dd61cef702e4739892ea7d87162a9059b954ef86bb8b25bcfc511a2cff40548" - sha256 cellar: :any, arm64_sonoma: "5dd61cef702e4739892ea7d87162a9059b954ef86bb8b25bcfc511a2cff40548" - sha256 cellar: :any, arm64_ventura: "5dd61cef702e4739892ea7d87162a9059b954ef86bb8b25bcfc511a2cff40548" - sha256 cellar: :any, sonoma: "f12169380cd36f25962bc0d765e416dbbaa33d5764d9d0003d8e797a8dd62740" - sha256 cellar: :any, ventura: "f12169380cd36f25962bc0d765e416dbbaa33d5764d9d0003d8e797a8dd62740" - sha256 cellar: :any_skip_relocation, arm64_linux: "cf3ad2eeb50e3013ab148a105aa227a1d9eb0296d79021a4dae5f902e4fbdf19" - sha256 cellar: :any_skip_relocation, x86_64_linux: "263f4a7e7b7b0f05dd642d05117df21d14e445151372ca0c56da28d271730d57" + sha256 cellar: :any, arm64_sequoia: "1dbce2c673ecc2421117b802ae832588f6b6b5272baa5b4cbbe2fd9fe362329f" + sha256 cellar: :any, arm64_sonoma: "1dbce2c673ecc2421117b802ae832588f6b6b5272baa5b4cbbe2fd9fe362329f" + sha256 cellar: :any, arm64_ventura: "1dbce2c673ecc2421117b802ae832588f6b6b5272baa5b4cbbe2fd9fe362329f" + sha256 cellar: :any, sonoma: "499bc02fc802f6adae308c510f12e10526ff2cd85f50dbc3276feb7f43dc54b0" + sha256 cellar: :any, ventura: "499bc02fc802f6adae308c510f12e10526ff2cd85f50dbc3276feb7f43dc54b0" + sha256 cellar: :any_skip_relocation, arm64_linux: "3278d8542e151b3f508a98942e5b63b34fae03f1a1627b6b29b3c982fe90b339" + sha256 cellar: :any_skip_relocation, x86_64_linux: "782022ee6f4ed886ca514916350bff3115a02bb14997b1b0c9d9e4bbc5dacc34" end depends_on "node" From 4bf1841c6120b4c27407975e72027bb8baf57c61 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 23:45:33 +0000 Subject: [PATCH 1302/1364] fern-api: update 0.61.1 bottle. --- Formula/f/fern-api.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/f/fern-api.rb b/Formula/f/fern-api.rb index 762f961d82bf4..c9fa1df55fc9a 100644 --- a/Formula/f/fern-api.rb +++ b/Formula/f/fern-api.rb @@ -7,7 +7,7 @@ class FernApi < Formula head "https://github.com/fern-api/fern.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, all: "a63fcfa985d3a35f9dd8319556f7787b17cbe8fe14df67b16589c0a45f661204" + sha256 cellar: :any_skip_relocation, all: "a47e128573f43cfb6fb12ab85c204f21d66e5bd71e8f1aa404fefd3b1b95f9f1" end depends_on "node" From 11ce8855cb646b9ac91ec630d16bc74db0c81d9a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 23:45:36 +0000 Subject: [PATCH 1303/1364] manticoresearch: update 9.5.4 bottle. --- Formula/m/manticoresearch.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/m/manticoresearch.rb b/Formula/m/manticoresearch.rb index f9911906a8b4d..788b00a510f25 100644 --- a/Formula/m/manticoresearch.rb +++ b/Formula/m/manticoresearch.rb @@ -19,13 +19,13 @@ class Manticoresearch < Formula end bottle do - sha256 arm64_sequoia: "15af592e970772cf211a97287a151b8ca1e1a2fa61efc3fb80a5f593a34a4964" - sha256 arm64_sonoma: "c5dbf217b196d58fa8a2dd9e9de4b991d831083ee71337838794e65f80c77ea5" - sha256 arm64_ventura: "c7468b96d4a43fbb2898068f4367f6e4b0347ec495d738311f17432eb0d0c430" - sha256 sonoma: "29e9993025c4c89f34c876cded0b663c602ab18fa6acdac719a7674fee148df1" - sha256 ventura: "b4f537809a29d54ea4fe014c6e25d45183431e7c701b7d3f6df978ce00fb1542" - sha256 arm64_linux: "8eafdcc12d27b63f884e80a0595185e1ab469513dd8942ff0628494f5a346f51" - sha256 x86_64_linux: "2f44a74d7b61852f0b10da5efa4f178b94d9315d2daa1ebf20722abed8c374bb" + sha256 arm64_sequoia: "b19e239f224181cc8c70e1509ee1e89b992cf32d0eec418998340ce07c5cfbc3" + sha256 arm64_sonoma: "7b25220b3a50909ac84f70262549deb7811f62d34089c77d0d92c458c3a953b5" + sha256 arm64_ventura: "0aad4b6d891625d66809504e356671117a7e4f265bac036f429e16b45bd96d44" + sha256 sonoma: "23d557592ff89115889be641101cefcabdf83a245705f6dd1417d318adb3b025" + sha256 ventura: "77c2904daa0ffef13a643bd7cc73e9e1bfbd02d17814fff896bffb8b9304d5af" + sha256 arm64_linux: "47269042186e170f7383e1dfbfdb35c752dc63efb69ddf545b5e621a95f9a9e8" + sha256 x86_64_linux: "5686bef94ac394b77b0d11e70aeac2e78f59e3a23033ffd0c1b89260afbe02d7" end depends_on "cmake" => :build From 7be33af2b42e15f95494be1de9ba2977a89fa594 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 23:45:37 +0000 Subject: [PATCH 1304/1364] dnscontrol: update 4.20.0 bottle. --- Formula/d/dnscontrol.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/d/dnscontrol.rb b/Formula/d/dnscontrol.rb index 59a44382d495d..6441f103ad530 100644 --- a/Formula/d/dnscontrol.rb +++ b/Formula/d/dnscontrol.rb @@ -16,12 +16,12 @@ class Dnscontrol < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "3c7da4f810167ba5c017dae64408dfb1e40e4818cc12236953dec2522cae1efc" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "3c7da4f810167ba5c017dae64408dfb1e40e4818cc12236953dec2522cae1efc" - sha256 cellar: :any_skip_relocation, arm64_ventura: "3c7da4f810167ba5c017dae64408dfb1e40e4818cc12236953dec2522cae1efc" - sha256 cellar: :any_skip_relocation, sonoma: "bd2888686c3f860f9c36b11ee0ad9d81bcafaec16efa50dc7d890ae27b6e1f2e" - sha256 cellar: :any_skip_relocation, ventura: "bd2888686c3f860f9c36b11ee0ad9d81bcafaec16efa50dc7d890ae27b6e1f2e" - sha256 cellar: :any_skip_relocation, x86_64_linux: "f0ae511c86944458a254b7737f2406f8b8b7169858a5a449a72ec1ad8cad9df0" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "5f54d2ea13319f4a443232ababa883046ef17e9540b13d529e6742aa59c4bfc9" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "5f54d2ea13319f4a443232ababa883046ef17e9540b13d529e6742aa59c4bfc9" + sha256 cellar: :any_skip_relocation, arm64_ventura: "5f54d2ea13319f4a443232ababa883046ef17e9540b13d529e6742aa59c4bfc9" + sha256 cellar: :any_skip_relocation, sonoma: "79337f7bc293a980233782d79a589ea16575830a3752e5c9ec45a85d9f1f89b0" + sha256 cellar: :any_skip_relocation, ventura: "79337f7bc293a980233782d79a589ea16575830a3752e5c9ec45a85d9f1f89b0" + sha256 cellar: :any_skip_relocation, x86_64_linux: "422724e41057b2e46794178106ab088ade3c5628b63365faca283e32effe1dcf" end depends_on "go" => :build From 2a4aa2950289de1c1c6a457988a58726444ee4d6 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 23:45:41 +0000 Subject: [PATCH 1305/1364] terragrunt: update 0.78.4 bottle. --- Formula/t/terragrunt.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/t/terragrunt.rb b/Formula/t/terragrunt.rb index 2c6e79b20dbe0..fc1ffb3a93768 100644 --- a/Formula/t/terragrunt.rb +++ b/Formula/t/terragrunt.rb @@ -14,12 +14,12 @@ class Terragrunt < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "79ae2cf4af092b7a2b09d97165f8e2b23d36de3d67b1925fbd0dd5f286a044be" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "79ae2cf4af092b7a2b09d97165f8e2b23d36de3d67b1925fbd0dd5f286a044be" - sha256 cellar: :any_skip_relocation, arm64_ventura: "79ae2cf4af092b7a2b09d97165f8e2b23d36de3d67b1925fbd0dd5f286a044be" - sha256 cellar: :any_skip_relocation, sonoma: "458f36c53b5d090c5454c26fb6280cd95228a2eef5aece03956f1efd0520e3a8" - sha256 cellar: :any_skip_relocation, ventura: "458f36c53b5d090c5454c26fb6280cd95228a2eef5aece03956f1efd0520e3a8" - sha256 cellar: :any_skip_relocation, x86_64_linux: "579fb2160c68455262a0b76ac78dd49b1337f209cad201edbfca2bd1c88340cd" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "2495a6ade32bf8bf3f7a27ec1acde3456c51c6410072009eeaf30344f0e789c4" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "2495a6ade32bf8bf3f7a27ec1acde3456c51c6410072009eeaf30344f0e789c4" + sha256 cellar: :any_skip_relocation, arm64_ventura: "2495a6ade32bf8bf3f7a27ec1acde3456c51c6410072009eeaf30344f0e789c4" + sha256 cellar: :any_skip_relocation, sonoma: "e5492a59dff9ca9c35f0d8384a460f5286df789434d2ef05ee5e5a840b5a7d81" + sha256 cellar: :any_skip_relocation, ventura: "e5492a59dff9ca9c35f0d8384a460f5286df789434d2ef05ee5e5a840b5a7d81" + sha256 cellar: :any_skip_relocation, x86_64_linux: "5abbe48647b41b8626ce62da33bcad33ab568e128ac2999c4b8cffb790f729ac" end depends_on "go" => :build From 0668617da80c0428bdf944b8e047d806e0b77ed3 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 23:45:46 +0000 Subject: [PATCH 1306/1364] enzyme: update 0.0.179 bottle. --- Formula/e/enzyme.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/e/enzyme.rb b/Formula/e/enzyme.rb index 20f0962ab1c16..18ac80652e3b5 100644 --- a/Formula/e/enzyme.rb +++ b/Formula/e/enzyme.rb @@ -7,13 +7,13 @@ class Enzyme < Formula head "https://github.com/EnzymeAD/Enzyme.git", branch: "main" bottle do - sha256 cellar: :any, arm64_sequoia: "8cb12b0df789d7b0954d98e07272f93da37955c9dbfc73997e175955552b00e6" - sha256 cellar: :any, arm64_sonoma: "ac91dd8c3478dba228b7d4601ade6554cbaeac8ea9091f17687c049d372d502f" - sha256 cellar: :any, arm64_ventura: "08b6bf9e83d2c6b5751eb9334d1e99daa245e82405de9a8a6b6f5fccd6f2eb3c" - sha256 cellar: :any, sonoma: "40069f286a5aac716c795a096af03c6d5be453bbcd234f8a1b0cac282587f2aa" - sha256 cellar: :any, ventura: "a3e88288ce93570f201bc942740f8e0d4cc87d1ff0f666955c3e17fcd1171611" - sha256 cellar: :any_skip_relocation, arm64_linux: "04d6e162edaf7413e86f78e42562f065a7cb01ee351614ae1c592d3bd9e91dd4" - sha256 cellar: :any_skip_relocation, x86_64_linux: "df8cfb755dbb8cfe7418c201469db01e258499fb255599da228e9bfe135255bc" + sha256 cellar: :any, arm64_sequoia: "12116cd5762d226b096c23cb278fbbf498aead3bf7bf95fb44160fa738767913" + sha256 cellar: :any, arm64_sonoma: "a8f7414fee54812dbd8919e9523481dff950817aa1687d1c9f3fdaed77b025a0" + sha256 cellar: :any, arm64_ventura: "94b4d4615a0c1f4c4869e07b3ded647bed9e4fe4fccac13415109c5c4fe5d7d6" + sha256 cellar: :any, sonoma: "7d847c13b9d59b715dfb075d893efc99ffb14591d687cf7f916b4502f359b453" + sha256 cellar: :any, ventura: "b291ca735ac5d83b2605a2d9eddb1eeaf40600d50f9068dbea798c702a5afce4" + sha256 cellar: :any_skip_relocation, arm64_linux: "571b49b3182fd114eecc013ec6e084e77411fadebd85e1d932ea0707428f88c3" + sha256 cellar: :any_skip_relocation, x86_64_linux: "8ef2cad3fa15b9a951683ffdadfed0dedfcd197f9ef8c8e435d5f54ff7066b48" end depends_on "cmake" => :build From 9e1f51682ba866d03d9ba16d6d13856dcf1f80fe Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 02:31:44 +0000 Subject: [PATCH 1307/1364] exploitdb 2025-05-14 --- Formula/e/exploitdb.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/e/exploitdb.rb b/Formula/e/exploitdb.rb index 8f2d622bace6c..a3a908cf593b3 100644 --- a/Formula/e/exploitdb.rb +++ b/Formula/e/exploitdb.rb @@ -2,8 +2,8 @@ class Exploitdb < Formula desc "Database of public exploits and corresponding vulnerable software" homepage "https://www.exploit-db.com/" url "https://gitlab.com/exploit-database/exploitdb.git", - tag: "2025-05-10", - revision: "9044a602bb29912cd292b973d24d388017fea83f" + tag: "2025-05-14", + revision: "e49e8d0522fcb8aa215242bc505f75eff62d3b15" license "GPL-2.0-or-later" head "https://gitlab.com/exploit-database/exploitdb.git", branch: "main" From 1f61f241bd5dc76913b208cee3709fe747701401 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 02:32:31 +0000 Subject: [PATCH 1308/1364] fern-api 0.61.4 --- Formula/f/fern-api.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/f/fern-api.rb b/Formula/f/fern-api.rb index c9fa1df55fc9a..ab4610780d9af 100644 --- a/Formula/f/fern-api.rb +++ b/Formula/f/fern-api.rb @@ -1,8 +1,8 @@ class FernApi < Formula desc "Stripe-level SDKs and Docs for your API" homepage "https://buildwithfern.com/" - url "https://registry.npmjs.org/fern-api/-/fern-api-0.61.1.tgz" - sha256 "29a5738c25827ed2e483d8facc13e6380704e56d0c6f7ea3ef099524dd49750e" + url "https://registry.npmjs.org/fern-api/-/fern-api-0.61.4.tgz" + sha256 "97f60109de31e0494a2dbb84454bff3972f52f76eee37469c0e32f9859b71518" license "Apache-2.0" head "https://github.com/fern-api/fern.git", branch: "main" From 53bafaf31b802563a68f68dfa86001c69d726306 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 02:34:54 +0000 Subject: [PATCH 1309/1364] glooctl 1.19.0 --- Formula/g/glooctl.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/g/glooctl.rb b/Formula/g/glooctl.rb index b967af6d67f06..cddab45c7bb2f 100644 --- a/Formula/g/glooctl.rb +++ b/Formula/g/glooctl.rb @@ -4,8 +4,8 @@ class Glooctl < Formula # NOTE: Please wait until the newest stable release is finished building and # no longer marked as "Pre-release" before creating a PR for a new version. url "https://github.com/solo-io/gloo.git", - tag: "v1.18.17", - revision: "589dd14a2194fa096c6d4a2cba01ad33573dc36a" + tag: "v1.19.0", + revision: "6be064a379000f6ede4780a4d93df0840bc1df5d" license "Apache-2.0" head "https://github.com/solo-io/gloo.git", branch: "main" From 6f5cedbfc722f119d38ee3c83d913d92e82995d2 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 02:46:07 +0000 Subject: [PATCH 1310/1364] nuget 6.14.0 --- Formula/n/nuget.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/n/nuget.rb b/Formula/n/nuget.rb index ab6b94fe37683..63335a80af934 100644 --- a/Formula/n/nuget.rb +++ b/Formula/n/nuget.rb @@ -1,8 +1,8 @@ class Nuget < Formula desc "Package manager for Microsoft development platform including .NET" homepage "https://www.nuget.org/" - url "https://dist.nuget.org/win-x86-commandline/v6.13.2/nuget.exe" - sha256 "506085572a662f03bec1a5ffe43f81a240ff99b3765b8dbc0e22c33532775227" + url "https://dist.nuget.org/win-x86-commandline/v6.14.0/nuget.exe" + sha256 "92dbed160ddee0f64b901e907439e021211b428e57c089ecc12fc38dcc4bd9a5" license "MIT" livecheck do From a595ecb37fc3b6dc051eb1df4a971daa32a9f500 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 02:46:31 +0000 Subject: [PATCH 1311/1364] observerward 2025.5.14 --- Formula/o/observerward.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/o/observerward.rb b/Formula/o/observerward.rb index 3c2e07558721b..47886d8a552d3 100644 --- a/Formula/o/observerward.rb +++ b/Formula/o/observerward.rb @@ -1,8 +1,8 @@ class Observerward < Formula desc "Web application and service fingerprint identification tool" homepage "https://emo-crab.github.io/observer_ward/" - url "https://github.com/emo-crab/observer_ward/archive/refs/tags/v2025.5.12.tar.gz" - sha256 "fa9dbd296fddde75922459f6808f866390475714d220f783af124889a71705be" + url "https://github.com/emo-crab/observer_ward/archive/refs/tags/v2025.5.14.tar.gz" + sha256 "976d715127a38e80d81acf692ab0baea6195f0c248d55357aed9d1ec9c5aca64" license "GPL-3.0-only" bottle do From 6e8f9235890fad5e4d1542f6cf8e08861fd21f97 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 02:51:59 +0000 Subject: [PATCH 1312/1364] rhash 1.4.6 --- Formula/r/rhash.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/r/rhash.rb b/Formula/r/rhash.rb index 6b1578fb8a53f..577d173f511aa 100644 --- a/Formula/r/rhash.rb +++ b/Formula/r/rhash.rb @@ -1,8 +1,8 @@ class Rhash < Formula desc "Utility for computing and verifying hash sums of files" homepage "https://sourceforge.net/projects/rhash/" - url "https://downloads.sourceforge.net/project/rhash/rhash/1.4.5/rhash-1.4.5-src.tar.gz" - sha256 "6db837e7bbaa7c72c5fd43ca5af04b1d370c5ce32367b9f6a1f7b49b2338c09a" + url "https://downloads.sourceforge.net/project/rhash/rhash/1.4.6/rhash-1.4.6-src.tar.gz" + sha256 "9f6019cfeeae8ace7067ad22da4e4f857bb2cfa6c2deaa2258f55b2227ec937a" license "0BSD" head "https://github.com/rhash/RHash.git", branch: "master" From d3eacc77a0c030d76a63b57b43084e55e38248e9 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 02:53:44 +0000 Subject: [PATCH 1313/1364] safety 3.5.1 --- Formula/s/safety.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Formula/s/safety.rb b/Formula/s/safety.rb index f9a90aae07e76..d37bfd63d6a1f 100644 --- a/Formula/s/safety.rb +++ b/Formula/s/safety.rb @@ -3,8 +3,8 @@ class Safety < Formula desc "Checks Python dependencies for known vulnerabilities and suggests remediations" homepage "https://safetycli.com/product/safety-cli" - url "https://files.pythonhosted.org/packages/c2/31/e4875edebb8fd5885ff8e52d0522c44a4d9bc2abe26f11225b8e64b31868/safety-3.5.0.tar.gz" - sha256 "7223af388bde5323867eca5495f9817746289be9fd5b1896f168dc7082ea8ff1" + url "https://files.pythonhosted.org/packages/2d/9c/df6ab5f077e22bb4a10aa9208691c6be5c0ad15193439435216ed536f7f3/safety-3.5.1.tar.gz" + sha256 "7fde2dbb497f2a167fe2dd864c8ab3296bbcd6e8a4f0490b047d5c84a60a653f" license "MIT" head "https://github.com/pyupio/safety.git", branch: "main" @@ -165,8 +165,8 @@ class Safety < Formula end resource "setuptools" do - url "https://files.pythonhosted.org/packages/70/dc/3976b322de9d2e87ed0007cf04cc7553969b6c7b3f48a565d0333748fbcd/setuptools-80.3.1.tar.gz" - sha256 "31e2c58dbb67c99c289f51c16d899afedae292b978f8051efaf6262d8212f927" + url "https://files.pythonhosted.org/packages/95/32/0cc40fe41fd2adb80a2f388987f4f8db3c866c69e33e0b4c8b093fdf700e/setuptools-80.4.0.tar.gz" + sha256 "5a78f61820bc088c8e4add52932ae6b8cf423da2aff268c23f813cfbb13b4006" end resource "shellingham" do From 4671cee3b112ee6b078f4a8fe7e343745b9a7538 Mon Sep 17 00:00:00 2001 From: Eric Knibbe Date: Tue, 13 May 2025 23:06:17 -0400 Subject: [PATCH 1314/1364] bfg: install binary with write_jar_script --- Formula/b/bfg.rb | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Formula/b/bfg.rb b/Formula/b/bfg.rb index 6a0dea2f1897b..ba609869cf232 100644 --- a/Formula/b/bfg.rb +++ b/Formula/b/bfg.rb @@ -18,10 +18,7 @@ class Bfg < Formula def install libexec.install "bfg-#{version}.jar" - (bin/"bfg").write <<~SHELL - #!/bin/bash - exec "#{Formula["openjdk"].opt_bin}/java" -jar "#{libexec}/bfg-#{version}.jar" "$@" - SHELL + bin.write_jar_script libexec/"bfg-#{version}.jar", "bfg" end test do From 1fc2e0ecf1c3d75a183571bf0728062032f5fca0 Mon Sep 17 00:00:00 2001 From: Eric Knibbe Date: Tue, 13 May 2025 23:06:30 -0400 Subject: [PATCH 1315/1364] ditaa: install binary with write_jar_script --- Formula/d/ditaa.rb | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Formula/d/ditaa.rb b/Formula/d/ditaa.rb index f520e4238c002..24d3bfc48e1b4 100644 --- a/Formula/d/ditaa.rb +++ b/Formula/d/ditaa.rb @@ -15,10 +15,7 @@ class Ditaa < Formula def install libexec.install "ditaa-#{version}-standalone.jar" - (bin/"ditaa").write <<~BASH - #!/bin/bash - exec "#{Formula["openjdk"].opt_bin}/java" -jar "#{libexec}/ditaa-#{version}-standalone.jar" "$@" - BASH + bin.write_jar_script libexec/"ditaa-#{version}-standalone.jar", "ditaa" end test do From 597c4a0155cdb7d74f8127e064392f2e56f4a34d Mon Sep 17 00:00:00 2001 From: Eric Knibbe Date: Tue, 13 May 2025 23:06:45 -0400 Subject: [PATCH 1316/1364] picard-tools: install binary with write_jar_script --- Formula/p/picard-tools.rb | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Formula/p/picard-tools.rb b/Formula/p/picard-tools.rb index e4b3731f4b9a6..69f59b3070d41 100644 --- a/Formula/p/picard-tools.rb +++ b/Formula/p/picard-tools.rb @@ -18,10 +18,7 @@ class PicardTools < Formula def install libexec.install "picard.jar" - (bin/"picard").write <<~EOS - #!/bin/bash - exec "#{Formula["openjdk"].opt_bin}/java" $JAVA_OPTS -jar "#{libexec}/picard.jar" "$@" - EOS + bin.write_jar_script libexec/"picard.jar", "picard", "$JAVA_OPTS" end test do From 78179a9476b7c1e0046b5e7381d3cf7d1a65fa45 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 03:10:17 +0000 Subject: [PATCH 1317/1364] fern-api: update 0.61.4 bottle. --- Formula/f/fern-api.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/f/fern-api.rb b/Formula/f/fern-api.rb index ab4610780d9af..5cc7de2e28e5d 100644 --- a/Formula/f/fern-api.rb +++ b/Formula/f/fern-api.rb @@ -7,7 +7,7 @@ class FernApi < Formula head "https://github.com/fern-api/fern.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, all: "a47e128573f43cfb6fb12ab85c204f21d66e5bd71e8f1aa404fefd3b1b95f9f1" + sha256 cellar: :any_skip_relocation, all: "4c60055e45cc99b14e75ec46af037f573a09c1b712516cb4ca1f5d14fa0c8ee8" end depends_on "node" From 9d21651f37645bbdf6c5a68d16800a2c6a54c9cb Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 03:22:08 +0000 Subject: [PATCH 1318/1364] nuget: update 6.14.0 bottle. --- Formula/n/nuget.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/n/nuget.rb b/Formula/n/nuget.rb index 63335a80af934..4d26be70b9c3e 100644 --- a/Formula/n/nuget.rb +++ b/Formula/n/nuget.rb @@ -17,7 +17,7 @@ class Nuget < Formula end bottle do - sha256 cellar: :any_skip_relocation, all: "6c10332a8f36227825fd53499baf7a796234e8588ca074ab8110ed8bf69e0736" + sha256 cellar: :any_skip_relocation, all: "e7a94ca9119b9bb55b584ca97d66e390a0a5271ea53689820f954c7b17fc548b" end depends_on "mono" From c75dfb09ae063f7a63925c219d1ed40e4867efa7 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 13 May 2025 14:19:38 +0000 Subject: [PATCH 1319/1364] redis 8.0.1 --- Formula/r/redis.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/r/redis.rb b/Formula/r/redis.rb index 445cc98d99f74..7b1bf8d7798cb 100644 --- a/Formula/r/redis.rb +++ b/Formula/r/redis.rb @@ -1,8 +1,8 @@ class Redis < Formula desc "Persistent key-value database, with built-in net interface" homepage "https://redis.io/" - url "https://download.redis.io/releases/redis-8.0.0.tar.gz" - sha256 "cf395665ba5fcecc4ef7aed1d8ab19c268619d98595827565c82344160171262" + url "https://download.redis.io/releases/redis-8.0.1.tar.gz" + sha256 "d3a11d6ababf44cb98d23f23cee39ae75d17867dcd64aac4add808e21ed36e0c" license all_of: [ "AGPL-3.0-only", "BSD-2-Clause", # deps/jemalloc, deps/linenoise, src/lzf* From fb84baf0834c84fe650567873073e1470f8817fa Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 03:29:05 +0000 Subject: [PATCH 1320/1364] safety: update 3.5.1 bottle. --- Formula/s/safety.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/s/safety.rb b/Formula/s/safety.rb index d37bfd63d6a1f..b753f9f585bc7 100644 --- a/Formula/s/safety.rb +++ b/Formula/s/safety.rb @@ -9,13 +9,13 @@ class Safety < Formula head "https://github.com/pyupio/safety.git", branch: "main" bottle do - sha256 cellar: :any, arm64_sequoia: "07a5b617950c6941903023a18fb738793bc56079e0b65224b639a5b1dc5f9702" - sha256 cellar: :any, arm64_sonoma: "a686b6e1f3fb9913a41b818021748abc11824830fab393feed31e5aafa06a70a" - sha256 cellar: :any, arm64_ventura: "21b760cc745e23b198c693ad133cb5fcf28a1ce35045de6f6f786f2fb84db82a" - sha256 cellar: :any, sonoma: "45db61f7c1eefc43e67e352e9a8a0b1efe84d65bdced009d35ec433fc81641a0" - sha256 cellar: :any, ventura: "f21749a743c58bf9d1dfd6efd0d398e0919afe6c5686928f0c6a29646e42ac84" - sha256 cellar: :any_skip_relocation, arm64_linux: "7a667b7b892c52bfaadcd3a9ce238b6ede6d13bc4218f9c3edde6093bfa595b0" - sha256 cellar: :any_skip_relocation, x86_64_linux: "702ab426ce3512162455f3b738db243828c790377bbc45e8d235d95bb9704055" + sha256 cellar: :any, arm64_sequoia: "edac706c31f93a579208f86ab327fc0090cb5699af86f5e3a92a3664944ce0ed" + sha256 cellar: :any, arm64_sonoma: "4847fb07d411d4d404cd7dfae6a1872e4bc9a4a2cbab3dc49b6a5b311ed511a7" + sha256 cellar: :any, arm64_ventura: "67c6d5156fc4be4bcd514b8d5d963b950aaff52336361057d002f642f025d919" + sha256 cellar: :any, sonoma: "f895e0dc48273e95e8356bbdf36e2973d85eb4e4977037418542fe5eab089be6" + sha256 cellar: :any, ventura: "136fcbc770dfc0f1e6763c063cc61bb0b624a92a7a1fffcc986e1d8d129be990" + sha256 cellar: :any_skip_relocation, arm64_linux: "33d7d9e11710de28422e9cb741af333165dd0c6b0eef98307e853ac86add23b4" + sha256 cellar: :any_skip_relocation, x86_64_linux: "1bed57859863321e621124a7e022a48007f1daa1400224b40e700a479e8cc519" end depends_on "cmake" => :build From 6df3a308ffa420a5251f47a0479ce58e2914d967 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 03:31:49 +0000 Subject: [PATCH 1321/1364] glooctl: update 1.19.0 bottle. --- Formula/g/glooctl.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/g/glooctl.rb b/Formula/g/glooctl.rb index cddab45c7bb2f..8cf3d4a5f6438 100644 --- a/Formula/g/glooctl.rb +++ b/Formula/g/glooctl.rb @@ -15,13 +15,13 @@ class Glooctl < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "706e9a4c0f18af14e7834de7bf864e8ec49b3f53d3bedb1f5ee2189a6c07ac28" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "3b25837f0cafca00cee1d228820ff51ffe072405b8cc67f961bf4618d2526d76" - sha256 cellar: :any_skip_relocation, arm64_ventura: "f8f3faccc466d5a8bbcadc421c9ed81f608a82a42599079202c1d923a8e5571d" - sha256 cellar: :any_skip_relocation, sonoma: "a4479a9d2810e3bb368e32e1b7a142e82240d2e4d7b05bde2607bed19b4b3b2b" - sha256 cellar: :any_skip_relocation, ventura: "5f1235ac99127a597619cfe066442de65360763c231533277a340510cdb27cad" - sha256 cellar: :any_skip_relocation, arm64_linux: "b5695b292a32dc63404775e030ccdbd97360698ecea8c11387c4ff59dff54ccd" - sha256 cellar: :any_skip_relocation, x86_64_linux: "9487e0c696da41ad7201af51b2ab39060ef9775de9984b7bf2bf902613884988" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "61a6cf4d8d4d76c5d7cdd91ccca80ac089c64f31362d23d8adfeab11699539af" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "106904843931a8172ab8cecb9ae0f5393c535d5a276674b54336e7cab7fb5924" + sha256 cellar: :any_skip_relocation, arm64_ventura: "b46473f2df67b970c7a739c7b56788b269a671f4f0e561533b0b933c3bf51cc2" + sha256 cellar: :any_skip_relocation, sonoma: "4c547ae56c044b4b3c1751cc835724bb818be338434541af74a39df97ad53dfa" + sha256 cellar: :any_skip_relocation, ventura: "72a1708278ef092b8b3a6f46821f731f77a163ef34d71d3bfc187baf7257c14b" + sha256 cellar: :any_skip_relocation, arm64_linux: "8b85233217e8f90b5b7b9d7505553b662040dac0e060e6c0fd6bdc9108813cf9" + sha256 cellar: :any_skip_relocation, x86_64_linux: "1e97a6950a2489d7f888ac8bd1347babe3fc51ed7235e9ae53d344e9b8c87c59" end depends_on "go" => :build From db646597451a56916d4e5385322222c3987276cc Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 03:32:58 +0000 Subject: [PATCH 1322/1364] observerward: update 2025.5.14 bottle. --- Formula/o/observerward.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/o/observerward.rb b/Formula/o/observerward.rb index 47886d8a552d3..7f4f6a3b53489 100644 --- a/Formula/o/observerward.rb +++ b/Formula/o/observerward.rb @@ -6,13 +6,13 @@ class Observerward < Formula license "GPL-3.0-only" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "b61a88a4458cd8d77bba2ade624bc1372bcb962acf2b603a440d14257604f6e3" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "7b70a0fdbfd57a89f00472154b6356e4646e10661de85062b11cc3a056c918eb" - sha256 cellar: :any_skip_relocation, arm64_ventura: "82e51377aaf1ccc282e5bad98458cf414694f98280fb3a5bae5f95071af63d29" - sha256 cellar: :any_skip_relocation, sonoma: "420d0238bbe5f3fb0d35a13b0b242407cbbe911c93f9bd67132799fec67037a6" - sha256 cellar: :any_skip_relocation, ventura: "e43d06f4796829a426e3c7e6630f8da6a4773a97b3c42f019dee7d1660d6c973" - sha256 cellar: :any_skip_relocation, arm64_linux: "71a533afe0bad172e5f65381d0e56fc241e79b341353ea74a52ec25093532037" - sha256 cellar: :any_skip_relocation, x86_64_linux: "6b663a20648f24504d7ef3c466de7019490379a46250df6266f29de12529c70c" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "b69629eed25190ffbba8a35981551bf2fe66b6e6f03d96e6482bf71f770cd84d" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "cbd3d60aa6a7b7f7c844b22a18f5029bbf41c04fe490e3d520def205d3189ebd" + sha256 cellar: :any_skip_relocation, arm64_ventura: "fa33d5e0838a822f4a53190678a6b8c757def4fc435aa3c588fe29da4f583cbb" + sha256 cellar: :any_skip_relocation, sonoma: "65c55f11e6b9169060d33df83e3b3bcbb8af416b9f4852f6a697592ea5247cae" + sha256 cellar: :any_skip_relocation, ventura: "5177e3ca1e3e7a2e2c8c329ff3328b55f737788ddabf9b606a452553a28ffd21" + sha256 cellar: :any_skip_relocation, arm64_linux: "ae219e11d36afa0c3115954b9b771164e6176667329d61e41e8ab8ec49da0845" + sha256 cellar: :any_skip_relocation, x86_64_linux: "dfcd99001da2f238f4079c31dd74a4e64aff9a7407d0487cf7ce5709cf4ed31e" end depends_on "rust" => :build From 8763fe8ab7899c2fc94391006c8bbb40cb6551bd Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 03:33:38 +0000 Subject: [PATCH 1323/1364] exploitdb: update 2025-05-14 bottle. --- Formula/e/exploitdb.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/e/exploitdb.rb b/Formula/e/exploitdb.rb index a3a908cf593b3..0f7769671bdbe 100644 --- a/Formula/e/exploitdb.rb +++ b/Formula/e/exploitdb.rb @@ -8,13 +8,13 @@ class Exploitdb < Formula head "https://gitlab.com/exploit-database/exploitdb.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "fb4bc75819f2b413522022f2a472728f304902a8cceaa7c34761683fbf9fd863" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "6b87dc0cee9627c691c87175b6ec64d1f31641280a02d3db6c7fe5a3b376a1d3" - sha256 cellar: :any_skip_relocation, arm64_ventura: "f3d87dabaacddd39e481fe16a58fe86aa737eb53916eb0014a751ebf2eb2386c" - sha256 cellar: :any_skip_relocation, sonoma: "6fa5af57578726fdfa4545127bbefc1d7766dcf5fcca774800fb7aefd087119f" - sha256 cellar: :any_skip_relocation, ventura: "a69cdda37465fb5dd9d8913391fa5333dbd3a7ba281abde0d922fa79a10a45d7" - sha256 cellar: :any_skip_relocation, arm64_linux: "dacaa43405a1e6b2813c142fde0aa0bfbb134d89d4d12829934a872732afe01b" - sha256 cellar: :any_skip_relocation, x86_64_linux: "6c51e3b8af23ad8f54f3baf1e97308d00f2f840ef8215652c5d8849aafb89233" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "7f1743ccbf88f0ce0ef9e7410a12933be668860fbbb4da2bfe4021bd519dc66b" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "12334139fca80ba8466abc27c10e932b85bb6e0eda7c67629c947e45c11e97fc" + sha256 cellar: :any_skip_relocation, arm64_ventura: "db9ed2c226a42303d725a5515bc57762c13b46c5f7bf5cec897c71ea68fc87d8" + sha256 cellar: :any_skip_relocation, sonoma: "c03b2a85d574a3b32395806acc582afc8b35d604c8d30a4dd4cde8b69e34d2e7" + sha256 cellar: :any_skip_relocation, ventura: "44056ace3a333774a5e1dc30c49b53b749d90ca111f525606f8eeffafe7314c2" + sha256 cellar: :any_skip_relocation, arm64_linux: "923f0aef1b7813b7962457dd3fbd206b8763f32789344be1a73eb91bf1ecc038" + sha256 cellar: :any_skip_relocation, x86_64_linux: "e536d006ce4e2a3d31d981f570d8867f019dc4e82f00e7ab6d66823d6015a16a" end def install From 6f08315c0d7bc23eadfac6118b53946f7311e653 Mon Sep 17 00:00:00 2001 From: Val V Date: Wed, 14 May 2025 04:01:07 +0000 Subject: [PATCH 1324/1364] smenu 1.4.0 (new formula) --- Formula/s/smenu.rb | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 Formula/s/smenu.rb diff --git a/Formula/s/smenu.rb b/Formula/s/smenu.rb new file mode 100644 index 0000000000000..f39fee9a5e3c0 --- /dev/null +++ b/Formula/s/smenu.rb @@ -0,0 +1,28 @@ +class Smenu < Formula + desc "Powerful and versatile CLI selection tool for interactive or scripting use" + homepage "https://github.com/p-gen/smenu" + url "https://github.com/p-gen/smenu/releases/download/v1.4.0/smenu-1.4.0.tar.bz2" + sha256 "9b4e0d8864746175c1b20d75f5411fa013abdaf24af6801f1c5549b6698e195b" + license "MPL-2.0" + + uses_from_macos "ncurses" + + def install + system "./configure", *std_configure_args + system "make", "install" + end + + test do + require "pty" + + PTY.spawn(bin/"smenu", "--version") do |r, _w, _pid| + r.winsize = [80, 60] + + begin + assert_match version.to_s, r.read + rescue Errno::EIO + # GNU/Linux raises EIO when read is done on closed pty + end + end + end +end From 58e2bba349ac2151618ec17e9799c31863090801 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Wed, 14 May 2025 00:03:50 -0400 Subject: [PATCH 1325/1364] lgogdownloader: revision bump (rhash 1.4.6) Signed-off-by: Rui Chen --- Formula/l/lgogdownloader.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/l/lgogdownloader.rb b/Formula/l/lgogdownloader.rb index 2f3b2e64c05d9..13833cae68e20 100644 --- a/Formula/l/lgogdownloader.rb +++ b/Formula/l/lgogdownloader.rb @@ -4,7 +4,7 @@ class Lgogdownloader < Formula url "https://github.com/Sude-/lgogdownloader/releases/download/v3.17/lgogdownloader-3.17.tar.gz" sha256 "fefda26206ebb1e2a6d734b76f6f07977da150064141f29ed1f90450daf4e69e" license "WTFPL" - revision 2 + revision 3 head "https://github.com/Sude-/lgogdownloader.git", branch: "master" livecheck do From 11726b222d19217ca3351bc5b9fceb9e798db4cf Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 04:06:37 +0000 Subject: [PATCH 1326/1364] redis: update 8.0.1 bottle. --- Formula/r/redis.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/r/redis.rb b/Formula/r/redis.rb index 7b1bf8d7798cb..4b5165a0bce37 100644 --- a/Formula/r/redis.rb +++ b/Formula/r/redis.rb @@ -19,13 +19,13 @@ class Redis < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "fe7717fc1397f4ee553cdb7edf75d6d983cd6ca6a853636b886ee995092a2d5c" - sha256 cellar: :any, arm64_sonoma: "f01fe3f29eb821198c289eb2908c1d701610c6abb72d312b61ba302cf8a5dbc1" - sha256 cellar: :any, arm64_ventura: "bb912351e1cfc319cd814985ef2749df9991a49bb8c609f6fa8f2a9c88c7720a" - sha256 cellar: :any, sonoma: "b3f8ff9cec4d228193768415e4f67816f2140967997f2a66b86fb916a5ac3dd7" - sha256 cellar: :any, ventura: "a0cc960fc453ccc3c2b9a3f1c7f11aaba58634cc32cbf75d10f9d7d561f29df2" - sha256 cellar: :any_skip_relocation, arm64_linux: "87c58efe520b8b8df90e4c43cd1e271b130b5db13593b290d494fc3ac6553678" - sha256 cellar: :any_skip_relocation, x86_64_linux: "2825ef1181669c02e0e693ffcd09414d34b2e958ff935c06dda01fd77b4af4d1" + sha256 cellar: :any, arm64_sequoia: "7f257283869f97ce45045f0f049c27e2a79b686d0ac58458360b6a00c2d75f34" + sha256 cellar: :any, arm64_sonoma: "07deb17bfdf5a0668972ed574e36ae4d66cc613b3cbec6edff7c893adb331767" + sha256 cellar: :any, arm64_ventura: "b02cc3ee192fbcb6c1b8cc7437e1352c15d517304d05415586444d00fd9617b4" + sha256 cellar: :any, sonoma: "73ec7300890dc545e73bba6986cce8709cbc274c3d20b2c3e35ba5660318c603" + sha256 cellar: :any, ventura: "4d00b36d282062de2c494e61ae2431ff404d93e641c22d52cfe19b1bf7512181" + sha256 cellar: :any_skip_relocation, arm64_linux: "78795b13b7e57f9acd185d2db76a135d0e7f182da92d643e69598c2abd1577e9" + sha256 cellar: :any_skip_relocation, x86_64_linux: "a43fc666a8b8551036c82f6a7e10f84acfc7024a70e7ea542c244768c6397041" end depends_on "openssl@3" From fb9005093b47e703e3b6fbccda99308ca8026c2f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 04:08:55 +0000 Subject: [PATCH 1327/1364] cookcli: add 0.10.0 bottle. --- Formula/c/cookcli.rb | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Formula/c/cookcli.rb b/Formula/c/cookcli.rb index 7b0d20b9760a1..0f6536d6da6f2 100644 --- a/Formula/c/cookcli.rb +++ b/Formula/c/cookcli.rb @@ -6,6 +6,15 @@ class Cookcli < Formula license "MIT" head "https://github.com/cooklang/cookcli.git", branch: "main" + bottle do + sha256 cellar: :any_skip_relocation, arm64_sequoia: "01306fee0d7da8501ff32659dcdab40c5705d12d042641a666708dfebb3efe17" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "952bef99a47f0fed5596abc7c6a0e842aeaec2d3d4bc10abd49eb95d0eefe943" + sha256 cellar: :any_skip_relocation, arm64_ventura: "266922100f1e6d6722969acc076b1580e6a5e6a66c7c7a37856529740449564d" + sha256 cellar: :any_skip_relocation, sonoma: "a1657416d697b0cb55e057aa31658b514814b349c106c8576c096cac9c333b81" + sha256 cellar: :any_skip_relocation, ventura: "792fc80ab06153e4a6291dfbe1a450c270a3b9cc6f71e2ad32b82b4c77c191c4" + sha256 cellar: :any_skip_relocation, x86_64_linux: "edb7a7f5ca3d7610a1ae9fe6e6963313a146a366440c4f948ba37697cd543be9" + end + depends_on "rust" => :build depends_on "openssl@3" From e81d00ed8defabb2d81e3324d692189264d42fb9 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 04:10:29 +0000 Subject: [PATCH 1328/1364] dolphie: update 6.10.0 bottle. --- Formula/d/dolphie.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/d/dolphie.rb b/Formula/d/dolphie.rb index fa8cce51ae5cc..5bd4364341b2e 100644 --- a/Formula/d/dolphie.rb +++ b/Formula/d/dolphie.rb @@ -10,13 +10,13 @@ class Dolphie < Formula no_autobump! because: "some resources have to be updated manually" bottle do - sha256 cellar: :any, arm64_sequoia: "bb53a0115ff65b0fdb0005a4fb960bc6986b3bed07994390b0087e30c5cf6e9f" - sha256 cellar: :any, arm64_sonoma: "89fcadbf22be4200b5023cfde22a95a54c73e1daef2b1a5f08010e27dba5a750" - sha256 cellar: :any, arm64_ventura: "8faae1b8d8741086f2e5beeae7a74b7e780d88e1f7139961f687776b930c6648" - sha256 cellar: :any, sonoma: "7fb01e368a1d441b70c21f149073b7a40b8b0de465301ac1604055c0321d9fe1" - sha256 cellar: :any, ventura: "6b9f9ec1a45fb473d5d9a7e835e2f3bfe6dd238f97997ba6cdbf3d138313e4c5" - sha256 cellar: :any_skip_relocation, arm64_linux: "927d70b59ff34bd826057c6a85311955e2d2201d8eebdf66c7994294c0d3ccdd" - sha256 cellar: :any_skip_relocation, x86_64_linux: "5104d11b5f6ea29d005e81ead2102c8983ba7cdd50d22fb0ae587a85dbb19b9a" + sha256 cellar: :any, arm64_sequoia: "91b2f3bb1f56678cea50de4cda6613ae5c68e5ceec093dbf4489c0e496d83149" + sha256 cellar: :any, arm64_sonoma: "6e46e3a41c9f0ca11ceb0bf5bb059264b33396cb5adcf4429398200dd6904ad5" + sha256 cellar: :any, arm64_ventura: "81c37d8882a484e7482831141fa97493dee0e397083ec49ec8892ad599f016db" + sha256 cellar: :any, sonoma: "59f270abbe7a93b3b559c80e15a1c7711d4531171fc7137f128a51f264e6d78d" + sha256 cellar: :any, ventura: "2d1c4c756d7c96b3cb3dee692c9622b8a5a2c76680c4c476895c205d9ca2f016" + sha256 cellar: :any_skip_relocation, arm64_linux: "58180dfc6359359ea12038b073af53ee813c9fdf9e8cff32ad3923e96bff8c19" + sha256 cellar: :any_skip_relocation, x86_64_linux: "00be792c4552beef0acab858c877a06c5770915f0727cb7a80aeb0ac13203c33" end depends_on "rust" => :build # for orjson From ff624f0400b93e599b29f5ab0cca2855182b1026 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 04:12:11 +0000 Subject: [PATCH 1329/1364] smenu: add 1.4.0 bottle. --- Formula/s/smenu.rb | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Formula/s/smenu.rb b/Formula/s/smenu.rb index f39fee9a5e3c0..44a61070740e1 100644 --- a/Formula/s/smenu.rb +++ b/Formula/s/smenu.rb @@ -5,6 +5,15 @@ class Smenu < Formula sha256 "9b4e0d8864746175c1b20d75f5411fa013abdaf24af6801f1c5549b6698e195b" license "MPL-2.0" + bottle do + sha256 cellar: :any_skip_relocation, arm64_sequoia: "0db2b3c8020378b8c8a1391a13ddb5be2a628c4c4972e7cad5aa4e000afc25f6" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "6850bd70569c2cd871520c8eb5738a5d3d4f4be1d1a0358bdde55c79e7372c39" + sha256 cellar: :any_skip_relocation, arm64_ventura: "884d6e69189dced3348d6dbb74c7c5cc133744bd2515afa983b8247831055ef2" + sha256 cellar: :any_skip_relocation, sonoma: "c7d24ecc393322fe0071e5a3ae8d8955193d48b0087708e6c7644fa818ae9349" + sha256 cellar: :any_skip_relocation, ventura: "af00f9aa936f24a34a6b244c215f817e35d983c2be1f506905aa97ed3f021528" + sha256 cellar: :any_skip_relocation, x86_64_linux: "149396da00c29749fd20745146885f0f4ff7833934f76160507aa171b7fef16c" + end + uses_from_macos "ncurses" def install From 7d60e665d7afc6c24800a303fd67bdb0ea62edb9 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 04:12:34 +0000 Subject: [PATCH 1330/1364] fancy-cat: update 0.4.0_3 bottle. --- Formula/f/fancy-cat.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/f/fancy-cat.rb b/Formula/f/fancy-cat.rb index 7e19c1794b134..4e26673a9cf41 100644 --- a/Formula/f/fancy-cat.rb +++ b/Formula/f/fancy-cat.rb @@ -7,13 +7,13 @@ class FancyCat < Formula revision 3 bottle do - sha256 cellar: :any, arm64_sequoia: "a701bbfd37f493909b68c5f13cc3802c1468eb1b291fb4aa955dd6dd4ee9c82d" - sha256 cellar: :any, arm64_sonoma: "604b4f4a8a68c7f8405a00930543dbdda592f5939aa8d4ffe16f0868ba3d0952" - sha256 cellar: :any, arm64_ventura: "9e2ee80fd453a54fe9dfcb0b7670ea9540719eb292227c84a66f995542ffc8b6" - sha256 cellar: :any, sonoma: "da434a308c5403ea201190114504160310061026bf7bc773b5bbd73baf139e24" - sha256 cellar: :any, ventura: "b1e3e63dad0d297dfabe58a21dff30ff6167612ec6a7fd063c86374f42082b18" - sha256 cellar: :any_skip_relocation, arm64_linux: "b388b4d8664618f95007db25995a26d3ea03a5a28243168af333cbf3ca34b592" - sha256 cellar: :any_skip_relocation, x86_64_linux: "8553d25dd61c2ff312bda88e9a468036749be2c9d34bdda45afc1d452c88688d" + sha256 cellar: :any, arm64_sequoia: "1da7dddfc4b9515f7354fa7f567bc9b9ba5a7c8875c0b5989fb93bfd862e0693" + sha256 cellar: :any, arm64_sonoma: "02a59e205ad0181707f8ca1d27d57301639cccf7ff582d9ffd670cc52208bc3e" + sha256 cellar: :any, arm64_ventura: "779b41983cafcbc24c6de0abb09a6262a1fd4be12b60c368fe5b0af9255379df" + sha256 cellar: :any, sonoma: "7a3197ac9a138f73c9733fe33320c651d1658b5497ca943e639f343934966609" + sha256 cellar: :any, ventura: "a7c5bc96d9b96dc33b7af7048b207f1ef3408fd669486e97b224b0561d45699f" + sha256 cellar: :any_skip_relocation, arm64_linux: "70d6755d7cfead91343a9d2bf20d52b599a1ffc0004f13b229bbec33e00c4124" + sha256 cellar: :any_skip_relocation, x86_64_linux: "aa0b88c1cbdb1b01125c1b51b1802c0993579148ef513546dd0b419c706bc3cf" end depends_on "zig" => :build From 1013e6af68a563803b1f0bba456f0fb2cdd15ef8 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 04:12:34 +0000 Subject: [PATCH 1331/1364] mupdf: update 1.26.0 bottle. --- Formula/m/mupdf.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/m/mupdf.rb b/Formula/m/mupdf.rb index 65f564b82b920..62f9d5d93dbe8 100644 --- a/Formula/m/mupdf.rb +++ b/Formula/m/mupdf.rb @@ -12,13 +12,13 @@ class Mupdf < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "2c89022717759320788277832bc1b32046ab66ac087d3fc30313d5c1523a7a6d" - sha256 cellar: :any, arm64_sonoma: "56802fd81143808e87860b507b780adf1ee038dc2e2d8620e752e5752f38ae44" - sha256 cellar: :any, arm64_ventura: "c85e9a9cd588c0acb522923d8f10fc40dd7b4cb3b56cac2e48658bf47b2b85bf" - sha256 cellar: :any, sonoma: "d5082269651e4eeabc03418ec9ae2fd13b77c6a3a0de6d201139acb656a9f265" - sha256 cellar: :any, ventura: "f7da4facc2e6cea4346b3167c8419a4d3ed5b31a753586639b87a5e26149c9c8" - sha256 cellar: :any_skip_relocation, arm64_linux: "ec4677bc71f33bd3d749f42d56af351a2c1b21af0692c91151b9eabcac7d6ce6" - sha256 cellar: :any_skip_relocation, x86_64_linux: "5e4d872cb42f1ffd63f44d6f05168bd71f3f80783be6f3861d5a96c03d2d7b62" + sha256 cellar: :any, arm64_sequoia: "e773216e231cdc4ea471d63edddc90a67ad6bc0d990b9e14a163c4952e60738c" + sha256 cellar: :any, arm64_sonoma: "046e8262a45c3b24d3ad077eb2e6addaa43d6b778f518c6bb433ffbab2da2b87" + sha256 cellar: :any, arm64_ventura: "18aea7bc53249cefaf910f26c3da52fe77dec817990d16f35f97196cdf71b61b" + sha256 cellar: :any, sonoma: "e25e8958256ec743cdc880d63dc68204a4bc82710a91454aece8851295c1d6c8" + sha256 cellar: :any, ventura: "13cfb67461ebc03a94eb4773c781649cc0eef12781ea2efcf1fe0d8130b1143a" + sha256 cellar: :any_skip_relocation, arm64_linux: "875be13108d7114c44c1348db764c5818f41f235f6065605f7551ad1f6779dbc" + sha256 cellar: :any_skip_relocation, x86_64_linux: "04febebca733ebaaa2fd1d3650165ce160a0bc058fb05b264d0e0dada1a1ec31" end depends_on "llvm" => :build From 8117194318057ff48133969d4aa8950fb0d747af Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 04:12:34 +0000 Subject: [PATCH 1332/1364] mupdf-tools: update 1.26.0 bottle. --- Formula/m/mupdf-tools.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/m/mupdf-tools.rb b/Formula/m/mupdf-tools.rb index 7fc6982d1496d..286313e1fac7a 100644 --- a/Formula/m/mupdf-tools.rb +++ b/Formula/m/mupdf-tools.rb @@ -11,13 +11,13 @@ class MupdfTools < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "bf484f6cd99e32605f2c68d45eaf91a199b43cb7b2f0ac2b2d8e279a6e15fc8a" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "a5d9c98707c6feb9ca68449ab70c991d77de071f22cd8ea0ce52649c3ba516bd" - sha256 cellar: :any_skip_relocation, arm64_ventura: "5585b9fcdf43af13ec7475aa5efc995a31e6eee9cd74afc4b9638300ce7c69d0" - sha256 cellar: :any_skip_relocation, sonoma: "487118d917f2b5ac715efd3ff3a9606608df9c3555248ee4a2022852884f51bb" - sha256 cellar: :any_skip_relocation, ventura: "8879b23501753bc6b429b865b52166c1e0c5b5608978549573a5e3093788aa96" - sha256 cellar: :any_skip_relocation, arm64_linux: "d21028813fc423cc4b1ca4777a8c322aba37d1bec2955368e77ffc1e9d853be7" - sha256 cellar: :any_skip_relocation, x86_64_linux: "ac555552f0f55c63a6e7e87bf90d2cebaeff0379af39480ef13ef3e15828d865" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "8df3f6ebbf2c50eb2c02ff622a745948223df1fffe515fe0a0e4838bc509c9b5" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "9c85d08c24c772344bed0b7f5e99e7088c18b914018cb8e4e113b32411201a0a" + sha256 cellar: :any_skip_relocation, arm64_ventura: "758971a3bc4791263721b3d84285a032949d8e59b8b89521ed29c47fd694b460" + sha256 cellar: :any_skip_relocation, sonoma: "28618ba854f25915520ed4c9c61666da7da57484509a177d7d35a89ada4ae50b" + sha256 cellar: :any_skip_relocation, ventura: "154f0dab73d3dabbfd5fa55f536e0917e39567c934c98968e3d24583637a7797" + sha256 cellar: :any_skip_relocation, arm64_linux: "c66948ee6d0210fe61cbcd82268dc87ad2656f3585917e143bb58e57d6f62922" + sha256 cellar: :any_skip_relocation, x86_64_linux: "0902c56662a2551e00bb2493052c09e6c1745d1db1f8bcbe0db0662e09f51e13" end conflicts_with "mupdf", because: "mupdf and mupdf-tools install the same binaries" From 4050004332ac7ac881f89137fe578c25287c6b8b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 04:12:34 +0000 Subject: [PATCH 1333/1364] pymupdf: update 1.25.5_1 bottle. --- Formula/p/pymupdf.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/p/pymupdf.rb b/Formula/p/pymupdf.rb index 029abd31998ba..1a28b480100d5 100644 --- a/Formula/p/pymupdf.rb +++ b/Formula/p/pymupdf.rb @@ -7,13 +7,13 @@ class Pymupdf < Formula revision 1 bottle do - sha256 cellar: :any, arm64_sequoia: "3b76825052eaaac7c71e5be853196d5ba19fd98be5885a2e01f69f07dd65ab46" - sha256 cellar: :any, arm64_sonoma: "e7313345450e93d2ea93a914805554add8d8500ca4b9e42d40e98910318c2ee2" - sha256 cellar: :any, arm64_ventura: "8db0af7fe4004bdaea575470776ae1c5cb7af43fb80ba0dccfe6d09877371c13" - sha256 cellar: :any, sonoma: "24dc1baee24e9072f28bef46e7b1ea7b36efdcf42da098af5d1850696b978fd5" - sha256 cellar: :any, ventura: "6aa7f4c2ae45800f2db6574e13f5d3afec61590095c760525b8190647ce1534f" - sha256 cellar: :any_skip_relocation, arm64_linux: "8a74d6dfcb1bcdf3617c2e616fa6be385204fdf3b5ded3f99429c29ee40297fc" - sha256 cellar: :any_skip_relocation, x86_64_linux: "e5ca11cffff40105ea756362889762c52fe9dc018a8b53d4135e49fb57f34c09" + sha256 cellar: :any, arm64_sequoia: "6403ec1f83d72f37814ecfd6bb97a282ee77da09c0c23365489a87827fb8ab13" + sha256 cellar: :any, arm64_sonoma: "785565c0fd451871fcbe8bb521ef5bfdcd9345ecf52d88778f853dabe0118834" + sha256 cellar: :any, arm64_ventura: "2d44908b7480e3566706299e60cfd7368bf6cc9dd93882655f8bc837e4950c60" + sha256 cellar: :any, sonoma: "9a1f423034d94a39abd45411c9d1d4cfa913b930afc1d47be15e36d0665d635b" + sha256 cellar: :any, ventura: "b986d4b8eb5b9036f109eaf87247d06447cc1ee8219b03bec85eefd57af3ee95" + sha256 cellar: :any_skip_relocation, arm64_linux: "8f9c66135b7ad940d5ffbfbf5eabe43c69533684e2bf5d5d042bdee4224fa040" + sha256 cellar: :any_skip_relocation, x86_64_linux: "0fa9e18b05f1099139b172fccbeec5f0bd407b14c306cf6728ab63719ce761ef" end depends_on "freetype" => :build From 1884bbc35948ecf04392d29bd89577af7ba66917 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 05:00:50 +0000 Subject: [PATCH 1334/1364] fastfetch 2.43.0 --- Formula/f/fastfetch.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/f/fastfetch.rb b/Formula/f/fastfetch.rb index 9e2a16b86027b..9b848276ee50e 100644 --- a/Formula/f/fastfetch.rb +++ b/Formula/f/fastfetch.rb @@ -1,8 +1,8 @@ class Fastfetch < Formula desc "Like neofetch, but much faster because written mostly in C" homepage "https://github.com/fastfetch-cli/fastfetch" - url "https://github.com/fastfetch-cli/fastfetch/archive/refs/tags/2.42.0.tar.gz" - sha256 "9f94fdbe0642b2402517bba2fff4dd31099649d4e066f4c39b5b728cc3627f01" + url "https://github.com/fastfetch-cli/fastfetch/archive/refs/tags/2.43.0.tar.gz" + sha256 "192ddb57d021436d93ed8ad1fadaaeef20ce59a2296f31af65e12978b48feda5" license "MIT" head "https://github.com/fastfetch-cli/fastfetch.git", branch: "dev" From 9da53332206d04c42b830cffa9b25f739af7ccc2 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 05:02:48 +0000 Subject: [PATCH 1335/1364] geoserver 2.27.1 --- Formula/g/geoserver.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/g/geoserver.rb b/Formula/g/geoserver.rb index 772be361a3920..d3177fbc4ccb6 100644 --- a/Formula/g/geoserver.rb +++ b/Formula/g/geoserver.rb @@ -1,8 +1,8 @@ class Geoserver < Formula desc "Java server to share and edit geospatial data" homepage "https://geoserver.org/" - url "https://downloads.sourceforge.net/project/geoserver/GeoServer/2.27.0/geoserver-2.27.0-bin.zip" - sha256 "6e12febbe0682a05b67303971336aad21d3b74a173f6ef560768d6f27005d2f2" + url "https://downloads.sourceforge.net/project/geoserver/GeoServer/2.27.1/geoserver-2.27.1-bin.zip" + sha256 "ec8ae7ce759ae4d23fda0147553450d087ab3a4a1d4ad6ebd1a1a928fa5e2d09" license "GPL-2.0-or-later" # GeoServer releases contain a large number of files for each version, so the From 11dd0f7ddc2db791e53ed74899f1f612a4ea74d0 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 05:11:55 +0000 Subject: [PATCH 1336/1364] lgogdownloader: update 3.17_3 bottle. --- Formula/l/lgogdownloader.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/l/lgogdownloader.rb b/Formula/l/lgogdownloader.rb index 13833cae68e20..cc17e4d92aeb1 100644 --- a/Formula/l/lgogdownloader.rb +++ b/Formula/l/lgogdownloader.rb @@ -13,13 +13,13 @@ class Lgogdownloader < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "7b0ed64cb9c6e0ed0b58186f7dc2e883bfbab2013ce18e48a41c99d521b01614" - sha256 cellar: :any, arm64_sonoma: "573695e62f602647ce0a9a196e418a036b21b90a38a884a844f54b0189bacefe" - sha256 cellar: :any, arm64_ventura: "310a33ddbd791f1797a7ddab5e199c6702775bbd26beb1d0a7d1a3a38afe7283" - sha256 cellar: :any, sonoma: "560c837b52fabc8f056c08116556430748f0ab1160e276d8d8a2140a923c83fc" - sha256 cellar: :any, ventura: "20fbfa83ad0fc270fbda1c26563939a3f335ffcfa0d3e8a8c14e9068e8d30b3d" - sha256 cellar: :any_skip_relocation, arm64_linux: "db28c8aa73a8f1d3b9b32fe66a8808aba9fef32f2524d2688778c100794a482d" - sha256 cellar: :any_skip_relocation, x86_64_linux: "5461344b9818f2d8c394e7703612f9a29611a30f87158b0e486fd3a8d05d6297" + sha256 cellar: :any, arm64_sequoia: "9d9bd03b6293d5fb17fabd54655dd7600fab608240b114a460754c2407fc1296" + sha256 cellar: :any, arm64_sonoma: "49fba152c84c5e9e6e516f82a9a6366ba73548871e6564b0db48c90d9e8ec328" + sha256 cellar: :any, arm64_ventura: "692d0544791fa9386a7150277006a65c686521ff5075d9f0ae883c8799dc42c6" + sha256 cellar: :any, sonoma: "27cb3ba5d66a26fdacfbfc84f701958a72470e5e41e4aeef15232862b919fd55" + sha256 cellar: :any, ventura: "4e1cb55ac54c01e2796b2a153799af05ed69cc9adb2929fc82cfdedcc8b886b0" + sha256 cellar: :any_skip_relocation, arm64_linux: "1b29ed9cb8fddf7bb558b03a5959f6686c74dff40609a75b7c03e27798a29f34" + sha256 cellar: :any_skip_relocation, x86_64_linux: "94f0094701d17088889b2a00d2764c26b0dd0b1ff020295e4b36b996e2d65b1e" end depends_on "cmake" => :build From 711b9ab958d8aef5faca9f43c51b9aab7e78be9c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 05:11:55 +0000 Subject: [PATCH 1337/1364] rhash: update 1.4.6 bottle. --- Formula/r/rhash.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/r/rhash.rb b/Formula/r/rhash.rb index 577d173f511aa..28e0c16ff8022 100644 --- a/Formula/r/rhash.rb +++ b/Formula/r/rhash.rb @@ -7,13 +7,13 @@ class Rhash < Formula head "https://github.com/rhash/RHash.git", branch: "master" bottle do - sha256 arm64_sequoia: "53f99cd369b33f89ba49c4122d10f3e9e8c421a4b9c4530d06e7f96cc0f5fb46" - sha256 arm64_sonoma: "2eeb5d8573c34348a04915488058f887b5e3d5c5067d2c8be651ce9661b99b75" - sha256 arm64_ventura: "6a42309ef3de45c60cc5bb2ced37507797d0bd75e0fa4fd3f0aa13477e6c16bf" - sha256 sonoma: "e2c0137282fb8334dd1757707e1cecb91b443ee0d63a4d465a36b70993e23d4b" - sha256 ventura: "16f11306b675cc5b0d0455d735d2752d904f5848d787331cd97d04ffb3afc48c" - sha256 arm64_linux: "9d0584df215a7dc9cbe3ed43439f82e51e01c967f930e07cca995601cf728370" - sha256 x86_64_linux: "c9cc7cc1aa66f97050f79712054f5689b08e5579657b4d3249f058d09b4169b1" + sha256 arm64_sequoia: "7cfeaa013d6bc5fc89cad3d34349ebfbc38f65da844f6eda92e55f91d42144ec" + sha256 arm64_sonoma: "10388639684b13fe90f7ac889e1023a7823e01087d04d4725068aca25207387e" + sha256 arm64_ventura: "757848383261b7e991ba04ecd5a3310bc263c8d259ee6ee98a8c82822b1f8ae3" + sha256 sonoma: "d0ebe3819cd610352c788258e8b6e9d1e04941a598cc9e4e141b24e25caf6eab" + sha256 ventura: "39760c4816095b7abc836fb065c2e5d7ae0e540d6dff9720e675c476a212851e" + sha256 arm64_linux: "de58dca8a85542060574b3263b18556bc90adcacfb41710083ebd342a33ff5ba" + sha256 x86_64_linux: "924accaa51ffbf427905f37750a5aae05bb8fd7b22190653560b90d8e3388108" end def install From 09ba5e058a83f0e5096f7b87e8a810ff7a064f58 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 05:27:11 +0000 Subject: [PATCH 1338/1364] swiftformat 0.56.1 --- Formula/s/swiftformat.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/s/swiftformat.rb b/Formula/s/swiftformat.rb index 145e2e27eefa6..b0ec9082558b0 100644 --- a/Formula/s/swiftformat.rb +++ b/Formula/s/swiftformat.rb @@ -1,8 +1,8 @@ class Swiftformat < Formula desc "Formatting tool for reformatting Swift code" homepage "https://github.com/nicklockwood/SwiftFormat" - url "https://github.com/nicklockwood/SwiftFormat/archive/refs/tags/0.56.0.tar.gz" - sha256 "88e08fb85fd72f50061c7a6278517b43029a98bdf39d2d4c635a01ee9b435276" + url "https://github.com/nicklockwood/SwiftFormat/archive/refs/tags/0.56.1.tar.gz" + sha256 "58ddb99c2c70268872aed1da1d7018de51cbba9e5be7a2f9b7285d43ec3d4092" license "MIT" head "https://github.com/nicklockwood/SwiftFormat.git", branch: "develop" From 9da9dd3c31a32413e118ce7e48d036f738e628fb Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 07:51:50 +0000 Subject: [PATCH 1339/1364] cdk8s 2.200.70 --- Formula/c/cdk8s.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/cdk8s.rb b/Formula/c/cdk8s.rb index 8f2d6a97c6b26..9fdd26d4bce16 100644 --- a/Formula/c/cdk8s.rb +++ b/Formula/c/cdk8s.rb @@ -1,8 +1,8 @@ class Cdk8s < Formula desc "Define k8s native apps and abstractions using object-oriented programming" homepage "https://cdk8s.io/" - url "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.200.69.tgz" - sha256 "74c9d1398b2468a8d0416832f24665c5f9944c408d74cfaab9079bfa45b2a1b6" + url "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.200.70.tgz" + sha256 "dce041d259a7651c9dc683fee04577b85ff0dfcb57f4ff214acdc4100998db6c" license "Apache-2.0" bottle do From fcbbff1bb75564ca6ec2a1bc778e648210b98e0b Mon Sep 17 00:00:00 2001 From: botantony Date: Wed, 14 May 2025 09:53:41 +0200 Subject: [PATCH 1340/1364] lunar-date 3.0.2 --- .github/autobump.txt | 1 + Formula/l/lunar-date.rb | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/autobump.txt b/.github/autobump.txt index f7ad653c58691..1bcdc1def54f3 100644 --- a/.github/autobump.txt +++ b/.github/autobump.txt @@ -2197,6 +2197,7 @@ lucky-commit ludusavi luit lume +lunar-date lune lunzip lutok diff --git a/Formula/l/lunar-date.rb b/Formula/l/lunar-date.rb index 095f16f124e14..c3acf571b0960 100644 --- a/Formula/l/lunar-date.rb +++ b/Formula/l/lunar-date.rb @@ -1,8 +1,8 @@ class LunarDate < Formula desc "Chinese lunar date library" homepage "https://github.com/yetist/lunar-date" - url "https://github.com/yetist/lunar-date/releases/download/v3.0.1/lunar-date-3.0.1.tar.xz" - sha256 "de00cf81fc7a31c08ea679c4a876dd6d4ea661b33bb8c192bbc016e8f3e16aca" + url "https://github.com/yetist/lunar-date/releases/download/v3.0.2/lunar-date-3.0.2.tar.xz" + sha256 "608d6e984d4eadae836706c0099f3721b878506b04e053058f694e9fd93933bc" license "LGPL-2.1-or-later" bottle do From 4b840d0c2390b33bc33aa63d53fd3f8bbcf9ae7c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 08:00:50 +0000 Subject: [PATCH 1341/1364] jackett 0.22.1895 --- Formula/j/jackett.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/j/jackett.rb b/Formula/j/jackett.rb index 0fde5e1f1fe8c..8fdaea7a212ca 100644 --- a/Formula/j/jackett.rb +++ b/Formula/j/jackett.rb @@ -1,8 +1,8 @@ class Jackett < Formula desc "API Support for your favorite torrent trackers" homepage "https://github.com/Jackett/Jackett" - url "https://github.com/Jackett/Jackett/archive/refs/tags/v0.22.1893.tar.gz" - sha256 "8b270321b36feafe82aa082f72e3d8f2b117201d92cfffb3ec05bf06ef80192a" + url "https://github.com/Jackett/Jackett/archive/refs/tags/v0.22.1895.tar.gz" + sha256 "1aaacda5eb4dc72bf6f8a28c7ff5063491580caef574cfb85b59acafaad6bb97" license "GPL-2.0-only" head "https://github.com/Jackett/Jackett.git", branch: "master" From cf4d2412e30344877c5a2514954aef5615783b19 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 08:04:34 +0000 Subject: [PATCH 1342/1364] limbo 0.0.20 --- Formula/l/limbo.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/l/limbo.rb b/Formula/l/limbo.rb index af6dca0a01be5..4674f3564d310 100644 --- a/Formula/l/limbo.rb +++ b/Formula/l/limbo.rb @@ -1,8 +1,8 @@ class Limbo < Formula desc "Interactive SQL shell for Limbo" homepage "https://github.com/tursodatabase/limbo" - url "https://github.com/tursodatabase/limbo/archive/refs/tags/v0.0.19.tar.gz" - sha256 "ac28707be9e10fc6d29b1da0d4dfea55f4b3a87120acc7e33a8d22c49b8f5f8c" + url "https://github.com/tursodatabase/limbo/archive/refs/tags/v0.0.20.tar.gz" + sha256 "1b5bde3f8ee0a5ea54eb33dea27df9c86c8b226dec01d74dce62c990fe5589cd" license "MIT" head "https://github.com/tursodatabase/limbo.git", branch: "main" From fd8bb73d6be359678e4c4da31d87defc9e9af916 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 08:06:40 +0000 Subject: [PATCH 1343/1364] mcpm 1.11.0 --- Formula/m/mcpm.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/m/mcpm.rb b/Formula/m/mcpm.rb index 5bfa77a2a9bd2..56d06caa663c7 100644 --- a/Formula/m/mcpm.rb +++ b/Formula/m/mcpm.rb @@ -3,8 +3,8 @@ class Mcpm < Formula desc "Open source, community-driven MCP server and client manager" homepage "https://mcpm.sh/" - url "https://files.pythonhosted.org/packages/8e/c5/23e7803f1b85ab26125ec044d35990cee6485162aa04f638a6e6b0ddb754/mcpm-1.10.1.tar.gz" - sha256 "def659d3a06e604c69ddd1046bd4a57e84698bc4dacedffa2f382f865fbb2b7e" + url "https://files.pythonhosted.org/packages/35/07/cc64bc0a475a1124ac24f2d47ef7b768649d257ed5019a6b4eaa1ec9448f/mcpm-1.11.0.tar.gz" + sha256 "36602aa78318b74ef2aabcee9846497c2955cd8cbea7792ff43970aa6d80c5ce" license "MIT" bottle do From c9d2247d31b9f9355fe9e876832ca4232aee4a05 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 08:10:00 +0000 Subject: [PATCH 1344/1364] aws-sam-cli: bump python resources --- Formula/a/aws-sam-cli.rb | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/Formula/a/aws-sam-cli.rb b/Formula/a/aws-sam-cli.rb index 8961c42234c3e..d0f73ba8b297e 100644 --- a/Formula/a/aws-sam-cli.rb +++ b/Formula/a/aws-sam-cli.rb @@ -6,6 +6,7 @@ class AwsSamCli < Formula url "https://files.pythonhosted.org/packages/16/be/7f78c36d95549e2173fd16fe5ecd1957cbdf4cc6c96f40839193ccf30223/aws_sam_cli-1.138.0.tar.gz" sha256 "bdc9ef12830926cc6391c287f65a96a2f7bf1a0049933ad83f76d43f601342c1" license "Apache-2.0" + revision 1 bottle do sha256 cellar: :any, arm64_sequoia: "a786cdc60ba0db8daa01f207f098487123233997c0739404a2300a87addfee6b" @@ -62,8 +63,8 @@ class AwsSamCli < Formula end resource "boto3" do - url "https://files.pythonhosted.org/packages/ab/43/3c2d1bbbef0d187c1dc0e7ec7e8f213c7653c8464ba903613bf856656fcb/boto3-1.38.7.tar.gz" - sha256 "0269f793f0affc646b95c2cd12d42a4db49d5f30ef1073f616a112a384933f8e" + url "https://files.pythonhosted.org/packages/e2/b5/f2cdcc4f909bd4a3b545571da9e7faa69a7ecc54bc5cc103f39dac53d115/boto3-1.38.15.tar.gz" + sha256 "dca60f7a3ead91c05cf471f7750e54d63b92bfc0e61fa122e2e3f5140e020a8d" end resource "boto3-stubs" do @@ -72,13 +73,13 @@ class AwsSamCli < Formula end resource "botocore" do - url "https://files.pythonhosted.org/packages/44/c7/e290008036749e43f615adada8b7e73bf2405d4b1913de375b5c8f01daa1/botocore-1.38.7.tar.gz" - sha256 "5c6df7171390437683072aadc0d2dfbcbfa72df52a134a5d4bed811ed214c3df" + url "https://files.pythonhosted.org/packages/00/35/0591b8cda1af4f308a0c073b838b02618547ae306504dc5a165a0ee88fd8/botocore-1.38.15.tar.gz" + sha256 "6adb3b1b0739153d5dc9758e5e06f7596290999c07ed8f9167ca62a1f97c6592" end resource "botocore-stubs" do - url "https://files.pythonhosted.org/packages/ad/b6/cfafe07642fdbb49108a29512e57f811b548892a61095ee08060b0b90533/botocore_stubs-1.38.7.tar.gz" - sha256 "c61f6353217ef0f993da9ac59162ae45b79038431ea3a68475af2f4403b08e95" + url "https://files.pythonhosted.org/packages/34/f1/2c164e940453418f2ed19ad37d66290871e0e40e04d426ea84c6903a5bb4/botocore_stubs-1.38.15.tar.gz" + sha256 "f84a6efc7b9554fecdf4d875909a28bc8bd63a7def23dd5ceadb5b7759ea0524" end resource "cfn-lint" do @@ -102,8 +103,8 @@ class AwsSamCli < Formula end resource "click" do - url "https://files.pythonhosted.org/packages/b9/2e/0090cbf739cee7d23781ad4b89a9894a41538e4fcf4c31dcdd705b78eb8b/click-8.1.8.tar.gz" - sha256 "ed53c9d8990d83c2a27deae68e4ee337473f6330c040a31d4225c9574d16096a" + url "https://files.pythonhosted.org/packages/cd/0f/62ca20172d4f87d93cf89665fbaedcd560ac48b465bd1d92bfc7ea6b0a41/click-8.2.0.tar.gz" + sha256 "f5452aeddd9988eefa20f90f05ab66f17fce1ee2a36907fd30b05bbb5953814d" end resource "cookiecutter" do @@ -122,8 +123,8 @@ class AwsSamCli < Formula end resource "flask" do - url "https://files.pythonhosted.org/packages/89/50/dff6380f1c7f84135484e176e0cac8690af72fa90e932ad2a0a60e28c69b/flask-3.1.0.tar.gz" - sha256 "5f873c5184c897c8d9d1b05df1e3d01b14910ce69607a117bd3277098a5836ac" + url "https://files.pythonhosted.org/packages/c0/de/e47735752347f4128bcf354e0da07ef311a78244eba9e3dc1d4a5ab21a98/flask-3.1.1.tar.gz" + sha256 "284c7b8f2f58cb737f0cf1c30fd7eaf0ccfcde196099d24ecede3fc2005aa59e" end resource "idna" do @@ -337,8 +338,8 @@ class AwsSamCli < Formula end resource "setuptools" do - url "https://files.pythonhosted.org/packages/aa/b2/bd26ed086b842b68c8fe9aac380ad7e5118cf84fa7abd45bb059a88368a8/setuptools-80.1.0.tar.gz" - sha256 "2e308396e1d83de287ada2c2fd6e64286008fe6aca5008e0b6a8cb0e2c86eedd" + url "https://files.pythonhosted.org/packages/95/32/0cc40fe41fd2adb80a2f388987f4f8db3c866c69e33e0b4c8b093fdf700e/setuptools-80.4.0.tar.gz" + sha256 "5a78f61820bc088c8e4add52932ae6b8cf423da2aff268c23f813cfbb13b4006" end resource "six" do @@ -362,8 +363,8 @@ class AwsSamCli < Formula end resource "types-awscrt" do - url "https://files.pythonhosted.org/packages/db/29/d0597055f1b700193463361b4b2284cf4548acbb10287d6253ce429728d5/types_awscrt-0.26.1.tar.gz" - sha256 "aca96f889b3745c0e74f42f08f277fed3bf6e9baa2cf9b06a36f78d77720e504" + url "https://files.pythonhosted.org/packages/f9/21/4d519305ec33f9bcd3c317e76aa860a1962fa40ded99c39ec49e1d5cdebe/types_awscrt-0.27.1.tar.gz" + sha256 "3c2bee52ee45022daaf4f106d5d1b5f0ff0a8e3e6093dda65f5315b7669bc418" end resource "types-python-dateutil" do From 2b002fdc298522d3298f51fd0d0a00720cdea19c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 08:10:21 +0000 Subject: [PATCH 1345/1364] buku: bump python resources --- Formula/b/buku.rb | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Formula/b/buku.rb b/Formula/b/buku.rb index fbdd8fdb5837d..092790442b235 100644 --- a/Formula/b/buku.rb +++ b/Formula/b/buku.rb @@ -6,6 +6,7 @@ class Buku < Formula url "https://github.com/jarun/buku/archive/refs/tags/v5.0.tar.gz" sha256 "87e226b0062a17cb10bf02a6cefea08e859d74985e373b76496150ecda92d73e" license "GPL-3.0-or-later" + revision 1 head "https://github.com/jarun/buku.git", branch: "master" bottle do @@ -40,13 +41,13 @@ class Buku < Formula end resource "click" do - url "https://files.pythonhosted.org/packages/b9/2e/0090cbf739cee7d23781ad4b89a9894a41538e4fcf4c31dcdd705b78eb8b/click-8.1.8.tar.gz" - sha256 "ed53c9d8990d83c2a27deae68e4ee337473f6330c040a31d4225c9574d16096a" + url "https://files.pythonhosted.org/packages/cd/0f/62ca20172d4f87d93cf89665fbaedcd560ac48b465bd1d92bfc7ea6b0a41/click-8.2.0.tar.gz" + sha256 "f5452aeddd9988eefa20f90f05ab66f17fce1ee2a36907fd30b05bbb5953814d" end resource "flask" do - url "https://files.pythonhosted.org/packages/89/50/dff6380f1c7f84135484e176e0cac8690af72fa90e932ad2a0a60e28c69b/flask-3.1.0.tar.gz" - sha256 "5f873c5184c897c8d9d1b05df1e3d01b14910ce69607a117bd3277098a5836ac" + url "https://files.pythonhosted.org/packages/c0/de/e47735752347f4128bcf354e0da07ef311a78244eba9e3dc1d4a5ab21a98/flask-3.1.1.tar.gz" + sha256 "284c7b8f2f58cb737f0cf1c30fd7eaf0ccfcde196099d24ecede3fc2005aa59e" end resource "flask-admin" do From 6b131556b6d972586fec64eeb9995e7c7b79ecbe Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 08:12:08 +0000 Subject: [PATCH 1346/1364] grip: bump python resources --- Formula/g/grip.rb | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/Formula/g/grip.rb b/Formula/g/grip.rb index 48f3681384a69..f260886e77974 100644 --- a/Formula/g/grip.rb +++ b/Formula/g/grip.rb @@ -6,7 +6,7 @@ class Grip < Formula url "https://files.pythonhosted.org/packages/f4/3f/e8bc3ea1f24877292fa3962ad9e0234ad4bc787dc1eb5bd08c35afd0ceca/grip-4.6.2.tar.gz" sha256 "3cf6dce0aa06edd663176914069af83f19dcb90f3a9c401271acfa71872f8ce3" license "MIT" - revision 10 + revision 11 bottle do sha256 cellar: :any_skip_relocation, arm64_sequoia: "bfbabd0b3a7aa21d71c8273a2327def8689b4c85a1f68bf68f938f9cc22b2d2d" @@ -27,13 +27,13 @@ class Grip < Formula end resource "charset-normalizer" do - url "https://files.pythonhosted.org/packages/16/b0/572805e227f01586461c80e0fd25d65a2115599cc9dad142fee4b747c357/charset_normalizer-3.4.1.tar.gz" - sha256 "44251f18cd68a75b56585dd00dae26183e102cd5e0f9f1466e6df5da2ed64ea3" + url "https://files.pythonhosted.org/packages/e4/33/89c2ced2b67d1c2a61c19c6751aa8902d46ce3dacb23600a283619f5a12d/charset_normalizer-3.4.2.tar.gz" + sha256 "5baececa9ecba31eff645232d59845c07aa030f0c81ee70184a90d35099a0e63" end resource "click" do - url "https://files.pythonhosted.org/packages/b9/2e/0090cbf739cee7d23781ad4b89a9894a41538e4fcf4c31dcdd705b78eb8b/click-8.1.8.tar.gz" - sha256 "ed53c9d8990d83c2a27deae68e4ee337473f6330c040a31d4225c9574d16096a" + url "https://files.pythonhosted.org/packages/cd/0f/62ca20172d4f87d93cf89665fbaedcd560ac48b465bd1d92bfc7ea6b0a41/click-8.2.0.tar.gz" + sha256 "f5452aeddd9988eefa20f90f05ab66f17fce1ee2a36907fd30b05bbb5953814d" end resource "docopt" do @@ -42,8 +42,8 @@ class Grip < Formula end resource "flask" do - url "https://files.pythonhosted.org/packages/89/50/dff6380f1c7f84135484e176e0cac8690af72fa90e932ad2a0a60e28c69b/flask-3.1.0.tar.gz" - sha256 "5f873c5184c897c8d9d1b05df1e3d01b14910ce69607a117bd3277098a5836ac" + url "https://files.pythonhosted.org/packages/c0/de/e47735752347f4128bcf354e0da07ef311a78244eba9e3dc1d4a5ab21a98/flask-3.1.1.tar.gz" + sha256 "284c7b8f2f58cb737f0cf1c30fd7eaf0ccfcde196099d24ecede3fc2005aa59e" end resource "idna" do @@ -62,8 +62,8 @@ class Grip < Formula end resource "markdown" do - url "https://files.pythonhosted.org/packages/54/28/3af612670f82f4c056911fbbbb42760255801b3068c48de792d354ff4472/markdown-3.7.tar.gz" - sha256 "2ae2471477cfd02dbbf038d5d9bc226d40def84b4fe2986e49b59b6b472bbed2" + url "https://files.pythonhosted.org/packages/2f/15/222b423b0b88689c266d9eac4e61396fe2cc53464459d6a37618ac863b24/markdown-3.8.tar.gz" + sha256 "7df81e63f0df5c4b24b7d156eb81e4690595239b7d70937d0409f1b0de319c6f" end resource "markupsafe" do @@ -87,8 +87,8 @@ class Grip < Formula end resource "urllib3" do - url "https://files.pythonhosted.org/packages/aa/63/e53da845320b757bf29ef6a9062f5c669fe997973f966045cb019c3f4b66/urllib3-2.3.0.tar.gz" - sha256 "f8c5449b3cf0861679ce7e0503c7b44b5ec981bec0d1d3795a07f1ba96f0204d" + url "https://files.pythonhosted.org/packages/8a/78/16493d9c386d8e60e442a35feac5e00f0913c0f4b7c217c11e8ec2ff53e0/urllib3-2.4.0.tar.gz" + sha256 "414bc6535b787febd7567804cc015fee39daab8ad86268f1310a9250697de466" end resource "werkzeug" do From a132b8fa1715a970a5de9d5efd2f62e2ef037cd2 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 08:12:46 +0000 Subject: [PATCH 1347/1364] locust: bump python resources --- Formula/l/locust.rb | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/Formula/l/locust.rb b/Formula/l/locust.rb index 7d3eaa806f9c2..1fe5511147c29 100644 --- a/Formula/l/locust.rb +++ b/Formula/l/locust.rb @@ -6,6 +6,7 @@ class Locust < Formula url "https://files.pythonhosted.org/packages/6a/8f/e358f3e3850a4057c05f635d94e27a2fe739301fae5f2ece230a6a8ea282/locust-2.37.1.tar.gz" sha256 "97951b319cb08c8853ef76d4732359f04617d27be41c1bf91469b9a528b652e0" license "MIT" + revision 1 bottle do sha256 cellar: :any, arm64_sequoia: "6b1a8f0959c887bb34e2bb70e08ea5736ad1a3f3db0fe1829f84d6d43997f16c" @@ -44,8 +45,8 @@ class Locust < Formula end resource "click" do - url "https://files.pythonhosted.org/packages/b9/2e/0090cbf739cee7d23781ad4b89a9894a41538e4fcf4c31dcdd705b78eb8b/click-8.1.8.tar.gz" - sha256 "ed53c9d8990d83c2a27deae68e4ee337473f6330c040a31d4225c9574d16096a" + url "https://files.pythonhosted.org/packages/cd/0f/62ca20172d4f87d93cf89665fbaedcd560ac48b465bd1d92bfc7ea6b0a41/click-8.2.0.tar.gz" + sha256 "f5452aeddd9988eefa20f90f05ab66f17fce1ee2a36907fd30b05bbb5953814d" end resource "configargparse" do @@ -54,8 +55,8 @@ class Locust < Formula end resource "flask" do - url "https://files.pythonhosted.org/packages/89/50/dff6380f1c7f84135484e176e0cac8690af72fa90e932ad2a0a60e28c69b/flask-3.1.0.tar.gz" - sha256 "5f873c5184c897c8d9d1b05df1e3d01b14910ce69607a117bd3277098a5836ac" + url "https://files.pythonhosted.org/packages/c0/de/e47735752347f4128bcf354e0da07ef311a78244eba9e3dc1d4a5ab21a98/flask-3.1.1.tar.gz" + sha256 "284c7b8f2f58cb737f0cf1c30fd7eaf0ccfcde196099d24ecede3fc2005aa59e" end resource "flask-cors" do @@ -79,8 +80,8 @@ class Locust < Formula end resource "greenlet" do - url "https://files.pythonhosted.org/packages/3f/74/907bb43af91782e0366b0960af62a8ce1f9398e4291cac7beaeffbee0c04/greenlet-3.2.1.tar.gz" - sha256 "9f4dd4b4946b14bb3bf038f81e1d2e535b7d94f1b2a59fdba1293cd9c1a0a4d7" + url "https://files.pythonhosted.org/packages/34/c1/a82edae11d46c0d83481aacaa1e578fea21d94a1ef400afd734d47ad95ad/greenlet-3.2.2.tar.gz" + sha256 "ad053d34421a2debba45aa3cc39acf454acbcd025b3fc1a9f8a0dee237abd485" end resource "h11" do @@ -104,8 +105,8 @@ class Locust < Formula end resource "locust-cloud" do - url "https://files.pythonhosted.org/packages/22/6b/886a625ec10c429091473abfe96ccddff84e7de97dfc2abce450e2fc3ff7/locust_cloud-1.21.2.tar.gz" - sha256 "f780dccc41910cc406da7e67adc411eab6e02dc198eb0c0e037347632d75791a" + url "https://files.pythonhosted.org/packages/30/65/e3dfd66ede886b5f84f7767e97539aab65946a29d4dfba41039df9933989/locust_cloud-1.21.5.tar.gz" + sha256 "f5347c0ab7c22c151fbb9a93001c107ed3f2662584af0af9f159563df1866464" end resource "markupsafe" do @@ -119,8 +120,8 @@ class Locust < Formula end resource "platformdirs" do - url "https://files.pythonhosted.org/packages/b6/2d/7d512a3913d60623e7eb945c6d1b4f0bddf1d0b7ada5225274c87e5b53d1/platformdirs-4.3.7.tar.gz" - sha256 "eb437d586b6a0986388f0d6f74aa0cde27b48d0e3d66843640bfb6bdcdb6e351" + url "https://files.pythonhosted.org/packages/fe/8b/3c73abc9c759ecd3f1f7ceff6685840859e8070c4d947c93fae71f6a0bf2/platformdirs-4.3.8.tar.gz" + sha256 "3d512d96e16bcb959a814c9f348431070822a6496326a4be0911c40b5a74c2bc" end resource "psutil" do @@ -129,8 +130,8 @@ class Locust < Formula end resource "python-engineio" do - url "https://files.pythonhosted.org/packages/f7/e1/eee1129544b7f78fa2afa9fa0fce153cdcb21015b9b331d1b8adf90f45cb/python_engineio-4.12.0.tar.gz" - sha256 "f42a36a868d7063aa10ddccf6bd6117a169b6bd00d7ca53999772093b62014f9" + url "https://files.pythonhosted.org/packages/3c/9d/8492fbde3d4cb0e052de8a91a09754f222b5093f0342ef2dac92d60c751f/python_engineio-4.12.1.tar.gz" + sha256 "9f2b5a645c416208a9c727254316d487252493de52bee0ff70dc29ca9210397e" end resource "python-socketio" do @@ -149,8 +150,8 @@ class Locust < Formula end resource "setuptools" do - url "https://files.pythonhosted.org/packages/70/dc/3976b322de9d2e87ed0007cf04cc7553969b6c7b3f48a565d0333748fbcd/setuptools-80.3.1.tar.gz" - sha256 "31e2c58dbb67c99c289f51c16d899afedae292b978f8051efaf6262d8212f927" + url "https://files.pythonhosted.org/packages/95/32/0cc40fe41fd2adb80a2f388987f4f8db3c866c69e33e0b4c8b093fdf700e/setuptools-80.4.0.tar.gz" + sha256 "5a78f61820bc088c8e4add52932ae6b8cf423da2aff268c23f813cfbb13b4006" end resource "simple-websocket" do From 09783eb21327c618726a381d331a5bdaafb2ac12 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 08:13:01 +0000 Subject: [PATCH 1348/1364] moto: bump python resources --- Formula/m/moto.rb | 49 ++++++++++++++++++++++++----------------------- 1 file changed, 25 insertions(+), 24 deletions(-) diff --git a/Formula/m/moto.rb b/Formula/m/moto.rb index c74423b75b658..78cbd91856926 100644 --- a/Formula/m/moto.rb +++ b/Formula/m/moto.rb @@ -6,6 +6,7 @@ class Moto < Formula url "https://files.pythonhosted.org/packages/4e/17/059cd6fa5962fa75575f74bb8d31d0e9cb3e656414cb79b4b3736b2b40eb/moto-5.1.4.tar.gz" sha256 "b339c3514f2986ebefa465671b688bdbf51796705702214b1bad46490b68507a" license "Apache-2.0" + revision 1 bottle do sha256 cellar: :any, arm64_sequoia: "d16db20c615c53efbd8da641089c5a52da399db844cdb7c4ae2a5e912b66b943" @@ -54,28 +55,28 @@ class Moto < Formula end resource "boto3" do - url "https://files.pythonhosted.org/packages/82/8c/2ca661db6c9e591d9dc46149b43a91385283c852436ccba62e199643e196/boto3-1.37.37.tar.gz" - sha256 "752d31105a45e3e01c8c68471db14ae439990b75a35e72b591ca528e2575b28f" + url "https://files.pythonhosted.org/packages/e2/b5/f2cdcc4f909bd4a3b545571da9e7faa69a7ecc54bc5cc103f39dac53d115/boto3-1.38.15.tar.gz" + sha256 "dca60f7a3ead91c05cf471f7750e54d63b92bfc0e61fa122e2e3f5140e020a8d" end resource "botocore" do - url "https://files.pythonhosted.org/packages/96/d0/70969515e3ae8ff0fcccf22827d5d131bc7b8729331127415cf8f2861d63/botocore-1.37.37.tar.gz" - sha256 "3eadde6fed95c4cb469cc39d1c3558528b7fa76d23e7e16d4bddc77250431a64" + url "https://files.pythonhosted.org/packages/00/35/0591b8cda1af4f308a0c073b838b02618547ae306504dc5a165a0ee88fd8/botocore-1.38.15.tar.gz" + sha256 "6adb3b1b0739153d5dc9758e5e06f7596290999c07ed8f9167ca62a1f97c6592" end resource "cfn-lint" do - url "https://files.pythonhosted.org/packages/d0/03/016ec2a5a37f7c8486773d7e889c7f4c9fe6b260515891930a0609122425/cfn_lint-1.34.0.tar.gz" - sha256 "c3f63ac641c005ee5c199c5cedc5b921b716af315096f3a74f2c80e002627a2c" + url "https://files.pythonhosted.org/packages/e5/11/d52bf891ec937b75a640996d84ba34abf55a59c80857968ccc5b51491957/cfn_lint-1.35.1.tar.gz" + sha256 "0a564819088c95ba88c5dca23ba1fb3c6cdb86b2f6a40219f1abf2134c5b47d7" end resource "charset-normalizer" do - url "https://files.pythonhosted.org/packages/16/b0/572805e227f01586461c80e0fd25d65a2115599cc9dad142fee4b747c357/charset_normalizer-3.4.1.tar.gz" - sha256 "44251f18cd68a75b56585dd00dae26183e102cd5e0f9f1466e6df5da2ed64ea3" + url "https://files.pythonhosted.org/packages/e4/33/89c2ced2b67d1c2a61c19c6751aa8902d46ce3dacb23600a283619f5a12d/charset_normalizer-3.4.2.tar.gz" + sha256 "5baececa9ecba31eff645232d59845c07aa030f0c81ee70184a90d35099a0e63" end resource "click" do - url "https://files.pythonhosted.org/packages/b9/2e/0090cbf739cee7d23781ad4b89a9894a41538e4fcf4c31dcdd705b78eb8b/click-8.1.8.tar.gz" - sha256 "ed53c9d8990d83c2a27deae68e4ee337473f6330c040a31d4225c9574d16096a" + url "https://files.pythonhosted.org/packages/cd/0f/62ca20172d4f87d93cf89665fbaedcd560ac48b465bd1d92bfc7ea6b0a41/click-8.2.0.tar.gz" + sha256 "f5452aeddd9988eefa20f90f05ab66f17fce1ee2a36907fd30b05bbb5953814d" end resource "docker" do @@ -84,8 +85,8 @@ class Moto < Formula end resource "flask" do - url "https://files.pythonhosted.org/packages/89/50/dff6380f1c7f84135484e176e0cac8690af72fa90e932ad2a0a60e28c69b/flask-3.1.0.tar.gz" - sha256 "5f873c5184c897c8d9d1b05df1e3d01b14910ce69607a117bd3277098a5836ac" + url "https://files.pythonhosted.org/packages/c0/de/e47735752347f4128bcf354e0da07ef311a78244eba9e3dc1d4a5ab21a98/flask-3.1.1.tar.gz" + sha256 "284c7b8f2f58cb737f0cf1c30fd7eaf0ccfcde196099d24ecede3fc2005aa59e" end resource "flask-cors" do @@ -149,8 +150,8 @@ class Moto < Formula end resource "jsonschema-specifications" do - url "https://files.pythonhosted.org/packages/10/db/58f950c996c793472e336ff3655b13fbcf1e3b359dcf52dcf3ed3b52c352/jsonschema_specifications-2024.10.1.tar.gz" - sha256 "0f38b83639958ce1152d02a7f062902c41c8fd20d558b0c34344292d417ae272" + url "https://files.pythonhosted.org/packages/bf/ce/46fbd9c8119cfc3581ee5643ea49464d168028cfb5caff5fc0596d0cf914/jsonschema_specifications-2025.4.1.tar.gz" + sha256 "630159c9f4dbea161a6a2205c3011cc4f18ff381b189fff48bb39b9bf26ae608" end resource "lazy-object-proxy" do @@ -204,13 +205,13 @@ class Moto < Formula end resource "pydantic" do - url "https://files.pythonhosted.org/packages/10/2e/ca897f093ee6c5f3b0bee123ee4465c50e75431c3d5b6a3b44a47134e891/pydantic-2.11.3.tar.gz" - sha256 "7471657138c16adad9322fe3070c0116dd6c3ad8d649300e3cbdfe91f4db4ec3" + url "https://files.pythonhosted.org/packages/77/ab/5250d56ad03884ab5efd07f734203943c8a8ab40d551e208af81d0257bf2/pydantic-2.11.4.tar.gz" + sha256 "32738d19d63a226a52eed76645a98ee07c1f410ee41d93b4afbfa85ed8111c2d" end resource "pydantic-core" do - url "https://files.pythonhosted.org/packages/17/19/ed6a078a5287aea7922de6841ef4c06157931622c89c2a47940837b5eecd/pydantic_core-2.33.1.tar.gz" - sha256 "bcc9c6fdb0ced789245b02b7d6603e17d1563064ddcfc36f046b61c0c05dd9df" + url "https://files.pythonhosted.org/packages/ad/88/5f2260bdfae97aabf98f1778d43f69574390ad787afb646292a638c923d4/pydantic_core-2.33.2.tar.gz" + sha256 "7cb8bc3605c29176e1b105350d2e6474142d7c1bd1d9327c4a9bdb46bf827acc" end resource "pyparsing" do @@ -259,13 +260,13 @@ class Moto < Formula end resource "s3transfer" do - url "https://files.pythonhosted.org/packages/c4/2b/5c9562795c2eb2b5f63536961754760c25bf0f34af93d36aa28dea2fb303/s3transfer-0.11.5.tar.gz" - sha256 "8c8aad92784779ab8688a61aefff3e28e9ebdce43142808eaa3f0b0f402f68b7" + url "https://files.pythonhosted.org/packages/fc/9e/73b14aed38ee1f62cd30ab93cd0072dec7fb01f3033d116875ae3e7b8b44/s3transfer-0.12.0.tar.gz" + sha256 "8ac58bc1989a3fdb7c7f3ee0918a66b160d038a147c7b5db1500930a607e9a1c" end resource "setuptools" do - url "https://files.pythonhosted.org/packages/7d/19/fecb7e2825616270f34512b3394cdcf6f45a79b5b6d94fdbd86a509e67b5/setuptools-79.0.0.tar.gz" - sha256 "9828422e7541213b0aacb6e10bbf9dd8febeaa45a48570e09b6d100e063fc9f9" + url "https://files.pythonhosted.org/packages/95/32/0cc40fe41fd2adb80a2f388987f4f8db3c866c69e33e0b4c8b093fdf700e/setuptools-80.4.0.tar.gz" + sha256 "5a78f61820bc088c8e4add52932ae6b8cf423da2aff268c23f813cfbb13b4006" end resource "six" do @@ -274,8 +275,8 @@ class Moto < Formula end resource "sympy" do - url "https://files.pythonhosted.org/packages/11/8a/5a7fd6284fa8caac23a26c9ddf9c30485a48169344b4bd3b0f02fef1890f/sympy-1.13.3.tar.gz" - sha256 "b27fd2c6530e0ab39e275fc9b683895367e51d5da91baa8d3d64db2565fec4d9" + url "https://files.pythonhosted.org/packages/83/d3/803453b36afefb7c2bb238361cd4ae6125a569b4db67cd9e79846ba2d68c/sympy-1.14.0.tar.gz" + sha256 "d3d3fe8df1e5a0b42f0e7bdf50541697dbe7d23746e894990c030e2b05e72517" end resource "typing-extensions" do From 8ed2e186bdee25123460983fc9d79c2aa8662fb4 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 08:15:32 +0000 Subject: [PATCH 1349/1364] sfcgal 2.1.0 --- Formula/s/sfcgal.rb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Formula/s/sfcgal.rb b/Formula/s/sfcgal.rb index d2fb095751b2e..f6505579a4bd8 100644 --- a/Formula/s/sfcgal.rb +++ b/Formula/s/sfcgal.rb @@ -1,10 +1,9 @@ class Sfcgal < Formula desc "C++ wrapper library around CGAL" homepage "https://sfcgal.gitlab.io/SFCGAL/" - url "https://gitlab.com/sfcgal/SFCGAL/-/archive/v2.0.0/SFCGAL-v2.0.0.tar.gz" - sha256 "11843953f49e7e4432c42fd27d54e1ff7ca55d0cc72507725c2a5d840c2c6535" + url "https://gitlab.com/sfcgal/SFCGAL/-/archive/v2.1.0/SFCGAL-v2.1.0.tar.gz" + sha256 "cb73a0496c61a5c7bf0ccc68c42e4378bfc441b242e9dee894067e24d2e21d0f" license "LGPL-2.0-or-later" - revision 2 bottle do sha256 cellar: :any, arm64_sequoia: "80d4522710c8eb197f01e3d3f87dd850180007211f806e681ba6686624bd2f38" From 42584a3857ecbe4bb25b13207f934da169f6a60d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 08:18:19 +0000 Subject: [PATCH 1350/1364] cdk8s: update 2.200.70 bottle. --- Formula/c/cdk8s.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/c/cdk8s.rb b/Formula/c/cdk8s.rb index 9fdd26d4bce16..41d14f49190de 100644 --- a/Formula/c/cdk8s.rb +++ b/Formula/c/cdk8s.rb @@ -6,13 +6,13 @@ class Cdk8s < Formula license "Apache-2.0" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "cdc9b769e50030cebb8f56eb682bbaca53efe9f7797c56e303a9b7278cd76f28" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "cdc9b769e50030cebb8f56eb682bbaca53efe9f7797c56e303a9b7278cd76f28" - sha256 cellar: :any_skip_relocation, arm64_ventura: "cdc9b769e50030cebb8f56eb682bbaca53efe9f7797c56e303a9b7278cd76f28" - sha256 cellar: :any_skip_relocation, sonoma: "68b9155fe936fe5e213588fba8ae763ec8e2d65e4471faa64e26cd50c53780c1" - sha256 cellar: :any_skip_relocation, ventura: "68b9155fe936fe5e213588fba8ae763ec8e2d65e4471faa64e26cd50c53780c1" - sha256 cellar: :any_skip_relocation, arm64_linux: "cdc9b769e50030cebb8f56eb682bbaca53efe9f7797c56e303a9b7278cd76f28" - sha256 cellar: :any_skip_relocation, x86_64_linux: "cdc9b769e50030cebb8f56eb682bbaca53efe9f7797c56e303a9b7278cd76f28" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "a996b96173689bc3055484bd2448bf8ebd222aabb3c81cdf4683b5818673ab79" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "a996b96173689bc3055484bd2448bf8ebd222aabb3c81cdf4683b5818673ab79" + sha256 cellar: :any_skip_relocation, arm64_ventura: "a996b96173689bc3055484bd2448bf8ebd222aabb3c81cdf4683b5818673ab79" + sha256 cellar: :any_skip_relocation, sonoma: "685efa3b9c42a71dc12ada9667c7704b874d607c7264db2370e5bd729b0c62c1" + sha256 cellar: :any_skip_relocation, ventura: "685efa3b9c42a71dc12ada9667c7704b874d607c7264db2370e5bd729b0c62c1" + sha256 cellar: :any_skip_relocation, arm64_linux: "a996b96173689bc3055484bd2448bf8ebd222aabb3c81cdf4683b5818673ab79" + sha256 cellar: :any_skip_relocation, x86_64_linux: "a996b96173689bc3055484bd2448bf8ebd222aabb3c81cdf4683b5818673ab79" end depends_on "node" From 7c73748c44f1544e01b830c7dc1c6b57c70c16dd Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 08:25:33 +0000 Subject: [PATCH 1351/1364] swiftformat: update 0.56.1 bottle. --- Formula/s/swiftformat.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/s/swiftformat.rb b/Formula/s/swiftformat.rb index b0ec9082558b0..32b90ad78e085 100644 --- a/Formula/s/swiftformat.rb +++ b/Formula/s/swiftformat.rb @@ -7,13 +7,13 @@ class Swiftformat < Formula head "https://github.com/nicklockwood/SwiftFormat.git", branch: "develop" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "0c8299cb42c7453cd9d5dee8e82a20d02b36bc076c57ec8c168d1ca497849de7" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "5aab3754ce7a40acd485ba02a7bb9633e4e80fc0ec621dc2c78cfc2f2087f688" - sha256 cellar: :any_skip_relocation, arm64_ventura: "34cc58ee6dd254e5b6239cb9c09215c964bb53bb54f6ac419c40e9a8bfe2fadb" - sha256 cellar: :any_skip_relocation, sonoma: "1a2592548bed75356c26032cc3d71f63c6ae5c5cfb4bd0c410118a0c270c59fd" - sha256 cellar: :any_skip_relocation, ventura: "dd9b92c9eff14264681b7e20a3855fe9f93af2bcda02f1555c9315bf095dfcb1" - sha256 cellar: :any_skip_relocation, arm64_linux: "6933b0f1bda88ef4bc694f1ddb399772ce127023fd78df3ed9af7fd3bb201c62" - sha256 cellar: :any_skip_relocation, x86_64_linux: "1cacb8521b982b5fec4117f19264fbdffc9abf7077479179f7315a40deadda3d" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "c9cea5a4fce1b1590ca3f892a14cee5ca8ae34ede64a5862758b35da4f784bc0" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "9863dd7cce8f792175a54bc3003c70cb50f26bb2ba0c7b905f5ad87d60f4ef77" + sha256 cellar: :any_skip_relocation, arm64_ventura: "7a8359097090bb54457e59a05aba5e37a13398261dec600f380ff908262972f1" + sha256 cellar: :any_skip_relocation, sonoma: "48c73ecf2870d636fc83a7671448f6b9e2b5a3716c83b5fa95d6d4bfab8fafc4" + sha256 cellar: :any_skip_relocation, ventura: "cf9a53b0afa4ea86287d303fb24e257e6b969d20a96c09f6fc17f7d18bb816bd" + sha256 cellar: :any_skip_relocation, arm64_linux: "75e8193c06f09fed008c40e26ef3cb31f0b010b41bbea023569dbb1f553158da" + sha256 cellar: :any_skip_relocation, x86_64_linux: "216aa98711011b57b2261ad311a1737f78757df8d8b79bd3e3759aaa47875df5" end depends_on xcode: ["10.1", :build] From 590fe50a2f6a7d97fb9dd603a8af65a76310a562 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 08:26:41 +0000 Subject: [PATCH 1352/1364] fastfetch: update 2.43.0 bottle. --- Formula/f/fastfetch.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/f/fastfetch.rb b/Formula/f/fastfetch.rb index 9b848276ee50e..884d834619880 100644 --- a/Formula/f/fastfetch.rb +++ b/Formula/f/fastfetch.rb @@ -12,13 +12,13 @@ class Fastfetch < Formula end bottle do - sha256 arm64_sequoia: "5e2bc4f93fa84301175d336447f4af1b8ff38529d54920caa90fe1c2bb552395" - sha256 arm64_sonoma: "7e78df084924348eef0f454aa22b894e095c16cc2d0186e08fe8e1968f939d72" - sha256 arm64_ventura: "d6c7b20fd213933c5f51131747aafb1a4e8c5b65d670276153535cc914cd65b5" - sha256 sonoma: "f846bfdbf44ee17bceff43d59f3c42a5c479d910622695524bfae78f98a43149" - sha256 ventura: "04f9cc12c1505e93e8c460122eb0a5d4ec1811949be04d58324f1cc59246f36e" - sha256 arm64_linux: "3ebf13bfdd14651dd88e9eec54e5329cbfd19cd71262c1511efe74d519023e11" - sha256 x86_64_linux: "5f0648cb1113f5123b9f730d8d813dcf997bc598ef555e9ccde1bf511154ef3f" + sha256 arm64_sequoia: "060c07e40bd94df836c4532184f0fc32156b97e69954e3b4c885c7f9dfc5c74b" + sha256 arm64_sonoma: "689ae78665ff23979c0cb911df53badc43148b32d0e8727e4221aecb307de244" + sha256 arm64_ventura: "3b7c730c8f363d816af4f2e7919b7a76305739973ab37c5d5c911da21ef1d091" + sha256 sonoma: "f882d4351146cb0e3f97f2706271dfd3f9a7211ba0c08acac014bf9884ce7f1f" + sha256 ventura: "26b0fcc6d3d157bbb460f2613c9642aa7b896210efda3d1762a55edc8615ae19" + sha256 arm64_linux: "233153a54b8c3590b72e69d15d8fdc346a1df11d366aa409121a6537572564f9" + sha256 x86_64_linux: "47fbdefcc5567b47a3f3aaa9c012486346287d3cc2aee95883d16295108de06c" end depends_on "chafa" => :build From 12a4ba2e50e4c1f5f4cd47bef2f0e7380ea155c8 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 09:16:56 +0000 Subject: [PATCH 1353/1364] limbo: update 0.0.20 bottle. --- Formula/l/limbo.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/l/limbo.rb b/Formula/l/limbo.rb index 4674f3564d310..8e62e3e0da1ff 100644 --- a/Formula/l/limbo.rb +++ b/Formula/l/limbo.rb @@ -12,13 +12,13 @@ class Limbo < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "5abb8170d72d1b50fb8447c5c3df614556491ff27c7e9938523f8a3a72cee827" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "e7cf1695ab12e211e75257f973665be767a8ff1b0c13621fd01a23ebd57f3928" - sha256 cellar: :any_skip_relocation, arm64_ventura: "ac7ffdc473b6e1a7c09128be8b086903961485162e73615ca9c066af1e86ab0f" - sha256 cellar: :any_skip_relocation, sonoma: "c29f5b7b9ca2cd66748a7d30f88a4231f13d7324cc85da6b9529bd5e6c563eff" - sha256 cellar: :any_skip_relocation, ventura: "59200229349395e8a65eb2322bfb9ee281da2b644132f354f00d91edd61b6c6e" - sha256 cellar: :any_skip_relocation, arm64_linux: "3b0a481edbc7a16e5b3d68a7e7f48e5c209517f24e3938c75ccc36c2ad090e92" - sha256 cellar: :any_skip_relocation, x86_64_linux: "35e41397bd4b0929ed12c109c85c62ea57dd9349dabb17292a217c58eb29e615" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "151ce76e01f46e828b333da56e5120a4e10c3a027d4b49d53b4de714ee3a5247" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "86d6cab373448e8a7c3200633ccae438b49da6a72d8aa2d1ba6c6b2cacc4a731" + sha256 cellar: :any_skip_relocation, arm64_ventura: "189ddde739900ae00b7b95742167f5d69bfb9c3fa9e65d02d58a325920738bee" + sha256 cellar: :any_skip_relocation, sonoma: "9c67d54ad8fa5c62511973d7f28b9601027872edd8c72e3188566dff42696865" + sha256 cellar: :any_skip_relocation, ventura: "d9eb614c8b11174ee05f49459bb3848f16f5821949c62c8a657b3d3cb6d9953d" + sha256 cellar: :any_skip_relocation, arm64_linux: "1f4094731275793859efdfacb07ef6f87a56690c015f9a4007010f2c056298c6" + sha256 cellar: :any_skip_relocation, x86_64_linux: "14f48085d8fb88fda947b9ed250c5ef42cfee504f1845eac283f082d1186cb3c" end depends_on "rust" => :build From 33013fb7b131714dd91b9a85042cce309be17cd4 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 09:17:10 +0000 Subject: [PATCH 1354/1364] jackett: update 0.22.1895 bottle. --- Formula/j/jackett.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/j/jackett.rb b/Formula/j/jackett.rb index 8fdaea7a212ca..5662ca7d9b591 100644 --- a/Formula/j/jackett.rb +++ b/Formula/j/jackett.rb @@ -7,12 +7,12 @@ class Jackett < Formula head "https://github.com/Jackett/Jackett.git", branch: "master" bottle do - sha256 cellar: :any, arm64_sequoia: "261febb8da0db589450da375de368e3831ef7666d2ee1c84f6c576db93fbeb20" - sha256 cellar: :any, arm64_sonoma: "a43c0e0cac0e9fcf93c1c87e2215ff647e14a80f4ea9f9d2828ddb1437909d05" - sha256 cellar: :any, arm64_ventura: "24fa4523e6a62d8243d1bd010e745d9ec819b4f01551484ab0f41047735314e2" - sha256 cellar: :any, ventura: "20ae1d98c583c1fe39a99443da4610f041e556f708f27504b5cd883bdf01576d" - sha256 cellar: :any_skip_relocation, arm64_linux: "2aa9981f727f61b25074402189d80d2919d2e14ad0b7a3fe04a20adaf54dcba2" - sha256 cellar: :any_skip_relocation, x86_64_linux: "8d9ce6f0645862b5fb831589af25c53da946ff495350449c41762332d5040501" + sha256 cellar: :any, arm64_sequoia: "221a8ec543cb13914cb24ea56a73cecfc1b6161b2a107f8ee9a935ca1731f8c0" + sha256 cellar: :any, arm64_sonoma: "06d4ea349efa17e78d43ab418bb62dd5f3e9f68972e815475e650943bdf0ab71" + sha256 cellar: :any, arm64_ventura: "f5a1bcfc059d7514db4d495c1199d1617e2b8ead9b8f96817a5c17a4da362e23" + sha256 cellar: :any, ventura: "f38b65573f144a599e30bf3752c23b82e514bd852e0244836fa2355f051606fb" + sha256 cellar: :any_skip_relocation, arm64_linux: "f66d640e84254cd2ecaef5a506833242d97d84c0243ffebfcc56896cb9eaf06e" + sha256 cellar: :any_skip_relocation, x86_64_linux: "e6b9dc60189cf0038430fbb4e6f8ca61705766042d4fb99eedef72a041b59e0d" end depends_on "dotnet@8" From c5ddf32968dc043d2ca1d689ed7f4d1faf53acf7 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 09:17:52 +0000 Subject: [PATCH 1355/1364] mcpm: update 1.11.0 bottle. --- Formula/m/mcpm.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/m/mcpm.rb b/Formula/m/mcpm.rb index 56d06caa663c7..bd7eaa7c6fe6d 100644 --- a/Formula/m/mcpm.rb +++ b/Formula/m/mcpm.rb @@ -8,13 +8,13 @@ class Mcpm < Formula license "MIT" bottle do - sha256 cellar: :any, arm64_sequoia: "2b5de759869fcb4a56966ec6559be65ebeb5c5fa759055a966c9bcbbb4a795d4" - sha256 cellar: :any, arm64_sonoma: "b20db71e51aa6dc914147cfbaa5f5c05008f84d30918b32f765c6a9528ad8794" - sha256 cellar: :any, arm64_ventura: "bb1fea39adce3877e4265277d75715acb508f2d2310d556b0c5a313219ce33be" - sha256 cellar: :any, sonoma: "b7ea10040759e9150b9489e2274bb79ef38a2b97c2ac5ecf8fe4eb7760cfa6ec" - sha256 cellar: :any, ventura: "f8ac796fea1da4887a74c8c7ea5c4de5a533e4d9478c7997bf6f0925fe7777e6" - sha256 cellar: :any_skip_relocation, arm64_linux: "1a0260e0148482ed7133f6a5868603686a3734168cba2afcb96c3baa8b3920e5" - sha256 cellar: :any_skip_relocation, x86_64_linux: "74bbb594518c07253c6c58fb802065dacc6706fee0c144ce12f3dab0a2f629fc" + sha256 cellar: :any, arm64_sequoia: "4a925f01fc026294beababec36d62d5cbb0da5a64c97cbb0c51786ce74d33c96" + sha256 cellar: :any, arm64_sonoma: "da0194e27d277cbe7a4ca8b592162158cfb28775854e20f86c669e79eeb7ed07" + sha256 cellar: :any, arm64_ventura: "ff1dfb5921bb386f159afc9c705b4ecde56318e8efa006526bffb42ba44e006b" + sha256 cellar: :any, sonoma: "6e25651828a07c4f0769fd6bca633afd147757eac59a94dacf14b790be5b8254" + sha256 cellar: :any, ventura: "eec9ad64c1f9ba56e27005409983f304b950249e6793fa07981f3d0f4c3c994a" + sha256 cellar: :any_skip_relocation, arm64_linux: "20241c8a7119195cce817ef5ed3fda56cf6b9b13ab275bff6dfeabd9d62a8de6" + sha256 cellar: :any_skip_relocation, x86_64_linux: "0bd46cd8940d0d230beced58f34289b5fd13bf84db542202846a6d0f5a854172" end depends_on "rust" => :build From 15ace6edf17e11e31ab443bd5ff2e5de016d9692 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 09:20:30 +0000 Subject: [PATCH 1356/1364] buku: update 5.0_1 bottle. --- Formula/b/buku.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/b/buku.rb b/Formula/b/buku.rb index 092790442b235..45f557b2830df 100644 --- a/Formula/b/buku.rb +++ b/Formula/b/buku.rb @@ -10,13 +10,13 @@ class Buku < Formula head "https://github.com/jarun/buku.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "67a9efc8bd9146c070de0df73a403253739c38c6aafcedcbe727258071d9dc03" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "ba02ea77ed769704ff1a235c93fbb1b6bb813302e3b1a6f9b6cfff3da53020b8" - sha256 cellar: :any_skip_relocation, arm64_ventura: "57caf2d3ffc68bb83c8c55a7919fd76b99c0b4904f3f7fcc89c9e87a305e966c" - sha256 cellar: :any_skip_relocation, sonoma: "971a52b9651ace5ce3c9f67be33b8862eee03663e0fe6182e91caab7ec7490d4" - sha256 cellar: :any_skip_relocation, ventura: "0af9da744de39f784c8e05241f5c66d1636436d38004d7845880df506c90ffd7" - sha256 cellar: :any_skip_relocation, arm64_linux: "b24da77400dfe97e1813e917d1622fc79a931112a694ffe7aef0ea24573d8bd0" - sha256 cellar: :any_skip_relocation, x86_64_linux: "dc63d7d45eff707fbcda4d753176a8fce382bb60ec4ccb624358765afe03277e" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "9596441b80dedb61bc7cd57743e861cf781966c4530e15731def2e8d223f0e65" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "032d6166f20300d2e6e3e9cf28080b76c3ee563ba93eeeabdf95380df4bbd3a6" + sha256 cellar: :any_skip_relocation, arm64_ventura: "d69cb7fb9ff02fba5712ba14a70a60713ea36a3ca9879754bf424b8bb11f7a4d" + sha256 cellar: :any_skip_relocation, sonoma: "6449b6131564ab87bba0e55613b8a8522ddce74558c6d8145365998004a3daf5" + sha256 cellar: :any_skip_relocation, ventura: "725dacb1ff25d9d8035b19907b816d79407354f5d8269e463214fe81411f393f" + sha256 cellar: :any_skip_relocation, arm64_linux: "7c8acec3e9ff92fb5fbc6e5202494ac09b0626880d043a83986c7c170bac9664" + sha256 cellar: :any_skip_relocation, x86_64_linux: "7e803486c3a74df43a88a09df4d631a2b853dc3bfc4a8ac6ce78fa34fb5935f2" end depends_on "certifi" From a32ef5e026cc4b8c4d81cf861e6d23731785f3ac Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 09:20:43 +0000 Subject: [PATCH 1357/1364] grip: update 4.6.2_11 bottle. --- Formula/g/grip.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/g/grip.rb b/Formula/g/grip.rb index f260886e77974..f7c0c76d913c4 100644 --- a/Formula/g/grip.rb +++ b/Formula/g/grip.rb @@ -9,13 +9,13 @@ class Grip < Formula revision 11 bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "bfbabd0b3a7aa21d71c8273a2327def8689b4c85a1f68bf68f938f9cc22b2d2d" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "6532dd465a05ca3646caa9b1e682e5d168a3a7a08850411d33ebf65bca6ee1d2" - sha256 cellar: :any_skip_relocation, arm64_ventura: "90c032ed6d115520523eb80a0e29aefc225266b36e63ee6e9e434e2b22427442" - sha256 cellar: :any_skip_relocation, sonoma: "5b84fbdcabef3b3a9477f38fb0cecd1baa6bf8de0f95ae86023738fb22096842" - sha256 cellar: :any_skip_relocation, ventura: "da3cff1b62ee8cdd568bba39e7e0b9fbba86c12cc3d247215d4d3fd60b9dffb8" - sha256 cellar: :any_skip_relocation, arm64_linux: "cef795c01f53d258c5988469e95264ce97a84b980d8ebba14b113d2eb96eae87" - sha256 cellar: :any_skip_relocation, x86_64_linux: "d3f89a2b965a2533f76b1501b32be8d630e15c6b72ad72b21ff5b17b56976502" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "66d5d0214f6aed545df1c8a30f0cda61d11b00d246b2001bcca3867b4ac35fbc" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "5f8889412e6e2fd8169fa43dafaa97caf7898e91c1efad0d0f3e57e44bb87523" + sha256 cellar: :any_skip_relocation, arm64_ventura: "d8d871d6deb9ce3acfa4302e18671693863b972712ff3b57d62ca83c9292d10d" + sha256 cellar: :any_skip_relocation, sonoma: "f7514a79dfc3884a5c1f77fff515987c7b99caf3469b1c45acfa5ae6e3b4606d" + sha256 cellar: :any_skip_relocation, ventura: "4cc545f701e2768bc50953e9c38c3c54ff055c9443669ec1a5358abd2b1e7779" + sha256 cellar: :any_skip_relocation, arm64_linux: "0d524e79f2f126a26aa3fb7995841cf280ec4608aa29e2e553f45f7ee3f1c661" + sha256 cellar: :any_skip_relocation, x86_64_linux: "4a3e683817fe957d930643481aadc2e8a39ff7e6de3f5a1e0f087df15c2ae5c9" end depends_on "certifi" From cf610a5356bd607029ec48be6b630d53a6b6b0f0 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 09:20:51 +0000 Subject: [PATCH 1358/1364] aws-sam-cli: update 1.138.0_1 bottle. --- Formula/a/aws-sam-cli.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/a/aws-sam-cli.rb b/Formula/a/aws-sam-cli.rb index d0f73ba8b297e..6eb73057ad4c6 100644 --- a/Formula/a/aws-sam-cli.rb +++ b/Formula/a/aws-sam-cli.rb @@ -9,13 +9,13 @@ class AwsSamCli < Formula revision 1 bottle do - sha256 cellar: :any, arm64_sequoia: "a786cdc60ba0db8daa01f207f098487123233997c0739404a2300a87addfee6b" - sha256 cellar: :any, arm64_sonoma: "b64d95c5c254e45d632cbb8f2433937d0128fb3c641d6492ced0e207ea02da57" - sha256 cellar: :any, arm64_ventura: "ad09cf9ca20996e256dc290a5249572de71c4b84edd17cd03a1a97c87e3155df" - sha256 cellar: :any, sonoma: "6d92c78d2cb0083e315e79bd890cd6cb0a5bc9ed9ec1965a0470d284a650b8e4" - sha256 cellar: :any, ventura: "2bb672697fa8d5a151c66a134e56a73fcb29464223e4ff08e09e2d4f537ff2d2" - sha256 cellar: :any_skip_relocation, arm64_linux: "939a934704509a8eb0fc45a3f8c74b0abf3e9c1844104c2b728e96343f44490c" - sha256 cellar: :any_skip_relocation, x86_64_linux: "35eb2b3706c8dddf46c1cc9b2de76216ef9ca54a524c1fa947b91846b4d3378d" + sha256 cellar: :any, arm64_sequoia: "afbc6e8d51c4440da27a7f6fd5fbf7556c0e8e2e55ee4dd36650ef2dc0f3d5c5" + sha256 cellar: :any, arm64_sonoma: "e4641ebf924eaa75049d3231b31a1857d6edbc5bbc33f908c384e56b05c0c616" + sha256 cellar: :any, arm64_ventura: "3952c37892c1d1b62f42a6c020e9b6b9262609e800e883b9d6d74aea88934a1c" + sha256 cellar: :any, sonoma: "9ab49d3453a0b55197de4d6585495ddad3b967ef13d78b7cdd0562bd4b548782" + sha256 cellar: :any, ventura: "73a92d11af18182759bd9d4d7f0abcea7545cf2321e5aa7ea6562052dbd7dd07" + sha256 cellar: :any_skip_relocation, arm64_linux: "6aeeaf5b7e0a189127c8bc5b1841c2ed31f75612e9de2163c201d617e0cbdf26" + sha256 cellar: :any_skip_relocation, x86_64_linux: "ac0582adfbf88affe20cfcba18cdca4c1c5fa6f41ffa8393c174d62f501fdb61" end depends_on "pkgconf" => :build From 2a3efa7d58501b4febbe341aa943f942c6ea6139 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 09:22:27 +0000 Subject: [PATCH 1359/1364] soci: update 4.1.1 bottle. --- Formula/s/soci.rb | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/Formula/s/soci.rb b/Formula/s/soci.rb index ca572a420da7f..bfbc9f6dd8597 100644 --- a/Formula/s/soci.rb +++ b/Formula/s/soci.rb @@ -11,18 +11,13 @@ class Soci < Formula end bottle do - sha256 arm64_sequoia: "6153858f4806accd079ba652dc3a1817a9ea95ba66b477ab15f548ec35e628f8" - sha256 arm64_sonoma: "b446260ca150f3d1451b8a44725d8532e4fe5157ac3e8040c008c07cff01b5e4" - sha256 arm64_ventura: "389f70f8884a86e67b2d9dde6d50796765d9360c2c3b31cc259ce32b8a87cd4e" - sha256 arm64_monterey: "3071048f1067589c98521c479ad6ceeb317b70231072b227d67a7fc41bd81f27" - sha256 arm64_big_sur: "652d8306f60195b5689d236e5f4b876e0595480c97657c20f6ade9a49919f48b" - sha256 sonoma: "8e204b4cc8711785713a0b285c68b03894f602491c0beff38b45319f54a77982" - sha256 ventura: "d09c55a20635a29819cfda84d528f9616cf05d184efdc01949c36fb0327d9624" - sha256 monterey: "09ea83bf0e12deff7e63da0f41f1c16573f6eb017336c907648bec515430e0f1" - sha256 big_sur: "6e2001b1bf50eb5c6d913f61abcfb9074ac4a8dba810cc7f80546ca1157b5311" - sha256 catalina: "0ce9776bb40a4b6d3dc6d1ea62885a952e32c868fff1305b8e7f33a1e09689f2" - sha256 arm64_linux: "649b829aa0b5c30e5f6588ed7cd1a865f51ca70fe10bfd4a56917b9bc6b6520f" - sha256 x86_64_linux: "9a6461d6ec0bc9a1306f59a8a80c5c750f46b6bf13691f0e89b94c69399c0853" + sha256 arm64_sequoia: "52ef9b3f00b41eb6ce74b96700fa573ba5b7e310be4c35138484efb322669556" + sha256 arm64_sonoma: "7b09d3822744eb4ab4360a6ec309fe8faaf7258f6f15ee6dbad0de4b9354d76d" + sha256 arm64_ventura: "db67c0d06a017cfdce97066f2d6fb69e2d59c7daa2c7677f68900a8e95390649" + sha256 sonoma: "4d7b3fdf3c82a65f37fcb50cd3937c180abc7980c68adc6f2216519a4926c099" + sha256 ventura: "84d2bb89ce70ba3a26f302a69b06b4a72057dfc99412595f8a56106d565f53d6" + sha256 arm64_linux: "29a9b223156659e2533f0164962f043c80c10ee1537dea870341057059ac9311" + sha256 x86_64_linux: "a4df53be23c078dc937baa5e1aef8c86c4cc432e9cd39e63d59a8d18a039778c" end depends_on "cmake" => :build From 97cd5ff53f5dff5f2a3c9e243ae0e537cda7d52b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 08:26:29 +0000 Subject: [PATCH 1360/1364] geoserver: update 2.27.1 bottle. --- Formula/g/geoserver.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/g/geoserver.rb b/Formula/g/geoserver.rb index d3177fbc4ccb6..7c163dcde4236 100644 --- a/Formula/g/geoserver.rb +++ b/Formula/g/geoserver.rb @@ -15,7 +15,7 @@ class Geoserver < Formula end bottle do - sha256 cellar: :any_skip_relocation, all: "2ad1cddcdf68cda1d5088b5dc5a369f87633fcf65489c32380b1a76cbf1fa49a" + sha256 cellar: :any_skip_relocation, all: "615f867d33e8ff63ccfaafdd1c9170b7ca8b0d0d08054e869002de6fb9f2a78f" end def install From 6136211582ed7b64e2c318ac7a15b8c947c3deac Mon Sep 17 00:00:00 2001 From: Daeho Ro <40587651+daeho-ro@users.noreply.github.com> Date: Wed, 14 May 2025 09:27:06 +0000 Subject: [PATCH 1361/1364] lunar-date: update 3.0.2 bottle. --- Formula/l/lunar-date.rb | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/Formula/l/lunar-date.rb b/Formula/l/lunar-date.rb index c3acf571b0960..cecc22d3a9989 100644 --- a/Formula/l/lunar-date.rb +++ b/Formula/l/lunar-date.rb @@ -6,18 +6,13 @@ class LunarDate < Formula license "LGPL-2.1-or-later" bottle do - sha256 arm64_sequoia: "0edc08d00796351d91ad00136c32df5dacaaf76301cd9464ce2cb733ac976f91" - sha256 arm64_sonoma: "97f9d852239c52563215dcc32f17208dcdfc5c35abfa95ca71c04f7cb58257e9" - sha256 arm64_ventura: "19aff5df6a94c6367cefb6e970257d1533c6db1d7159f2ae8c1e0ec295ac9cbb" - sha256 arm64_monterey: "01779a26cab511a07b5c288ada2ced6acedf252b1b58425f406068fc20e9aec7" - sha256 arm64_big_sur: "17475cd85977801b5ea3cb71e51329ed3ac322eb97c6109fd8c9d9addc44f07e" - sha256 sonoma: "9c788ea241de587d7c95023e558ca0bebc3366068287adb1de46d4ca1a5dcefb" - sha256 ventura: "f8990a85edb14b45e4819764856acd9dbb78960fc03557e40aacebdd23e8f1fb" - sha256 monterey: "fab352d50cf04dbb5f4048a7b2af595070bc0b45d0cfd0b5b9a23f39a875e523" - sha256 big_sur: "70f91a1f90710f781fdb99875b6e35d7b54f6be0b9e084ebab3ad6bd5b3a41a9" - sha256 catalina: "d1b8c963d4e48947c6d10aa04e18bd3775d117da648193c04f8207e77a606c62" - sha256 arm64_linux: "e80173e239b46806182a4ab44bc0d8996cf056e1bc28e0a582eace143cfc5c12" - sha256 x86_64_linux: "0fd076e291a5801cc977b8adc505e9cc279302bbedd4a62ba69166698c2166a6" + sha256 arm64_sequoia: "634d979674acaa436cee47c3edf4415e5e968981794e7dfbc68f2c5c752127c0" + sha256 arm64_sonoma: "be6e44e2a216af958c79583e1112699f5a63ec5455b51e6f0427907a7d51390f" + sha256 arm64_ventura: "8b07143441c3dcdc7fcc54ed39f3351a65f3fb81f3ef7702b4f746f2a37c5b91" + sha256 sonoma: "a6c02f073c90d347bdf0eb0e54a3abfbd448ae1910be9f867cbb484764efe986" + sha256 ventura: "e64cb24b075865917e0649a3e3c991cdd1648837d9b17728f4fef67ed11c9916" + sha256 arm64_linux: "b9817d81e38b2153d296cc8b244a3f867ca514ddbb38967dc05a956e7264039a" + sha256 x86_64_linux: "42994fbe6ca011c300209f9bf534268e858ec4d5e147063cf3d7dfb4cfb31179" end depends_on "meson" => :build From 63958d75903df5ff4950180038b641c70a962154 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 09:36:47 +0000 Subject: [PATCH 1362/1364] sfcgal: update 2.1.0 bottle. --- Formula/s/sfcgal.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/s/sfcgal.rb b/Formula/s/sfcgal.rb index f6505579a4bd8..c60f979272ca1 100644 --- a/Formula/s/sfcgal.rb +++ b/Formula/s/sfcgal.rb @@ -6,12 +6,12 @@ class Sfcgal < Formula license "LGPL-2.0-or-later" bottle do - sha256 cellar: :any, arm64_sequoia: "80d4522710c8eb197f01e3d3f87dd850180007211f806e681ba6686624bd2f38" - sha256 cellar: :any, arm64_sonoma: "64a1390eba8851948fcb377e95cc358f9411001c6ea1c9db6d83df8ddab90b22" - sha256 cellar: :any, arm64_ventura: "0b508c43373ae8110453a0deb0ba9b7e8e12f63201ba3c73ce770cc74d10195e" - sha256 cellar: :any, sonoma: "45f58305ff1c4dfd97073088ede8eba3f09eff50c3d4131bdceba3de5863ee16" - sha256 cellar: :any, ventura: "b0a9afee6f483df2da88e2f51c262d2099af8cd83a27dc45d83101d2f27f9ed2" - sha256 cellar: :any_skip_relocation, x86_64_linux: "eb76f0a64fead5296106c2eedd97acbe4c06dea5ffd4c7f50c03150ba248993d" + sha256 cellar: :any, arm64_sequoia: "a7b0727c269876eec4f2d4220b0f982d7c226eb88abacf424673f7d16a659a4e" + sha256 cellar: :any, arm64_sonoma: "f6e6c487463be6bef875dc78e278a276446d5f3c8c511d89b88364280a6130c2" + sha256 cellar: :any, arm64_ventura: "a3e42c1c990f00fae52418a0239789d03358bde48902a98e30b9ba28470df6f0" + sha256 cellar: :any, sonoma: "d7c5ded8a7de47e7533b4f84978ae9897f155d966e9730ad989880422285bb6a" + sha256 cellar: :any, ventura: "93486bc9c6599461e48bc2e3afde3d9923b986a44e0405a1dd1af9f2793be4ed" + sha256 cellar: :any_skip_relocation, x86_64_linux: "bddf5bf890c2df8cf195fb80b7bab394c939f637d204d845716fb80563639617" end depends_on "cmake" => :build From e5ac6563d7dbf795e2a4cb7dbeac0b0b05c2ef03 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 09:38:36 +0000 Subject: [PATCH 1363/1364] moto: update 5.1.4_1 bottle. --- Formula/m/moto.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/m/moto.rb b/Formula/m/moto.rb index 78cbd91856926..e9aa399e8f129 100644 --- a/Formula/m/moto.rb +++ b/Formula/m/moto.rb @@ -9,13 +9,13 @@ class Moto < Formula revision 1 bottle do - sha256 cellar: :any, arm64_sequoia: "d16db20c615c53efbd8da641089c5a52da399db844cdb7c4ae2a5e912b66b943" - sha256 cellar: :any, arm64_sonoma: "58bb7e31149ccda461eabcddeddbf71ae66118473cbdd7f2ef6e631e38414246" - sha256 cellar: :any, arm64_ventura: "ab399ae0b388b94bfa0ad761af311916f3e99b9531ae8192875d098b5df043d4" - sha256 cellar: :any, sonoma: "a34b04d202a6e07df5fa879ad9d01b90b3335e63c6fdd559b5df76a6f95375d4" - sha256 cellar: :any, ventura: "d9c9d6a229d21fb9ba9e31e368670b2910557456e8245bf7a28f411c3bf1b2be" - sha256 cellar: :any_skip_relocation, arm64_linux: "25012e24bb259b68af31641e21f3f28e11c8c5e08f9347cd47a4249a153c32f5" - sha256 cellar: :any_skip_relocation, x86_64_linux: "9cee6803d64dee7cd9ce77386ed7b978359a9f37c8cdf92e58cae851294fe08d" + sha256 cellar: :any, arm64_sequoia: "61e14f944899faa22581ea50cd4ade6fce949c38a0a69ea226c5783f5388eabc" + sha256 cellar: :any, arm64_sonoma: "07fdc39c87e3472369ec414a116cea8b5d4307cef5cbf941dbaa8f81cb56a8ee" + sha256 cellar: :any, arm64_ventura: "c87385415784559c44e6e64ef6fea9c12f330806f5f13b104f37e383ac7f7ab1" + sha256 cellar: :any, sonoma: "9d91642e9b566834d4d351326d2472625be45bd1ebcf5ce1c729f2155e5748ac" + sha256 cellar: :any, ventura: "d83cbb2588aaf428b1e31a13fa3c59f63cf087834f374e552f439c0d404126ad" + sha256 cellar: :any_skip_relocation, arm64_linux: "9ae106539c0c62dbbc1ad584a94ca8068f74ea348a29b182737a203e3b3d487b" + sha256 cellar: :any_skip_relocation, x86_64_linux: "52c7b092542ca6041c7b3d9c09e1351333be916e9379fb33d5ca0bf3e149fa83" end depends_on "rust" => :build # for pydantic_core From 9b2f74c6a800568292d62c59ed129511ced38bc1 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 14 May 2025 10:23:23 +0000 Subject: [PATCH 1364/1364] locust: update 2.37.1_1 bottle. --- Formula/l/locust.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/l/locust.rb b/Formula/l/locust.rb index 1fe5511147c29..4bcaf505576ea 100644 --- a/Formula/l/locust.rb +++ b/Formula/l/locust.rb @@ -9,13 +9,13 @@ class Locust < Formula revision 1 bottle do - sha256 cellar: :any, arm64_sequoia: "6b1a8f0959c887bb34e2bb70e08ea5736ad1a3f3db0fe1829f84d6d43997f16c" - sha256 cellar: :any, arm64_sonoma: "45a89ef095a29f5bfeb425b348f821534d8f56f6e7f7bc31ae56be020771e809" - sha256 cellar: :any, arm64_ventura: "1b1b7a071ede35833e7bd49f34ccdf93a9b1e98a97811d66b52d5eb12069c3ca" - sha256 cellar: :any, sonoma: "59d2b0884abcb525bd2625ebf4a46ecf527e683781460891fcf27c5dcaec7fbe" - sha256 cellar: :any, ventura: "cb3f148777fe52a45a8c58148239043a9cb2bdd5f8868dbb34ff82f6f36dd8bb" - sha256 cellar: :any_skip_relocation, arm64_linux: "e600e8dcc60f339bc2af442ee4a4352ddd77e1da28649545f23d658e1fcf9b0c" - sha256 cellar: :any_skip_relocation, x86_64_linux: "ae1ecba0127225994115f103f071ac3489badcd92fd51b4c246c020a37e2d58f" + sha256 cellar: :any, arm64_sequoia: "1d89cd25dccfff6c0c90eb45961a3b2c0c2d4929fd5dff1ff21dbd917a7030ee" + sha256 cellar: :any, arm64_sonoma: "76da158eff5486974d8c77ce63e59986ffa545ecb502169e58c0c6f28ff28bbe" + sha256 cellar: :any, arm64_ventura: "decf7ca5418e1255fd94ed25317df1932caf1f8c62f0801983a48e5d1ca052a4" + sha256 cellar: :any, sonoma: "2ff4af730823c9552cc3ad1dfc42473ad0f994acde99915b926389bae66ba3ad" + sha256 cellar: :any, ventura: "5f93639510579fcad5c5b078f192460adf85b019b211922f048f621ba71eb2c7" + sha256 cellar: :any_skip_relocation, arm64_linux: "0efa73b94778f0a7c75b2f1b762aafca5147663c6b4e93b8ec9731b9c8f28df7" + sha256 cellar: :any_skip_relocation, x86_64_linux: "479a2301abe0c126106ffefb64eeba16b85d03fdb8cc79084d079c6ed24acb4d" end depends_on "cmake" => :build # for pyzmq