From ee8c2ebea765f09c0de8e3f92320e4b373e0ed1c Mon Sep 17 00:00:00 2001 From: Branch Vincent Date: Wed, 31 Jul 2024 18:32:48 -0700 Subject: [PATCH 01/14] nativefier: use `std_npm_args` --- Formula/n/nativefier.rb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Formula/n/nativefier.rb b/Formula/n/nativefier.rb index d21f6cbcc4de3..59f1af7d702e0 100644 --- a/Formula/n/nativefier.rb +++ b/Formula/n/nativefier.rb @@ -1,5 +1,3 @@ -require "language/node" - class Nativefier < Formula desc "Wrap web apps natively" homepage "https://github.com/nativefier/nativefier" @@ -24,7 +22,7 @@ class Nativefier < 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 65ad5bec8c3f718c75da4936c46ae5fa02a9df86 Mon Sep 17 00:00:00 2001 From: Branch Vincent Date: Wed, 31 Jul 2024 18:32:48 -0700 Subject: [PATCH 02/14] ncc: use `std_npm_args` --- Formula/n/ncc.rb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Formula/n/ncc.rb b/Formula/n/ncc.rb index 3ec85b0d450c2..4eb634cbaacc6 100644 --- a/Formula/n/ncc.rb +++ b/Formula/n/ncc.rb @@ -1,5 +1,3 @@ -require "language/node" - class Ncc < Formula desc "Compile a Node.js project into a single file" homepage "https://github.com/vercel/ncc" @@ -21,7 +19,7 @@ class Ncc < 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 b4da47f6d5c93798036795d175040b9e52a78625 Mon Sep 17 00:00:00 2001 From: Branch Vincent Date: Wed, 31 Jul 2024 18:32:48 -0700 Subject: [PATCH 03/14] neonctl: use `std_npm_args` --- Formula/n/neonctl.rb | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Formula/n/neonctl.rb b/Formula/n/neonctl.rb index a1ed2edaef149..89a8287c6a081 100644 --- a/Formula/n/neonctl.rb +++ b/Formula/n/neonctl.rb @@ -1,5 +1,3 @@ -require "language/node" - class Neonctl < Formula desc "Neon CLI tool" homepage "https://neon.tech/docs/reference/neon-cli" @@ -20,11 +18,11 @@ class Neonctl < 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/*"] %w[neonctl neon].each do |cmd| - generate_completions_from_executable(bin/cmd, "completion") + generate_completions_from_executable(bin/cmd, "completion", base_name: cmd, shells: [:bash, :zsh]) end end From 367f4e23553ebf19ab3733258317cd4d8e908868 Mon Sep 17 00:00:00 2001 From: Branch Vincent Date: Wed, 31 Jul 2024 18:32:49 -0700 Subject: [PATCH 04/14] netlistsvg: use `std_npm_args` --- Formula/n/netlistsvg.rb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Formula/n/netlistsvg.rb b/Formula/n/netlistsvg.rb index fa47d00c9ca4c..a1448f847fb49 100644 --- a/Formula/n/netlistsvg.rb +++ b/Formula/n/netlistsvg.rb @@ -1,5 +1,3 @@ -require "language/node" - class Netlistsvg < Formula desc "Draws an SVG schematic from a yosys JSON netlist" homepage "https://github.com/nturley/netlistsvg" @@ -15,7 +13,7 @@ class Netlistsvg < 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 feb2350787ed4bb60ce89e807faaf74506a0b4ab Mon Sep 17 00:00:00 2001 From: Branch Vincent Date: Wed, 31 Jul 2024 18:32:49 -0700 Subject: [PATCH 05/14] newman: use `std_npm_args` --- Formula/n/newman.rb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Formula/n/newman.rb b/Formula/n/newman.rb index d2e2aaf69aa70..f93a7447c6d95 100644 --- a/Formula/n/newman.rb +++ b/Formula/n/newman.rb @@ -1,5 +1,3 @@ -require "language/node" - class Newman < Formula desc "Command-line collection runner for Postman" homepage "https://www.getpostman.com" @@ -20,7 +18,7 @@ class Newman < 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 81615a0bd6f2b701409b902446a1187ddaf72eb2 Mon Sep 17 00:00:00 2001 From: Branch Vincent Date: Wed, 31 Jul 2024 18:32:49 -0700 Subject: [PATCH 06/14] node-sass: use `std_npm_args` --- Formula/n/node-sass.rb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Formula/n/node-sass.rb b/Formula/n/node-sass.rb index 6167dbb872392..f976042128bd4 100644 --- a/Formula/n/node-sass.rb +++ b/Formula/n/node-sass.rb @@ -1,6 +1,4 @@ class NodeSass < Formula - require "language/node" - desc "JavaScript implementation of a Sass compiler" homepage "https://github.com/sass/dart-sass" url "https://registry.npmjs.org/sass/-/sass-1.77.8.tgz" @@ -20,7 +18,7 @@ class NodeSass < 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 14237cc3a5422713b6f7ccf4bba2c45716ae08f5 Mon Sep 17 00:00:00 2001 From: Branch Vincent Date: Wed, 31 Jul 2024 18:32:49 -0700 Subject: [PATCH 07/14] npm-check-updates: use `std_npm_args` --- Formula/n/npm-check-updates.rb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Formula/n/npm-check-updates.rb b/Formula/n/npm-check-updates.rb index f043f352a313c..00ee76f5255d0 100644 --- a/Formula/n/npm-check-updates.rb +++ b/Formula/n/npm-check-updates.rb @@ -1,5 +1,3 @@ -require "language/node" - class NpmCheckUpdates < Formula desc "Find newer versions of dependencies than what your package.json allows" homepage "https://github.com/raineorshine/npm-check-updates" @@ -20,7 +18,7 @@ class NpmCheckUpdates < 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 730f2cccc0a2a485ada1648bae90d8cb1043ea30 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 1 Aug 2024 14:42:14 +0000 Subject: [PATCH 08/14] nativefier: update 52.0.0 bottle. --- Formula/n/nativefier.rb | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/Formula/n/nativefier.rb b/Formula/n/nativefier.rb index 59f1af7d702e0..3aca654bc60b6 100644 --- a/Formula/n/nativefier.rb +++ b/Formula/n/nativefier.rb @@ -6,15 +6,14 @@ class Nativefier < Formula license "MIT" bottle do - sha256 cellar: :any_skip_relocation, arm64_sonoma: "3e752430f545faa200121374e77a086329a1d9bd6c00e90f77f72e6cce8553ed" - sha256 cellar: :any_skip_relocation, arm64_ventura: "d43221afa1e9e1cf3cf8e09ae10f485602f7be6951e2e8f2a92a8cbdfc3325fc" - sha256 cellar: :any_skip_relocation, arm64_monterey: "d43221afa1e9e1cf3cf8e09ae10f485602f7be6951e2e8f2a92a8cbdfc3325fc" - sha256 cellar: :any_skip_relocation, arm64_big_sur: "d43221afa1e9e1cf3cf8e09ae10f485602f7be6951e2e8f2a92a8cbdfc3325fc" - sha256 cellar: :any_skip_relocation, sonoma: "455b791378f61bb5670bcec324beb48a61e0b2d86189849bdca6d7a927dad5e9" - sha256 cellar: :any_skip_relocation, ventura: "81d8ff02c4ab134272fb633f797551e98c1e6bce213fff65b52a178017f7b64d" - sha256 cellar: :any_skip_relocation, monterey: "81d8ff02c4ab134272fb633f797551e98c1e6bce213fff65b52a178017f7b64d" - sha256 cellar: :any_skip_relocation, big_sur: "81d8ff02c4ab134272fb633f797551e98c1e6bce213fff65b52a178017f7b64d" - sha256 cellar: :any_skip_relocation, x86_64_linux: "d43221afa1e9e1cf3cf8e09ae10f485602f7be6951e2e8f2a92a8cbdfc3325fc" + rebuild 1 + sha256 cellar: :any_skip_relocation, arm64_sonoma: "c8b34ad78186093473325fd42ce2ba129f7a112a7b1d1b978bcc016a643ae1d1" + sha256 cellar: :any_skip_relocation, arm64_ventura: "c8b34ad78186093473325fd42ce2ba129f7a112a7b1d1b978bcc016a643ae1d1" + sha256 cellar: :any_skip_relocation, arm64_monterey: "c8b34ad78186093473325fd42ce2ba129f7a112a7b1d1b978bcc016a643ae1d1" + sha256 cellar: :any_skip_relocation, sonoma: "4148739ce73c42af24207638a6ebf6a7d1821421b8566218e865509f1891b09e" + sha256 cellar: :any_skip_relocation, ventura: "4148739ce73c42af24207638a6ebf6a7d1821421b8566218e865509f1891b09e" + sha256 cellar: :any_skip_relocation, monterey: "4148739ce73c42af24207638a6ebf6a7d1821421b8566218e865509f1891b09e" + sha256 cellar: :any_skip_relocation, x86_64_linux: "1f12e3086887b5424fc4a6b718a323f2bc207069ebb4a9419f35680e8ef82fdd" end deprecate! date: "2024-01-06", because: :repo_archived From ddeb9cac24bdf49780fe7e7cfa688a70c50f3b7a Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 1 Aug 2024 14:42:15 +0000 Subject: [PATCH 09/14] ncc: update 0.38.1 bottle. --- Formula/n/ncc.rb | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Formula/n/ncc.rb b/Formula/n/ncc.rb index 4eb634cbaacc6..ae0220dde6837 100644 --- a/Formula/n/ncc.rb +++ b/Formula/n/ncc.rb @@ -6,14 +6,14 @@ class Ncc < Formula license "MIT" bottle do - rebuild 1 - sha256 cellar: :any_skip_relocation, arm64_sonoma: "780d77d96277011284e25bf72dae772f0334b4fa205b6fb03d6b240db0450889" - sha256 cellar: :any_skip_relocation, arm64_ventura: "780d77d96277011284e25bf72dae772f0334b4fa205b6fb03d6b240db0450889" - sha256 cellar: :any_skip_relocation, arm64_monterey: "780d77d96277011284e25bf72dae772f0334b4fa205b6fb03d6b240db0450889" - sha256 cellar: :any_skip_relocation, sonoma: "780d77d96277011284e25bf72dae772f0334b4fa205b6fb03d6b240db0450889" - sha256 cellar: :any_skip_relocation, ventura: "780d77d96277011284e25bf72dae772f0334b4fa205b6fb03d6b240db0450889" - sha256 cellar: :any_skip_relocation, monterey: "780d77d96277011284e25bf72dae772f0334b4fa205b6fb03d6b240db0450889" - sha256 cellar: :any_skip_relocation, x86_64_linux: "9d55b94e1f441d7dc759cdec53b73749b4c8a1909857f1e65c3d4869e21e6153" + rebuild 2 + sha256 cellar: :any_skip_relocation, arm64_sonoma: "507cc4d97e59cb966e9a1da8af31b4041afea40cefef244c707bee8a65e92e1a" + sha256 cellar: :any_skip_relocation, arm64_ventura: "507cc4d97e59cb966e9a1da8af31b4041afea40cefef244c707bee8a65e92e1a" + sha256 cellar: :any_skip_relocation, arm64_monterey: "507cc4d97e59cb966e9a1da8af31b4041afea40cefef244c707bee8a65e92e1a" + sha256 cellar: :any_skip_relocation, sonoma: "507cc4d97e59cb966e9a1da8af31b4041afea40cefef244c707bee8a65e92e1a" + sha256 cellar: :any_skip_relocation, ventura: "507cc4d97e59cb966e9a1da8af31b4041afea40cefef244c707bee8a65e92e1a" + sha256 cellar: :any_skip_relocation, monterey: "507cc4d97e59cb966e9a1da8af31b4041afea40cefef244c707bee8a65e92e1a" + sha256 cellar: :any_skip_relocation, x86_64_linux: "204def702229d225311c36b5a60152f49d181e968921274198fb331ba0589610" end depends_on "node" From 2a4ddebe53ac5ea5d5ec29b5a0fd56547cef0d4c Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 1 Aug 2024 14:42:16 +0000 Subject: [PATCH 10/14] neonctl: update 1.33.0 bottle. --- Formula/n/neonctl.rb | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Formula/n/neonctl.rb b/Formula/n/neonctl.rb index 89a8287c6a081..cd739aa4df77a 100644 --- a/Formula/n/neonctl.rb +++ b/Formula/n/neonctl.rb @@ -6,13 +6,14 @@ class Neonctl < Formula license "Apache-2.0" bottle do - sha256 cellar: :any_skip_relocation, arm64_sonoma: "4ade773541114966df2bbcb824cd10e1ddba5902b1e5aadab4b14235aad527e9" - sha256 cellar: :any_skip_relocation, arm64_ventura: "4ade773541114966df2bbcb824cd10e1ddba5902b1e5aadab4b14235aad527e9" - sha256 cellar: :any_skip_relocation, arm64_monterey: "4ade773541114966df2bbcb824cd10e1ddba5902b1e5aadab4b14235aad527e9" - sha256 cellar: :any_skip_relocation, sonoma: "2d629de88a372c380fe396db76dc4f8a9f05cee9c2a48d777439da43c67b0ed4" - sha256 cellar: :any_skip_relocation, ventura: "2d629de88a372c380fe396db76dc4f8a9f05cee9c2a48d777439da43c67b0ed4" - sha256 cellar: :any_skip_relocation, monterey: "0731b3cd65cddcb2fc9e2efcba71eb2a7f13d3ec1ded7740cce272b4ba67bc03" - sha256 cellar: :any_skip_relocation, x86_64_linux: "2a84f881dba5272c6038d9f76d9d23e02a36465ac543ca94f61d074c94c70845" + rebuild 1 + sha256 cellar: :any_skip_relocation, arm64_sonoma: "14e00ca310d9ce5d9af4655d52f1cd6f2b76d5c4cfb7dd1f4b09890cb9a69c9f" + sha256 cellar: :any_skip_relocation, arm64_ventura: "14e00ca310d9ce5d9af4655d52f1cd6f2b76d5c4cfb7dd1f4b09890cb9a69c9f" + sha256 cellar: :any_skip_relocation, arm64_monterey: "14e00ca310d9ce5d9af4655d52f1cd6f2b76d5c4cfb7dd1f4b09890cb9a69c9f" + sha256 cellar: :any_skip_relocation, sonoma: "d8d10a4b9ed381e27f9e5ae2e43f0a3e37919a1d3c30ee7120f86280253e26cb" + sha256 cellar: :any_skip_relocation, ventura: "d8d10a4b9ed381e27f9e5ae2e43f0a3e37919a1d3c30ee7120f86280253e26cb" + sha256 cellar: :any_skip_relocation, monterey: "d8d10a4b9ed381e27f9e5ae2e43f0a3e37919a1d3c30ee7120f86280253e26cb" + sha256 cellar: :any_skip_relocation, x86_64_linux: "46dddaac5189ff40536df188b076cce12133633499cd766a3368ac547bdeb7da" end depends_on "node" From db445b5c625e5b2770e1d6d1a624c3c140136d58 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 1 Aug 2024 14:42:16 +0000 Subject: [PATCH 11/14] netlistsvg: update 1.0.2 bottle. --- Formula/n/netlistsvg.rb | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Formula/n/netlistsvg.rb b/Formula/n/netlistsvg.rb index a1448f847fb49..44a2c63ad40f8 100644 --- a/Formula/n/netlistsvg.rb +++ b/Formula/n/netlistsvg.rb @@ -6,7 +6,14 @@ class Netlistsvg < Formula license "MIT" bottle do - sha256 cellar: :any_skip_relocation, all: "0db6e0d42e5a96a82499730ce2be1ae11af72f23b0d16e536eabf2e30c7d8983" + rebuild 1 + sha256 cellar: :any_skip_relocation, arm64_sonoma: "8631b57e56cacc86f90f5ffec484dbda8fc3e8ed679bdb5549d62f4e8fc87519" + sha256 cellar: :any_skip_relocation, arm64_ventura: "8631b57e56cacc86f90f5ffec484dbda8fc3e8ed679bdb5549d62f4e8fc87519" + sha256 cellar: :any_skip_relocation, arm64_monterey: "8631b57e56cacc86f90f5ffec484dbda8fc3e8ed679bdb5549d62f4e8fc87519" + sha256 cellar: :any_skip_relocation, sonoma: "8631b57e56cacc86f90f5ffec484dbda8fc3e8ed679bdb5549d62f4e8fc87519" + sha256 cellar: :any_skip_relocation, ventura: "8631b57e56cacc86f90f5ffec484dbda8fc3e8ed679bdb5549d62f4e8fc87519" + sha256 cellar: :any_skip_relocation, monterey: "8631b57e56cacc86f90f5ffec484dbda8fc3e8ed679bdb5549d62f4e8fc87519" + sha256 cellar: :any_skip_relocation, x86_64_linux: "375b90caacd7736ea74c7f6ebfc1b0fd5b4c8bde7a75be4e12e965b0221d4f1e" end depends_on "yosys" => :test From 6666edb099f12ab2f0dd79ba576fc07d2aa6aa32 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 1 Aug 2024 14:42:16 +0000 Subject: [PATCH 12/14] newman: update 6.1.3 bottle. --- Formula/n/newman.rb | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Formula/n/newman.rb b/Formula/n/newman.rb index f93a7447c6d95..350ce3fc9cab4 100644 --- a/Formula/n/newman.rb +++ b/Formula/n/newman.rb @@ -6,13 +6,14 @@ class Newman < Formula license "Apache-2.0" bottle do - sha256 cellar: :any_skip_relocation, arm64_sonoma: "ecc6f8a704e46ca38d99f0d8d980f910dd6ad9f3d8c0b9e23b3abf29b452e1dd" - sha256 cellar: :any_skip_relocation, arm64_ventura: "ecc6f8a704e46ca38d99f0d8d980f910dd6ad9f3d8c0b9e23b3abf29b452e1dd" - sha256 cellar: :any_skip_relocation, arm64_monterey: "ecc6f8a704e46ca38d99f0d8d980f910dd6ad9f3d8c0b9e23b3abf29b452e1dd" - sha256 cellar: :any_skip_relocation, sonoma: "1fa16f67b6cce040a5048f7247833b663d31da026eb327c702e795324bc610be" - sha256 cellar: :any_skip_relocation, ventura: "1fa16f67b6cce040a5048f7247833b663d31da026eb327c702e795324bc610be" - sha256 cellar: :any_skip_relocation, monterey: "1fa16f67b6cce040a5048f7247833b663d31da026eb327c702e795324bc610be" - sha256 cellar: :any_skip_relocation, x86_64_linux: "667de2f36c865416e3a585c619fbb2274588fff370e644e4748bfd97b24ada73" + rebuild 1 + sha256 cellar: :any_skip_relocation, arm64_sonoma: "083286f30003f41082fc28c1f840034fdbc439832df691616a74487b4ed115a8" + sha256 cellar: :any_skip_relocation, arm64_ventura: "083286f30003f41082fc28c1f840034fdbc439832df691616a74487b4ed115a8" + sha256 cellar: :any_skip_relocation, arm64_monterey: "083286f30003f41082fc28c1f840034fdbc439832df691616a74487b4ed115a8" + sha256 cellar: :any_skip_relocation, sonoma: "13f079c8ef75010ed011f0b421bfa8e499c70486d16fcde45546a3a1bdfd9f96" + sha256 cellar: :any_skip_relocation, ventura: "13f079c8ef75010ed011f0b421bfa8e499c70486d16fcde45546a3a1bdfd9f96" + sha256 cellar: :any_skip_relocation, monterey: "13f079c8ef75010ed011f0b421bfa8e499c70486d16fcde45546a3a1bdfd9f96" + sha256 cellar: :any_skip_relocation, x86_64_linux: "7910178703776eabc29ef96cc2dd24a85f42803e0ce6cece7f54ee982d29e3b0" end depends_on "node" From dd357de1b7948bf525377b32f4f1b1e0200accc3 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 1 Aug 2024 14:42:17 +0000 Subject: [PATCH 13/14] node-sass: update 1.77.8 bottle. --- Formula/n/node-sass.rb | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Formula/n/node-sass.rb b/Formula/n/node-sass.rb index f976042128bd4..5c1ebf61879a5 100644 --- a/Formula/n/node-sass.rb +++ b/Formula/n/node-sass.rb @@ -6,13 +6,14 @@ class NodeSass < Formula license "MIT" bottle do - sha256 cellar: :any_skip_relocation, arm64_sonoma: "97bdb41539a99d3fb8304c78fcbfb8f2dc267fd0557d2864838c012f668a73d9" - sha256 cellar: :any_skip_relocation, arm64_ventura: "97bdb41539a99d3fb8304c78fcbfb8f2dc267fd0557d2864838c012f668a73d9" - sha256 cellar: :any_skip_relocation, arm64_monterey: "97bdb41539a99d3fb8304c78fcbfb8f2dc267fd0557d2864838c012f668a73d9" - sha256 cellar: :any_skip_relocation, sonoma: "97bdb41539a99d3fb8304c78fcbfb8f2dc267fd0557d2864838c012f668a73d9" - sha256 cellar: :any_skip_relocation, ventura: "97bdb41539a99d3fb8304c78fcbfb8f2dc267fd0557d2864838c012f668a73d9" - sha256 cellar: :any_skip_relocation, monterey: "97bdb41539a99d3fb8304c78fcbfb8f2dc267fd0557d2864838c012f668a73d9" - sha256 cellar: :any_skip_relocation, x86_64_linux: "f819ee7c06a42dc1a525c6815c8434083b0fee5b626b7502173dbd7b0e0e17c7" + rebuild 1 + sha256 cellar: :any_skip_relocation, arm64_sonoma: "280da51d69a7d433152ff206a85ff2829aaf77ddbd2f505f06e69436746eceee" + sha256 cellar: :any_skip_relocation, arm64_ventura: "280da51d69a7d433152ff206a85ff2829aaf77ddbd2f505f06e69436746eceee" + sha256 cellar: :any_skip_relocation, arm64_monterey: "280da51d69a7d433152ff206a85ff2829aaf77ddbd2f505f06e69436746eceee" + sha256 cellar: :any_skip_relocation, sonoma: "280da51d69a7d433152ff206a85ff2829aaf77ddbd2f505f06e69436746eceee" + sha256 cellar: :any_skip_relocation, ventura: "280da51d69a7d433152ff206a85ff2829aaf77ddbd2f505f06e69436746eceee" + sha256 cellar: :any_skip_relocation, monterey: "280da51d69a7d433152ff206a85ff2829aaf77ddbd2f505f06e69436746eceee" + sha256 cellar: :any_skip_relocation, x86_64_linux: "fe1232a504ef5c1f1603c4d1aff16fdf1770cdd432d1a65b0ffab8baf2cb55ea" end depends_on "node" From d29c4143a8abcedcea859cb7aa7bacfa12797ae6 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Thu, 1 Aug 2024 14:42:17 +0000 Subject: [PATCH 14/14] npm-check-updates: update 17.0.0 bottle. --- Formula/n/npm-check-updates.rb | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Formula/n/npm-check-updates.rb b/Formula/n/npm-check-updates.rb index 00ee76f5255d0..bd1f521941b49 100644 --- a/Formula/n/npm-check-updates.rb +++ b/Formula/n/npm-check-updates.rb @@ -6,13 +6,14 @@ class NpmCheckUpdates < Formula license "Apache-2.0" bottle do - sha256 cellar: :any_skip_relocation, arm64_sonoma: "ec7ac0020a9eea33120a7296b6dda7589c4375cdbd5d140069e72d98b02ae300" - sha256 cellar: :any_skip_relocation, arm64_ventura: "ec7ac0020a9eea33120a7296b6dda7589c4375cdbd5d140069e72d98b02ae300" - sha256 cellar: :any_skip_relocation, arm64_monterey: "ec7ac0020a9eea33120a7296b6dda7589c4375cdbd5d140069e72d98b02ae300" - sha256 cellar: :any_skip_relocation, sonoma: "8488a6ccc485be2af85dfcfb09848c59ace446e4d5b70413904d620bd5effbbe" - sha256 cellar: :any_skip_relocation, ventura: "8488a6ccc485be2af85dfcfb09848c59ace446e4d5b70413904d620bd5effbbe" - sha256 cellar: :any_skip_relocation, monterey: "8488a6ccc485be2af85dfcfb09848c59ace446e4d5b70413904d620bd5effbbe" - sha256 cellar: :any_skip_relocation, x86_64_linux: "b573f7c80dbd03ff313a996d4e1cdc2caee9283828f342a3587fc7fe7324f409" + rebuild 1 + sha256 cellar: :any_skip_relocation, arm64_sonoma: "5ba1d6d3d33b75f59c891adaca70f31f61976fc3528b17e1bc18b699ce058930" + sha256 cellar: :any_skip_relocation, arm64_ventura: "5ba1d6d3d33b75f59c891adaca70f31f61976fc3528b17e1bc18b699ce058930" + sha256 cellar: :any_skip_relocation, arm64_monterey: "5ba1d6d3d33b75f59c891adaca70f31f61976fc3528b17e1bc18b699ce058930" + sha256 cellar: :any_skip_relocation, sonoma: "21fa8b29f3157b6fc360947d4c7e3c33691cb5d602423ec2fdd18c4851c7b67c" + sha256 cellar: :any_skip_relocation, ventura: "21fa8b29f3157b6fc360947d4c7e3c33691cb5d602423ec2fdd18c4851c7b67c" + sha256 cellar: :any_skip_relocation, monterey: "21fa8b29f3157b6fc360947d4c7e3c33691cb5d602423ec2fdd18c4851c7b67c" + sha256 cellar: :any_skip_relocation, x86_64_linux: "008b77d2deac7f4ebedf7b76b2c83e7db29334c077de0fae4ab64811aa7ee2f3" end depends_on "node"