From 4e26ea7cb89f89d154fce10ff8fa8810bc5eff6e Mon Sep 17 00:00:00 2001 From: Branch Vincent Date: Tue, 30 Jul 2024 06:44:19 -0700 Subject: [PATCH 01/20] cdk8s: use `std_npm_args` --- Formula/c/cdk8s.rb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Formula/c/cdk8s.rb b/Formula/c/cdk8s.rb index b98b7ea2f7413..0299f5a0263a3 100644 --- a/Formula/c/cdk8s.rb +++ b/Formula/c/cdk8s.rb @@ -1,5 +1,3 @@ -require "language/node" - class Cdk8s < Formula desc "Define k8s native apps and abstractions using object-oriented programming" homepage "https://cdk8s.io/" @@ -20,7 +18,7 @@ class Cdk8s < Formula depends_on "node" def install - system "npm", "install", *Language::Node.std_npm_install_args(libexec) + system "npm", "install", *std_npm_args bin.install_symlink Dir["#{libexec}/bin/*"] end From 0e7f31495ccec748858405676d90cfd56025b32a Mon Sep 17 00:00:00 2001 From: Branch Vincent Date: Tue, 30 Jul 2024 06:44:20 -0700 Subject: [PATCH 02/20] cdxgen: use `std_npm_args` --- Formula/c/cdxgen.rb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Formula/c/cdxgen.rb b/Formula/c/cdxgen.rb index 0dec492745873..77db5ce6be617 100644 --- a/Formula/c/cdxgen.rb +++ b/Formula/c/cdxgen.rb @@ -1,5 +1,3 @@ -require "language/node" - class Cdxgen < Formula desc "Creates CycloneDX Software Bill-of-Materials (SBOM) for projects" homepage "https://github.com/CycloneDX/cdxgen" @@ -20,7 +18,7 @@ class Cdxgen < Formula depends_on "node" def install - system "npm", "install", *Language::Node.std_npm_install_args(libexec) + system "npm", "install", *std_npm_args bin.install_symlink Dir["#{libexec}/bin/*"] # Remove incompatible pre-built binaries From a907fb7a5176f907f0840e718bac9a99529a1d93 Mon Sep 17 00:00:00 2001 From: Branch Vincent Date: Tue, 30 Jul 2024 06:44:20 -0700 Subject: [PATCH 03/20] chalk-cli: use `std_npm_args` --- Formula/c/chalk-cli.rb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Formula/c/chalk-cli.rb b/Formula/c/chalk-cli.rb index a2c9b2701d956..0a7fdea77c5ce 100644 --- a/Formula/c/chalk-cli.rb +++ b/Formula/c/chalk-cli.rb @@ -1,5 +1,3 @@ -require "language/node" - class ChalkCli < Formula desc "Terminal string styling done right" homepage "https://github.com/chalk/chalk-cli" @@ -14,7 +12,7 @@ class ChalkCli < Formula depends_on "node" def install - system "npm", "install", *Language::Node.std_npm_install_args(libexec) + system "npm", "install", *std_npm_args bin.install_symlink Dir["#{libexec}/bin/*"] end From b59f3e5e3d0f1d71e424699863ad763729abec10 Mon Sep 17 00:00:00 2001 From: Branch Vincent Date: Tue, 30 Jul 2024 06:44:21 -0700 Subject: [PATCH 04/20] coffeescript: use `std_npm_args` --- Formula/c/coffeescript.rb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Formula/c/coffeescript.rb b/Formula/c/coffeescript.rb index 45d43d134c4e2..2515171fa49a7 100644 --- a/Formula/c/coffeescript.rb +++ b/Formula/c/coffeescript.rb @@ -1,5 +1,3 @@ -require "language/node" - class Coffeescript < Formula desc "Unfancy JavaScript" homepage "https://coffeescript.org/" @@ -17,7 +15,7 @@ class Coffeescript < Formula conflicts_with "cake", because: "both install `cake` binaries" def install - system "npm", "install", *Language::Node.std_npm_install_args(libexec) + system "npm", "install", *std_npm_args bin.install_symlink Dir["#{libexec}/bin/*"] end From 619696ec76e62d6c84180cdebf4135ea0a383f12 Mon Sep 17 00:00:00 2001 From: Branch Vincent Date: Tue, 30 Jul 2024 06:44:21 -0700 Subject: [PATCH 05/20] commitlint: use `std_npm_args` --- Formula/c/commitlint.rb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Formula/c/commitlint.rb b/Formula/c/commitlint.rb index 542ec5432301c..039828e9d828a 100644 --- a/Formula/c/commitlint.rb +++ b/Formula/c/commitlint.rb @@ -1,5 +1,3 @@ -require "language/node" - class Commitlint < Formula desc "Lint commit messages according to a commit convention" homepage "https://commitlint.js.org/#/" @@ -21,7 +19,7 @@ class Commitlint < Formula depends_on "node" def install - system "npm", "install", *Language::Node.std_npm_install_args(libexec) + system "npm", "install", *std_npm_args bin.install_symlink Dir["#{libexec}/bin/*"] end From 00e8cc8e10ee7e7c25ccc6b4defda4afdccdc225 Mon Sep 17 00:00:00 2001 From: Branch Vincent Date: Tue, 30 Jul 2024 06:44:21 -0700 Subject: [PATCH 06/20] contentful-cli: use `std_npm_args` --- Formula/c/contentful-cli.rb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Formula/c/contentful-cli.rb b/Formula/c/contentful-cli.rb index 5beaea9d23d27..07160e2b6b650 100644 --- a/Formula/c/contentful-cli.rb +++ b/Formula/c/contentful-cli.rb @@ -1,5 +1,3 @@ -require "language/node" - class ContentfulCli < Formula desc "Contentful command-line tools" homepage "https://github.com/contentful/contentful-cli" @@ -21,7 +19,7 @@ class ContentfulCli < Formula depends_on "node" def install - system "npm", "install", *Language::Node.std_npm_install_args(libexec) + system "npm", "install", *std_npm_args bin.install_symlink Dir["#{libexec}/bin/*"] end From bcce28f436eaf81b86e80cba751f3e525029cd23 Mon Sep 17 00:00:00 2001 From: Branch Vincent Date: Tue, 30 Jul 2024 06:44:22 -0700 Subject: [PATCH 07/20] corepack: use `std_npm_args` --- Formula/c/corepack.rb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Formula/c/corepack.rb b/Formula/c/corepack.rb index 30cadfa6b6950..8a5fb03a2fc2b 100644 --- a/Formula/c/corepack.rb +++ b/Formula/c/corepack.rb @@ -1,6 +1,4 @@ class Corepack < Formula - require "language/node" - desc "Package acting as bridge between Node projects and their package managers" homepage "https://github.com/nodejs/corepack" url "https://registry.npmjs.org/corepack/-/corepack-0.29.3.tgz" @@ -29,7 +27,7 @@ class Corepack < Formula conflicts_with "pnpm", because: "both install `pnpm` and `pnpx` binaries" def install - system "npm", "install", *Language::Node.std_npm_install_args(libexec) + system "npm", "install", *std_npm_args bin.install_symlink Dir["#{libexec}/bin/*"] end From d7f0671fe543209fdc2d525fe8c9833dd70d1e3e Mon Sep 17 00:00:00 2001 From: Branch Vincent Date: Tue, 30 Jul 2024 06:44:22 -0700 Subject: [PATCH 08/20] cortexso: use `std_npm_args` --- Formula/c/cortexso.rb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Formula/c/cortexso.rb b/Formula/c/cortexso.rb index dd44659fe94c2..be82d317564d3 100644 --- a/Formula/c/cortexso.rb +++ b/Formula/c/cortexso.rb @@ -1,5 +1,3 @@ -require "language/node" - class Cortexso < Formula desc "Drop-in, local AI alternative to the OpenAI stack" homepage "https://jan.ai/cortex" @@ -29,7 +27,7 @@ class Cortexso < Formula conflicts_with "cortex", because: "both install `cortex` binaries" def install - system "npm", "install", *Language::Node.std_npm_install_args(libexec) + system "npm", "install", *std_npm_args bin.install_symlink Dir["#{libexec}/bin/*"] # Remove incompatible pre-built binaries From 3b6dd217568cfe06cc3d044afa4aa002a01a726d Mon Sep 17 00:00:00 2001 From: Branch Vincent Date: Tue, 30 Jul 2024 06:44:22 -0700 Subject: [PATCH 09/20] cubejs-cli: use `std_npm_args` --- Formula/c/cubejs-cli.rb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Formula/c/cubejs-cli.rb b/Formula/c/cubejs-cli.rb index 1a860bdba12cd..9b65d7290a7d1 100644 --- a/Formula/c/cubejs-cli.rb +++ b/Formula/c/cubejs-cli.rb @@ -1,5 +1,3 @@ -require "language/node" - class CubejsCli < Formula desc "Cube.js command-line interface" homepage "https://cube.dev/" @@ -21,7 +19,7 @@ class CubejsCli < Formula uses_from_macos "zlib" def install - system "npm", "install", *Language::Node.std_npm_install_args(libexec) + system "npm", "install", *std_npm_args bin.install_symlink Dir["#{libexec}/bin/*"] end From 2ec7310e7bcb9e0e9643c6e06a06f807ae1039f3 Mon Sep 17 00:00:00 2001 From: Branch Vincent Date: Tue, 30 Jul 2024 06:44:23 -0700 Subject: [PATCH 10/20] czg: use `std_npm_args` --- Formula/c/czg.rb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Formula/c/czg.rb b/Formula/c/czg.rb index 440a5aca1e428..000c45f147c89 100644 --- a/Formula/c/czg.rb +++ b/Formula/c/czg.rb @@ -1,5 +1,3 @@ -require "language/node" - class Czg < Formula desc "Interactive Commitizen CLI that generate standardized commit messages" homepage "https://github.com/Zhengqbbb/cz-git" @@ -20,7 +18,7 @@ class Czg < Formula depends_on "node" def install - system "npm", "install", *Language::Node.std_npm_install_args(libexec) + system "npm", "install", *std_npm_args bin.install_symlink Dir["#{libexec}/bin/*"] end From 62034fdfacc9e0af230fdb7bc402d032a19c1b73 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 31 Jul 2024 17:37:51 +0000 Subject: [PATCH 11/20] cdk8s: update 2.198.175 bottle. --- Formula/c/cdk8s.rb | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Formula/c/cdk8s.rb b/Formula/c/cdk8s.rb index 0299f5a0263a3..270880efcb8ff 100644 --- a/Formula/c/cdk8s.rb +++ b/Formula/c/cdk8s.rb @@ -6,13 +6,14 @@ class Cdk8s < Formula license "Apache-2.0" bottle do - sha256 cellar: :any_skip_relocation, arm64_sonoma: "1ae78073b90cd6875886dfcf8155b80ab865068cdfce32e0e96a234ecf292463" - sha256 cellar: :any_skip_relocation, arm64_ventura: "1ae78073b90cd6875886dfcf8155b80ab865068cdfce32e0e96a234ecf292463" - sha256 cellar: :any_skip_relocation, arm64_monterey: "1ae78073b90cd6875886dfcf8155b80ab865068cdfce32e0e96a234ecf292463" - sha256 cellar: :any_skip_relocation, sonoma: "abca0122f464bb6bb07d851030f235cf6e74ff0d105a372ccb7e4d99b38af4a3" - sha256 cellar: :any_skip_relocation, ventura: "abca0122f464bb6bb07d851030f235cf6e74ff0d105a372ccb7e4d99b38af4a3" - sha256 cellar: :any_skip_relocation, monterey: "abca0122f464bb6bb07d851030f235cf6e74ff0d105a372ccb7e4d99b38af4a3" - sha256 cellar: :any_skip_relocation, x86_64_linux: "6826ec421eae6850dd2dd345fa80847def9f6a0226e2c2a8bbdb4f7caecb9de6" + rebuild 1 + sha256 cellar: :any_skip_relocation, arm64_sonoma: "37ab0cf70c4ca637755a34339937ace37c803181ecaeaa50d6553e3103786e1c" + sha256 cellar: :any_skip_relocation, arm64_ventura: "37ab0cf70c4ca637755a34339937ace37c803181ecaeaa50d6553e3103786e1c" + sha256 cellar: :any_skip_relocation, arm64_monterey: "37ab0cf70c4ca637755a34339937ace37c803181ecaeaa50d6553e3103786e1c" + sha256 cellar: :any_skip_relocation, sonoma: "1379e34b1d87dc11f681bd8dac0dc2ff06d28bb8a393edd771867ef409e2436f" + sha256 cellar: :any_skip_relocation, ventura: "1379e34b1d87dc11f681bd8dac0dc2ff06d28bb8a393edd771867ef409e2436f" + sha256 cellar: :any_skip_relocation, monterey: "1379e34b1d87dc11f681bd8dac0dc2ff06d28bb8a393edd771867ef409e2436f" + sha256 cellar: :any_skip_relocation, x86_64_linux: "d870a2fcaf9d95a7feb529f32c3a2dff379b72b81b722100a1aa10fbcca81cb6" end depends_on "node" From dca09ab898473ec41fe1f509e2a8f1a47db555ec Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 31 Jul 2024 17:37:52 +0000 Subject: [PATCH 12/20] cdxgen: update 10.9.0 bottle. --- Formula/c/cdxgen.rb | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Formula/c/cdxgen.rb b/Formula/c/cdxgen.rb index 77db5ce6be617..57a50cfd60057 100644 --- a/Formula/c/cdxgen.rb +++ b/Formula/c/cdxgen.rb @@ -6,13 +6,14 @@ class Cdxgen < Formula license "Apache-2.0" bottle do - sha256 cellar: :any_skip_relocation, arm64_sonoma: "ea55a3dff62b2408ef9a4d2369dd9c613556e349494ea71c543215f8deecfb32" - sha256 cellar: :any_skip_relocation, arm64_ventura: "2d766532db68939420ec16c51be2ffa6599c8b8cce14b6893083fb19bc2460b1" - sha256 cellar: :any_skip_relocation, arm64_monterey: "ffd6b165755938bd93c9ea4658ecc6704bdbbf312861e59233a9721adf0e09ea" - sha256 cellar: :any_skip_relocation, sonoma: "07c5528f2fc7a064dfba843c3178ac10452aa63c90a1ff9773fe4b5986944dd1" - sha256 cellar: :any_skip_relocation, ventura: "3148db3267d60d10057b7d6be0a6e1a6f8abf57dba8133fa9359e6786bd1b830" - sha256 cellar: :any_skip_relocation, monterey: "ef3eb8c8fd5136bd857ffd23a93e39517082befebccd3d9d1755cbf41965a2bf" - sha256 cellar: :any_skip_relocation, x86_64_linux: "d6ce20725f2804508fe7d1de0bae67f9e9201a5fa4aad0a2500af741f0760dce" + rebuild 1 + sha256 cellar: :any_skip_relocation, arm64_sonoma: "dd4d58b900745a026d4c56235b1098df82ac5526c240deebd2bca1948e9e1c91" + sha256 cellar: :any_skip_relocation, arm64_ventura: "1200be9b8b6a95d73bc1f17c2e06a8f0a7ab4eaa8e391cfe1817879afc963543" + sha256 cellar: :any_skip_relocation, arm64_monterey: "47685083e548db74c2ada4d420412752dac0ca2efc9b85907c60df9d8fe88469" + sha256 cellar: :any_skip_relocation, sonoma: "4d22c758a1fd4b37fbbe6fa5bad00cd1d0b9ab7c6f6dd005ea1a58a0f4ed4fcb" + sha256 cellar: :any_skip_relocation, ventura: "e61bb5e1c43f9cbb0aaf460ff33710d22ac98b8dbd6f187359759625b8eea755" + sha256 cellar: :any_skip_relocation, monterey: "db9cf65243698779468a8ff953f5ffcfeec2e96dc5534e447c89cb44dad7b2ea" + sha256 cellar: :any_skip_relocation, x86_64_linux: "536a0ea0536208010e8d06cea42c4d7911b6d98fe9d91afb31f63c16df722a7b" end depends_on "node" From 9d2ebaeebd689700eaf0a4e21435197661a43b61 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 31 Jul 2024 17:37:53 +0000 Subject: [PATCH 13/20] chalk-cli: update 5.0.1 bottle. --- Formula/c/chalk-cli.rb | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Formula/c/chalk-cli.rb b/Formula/c/chalk-cli.rb index 0a7fdea77c5ce..6cf1eb887e5d2 100644 --- a/Formula/c/chalk-cli.rb +++ b/Formula/c/chalk-cli.rb @@ -6,7 +6,14 @@ class ChalkCli < Formula license "MIT" bottle do - sha256 cellar: :any_skip_relocation, all: "36202571cae4f3cf1dfdf4b03739e501beef3c46ec3dc76a1df41f831ebcd0aa" + rebuild 1 + sha256 cellar: :any_skip_relocation, arm64_sonoma: "6dd72ec4c56bdaf68b01d37300b2535c23b69a539ab796d27136640ac072f6b5" + sha256 cellar: :any_skip_relocation, arm64_ventura: "6dd72ec4c56bdaf68b01d37300b2535c23b69a539ab796d27136640ac072f6b5" + sha256 cellar: :any_skip_relocation, arm64_monterey: "6dd72ec4c56bdaf68b01d37300b2535c23b69a539ab796d27136640ac072f6b5" + sha256 cellar: :any_skip_relocation, sonoma: "6dd72ec4c56bdaf68b01d37300b2535c23b69a539ab796d27136640ac072f6b5" + sha256 cellar: :any_skip_relocation, ventura: "6dd72ec4c56bdaf68b01d37300b2535c23b69a539ab796d27136640ac072f6b5" + sha256 cellar: :any_skip_relocation, monterey: "6dd72ec4c56bdaf68b01d37300b2535c23b69a539ab796d27136640ac072f6b5" + sha256 cellar: :any_skip_relocation, x86_64_linux: "ea570e06f25667aeceac64b1434ddc5bafdc21ecd5147ba46fd102b3a7ee9498" end depends_on "node" From 491e3a75f7a8f5fc89ed9f6c72b32183d939e062 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 31 Jul 2024 17:37:53 +0000 Subject: [PATCH 14/20] coffeescript: update 2.7.0 bottle. --- Formula/c/coffeescript.rb | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Formula/c/coffeescript.rb b/Formula/c/coffeescript.rb index 2515171fa49a7..e9a8aa655b828 100644 --- a/Formula/c/coffeescript.rb +++ b/Formula/c/coffeescript.rb @@ -7,7 +7,14 @@ class Coffeescript < Formula head "https://github.com/jashkenas/coffeescript.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, all: "ca7fa9078c1169f542f4b95ed89dfacbc69b02f50345c03656763f801ffc9cb3" + rebuild 1 + sha256 cellar: :any_skip_relocation, arm64_sonoma: "8e07f15b72bb3182536806a3ca9449a40fa7957d6501c5f7c20e38a5bc96c219" + sha256 cellar: :any_skip_relocation, arm64_ventura: "8e07f15b72bb3182536806a3ca9449a40fa7957d6501c5f7c20e38a5bc96c219" + sha256 cellar: :any_skip_relocation, arm64_monterey: "8e07f15b72bb3182536806a3ca9449a40fa7957d6501c5f7c20e38a5bc96c219" + sha256 cellar: :any_skip_relocation, sonoma: "8e07f15b72bb3182536806a3ca9449a40fa7957d6501c5f7c20e38a5bc96c219" + sha256 cellar: :any_skip_relocation, ventura: "8e07f15b72bb3182536806a3ca9449a40fa7957d6501c5f7c20e38a5bc96c219" + sha256 cellar: :any_skip_relocation, monterey: "8e07f15b72bb3182536806a3ca9449a40fa7957d6501c5f7c20e38a5bc96c219" + sha256 cellar: :any_skip_relocation, x86_64_linux: "7454fcd2bd55ba72481506195de985a7ad153ab63cd8f41e1204e69a81467253" end depends_on "node" From a2f0369d0e2ef57f677527a578d20853a4a9d23e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 31 Jul 2024 17:37:53 +0000 Subject: [PATCH 15/20] commitlint: update 19.3.0 bottle. --- Formula/c/commitlint.rb | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Formula/c/commitlint.rb b/Formula/c/commitlint.rb index 039828e9d828a..c9f8a7cce1b24 100644 --- a/Formula/c/commitlint.rb +++ b/Formula/c/commitlint.rb @@ -7,13 +7,14 @@ class Commitlint < Formula head "https://github.com/conventional-changelog/commitlint.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sonoma: "15b7edcb85f4caf7a8e444dfd891017ac20e2f94189f593e9fb6403a08eb9860" - sha256 cellar: :any_skip_relocation, arm64_ventura: "15b7edcb85f4caf7a8e444dfd891017ac20e2f94189f593e9fb6403a08eb9860" - sha256 cellar: :any_skip_relocation, arm64_monterey: "15b7edcb85f4caf7a8e444dfd891017ac20e2f94189f593e9fb6403a08eb9860" - sha256 cellar: :any_skip_relocation, sonoma: "6c53449fe9728ea230148d33d5438b48c7c3054f6576aa0f14f0e2f617a41741" - sha256 cellar: :any_skip_relocation, ventura: "6c53449fe9728ea230148d33d5438b48c7c3054f6576aa0f14f0e2f617a41741" - sha256 cellar: :any_skip_relocation, monterey: "6c53449fe9728ea230148d33d5438b48c7c3054f6576aa0f14f0e2f617a41741" - sha256 cellar: :any_skip_relocation, x86_64_linux: "15b7edcb85f4caf7a8e444dfd891017ac20e2f94189f593e9fb6403a08eb9860" + rebuild 1 + sha256 cellar: :any_skip_relocation, arm64_sonoma: "835bb470798abd5172a8ae23a1b7b2ddf39b0897606846f44813b1abf617a206" + sha256 cellar: :any_skip_relocation, arm64_ventura: "835bb470798abd5172a8ae23a1b7b2ddf39b0897606846f44813b1abf617a206" + sha256 cellar: :any_skip_relocation, arm64_monterey: "835bb470798abd5172a8ae23a1b7b2ddf39b0897606846f44813b1abf617a206" + sha256 cellar: :any_skip_relocation, sonoma: "c0a9903caf955420e1ed47ab5fd01a54dec1db45460fb20b9bc2282a1fd4b8e6" + sha256 cellar: :any_skip_relocation, ventura: "c0a9903caf955420e1ed47ab5fd01a54dec1db45460fb20b9bc2282a1fd4b8e6" + sha256 cellar: :any_skip_relocation, monterey: "c0a9903caf955420e1ed47ab5fd01a54dec1db45460fb20b9bc2282a1fd4b8e6" + sha256 cellar: :any_skip_relocation, x86_64_linux: "a91a1e8ad08df01e00e0b2a841f6d17090d5306c3da1dc39358826d08142e6dc" end depends_on "node" From 08223956a8619bd6cb0ef8eced3a52283099b496 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 31 Jul 2024 17:37:54 +0000 Subject: [PATCH 16/20] contentful-cli: update 3.3.3 bottle. --- Formula/c/contentful-cli.rb | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Formula/c/contentful-cli.rb b/Formula/c/contentful-cli.rb index 07160e2b6b650..133eb62e98328 100644 --- a/Formula/c/contentful-cli.rb +++ b/Formula/c/contentful-cli.rb @@ -7,13 +7,14 @@ class ContentfulCli < Formula head "https://github.com/contentful/contentful-cli.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sonoma: "a0df0be8cf868331c49d56dfc7abb5a4addff00fcae0e2360b8015611cda58d6" - sha256 cellar: :any_skip_relocation, arm64_ventura: "a0df0be8cf868331c49d56dfc7abb5a4addff00fcae0e2360b8015611cda58d6" - sha256 cellar: :any_skip_relocation, arm64_monterey: "a0df0be8cf868331c49d56dfc7abb5a4addff00fcae0e2360b8015611cda58d6" - sha256 cellar: :any_skip_relocation, sonoma: "c4952a10b381a4352212247893f8c32b8a26842df875a12792f666f6e8557cd3" - sha256 cellar: :any_skip_relocation, ventura: "c4952a10b381a4352212247893f8c32b8a26842df875a12792f666f6e8557cd3" - sha256 cellar: :any_skip_relocation, monterey: "c4952a10b381a4352212247893f8c32b8a26842df875a12792f666f6e8557cd3" - sha256 cellar: :any_skip_relocation, x86_64_linux: "70109e3187f2db0f0753ac9fa52aec12948b842544391ac8dec4cec4b88f629c" + rebuild 1 + sha256 cellar: :any_skip_relocation, arm64_sonoma: "177216e49adbd52e55ad3923c09c5329025e311014c2483557262ce083812b7b" + sha256 cellar: :any_skip_relocation, arm64_ventura: "177216e49adbd52e55ad3923c09c5329025e311014c2483557262ce083812b7b" + sha256 cellar: :any_skip_relocation, arm64_monterey: "177216e49adbd52e55ad3923c09c5329025e311014c2483557262ce083812b7b" + sha256 cellar: :any_skip_relocation, sonoma: "8c750b3bd304310b5af1aa4cf98af9554c62929a0f218bfd41246a0aa1fa7d08" + sha256 cellar: :any_skip_relocation, ventura: "8c750b3bd304310b5af1aa4cf98af9554c62929a0f218bfd41246a0aa1fa7d08" + sha256 cellar: :any_skip_relocation, monterey: "6471f4b92badf80beb23471251dd60c597fdae1c925af862fdbf87ca5d546f64" + sha256 cellar: :any_skip_relocation, x86_64_linux: "a988eec16401dc6cb35774d5548fb4ec33eac3606743ac4a371faab1b01a5685" end depends_on "node" From 2b303dff8e5960128c3aba8a91335c09e4fec7f5 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 31 Jul 2024 17:37:54 +0000 Subject: [PATCH 17/20] corepack: update 0.29.3 bottle. --- Formula/c/corepack.rb | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Formula/c/corepack.rb b/Formula/c/corepack.rb index 8a5fb03a2fc2b..659592eee632a 100644 --- a/Formula/c/corepack.rb +++ b/Formula/c/corepack.rb @@ -11,13 +11,14 @@ class Corepack < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sonoma: "e0b716c6d5870ae96d8babde7ec28d9273d4339484dba225fb61a492afb19405" - sha256 cellar: :any_skip_relocation, arm64_ventura: "e0b716c6d5870ae96d8babde7ec28d9273d4339484dba225fb61a492afb19405" - sha256 cellar: :any_skip_relocation, arm64_monterey: "e0b716c6d5870ae96d8babde7ec28d9273d4339484dba225fb61a492afb19405" - sha256 cellar: :any_skip_relocation, sonoma: "e0b716c6d5870ae96d8babde7ec28d9273d4339484dba225fb61a492afb19405" - sha256 cellar: :any_skip_relocation, ventura: "e0b716c6d5870ae96d8babde7ec28d9273d4339484dba225fb61a492afb19405" - sha256 cellar: :any_skip_relocation, monterey: "e0b716c6d5870ae96d8babde7ec28d9273d4339484dba225fb61a492afb19405" - sha256 cellar: :any_skip_relocation, x86_64_linux: "c47f93a081f5178b14c191f8135acfff177df34e5d69719665315e67e538ea4b" + rebuild 1 + sha256 cellar: :any_skip_relocation, arm64_sonoma: "02602f24c46d8852d823a87c5e7877f8c8cb1de3cf90a9dcad3716f6d8d36988" + sha256 cellar: :any_skip_relocation, arm64_ventura: "02602f24c46d8852d823a87c5e7877f8c8cb1de3cf90a9dcad3716f6d8d36988" + sha256 cellar: :any_skip_relocation, arm64_monterey: "02602f24c46d8852d823a87c5e7877f8c8cb1de3cf90a9dcad3716f6d8d36988" + sha256 cellar: :any_skip_relocation, sonoma: "02602f24c46d8852d823a87c5e7877f8c8cb1de3cf90a9dcad3716f6d8d36988" + sha256 cellar: :any_skip_relocation, ventura: "02602f24c46d8852d823a87c5e7877f8c8cb1de3cf90a9dcad3716f6d8d36988" + sha256 cellar: :any_skip_relocation, monterey: "02602f24c46d8852d823a87c5e7877f8c8cb1de3cf90a9dcad3716f6d8d36988" + sha256 cellar: :any_skip_relocation, x86_64_linux: "67b27d9b337822a292d6ceb524c40d09ee459455265aec4f8c0221cf5a937db6" end depends_on "node" From de6525902380c56a587615fe0e8cc0c31672e3c4 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 31 Jul 2024 17:37:55 +0000 Subject: [PATCH 18/20] cortexso: update 0.1.1 bottle. --- Formula/c/cortexso.rb | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Formula/c/cortexso.rb b/Formula/c/cortexso.rb index be82d317564d3..bdbd7bc576a6e 100644 --- a/Formula/c/cortexso.rb +++ b/Formula/c/cortexso.rb @@ -7,13 +7,14 @@ class Cortexso < Formula head "https://github.com/janhq/cortex.git", branch: "dev" bottle do - sha256 arm64_sonoma: "949ddfffd7080fd4784d41336a04f9d5563ce6d36e0603c5afb7c3cceaf82f1a" - sha256 arm64_ventura: "343b1cf9fa6816b06ff85c3baff74c9f97ac667fbcc221e5161fb2608765914b" - sha256 arm64_monterey: "c0d0a6f242e4bb9863fc9bc2df0770996945144b544b71b1dfd33bad388d589a" - sha256 sonoma: "e9374a6c7f5f98fa106a64917bc7d0d266a225f20613d1885215cf4d4723d9b2" - sha256 ventura: "4ce108f4edbdd437d5136e85497ab8e90dd0caf4d491db970c4e3e36512f10a6" - sha256 monterey: "d31c77f913d8af0fc3eeee913b293f63242a5bcad0399d2e8a7e2039bb9308cb" - sha256 cellar: :any_skip_relocation, x86_64_linux: "68a5b223387791ba534e7c06126c8938c62bc898176585d0d27755d575445696" + rebuild 1 + sha256 arm64_sonoma: "5a40692000193b98c8274e0f4b6cd366558fc464e91fbc9222af2e16b4238b2b" + sha256 arm64_ventura: "e505143e5417668b3027c83e923871bacbbaf5ac0a86bde0e0b156bfad7e0c36" + sha256 arm64_monterey: "0d30abe3e770dc4596348ba52c39bdeadbc270d61213a563c8f655c694858362" + sha256 sonoma: "33d3271364280efa43bdf39ff61532e4e6f1ec5e1d0a2c3e9c70695cd6f5977f" + sha256 ventura: "9dc575f5fcdb463e7fd8e00159329fe29080b76e3c563de647c90b2affaf9141" + sha256 monterey: "30aa7c29ce75ef1429af1393073d4970a6b101bad2ddc638164e9b22cbb6b54e" + sha256 cellar: :any_skip_relocation, x86_64_linux: "f02d924016dcab7dce2faecaac5a77ba04ad4ba20dcac3e0fcc753d248364264" end depends_on "node" From 0cf0279a817c79407300be1d18aa5e217d5fe34d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 31 Jul 2024 17:37:55 +0000 Subject: [PATCH 19/20] cubejs-cli: update 0.35.65 bottle. --- Formula/c/cubejs-cli.rb | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Formula/c/cubejs-cli.rb b/Formula/c/cubejs-cli.rb index 9b65d7290a7d1..9e1679f0b5524 100644 --- a/Formula/c/cubejs-cli.rb +++ b/Formula/c/cubejs-cli.rb @@ -6,13 +6,14 @@ class CubejsCli < Formula license "Apache-2.0" bottle do - sha256 cellar: :any, arm64_sonoma: "97ddc9eb7215cc91a67e6bc0473f2f59d088be1b75986ca3df9dd0e0d785e996" - sha256 cellar: :any, arm64_ventura: "97ddc9eb7215cc91a67e6bc0473f2f59d088be1b75986ca3df9dd0e0d785e996" - sha256 cellar: :any, arm64_monterey: "97ddc9eb7215cc91a67e6bc0473f2f59d088be1b75986ca3df9dd0e0d785e996" - sha256 cellar: :any, sonoma: "5100bdcb99ad4d58a4e1ca5c49295300af668b8778067f06103a798ad8b13d3a" - sha256 cellar: :any, ventura: "5100bdcb99ad4d58a4e1ca5c49295300af668b8778067f06103a798ad8b13d3a" - sha256 cellar: :any, monterey: "5100bdcb99ad4d58a4e1ca5c49295300af668b8778067f06103a798ad8b13d3a" - sha256 cellar: :any_skip_relocation, x86_64_linux: "cba633c629dc33e7b242fb27374fa7eec09320d3f45ad474e5f28fbfc9a9e70d" + rebuild 1 + sha256 cellar: :any, arm64_sonoma: "90d2bbd8e38569f864aa54184634d850c1ba3389e91641bfd3a60c7bb07956af" + sha256 cellar: :any, arm64_ventura: "90d2bbd8e38569f864aa54184634d850c1ba3389e91641bfd3a60c7bb07956af" + sha256 cellar: :any, arm64_monterey: "90d2bbd8e38569f864aa54184634d850c1ba3389e91641bfd3a60c7bb07956af" + sha256 cellar: :any, sonoma: "92398885678dad5a5893f718bfc89a54fa9167ab3cff896ab6526efda0c45e07" + sha256 cellar: :any, ventura: "92398885678dad5a5893f718bfc89a54fa9167ab3cff896ab6526efda0c45e07" + sha256 cellar: :any, monterey: "92398885678dad5a5893f718bfc89a54fa9167ab3cff896ab6526efda0c45e07" + sha256 cellar: :any_skip_relocation, x86_64_linux: "6c77713ab82287ec90fe4c060bef509ac1a94c76c66564a48ac153aa7c83ae50" end depends_on "node" From 31e0342d4fd2a05ec92a1fa4c0bcc3d43a1d8cfc Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 31 Jul 2024 17:37:55 +0000 Subject: [PATCH 20/20] czg: update 1.9.4 bottle. --- Formula/c/czg.rb | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Formula/c/czg.rb b/Formula/c/czg.rb index 000c45f147c89..18162f002a314 100644 --- a/Formula/c/czg.rb +++ b/Formula/c/czg.rb @@ -6,13 +6,14 @@ class Czg < Formula license "MIT" bottle do - sha256 cellar: :any_skip_relocation, arm64_sonoma: "25f077613768332129dd88900f73ba1ce2c6084e11003208da001dc264dc75d7" - sha256 cellar: :any_skip_relocation, arm64_ventura: "25f077613768332129dd88900f73ba1ce2c6084e11003208da001dc264dc75d7" - sha256 cellar: :any_skip_relocation, arm64_monterey: "25f077613768332129dd88900f73ba1ce2c6084e11003208da001dc264dc75d7" - sha256 cellar: :any_skip_relocation, sonoma: "25f077613768332129dd88900f73ba1ce2c6084e11003208da001dc264dc75d7" - sha256 cellar: :any_skip_relocation, ventura: "df2c96cae02377b590b7c1bb83d68f8574fc10ee1db2e491f0a3b88f63172752" - sha256 cellar: :any_skip_relocation, monterey: "25f077613768332129dd88900f73ba1ce2c6084e11003208da001dc264dc75d7" - sha256 cellar: :any_skip_relocation, x86_64_linux: "a36ded1af7e80799e311d873c7a23cc41a4378d0d6546cd9969de8e5c97177d9" + rebuild 1 + sha256 cellar: :any_skip_relocation, arm64_sonoma: "6c75647262ed4bed88908c8e95f39b01e2e4e65eab8702e1b162d9148ed1eaa2" + sha256 cellar: :any_skip_relocation, arm64_ventura: "6c75647262ed4bed88908c8e95f39b01e2e4e65eab8702e1b162d9148ed1eaa2" + sha256 cellar: :any_skip_relocation, arm64_monterey: "6c75647262ed4bed88908c8e95f39b01e2e4e65eab8702e1b162d9148ed1eaa2" + sha256 cellar: :any_skip_relocation, sonoma: "6c75647262ed4bed88908c8e95f39b01e2e4e65eab8702e1b162d9148ed1eaa2" + sha256 cellar: :any_skip_relocation, ventura: "6c75647262ed4bed88908c8e95f39b01e2e4e65eab8702e1b162d9148ed1eaa2" + sha256 cellar: :any_skip_relocation, monterey: "6c75647262ed4bed88908c8e95f39b01e2e4e65eab8702e1b162d9148ed1eaa2" + sha256 cellar: :any_skip_relocation, x86_64_linux: "5d30fbdd434fd931ce152e3e473748937cd35061e1159b016ff05d882fbf6c74" end depends_on "node"