From faba20e6e283f9e2553f38621df7722a94086ad6 Mon Sep 17 00:00:00 2001 From: Patrick Linnane Date: Wed, 25 Dec 2024 10:59:28 -0800 Subject: [PATCH 01/55] ruby 3.4.1 Signed-off-by: Patrick Linnane --- Aliases/{ruby@3.3 => ruby@3.4} | 0 Formula/r/ruby.rb | 8 ++++---- 2 files changed, 4 insertions(+), 4 deletions(-) rename Aliases/{ruby@3.3 => ruby@3.4} (100%) diff --git a/Aliases/ruby@3.3 b/Aliases/ruby@3.4 similarity index 100% rename from Aliases/ruby@3.3 rename to Aliases/ruby@3.4 diff --git a/Formula/r/ruby.rb b/Formula/r/ruby.rb index 97696fbff0e72..904ff119a337a 100644 --- a/Formula/r/ruby.rb +++ b/Formula/r/ruby.rb @@ -5,15 +5,15 @@ class Ruby < Formula head "https://github.com/ruby/ruby.git", branch: "master" stable do - url "https://cache.ruby-lang.org/pub/ruby/3.3/ruby-3.3.6.tar.gz" - sha256 "8dc48fffaf270f86f1019053f28e51e4da4cce32a36760a0603a9aee67d7fd8d" + url "https://cache.ruby-lang.org/pub/ruby/3.4/ruby-3.4.1.tar.gz" + sha256 "3d385e5d22d368b064c817a13ed8e3cc3f71a7705d7ed1bae78013c33aa7c87f" # Should be updated only when Ruby is updated (if an update is available). # The exception is Rubygem security fixes, which mandate updating this # formula & the versioned equivalents and bumping the revisions. resource "rubygems" do - url "https://rubygems.org/rubygems/rubygems-3.5.23.tgz" - sha256 "3d277bf0b12ff46834d89b283fc451d130dbe6428d00d7ace4664c449c3ef28c" + url "https://rubygems.org/rubygems/rubygems-3.6.2.tgz" + sha256 "d2f4e760eef098608692bbd6eff30df2e221b4723549da70dabcba116dc39680" livecheck do url "https://rubygems.org/pages/download" From ae25ff39eff03797deea7d75662c8bd3392702c0 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Wed, 25 Dec 2024 17:36:46 -0500 Subject: [PATCH 02/55] ruby@3.3 3.3.6 (new formula) Signed-off-by: Rui Chen --- Formula/r/ruby@3.3.rb | 263 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 263 insertions(+) create mode 100644 Formula/r/ruby@3.3.rb diff --git a/Formula/r/ruby@3.3.rb b/Formula/r/ruby@3.3.rb new file mode 100644 index 0000000000000..0ff7be3788a91 --- /dev/null +++ b/Formula/r/ruby@3.3.rb @@ -0,0 +1,263 @@ +class RubyAT33 < Formula + desc "Powerful, clean, object-oriented scripting language" + homepage "https://www.ruby-lang.org/" + url "https://cache.ruby-lang.org/pub/ruby/3.3/ruby-3.3.6.tar.gz" + sha256 "8dc48fffaf270f86f1019053f28e51e4da4cce32a36760a0603a9aee67d7fd8d" + license "Ruby" + + livecheck do + url "https://www.ruby-lang.org/en/downloads/" + regex(/href=.*?ruby[._-]v?(3\.3(?:\.\d+)+)\.t/i) + end + + keg_only :versioned_formula + + depends_on "autoconf" => :build + depends_on "pkgconf" => :build + depends_on "rust" => :build + depends_on "libyaml" + depends_on "openssl@3" + + uses_from_macos "gperf" + uses_from_macos "libffi" + uses_from_macos "libxcrypt" + uses_from_macos "zlib" + + def determine_api_version + Utils.safe_popen_read(bin/"ruby", "-e", "print Gem.ruby_api_version") + end + + def api_version + if head? + if latest_head_prefix + determine_api_version + else + # Best effort guess + "#{stable.version.major.to_i}.#{stable.version.minor.to_i + 1}.0+0" + end + else + "#{version.major.to_i}.#{version.minor.to_i}.0" + end + end + + # Should be updated only when Ruby is updated (if an update is available). + # The exception is Rubygem security fixes, which mandate updating this + # formula & the versioned equivalents and bumping the revisions. + resource "rubygems" do + url "https://rubygems.org/rubygems/rubygems-3.5.23.tgz" + sha256 "3d277bf0b12ff46834d89b283fc451d130dbe6428d00d7ace4664c449c3ef28c" + + livecheck do + url "https://rubygems.org/pages/download" + regex(/href=.*?rubygems[._-]v?(\d+(?:\.\d+)+)\.t/i) + end + end + + def rubygems_bindir + HOMEBREW_PREFIX/"lib/ruby/gems/#{api_version}/bin" + end + + def install + # otherwise `gem` command breaks + ENV.delete("SDKROOT") + + # Prevent `make` from trying to install headers into the SDK + # TODO: Remove this workaround when the following PR is merged/resolved: + # https://github.com/Homebrew/brew/pull/12508 + inreplace "tool/mkconfig.rb", /^(\s+val = )'"\$\(SDKROOT\)"'\+/, "\\1" + + system "./autogen.sh" if build.head? + + paths = %w[libyaml openssl@3].map { |f| Formula[f].opt_prefix } + args = %W[ + --prefix=#{prefix} + --enable-shared + --disable-silent-rules + --with-sitedir=#{HOMEBREW_PREFIX}/lib/ruby/site_ruby + --with-vendordir=#{HOMEBREW_PREFIX}/lib/ruby/vendor_ruby + --with-opt-dir=#{paths.join(":")} + --without-gmp + ] + args << "--with-baseruby=#{RbConfig.ruby}" if build.head? + args << "--disable-dtrace" if OS.mac? && !MacOS::CLT.installed? + + # Correct MJIT_CC to not use superenv shim + args << "MJIT_CC=/usr/bin/#{DevelopmentTools.default_compiler}" + + system "./configure", *args + + # Ruby has been configured to look in the HOMEBREW_PREFIX for the + # sitedir and vendordir directories; however we don't actually want to create + # them during the install. + # + # These directories are empty on install; sitedir is used for non-rubygems + # third party libraries, and vendordir is used for packager-provided libraries. + inreplace "tool/rbinstall.rb" do |s| + s.gsub! 'prepare "extension scripts", sitelibdir', "" + s.gsub! 'prepare "extension scripts", vendorlibdir', "" + s.gsub! 'prepare "extension objects", sitearchlibdir', "" + s.gsub! 'prepare "extension objects", vendorarchlibdir', "" + end + + system "make" + system "make", "install" + + # A newer version of ruby-mode.el is shipped with Emacs + elisp.install Dir["misc/*.el"].reject { |f| f == "misc/ruby-mode.el" } + + return if build.head? # Use bundled RubyGems for --HEAD (will be newer) + + # This is easier than trying to keep both current & versioned Ruby + # formulae repeatedly updated with Rubygem patches. + resource("rubygems").stage do + ENV.prepend_path "PATH", bin + + system bin/"ruby", "setup.rb", "--prefix=#{buildpath}/vendor_gem" + rg_in = lib/"ruby/#{api_version}" + rg_gems_in = lib/"ruby/gems/#{api_version}" + + # Remove bundled Rubygem and Bundler + rm_r rg_in/"bundler" + rm rg_in/"bundler.rb" + rm_r Dir[rg_gems_in/"gems/bundler-*"] + rm Dir[rg_gems_in/"specifications/default/bundler-*.gemspec"] + rm_r rg_in/"rubygems" + rm rg_in/"rubygems.rb" + rm bin/"gem" + + # Drop in the new version. + rg_in.install Dir[buildpath/"vendor_gem/lib/*"] + (rg_gems_in/"gems").install Dir[buildpath/"vendor_gem/gems/*"] + (rg_gems_in/"specifications/default").install Dir[buildpath/"vendor_gem/specifications/default/*"] + bin.install buildpath/"vendor_gem/bin/gem" => "gem" + (libexec/"gembin").install buildpath/"vendor_gem/bin/bundle" => "bundle" + (libexec/"gembin").install_symlink "bundle" => "bundler" + end + + # remove all lockfiles in bin folder + rm Dir[bin/"*.lock"] + end + + def post_install + # Since Gem ships Bundle we want to provide that full/expected installation + # but to do so we need to handle the case where someone has previously + # installed bundle manually via `gem install`. + rm(%W[ + #{rubygems_bindir}/bundle + #{rubygems_bindir}/bundler + ].select { |file| File.exist?(file) }) + rm_r(Dir[HOMEBREW_PREFIX/"lib/ruby/gems/#{api_version}/gems/bundler-*"]) + rubygems_bindir.install_symlink Dir[libexec/"gembin/*"] + + # Customize rubygems to look/install in the global gem directory + # instead of in the Cellar, making gems last across reinstalls + config_file = lib/"ruby/#{api_version}/rubygems/defaults/operating_system.rb" + config_file.unlink if config_file.exist? + config_file.write rubygems_config(api_version) + + # Create the sitedir and vendordir that were skipped during install + %w[sitearchdir vendorarchdir].each do |dir| + mkdir_p `#{bin}/ruby -rrbconfig -e 'print RbConfig::CONFIG["#{dir}"]'` + end + end + + def rubygems_config(api_version) + <<~EOS + module Gem + class << self + alias :old_default_dir :default_dir + alias :old_default_path :default_path + alias :old_default_bindir :default_bindir + alias :old_ruby :ruby + alias :old_default_specifications_dir :default_specifications_dir + end + + def self.default_dir + path = [ + "#{HOMEBREW_PREFIX}", + "lib", + "ruby", + "gems", + "#{api_version}" + ] + + @homebrew_path ||= File.join(*path) + end + + def self.private_dir + path = if defined? RUBY_FRAMEWORK_VERSION then + [ + File.dirname(RbConfig::CONFIG['sitedir']), + 'Gems', + RbConfig::CONFIG['ruby_version'] + ] + elsif RbConfig::CONFIG['rubylibprefix'] then + [ + RbConfig::CONFIG['rubylibprefix'], + 'gems', + RbConfig::CONFIG['ruby_version'] + ] + else + [ + RbConfig::CONFIG['libdir'], + ruby_engine, + 'gems', + RbConfig::CONFIG['ruby_version'] + ] + end + + @private_dir ||= File.join(*path) + end + + def self.default_path + if Gem.user_home && File.exist?(Gem.user_home) + [user_dir, default_dir, old_default_dir, private_dir] + else + [default_dir, old_default_dir, private_dir] + end + end + + def self.default_bindir + "#{rubygems_bindir}" + end + + def self.ruby + "#{opt_bin}/ruby" + end + + # https://github.com/Homebrew/homebrew-core/issues/40872#issuecomment-542092547 + # https://github.com/Homebrew/homebrew-core/pull/48329#issuecomment-584418161 + def self.default_specifications_dir + File.join(Gem.old_default_dir, "specifications", "default") + end + end + EOS + end + + def caveats + <<~EOS + By default, binaries installed by gem will be placed into: + #{rubygems_bindir} + + You may want to add this to your PATH. + EOS + end + + test do + hello_text = shell_output("#{bin}/ruby -e 'puts :hello'") + assert_equal "hello\n", hello_text + + assert_equal api_version, determine_api_version + + ENV["GEM_HOME"] = testpath + system bin/"gem", "install", "json" + + (testpath/"Gemfile").write <<~EOS + source 'https://rubygems.org' + gem 'github-markup' + EOS + system bin/"bundle", "exec", "ls" # https://github.com/Homebrew/homebrew-core/issues/53247 + system bin/"bundle", "install", "--binstubs=#{testpath}/bin" + assert_predicate testpath/"bin/github-markup", :exist?, "github-markup is not installed in #{testpath}/bin" + end +end From 3f8f40fe39ba28e9aa703d0057329e8b3f88976a Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Wed, 25 Dec 2024 15:44:58 -0500 Subject: [PATCH 03/55] cocoapods: revision bump (ruby 3.4.1) Signed-off-by: Rui Chen --- Formula/c/cocoapods.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/c/cocoapods.rb b/Formula/c/cocoapods.rb index 2c09811525278..2db257b685e0f 100644 --- a/Formula/c/cocoapods.rb +++ b/Formula/c/cocoapods.rb @@ -4,6 +4,7 @@ class Cocoapods < Formula url "https://github.com/CocoaPods/CocoaPods/archive/refs/tags/1.16.2.tar.gz" sha256 "3067f21a0025aedb5869c7080b6c4b3fa55d397b94fadc8c3037a28a6cee274c" license "MIT" + revision 1 bottle do sha256 cellar: :any_skip_relocation, arm64_sequoia: "68781e12612d0cfa292ad6e983a2711fcba61c31ff4f2cdfd01cfb80be2dfae0" From 2d458de9b86e35fcef94822cc953a00a307ec354 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Wed, 25 Dec 2024 15:44:59 -0500 Subject: [PATCH 04/55] cucumber-cpp: update test to use ruby@3.3 Signed-off-by: Rui Chen --- Formula/c/cucumber-cpp.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/cucumber-cpp.rb b/Formula/c/cucumber-cpp.rb index ccb82889bc9c9..8a0b97d0efae4 100644 --- a/Formula/c/cucumber-cpp.rb +++ b/Formula/c/cucumber-cpp.rb @@ -19,7 +19,7 @@ class CucumberCpp < Formula depends_on "cmake" => :build depends_on "nlohmann-json" => :build - depends_on "ruby" => :test + depends_on "ruby@3.3" => :test # ruby 3.4 support bug report, https://github.com/cucumber/cucumber-ruby/issues/1769 depends_on "asio" depends_on "tclap" @@ -40,7 +40,7 @@ def install end test do - ENV.prepend_path "PATH", Formula["ruby"].opt_bin + ENV.prepend_path "PATH", Formula["ruby@3.3"].opt_bin ENV["GEM_HOME"] = testpath ENV["BUNDLE_PATH"] = testpath From aed72cbb348587fcefe4c734411e2b695519ed76 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Wed, 25 Dec 2024 15:45:00 -0500 Subject: [PATCH 05/55] cucumber-ruby: revision bump (ruby@3.3 3.3.6) Signed-off-by: Rui Chen --- Formula/c/cucumber-ruby.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Formula/c/cucumber-ruby.rb b/Formula/c/cucumber-ruby.rb index a8c7d12b78584..6e2a36813abd3 100644 --- a/Formula/c/cucumber-ruby.rb +++ b/Formula/c/cucumber-ruby.rb @@ -4,6 +4,7 @@ class CucumberRuby < Formula url "https://github.com/cucumber/cucumber-ruby/archive/refs/tags/v9.2.0.tar.gz" sha256 "fd8eae54016de9055e84fd4251d873bc9a64d0929b02b4355762ce82ab2874b7" license "MIT" + revision 1 livecheck do url :stable @@ -22,7 +23,7 @@ class CucumberRuby < Formula end depends_on "pkgconf" => :build - depends_on "ruby" # Requires >= Ruby 2.7 + depends_on "ruby@3.3" # ruby 3.4 support bug report, https://github.com/cucumber/cucumber-ruby/issues/1769 uses_from_macos "libffi", since: :catalina From 63b1d7d90f65b8347ffd0fb38c97027a6e1fd1ca Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Wed, 25 Dec 2024 15:45:00 -0500 Subject: [PATCH 06/55] deadfinder: revision bump (ruby 3.4.1) Signed-off-by: Rui Chen --- Formula/d/deadfinder.rb | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Formula/d/deadfinder.rb b/Formula/d/deadfinder.rb index 81ccbc809d8cd..1fd4013e78d17 100644 --- a/Formula/d/deadfinder.rb +++ b/Formula/d/deadfinder.rb @@ -4,6 +4,7 @@ class Deadfinder < Formula url "https://github.com/hahwul/deadfinder/archive/refs/tags/1.5.0.tar.gz" sha256 "5575127e8ca9c8531991ad32d04bda3f55f13cc657cf01ac0c6ace9d01c59a8a" license "MIT" + revision 1 head "https://github.com/hahwul/deadfinder.git", branch: "main" bottle do @@ -30,12 +31,17 @@ class Deadfinder < Formula def install ENV["GEM_HOME"] = libexec ENV["NOKOGIRI_USE_SYSTEM_LIBRARIES"] = "1" + system "bundle", "config", "set", "without", "development", "test" system "bundle", "install" system "gem", "build", "deadfinder.gemspec" system "gem", "install", "deadfinder-#{version}.gem" + bin.install libexec/"bin/deadfinder" bin.env_script_all_files(libexec/"bin", GEM_HOME: ENV["GEM_HOME"]) + + # Remove mkmf.log files to avoid shims references + rm Dir["#{libexec}/extensions/*/*/*/mkmf.log"] end test do From 00a6be61c78d8119d4f1e2624ff31c1e8cf69123 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Wed, 25 Dec 2024 15:45:00 -0500 Subject: [PATCH 07/55] dexter: revision bump (ruby 3.4.1) Signed-off-by: Rui Chen --- Formula/d/dexter.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/d/dexter.rb b/Formula/d/dexter.rb index 97deab26152b6..408ee5e1f79f4 100644 --- a/Formula/d/dexter.rb +++ b/Formula/d/dexter.rb @@ -4,6 +4,7 @@ class Dexter < Formula url "https://github.com/ankane/dexter/archive/refs/tags/v0.5.5.tar.gz" sha256 "4e5c7a8e1e77af44e16fefe2dcb5fc221612be0b6977547318edd9e597467e19" license "MIT" + revision 1 bottle do sha256 cellar: :any, arm64_sequoia: "f750ffc4abb7b8ca1bf4a905d0e06e171ac2c8743ec65a5a09604f766be2c97d" From 7efee279d6f10f635d173d334a99e9592a614f7d Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Wed, 25 Dec 2024 15:45:00 -0500 Subject: [PATCH 08/55] fastlane: revision bump (ruby 3.4.1) Signed-off-by: Rui Chen --- Formula/f/fastlane.rb | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Formula/f/fastlane.rb b/Formula/f/fastlane.rb index 3b935ae0c5610..c6d0a8a703c62 100644 --- a/Formula/f/fastlane.rb +++ b/Formula/f/fastlane.rb @@ -4,6 +4,7 @@ class Fastlane < Formula url "https://github.com/fastlane/fastlane/archive/refs/tags/2.226.0.tar.gz" sha256 "dab7c2f3d8cc47e1bc4ed8b4351a0e1b438c70009bb28f3e352ffbb5c001b1f9" license "MIT" + revision 1 head "https://github.com/fastlane/fastlane.git", branch: "master" livecheck do @@ -33,6 +34,12 @@ def fastlane_gem_home def install ENV["GEM_HOME"] = libexec ENV["GEM_PATH"] = libexec + ENV["LANG"] = "en_US.UTF-8" + ENV["LC_ALL"] = "en_US.UTF-8" + + # `abbrev`, `mutex_m` gem no longer with ruby 3.4+, upstream patch pr, https://github.com/fastlane/fastlane/pull/29182 + system "gem", "install", "abbrev", "--no-document" + system "gem", "install", "mutex_m", "--no-document" system "gem", "build", "fastlane.gemspec" system "gem", "install", "fastlane-#{version}.gem", "--no-document" From dddaa61eeacd6ae828a897672f4da553516645a0 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Wed, 25 Dec 2024 15:45:01 -0500 Subject: [PATCH 09/55] gitlab-gem: revision bump (ruby 3.4.1) Signed-off-by: Rui Chen --- Formula/g/gitlab-gem.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/g/gitlab-gem.rb b/Formula/g/gitlab-gem.rb index b723fafc9c5de..b58c2edfa1709 100644 --- a/Formula/g/gitlab-gem.rb +++ b/Formula/g/gitlab-gem.rb @@ -4,6 +4,7 @@ class GitlabGem < Formula url "https://github.com/NARKOZ/gitlab/archive/refs/tags/v5.1.0.tar.gz" sha256 "fdb4cab8f09258b9b8a70b3cddd618dc19a10303124a9176dd7ca5ed70f98ce4" license "BSD-2-Clause" + revision 1 bottle do sha256 cellar: :any, arm64_sequoia: "dfdc4e6149913dbcd7d195dbcd7ed62a379762b842a2acc9a9d1f953ef51ee7c" From 5a4ea0ce4ef9fadc2ff6fa8590ff703cc3bcd338 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Wed, 25 Dec 2024 15:45:01 -0500 Subject: [PATCH 10/55] haiti: revision bump (ruby 3.4.1) Signed-off-by: Rui Chen --- Formula/h/haiti.rb | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Formula/h/haiti.rb b/Formula/h/haiti.rb index 8d97957eb516d..3d4c5299da526 100644 --- a/Formula/h/haiti.rb +++ b/Formula/h/haiti.rb @@ -4,6 +4,7 @@ class Haiti < Formula url "https://github.com/noraj/haiti/archive/refs/tags/v2.1.0.tar.gz" sha256 "ee1fee20c891db567abe753de25e7f1f1d4c7c59d92b6ce28f2e96606f247828" license "MIT" + revision 1 bottle do rebuild 2 @@ -22,6 +23,7 @@ class Haiti < Formula def install ENV["GEM_HOME"] = libexec + system "bundle", "config", "set", "without", "development", "test" system "bundle", "install" system "gem", "build", "haiti.gemspec" @@ -31,6 +33,9 @@ def install end test do + ENV["LANG"] = "en_US.UTF-8" + ENV["LC_ALL"] = "en_US.UTF-8" + assert_match version.to_s, shell_output("#{bin}/haiti --version") output = shell_output("#{bin}/haiti 12c87370d1b5472793e67682596b60efe2c6038d63d04134a1a88544509737b4") From 8908a1e6945ee21c2d97e21f053e5620bc796123 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Wed, 25 Dec 2024 15:45:01 -0500 Subject: [PATCH 11/55] licensed: revision bump (ruby 3.4.1) Signed-off-by: Rui Chen --- Formula/l/licensed.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/l/licensed.rb b/Formula/l/licensed.rb index 1036c52c3ea10..92f06be170aae 100644 --- a/Formula/l/licensed.rb +++ b/Formula/l/licensed.rb @@ -5,6 +5,7 @@ class Licensed < Formula tag: "v5.0.1", revision: "d74f3bcf74c241eb79b9b82d7ae3d4bad22bc791" license "MIT" + revision 1 bottle do sha256 cellar: :any, arm64_sequoia: "a93226055833003dfd6f675701b213ea0f0476dcb9f40707c99095e86bb1fcc2" From 38dc0eab068e6e551905ed1bbd1c0dc0f0b32b72 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Wed, 25 Dec 2024 15:45:02 -0500 Subject: [PATCH 12/55] macvim: revision bump (ruby 3.4.1) Signed-off-by: Rui Chen --- Formula/m/macvim.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/m/macvim.rb b/Formula/m/macvim.rb index 4c792eb4c3c46..8c626fdbe543a 100644 --- a/Formula/m/macvim.rb +++ b/Formula/m/macvim.rb @@ -6,6 +6,7 @@ class Macvim < Formula version "9.1.0727" sha256 "e1bc74beb3ee594503b5e1e20a9d075b5972bbaa642a91921116531475f46a6f" license "Vim" + revision 1 head "https://github.com/macvim-dev/macvim.git", branch: "master" # The stable Git tags use a `release-123` format and it's necessary to check From 6ad764af9b87f3bc99f8bf0a0318d9e6365d16a3 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Wed, 25 Dec 2024 15:45:02 -0500 Subject: [PATCH 13/55] mailcatcher: revision bump (ruby 3.4.1) Signed-off-by: Rui Chen --- Formula/m/mailcatcher.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/m/mailcatcher.rb b/Formula/m/mailcatcher.rb index 31d1f9e073df0..f87e8d36d6efc 100644 --- a/Formula/m/mailcatcher.rb +++ b/Formula/m/mailcatcher.rb @@ -4,6 +4,7 @@ class Mailcatcher < Formula url "https://github.com/sj26/mailcatcher/archive/refs/tags/v0.10.0.tar.gz" sha256 "4cd027e22878342d6a002402306d42ada1f34045cc1d7f35b5a7fa37b944326e" license "MIT" + revision 1 bottle do sha256 cellar: :any, arm64_sequoia: "b2e53d4fee8a25e01abeaa5e827e4fa0713c4ec4bcadaaad95db6f53b2b5139e" From 61fc2c265b987d680902ef2cdb519324a2c8b351 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Wed, 25 Dec 2024 15:45:02 -0500 Subject: [PATCH 14/55] mdless: revision bump (ruby 3.4.1) Signed-off-by: Rui Chen --- Formula/m/mdless.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/m/mdless.rb b/Formula/m/mdless.rb index 5b8e0cc8f9dc0..efeb6ad914ca9 100644 --- a/Formula/m/mdless.rb +++ b/Formula/m/mdless.rb @@ -4,6 +4,7 @@ class Mdless < Formula url "https://github.com/ttscoff/mdless/archive/refs/tags/2.1.51.tar.gz" sha256 "fedd185416a7c4c88c824f48f13da843d0535f0dded13ead0b6cae7bf174da5d" license "MIT" + revision 1 bottle do sha256 cellar: :any, arm64_sequoia: "0dc52539af0c30d353cde6eb4966a2a3cd78888136d449cf727c8224150e5490" From 62a3bd24b10c54de35a2a7cb8368e025df4386b4 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Wed, 25 Dec 2024 15:45:02 -0500 Subject: [PATCH 15/55] mikutter: revision bump (ruby 3.4.1) Signed-off-by: Rui Chen --- Formula/m/mikutter.rb | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/Formula/m/mikutter.rb b/Formula/m/mikutter.rb index 61852b5be79a2..461005d776649 100644 --- a/Formula/m/mikutter.rb +++ b/Formula/m/mikutter.rb @@ -4,6 +4,7 @@ class Mikutter < Formula url "https://mikutter.hachune.net/bin/mikutter-5.0.8.tar.gz", using: :homebrew_curl sha256 "c68f9a7cb7424e69b7f5a6557b884deb120708db5678e51f30f3cbb011c5b51f" license "MIT" + revision 1 head "git://mikutter.hachune.net/mikutter.git", branch: "develop" livecheck do @@ -80,8 +81,8 @@ class Mikutter < Formula end resource "fiddle" do - url "https://rubygems.org/downloads/fiddle-1.1.2.gem" - sha256 "59bd18c38e65cdc36863ab68e3ffd78658b8f025d1d080b218de94370420a074" + url "https://rubygems.org/downloads/fiddle-1.1.6.gem" + sha256 "79e8d909e602d979434cf9fccfa6e729cb16432bb00e39c7596abe6bee1249ab" end resource "forwardable" do @@ -135,8 +136,8 @@ class Mikutter < Formula end resource "json" do - url "https://rubygems.org/gems/json-2.7.2.gem" - sha256 "1898b5cbc81cd36c0fd4d0b7ad2682c39fb07c5ff682fc6265f678f550d4982c" + url "https://rubygems.org/gems/json-2.9.1.gem" + sha256 "d2bdef4644052fad91c1785d48263756fe32fcac08b96a20bb15840e96550d11" end resource "locale" do @@ -217,8 +218,8 @@ class Mikutter < Formula end resource "singleton" do - url "https://rubygems.org/downloads/singleton-0.2.0.gem" - sha256 "a6cb7304421684d80093859aed38b26035f6e54a38c3e4fe6456cfb56b240563" + url "https://rubygems.org/downloads/singleton-0.3.0.gem" + sha256 "83ea1bca5f4aa34d00305ab842a7862ea5a8a11c73d362cb52379d94e9615778" end resource "text" do From 29aa9c6b705dbc6cd6e96fdeab3a085f7687e743 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Wed, 25 Dec 2024 15:45:03 -0500 Subject: [PATCH 16/55] pgsync: revision bump (ruby 3.4.1) Signed-off-by: Rui Chen --- Formula/p/pgsync.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/p/pgsync.rb b/Formula/p/pgsync.rb index d5a0b0deb3e59..dc15c73b21f05 100644 --- a/Formula/p/pgsync.rb +++ b/Formula/p/pgsync.rb @@ -4,6 +4,7 @@ class Pgsync < Formula url "https://github.com/ankane/pgsync/archive/refs/tags/v0.8.0.tar.gz" sha256 "385aa0be8683ae4877fc6b39a3a4a0664680ed1631559fadd7b5113d7724ecea" license "MIT" + revision 1 bottle do sha256 cellar: :any, arm64_sequoia: "943687f8e9f670920d7eeaee1a271cdc66d6433010d03375832e12478755ab1f" From dd0af3c9fb98bf62436b92d7caef0ac861d1818f Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Wed, 25 Dec 2024 15:45:03 -0500 Subject: [PATCH 17/55] ronn-ng: revision bump (ruby 3.4.1) Signed-off-by: Rui Chen --- Formula/r/ronn-ng.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/r/ronn-ng.rb b/Formula/r/ronn-ng.rb index bb4a94ee9cc41..0dd14fc34d03e 100644 --- a/Formula/r/ronn-ng.rb +++ b/Formula/r/ronn-ng.rb @@ -4,6 +4,7 @@ class RonnNg < Formula url "https://github.com/apjanke/ronn-ng/archive/refs/tags/v0.10.1.tar.gz" sha256 "180f18015ce01be1d10c24e13414134363d56f9efb741fda460358bb67d96684" license "MIT" + revision 1 bottle do sha256 cellar: :any_skip_relocation, arm64_sequoia: "3a36bd1699825e23e988f88430a33992b0d1cb846897e93b7e55d4f48c1c6d0e" From d42580a80d6e7ea6c7d40a6e5c80445536c9bf66 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Wed, 25 Dec 2024 15:45:03 -0500 Subject: [PATCH 18/55] solargraph: revision bump (ruby 3.4.1) Signed-off-by: Rui Chen --- Formula/s/solargraph.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/s/solargraph.rb b/Formula/s/solargraph.rb index c09eeacbed25c..ca3916f43201a 100644 --- a/Formula/s/solargraph.rb +++ b/Formula/s/solargraph.rb @@ -6,7 +6,7 @@ class Solargraph < Formula tag: "v0.50.0", revision: "58f3b8d0f31a3bded0b1cdbb6b2934eee262f03b" license "MIT" - revision 1 + revision 2 bottle do sha256 cellar: :any, arm64_sequoia: "1deca10c6cdef6ffd6b11bd15f9cf0db603e1558efd3d3dd74ff88747e25f38b" From 6ae600db466ff270560c2b0d1c1e3d5456527f75 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Wed, 25 Dec 2024 15:45:03 -0500 Subject: [PATCH 19/55] travis: revision bump (ruby 3.4.1) Signed-off-by: Rui Chen --- Formula/t/travis.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/t/travis.rb b/Formula/t/travis.rb index 5ed7ff03a4b09..945b0d24dfad0 100644 --- a/Formula/t/travis.rb +++ b/Formula/t/travis.rb @@ -4,6 +4,7 @@ class Travis < Formula url "https://github.com/travis-ci/travis.rb/archive/refs/tags/v1.14.0.tar.gz" sha256 "6fe418bf33b025a106dd99762aa8ebc595b4b549d4087c6921d5565b741f7361" license "MIT" + revision 1 bottle do sha256 cellar: :any, arm64_sequoia: "36c4e4ec1af82812623a0e6fba9333b536eb215ec0956a33215eebcc5aedeb55" From ac878f24487f3875c84f59cb9f71fa02715891df Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Wed, 25 Dec 2024 15:45:04 -0500 Subject: [PATCH 20/55] uffizzi: revision bump (ruby 3.4.1) Signed-off-by: Rui Chen --- Formula/u/uffizzi.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/u/uffizzi.rb b/Formula/u/uffizzi.rb index ce74c63e5cd47..f7d3fce2ab8ec 100644 --- a/Formula/u/uffizzi.rb +++ b/Formula/u/uffizzi.rb @@ -4,6 +4,7 @@ class Uffizzi < Formula url "https://github.com/UffizziCloud/uffizzi_cli/archive/refs/tags/v2.4.11.tar.gz" sha256 "90c6d9bf225bc759c56188039e5aa9267b91cb78f0496ee6af0a4e2ce3e31430" license "Apache-2.0" + revision 1 livecheck do url :stable From 04013149654035978dc6021c09e526dee07c6d35 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Wed, 25 Dec 2024 15:45:04 -0500 Subject: [PATCH 21/55] weechat: revision bump (ruby 3.4.1) Signed-off-by: Rui Chen --- Formula/w/weechat.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/w/weechat.rb b/Formula/w/weechat.rb index e8e7bb8ee68ed..9c61e21636a6d 100644 --- a/Formula/w/weechat.rb +++ b/Formula/w/weechat.rb @@ -4,6 +4,7 @@ class Weechat < Formula url "https://weechat.org/files/src/weechat-4.5.1.tar.xz" sha256 "67c143c7bc70e689b9ea86df674c9a9ff3cf44ccc9cdff21be6a561d5eafc528" license "GPL-3.0-or-later" + revision 1 head "https://github.com/weechat/weechat.git", branch: "master" bottle do From cc3e5cda5070cb8b324d5b3c08fc07dce7e2d622 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Wed, 25 Dec 2024 21:43:17 -0500 Subject: [PATCH 22/55] vim: revision bump (ruby 3.4.1) Signed-off-by: Rui Chen --- Formula/v/vim.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/v/vim.rb b/Formula/v/vim.rb index 8c1da88c79b33..e85c3110b9e85 100644 --- a/Formula/v/vim.rb +++ b/Formula/v/vim.rb @@ -5,6 +5,7 @@ class Vim < Formula url "https://github.com/vim/vim/archive/refs/tags/v9.1.0950.tar.gz" sha256 "ff31083fdbdde49a1cd6e95ac751f194d75065d79c8d07d138a9c1afe3494b31" license "Vim" + revision 1 head "https://github.com/vim/vim.git", branch: "master" # The Vim repository contains thousands of tags and the `Git` strategy isn't From 6c63f1e5483d9556b46d2378128323a1dfaa7d56 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Wed, 25 Dec 2024 23:32:19 -0500 Subject: [PATCH 23/55] braid: revision bump (ruby 3.4.1) Signed-off-by: Rui Chen --- Formula/b/braid.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/b/braid.rb b/Formula/b/braid.rb index ed1efb3c89728..24bd6a9661934 100644 --- a/Formula/b/braid.rb +++ b/Formula/b/braid.rb @@ -5,6 +5,7 @@ class Braid < Formula tag: "v1.1.10", revision: "16729390a2a8e6b45919545b056a1a7ac83c14d6" license "MIT" + revision 1 bottle do sha256 cellar: :any_skip_relocation, arm64_sequoia: "427bf44f9ef42d29c47a5b08282128fe31db4f71926f699be37932a63f81a38f" From 79babf7fec093beb93086da27caa6da433d5421c Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Wed, 25 Dec 2024 23:32:49 -0500 Subject: [PATCH 24/55] haste-client: revision bump (ruby 3.4.1) Signed-off-by: Rui Chen --- Formula/h/haste-client.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/h/haste-client.rb b/Formula/h/haste-client.rb index aea60da1e42d5..9991546c3b395 100644 --- a/Formula/h/haste-client.rb +++ b/Formula/h/haste-client.rb @@ -4,7 +4,7 @@ class HasteClient < Formula url "https://github.com/toptal/haste-client/archive/refs/tags/v0.3.0.tar.gz" sha256 "9f7e943be47408ba0b9765328794e7b87bdb2a785f1e9edb5d541d67b4a75d31" license "MIT" - revision 1 + revision 2 head "https://github.com/toptal/haste-client.git", branch: "master" bottle do From 4b672055c8708cbddb4974d68c499de6dc8c2159 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Wed, 25 Dec 2024 23:33:02 -0500 Subject: [PATCH 25/55] passenger: revision bump (ruby 3.4.1) Signed-off-by: Rui Chen --- Formula/p/passenger.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/p/passenger.rb b/Formula/p/passenger.rb index e93110a1b2a26..b9c37bb70eb89 100644 --- a/Formula/p/passenger.rb +++ b/Formula/p/passenger.rb @@ -4,6 +4,7 @@ class Passenger < Formula url "https://github.com/phusion/passenger/releases/download/release-6.0.24/passenger-6.0.24.tar.gz" sha256 "3bc636ecf3e337c9fad13842fa539dabab546d458dfe4e2ae7c83419e7b8839c" license "MIT" + revision 1 head "https://github.com/phusion/passenger.git", branch: "stable-6.0" bottle do From 60d88beb979c0b6d3969d91caf29494054ce9309 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Wed, 25 Dec 2024 23:33:16 -0500 Subject: [PATCH 26/55] ronn: revision bump (ruby 3.4.1) Signed-off-by: Rui Chen --- Formula/r/ronn.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/r/ronn.rb b/Formula/r/ronn.rb index a6bbdbcc56cf1..00cd8b3b23605 100644 --- a/Formula/r/ronn.rb +++ b/Formula/r/ronn.rb @@ -4,7 +4,7 @@ class Ronn < Formula url "https://github.com/rtomayko/ronn/archive/refs/tags/0.7.3.tar.gz" sha256 "808aa6668f636ce03abba99c53c2005cef559a5099f6b40bf2c7aad8e273acb4" license "MIT" - revision 3 + revision 4 livecheck do url :stable From 07245f4a3042b7bfd7bae610373f443e4ee93861 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Wed, 25 Dec 2024 23:33:29 -0500 Subject: [PATCH 27/55] youplot: revision bump (ruby 3.4.1) Signed-off-by: Rui Chen --- Formula/y/youplot.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/y/youplot.rb b/Formula/y/youplot.rb index 1d08cd8ce20d1..29b2d50205ba0 100644 --- a/Formula/y/youplot.rb +++ b/Formula/y/youplot.rb @@ -4,6 +4,7 @@ class Youplot < Formula url "https://github.com/red-data-tools/YouPlot/archive/refs/tags/v0.4.6.tar.gz" sha256 "126278103f6dbc4e28983b9e90a4e593f17e78b38d925a7df16965b5d3c145a4" license "MIT" + revision 1 bottle do sha256 arm64_sequoia: "38af94e0b042576027ea48ddacfa7328a06da03115fd979ffe51ea78f20cce04" From 07a7479021dae17962ee487cd6ed0ad5d988cf50 Mon Sep 17 00:00:00 2001 From: Patrick Linnane Date: Thu, 26 Dec 2024 17:42:22 +0000 Subject: [PATCH 28/55] braid: update 1.1.10_1 bottle. --- Formula/b/braid.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/b/braid.rb b/Formula/b/braid.rb index 24bd6a9661934..5b3e7b1976a4e 100644 --- a/Formula/b/braid.rb +++ b/Formula/b/braid.rb @@ -8,12 +8,12 @@ class Braid < Formula revision 1 bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "427bf44f9ef42d29c47a5b08282128fe31db4f71926f699be37932a63f81a38f" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "427bf44f9ef42d29c47a5b08282128fe31db4f71926f699be37932a63f81a38f" - sha256 cellar: :any_skip_relocation, arm64_ventura: "427bf44f9ef42d29c47a5b08282128fe31db4f71926f699be37932a63f81a38f" - sha256 cellar: :any_skip_relocation, sonoma: "427bf44f9ef42d29c47a5b08282128fe31db4f71926f699be37932a63f81a38f" - sha256 cellar: :any_skip_relocation, ventura: "427bf44f9ef42d29c47a5b08282128fe31db4f71926f699be37932a63f81a38f" - sha256 cellar: :any_skip_relocation, x86_64_linux: "68d136306f67ebeedabfcc9e3a5d15c0d28cc6af3276cb4570e3d5a5fc4fc36c" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "cf994c891b0d901bceab7e31c21b326527f158a9d919c7d763d5f5a25844e6ac" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "cf994c891b0d901bceab7e31c21b326527f158a9d919c7d763d5f5a25844e6ac" + sha256 cellar: :any_skip_relocation, arm64_ventura: "cf994c891b0d901bceab7e31c21b326527f158a9d919c7d763d5f5a25844e6ac" + sha256 cellar: :any_skip_relocation, sonoma: "cf994c891b0d901bceab7e31c21b326527f158a9d919c7d763d5f5a25844e6ac" + sha256 cellar: :any_skip_relocation, ventura: "cf994c891b0d901bceab7e31c21b326527f158a9d919c7d763d5f5a25844e6ac" + sha256 cellar: :any_skip_relocation, x86_64_linux: "1a30ac7001f8b4ee4cd78f913c580d432205a7bedf006ff557de41ae771f47dd" end uses_from_macos "ruby" From 70e0ce98e3e3348b058f19eb75c27a8657bf5128 Mon Sep 17 00:00:00 2001 From: Patrick Linnane Date: Thu, 26 Dec 2024 17:42:23 +0000 Subject: [PATCH 29/55] cocoapods: update 1.16.2_1 bottle. --- Formula/c/cocoapods.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/c/cocoapods.rb b/Formula/c/cocoapods.rb index 2db257b685e0f..ac27d9386027f 100644 --- a/Formula/c/cocoapods.rb +++ b/Formula/c/cocoapods.rb @@ -7,12 +7,12 @@ class Cocoapods < Formula revision 1 bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "68781e12612d0cfa292ad6e983a2711fcba61c31ff4f2cdfd01cfb80be2dfae0" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "68781e12612d0cfa292ad6e983a2711fcba61c31ff4f2cdfd01cfb80be2dfae0" - sha256 cellar: :any_skip_relocation, arm64_ventura: "68781e12612d0cfa292ad6e983a2711fcba61c31ff4f2cdfd01cfb80be2dfae0" - sha256 cellar: :any_skip_relocation, sonoma: "3d1c33409214e70141aec16e250de82ad06d3c3a6c388c125195c6488bcf3e2f" - sha256 cellar: :any_skip_relocation, ventura: "3d1c33409214e70141aec16e250de82ad06d3c3a6c388c125195c6488bcf3e2f" - sha256 cellar: :any_skip_relocation, x86_64_linux: "48a2e96d3ec4bb17a007ae9c78efda0942905dfc353113e331e967cc12f8f680" + sha256 cellar: :any, arm64_sequoia: "c0bd1f8e2bdb31e76d8919d8c5181c5ffacab9aa03b9be9cd77c4fcfdd2f0527" + sha256 cellar: :any, arm64_sonoma: "46d7033d09663c83d43346815b67d4abac9c68b2cff38a7a0eaf55fcf459f56d" + sha256 cellar: :any, arm64_ventura: "95765343247a0af19d81ab36c3ab8e379e7729f688da64ae723f49c7deba34d7" + sha256 cellar: :any, sonoma: "783c64ac3c486bae33e11edf68a56380245d3fe783e1c60e2548a08e05adedef" + sha256 cellar: :any, ventura: "b1358f53cd22a76793b935b5b3d4fa384cbe292d85d6a02fccf7232ea038890d" + sha256 cellar: :any_skip_relocation, x86_64_linux: "bb0ed8f654a355942ff4df4236ad181fa474aad5188cf2de73e6412b9df098b1" end depends_on "pkgconf" => :build From c2469465e4a15094da63b8e98e855205d9d74669 Mon Sep 17 00:00:00 2001 From: Patrick Linnane Date: Thu, 26 Dec 2024 17:42:24 +0000 Subject: [PATCH 30/55] cucumber-cpp: update 0.7.0 bottle. --- Formula/c/cucumber-cpp.rb | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Formula/c/cucumber-cpp.rb b/Formula/c/cucumber-cpp.rb index 8a0b97d0efae4..169d379eed6a9 100644 --- a/Formula/c/cucumber-cpp.rb +++ b/Formula/c/cucumber-cpp.rb @@ -7,14 +7,13 @@ class CucumberCpp < Formula license "MIT" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "e52705eba218bc405d689160e6e28308ff0f2f33bcddf6ec85898c0cfcab1e1f" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "8c03f2daaf1def843478d7d144500cef481190e79eb145fcc25844352223412b" - sha256 cellar: :any_skip_relocation, arm64_ventura: "c8ae30b6185669938d6bf21a83a84acb8d56bc59194a4b1b28feb6b986d77da9" - sha256 cellar: :any_skip_relocation, arm64_monterey: "6b629690ec414931c52c1796dedc8e8bf5a4dfcf70c73ed7dcc4f091894ec5f3" - sha256 cellar: :any_skip_relocation, sonoma: "082e66cef0aeabaaf1aeb24b4d47396613b37ed28b3739a99452da70a819ca13" - sha256 cellar: :any_skip_relocation, ventura: "fda51f7ecd0df9092e3734f44a3e0fe1ed88a8d9a084e25f2379c70c76ac7243" - sha256 cellar: :any_skip_relocation, monterey: "ad29a2f7f882a4376e053a851645aa251a95679a6099aaa8931c9c3a98160045" - sha256 cellar: :any_skip_relocation, x86_64_linux: "3c9e95d394b01d3a55aee2d7b2add5de066e47843a7c98f58a9a30c58346fff0" + rebuild 1 + sha256 cellar: :any_skip_relocation, arm64_sequoia: "ebd1f734db83ae5e745b5a870609430170ac0a4db66d0a982054f17f9c11df23" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "d9d57c131eb3c28dacc0dc5191e0db536837ff6c0c3e1c00b18bbde206cbccea" + sha256 cellar: :any_skip_relocation, arm64_ventura: "83b0a4ebd24369723ca462379eec507069b69745b0162aaf8e52fbd191912f8b" + sha256 cellar: :any_skip_relocation, sonoma: "552c285dcbfdfeeeee4918504197d55608bcdd7a6f545c7b128b9a3ec4de66bd" + sha256 cellar: :any_skip_relocation, ventura: "f174b4c1f7188ec9cbfa63d42a7858b5b6055d46b4e8ef9e01603aa6a8f504a9" + sha256 cellar: :any_skip_relocation, x86_64_linux: "0fdfd1f3eb9ae326c0490d8f17f4b68adebd5c48382bae283de89b9bb835b994" end depends_on "cmake" => :build From 6f89382ba5f9d7c0ab9a39a82aca4063b3d016fb Mon Sep 17 00:00:00 2001 From: Patrick Linnane Date: Thu, 26 Dec 2024 17:42:24 +0000 Subject: [PATCH 31/55] cucumber-ruby: update 9.2.0_1 bottle. --- Formula/c/cucumber-ruby.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/c/cucumber-ruby.rb b/Formula/c/cucumber-ruby.rb index 6e2a36813abd3..c8b62ac1faf8f 100644 --- a/Formula/c/cucumber-ruby.rb +++ b/Formula/c/cucumber-ruby.rb @@ -12,14 +12,12 @@ class CucumberRuby < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "35c03d4159dee347736ad005f035e07fe42efb5f9cd35da2c1df23083951507d" - sha256 cellar: :any, arm64_sonoma: "4000d689086674fe92eb5becd1734ea706ad7dbfbb8f906161e53e17f27da779" - sha256 cellar: :any, arm64_ventura: "d840d9a581273c19616d90e839a17ded69effe4f6f66b35bbf2eb00d9af0b77a" - sha256 cellar: :any, arm64_monterey: "ed707ba23b5a2b13b109ca3ddcc1d01488825a0628f105d3872fad075015e97a" - sha256 cellar: :any, sonoma: "b47572789a8b6f34acf5f1fcca6690260895175f08bc2cba017e7386947c3b70" - sha256 cellar: :any, ventura: "f25a2dcf5a178f6495f40d0a546212c659646391d7117229883b02bd5e256622" - sha256 cellar: :any, monterey: "466405f273b24bc6d3e127bd8213dd742b7bdad824c4980251e2cc1af60bd55c" - sha256 cellar: :any_skip_relocation, x86_64_linux: "34227e49e2a9843381f9aff2d4500302a88e03e5af4ecf867b3b61380f3ee4d1" + sha256 cellar: :any, arm64_sequoia: "5c88e29863e16ab85da2bdd2643008f6cfda6dfa5eb405d9646c25efa247c4e0" + sha256 cellar: :any, arm64_sonoma: "345fa4270fa2b3f6299b8cc7c72de8ca93062885d90aca984181cf0f660c63d8" + sha256 cellar: :any, arm64_ventura: "368f53c28309264a68bdf2d1083a9d8960ed160b1da00738f5d4d926d73c7a5e" + sha256 cellar: :any, sonoma: "981eb23c1e51bf9561c3342ea5b344b655802fa590eca52b9063bf8ef77196f6" + sha256 cellar: :any, ventura: "d9f836caa2bee5a0e5373652bbe28973bb4a362257bbd87681d4865c35735377" + sha256 cellar: :any_skip_relocation, x86_64_linux: "332cf9475689eb12111a387cad66d54655d109115809b42c8c7e014d1ccb349a" end depends_on "pkgconf" => :build From 2a7c326c50ec1b4e0b1299e5d12e7f2f2b98d5f4 Mon Sep 17 00:00:00 2001 From: Patrick Linnane Date: Thu, 26 Dec 2024 17:42:24 +0000 Subject: [PATCH 32/55] deadfinder: update 1.5.0_1 bottle. --- Formula/d/deadfinder.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/d/deadfinder.rb b/Formula/d/deadfinder.rb index 1fd4013e78d17..0912f856890b4 100644 --- a/Formula/d/deadfinder.rb +++ b/Formula/d/deadfinder.rb @@ -8,12 +8,12 @@ class Deadfinder < Formula head "https://github.com/hahwul/deadfinder.git", branch: "main" bottle do - sha256 cellar: :any, arm64_sequoia: "15cc6a6fd22f9496fc574dd5ec2f11b66cdfe22e3e79627b8f0342af963785d5" - sha256 cellar: :any, arm64_sonoma: "4d5f38a1d1111d0748c2707257da54f2da72e552ca4c58e0f46a9162c934f632" - sha256 cellar: :any, arm64_ventura: "633a52fb28417d9d004fa0f935c6a513895efd1a64aa49c1a59b335ef3a5e4bb" - sha256 cellar: :any, sonoma: "596a5646e4ef21b9d604ab2e80e1c8a03c4f0a87ef091ebc53f12bd9152d19db" - sha256 cellar: :any, ventura: "ebe96e926c4471c1fac95d1f8144d65660605c5e18a58efe60a0054e6b68eb0e" - sha256 cellar: :any_skip_relocation, x86_64_linux: "6a3087b8f8b3855dbf5d3b2231e5642cdcdc191ec45adbed958a62de4f7ed355" + sha256 cellar: :any, arm64_sequoia: "ca7c791406c6678f095db0de61eeaf57f0b3b84c2e7bb528e7689068f6872b15" + sha256 cellar: :any, arm64_sonoma: "d108973ecb0e997d9fad8195a1f94cd6d40c8990ef194752ab62d9bada7a2394" + sha256 cellar: :any, arm64_ventura: "9664882a92b5ab17000ab3f37fca0b6ddb7504b85af5a16b6503b2d5212e7529" + sha256 cellar: :any, sonoma: "108aeceb9b251d7db74079bd22f5a2504f6d695a410e9cca3d3930417f3e4879" + sha256 cellar: :any, ventura: "ea58666962947c02961aa21dc30c9edb87532b3dea2077a4c7c4eaad785ddb00" + sha256 cellar: :any_skip_relocation, x86_64_linux: "45af1d2eb23bd4388788f928fa7ed7df07a3fce958bc17eda6cbf73391d55145" end depends_on "ruby" From 0090c9412bc09bba3191f777596403812fc9af9b Mon Sep 17 00:00:00 2001 From: Patrick Linnane Date: Thu, 26 Dec 2024 17:42:25 +0000 Subject: [PATCH 33/55] dexter: update 0.5.5_1 bottle. --- Formula/d/dexter.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/d/dexter.rb b/Formula/d/dexter.rb index 408ee5e1f79f4..e41b6ed03a73f 100644 --- a/Formula/d/dexter.rb +++ b/Formula/d/dexter.rb @@ -7,14 +7,12 @@ class Dexter < Formula revision 1 bottle do - sha256 cellar: :any, arm64_sequoia: "f750ffc4abb7b8ca1bf4a905d0e06e171ac2c8743ec65a5a09604f766be2c97d" - sha256 cellar: :any, arm64_sonoma: "07dfc1189a60ac1210ac45c70ee560e25c75e6f86d95f6fe131f03b9ecc98c35" - sha256 cellar: :any, arm64_ventura: "07c027d2438d2fa87d3f09491a954fc7c9d026492f190c66bba029299c9bd981" - sha256 cellar: :any, arm64_monterey: "56e53e4eadefa9f678cfdf514c5c6339f5f0a40cb603fa1fe801228fe722ded0" - sha256 cellar: :any, sonoma: "4f345df259c4688e07a37ab44b48359d59193bdacefad9dd2753e762dd1be89d" - sha256 cellar: :any, ventura: "a06551e518d503c32d122f19f5f7d6d3be18983c666cc42d7c6b67a87ecc2f22" - sha256 cellar: :any, monterey: "79925df614a0853a3606ea89b28f563958688d736419958c7c82e63ce7308950" - sha256 cellar: :any_skip_relocation, x86_64_linux: "83130e9cf8066ce05ff78a2e893da336cc2d5225b20be91a9746a43f3a2bcc65" + sha256 cellar: :any, arm64_sequoia: "27202dafe7bc5b4ab458a294f03a8874a2d65806ed5b89c1e9c95859855c7ceb" + sha256 cellar: :any, arm64_sonoma: "0b2c142baaf6765573801d064a9e8617636eaa2cfdd19b077d21fa21d6240637" + sha256 cellar: :any, arm64_ventura: "52d040b9a7eb12451548f5c1974ca57d4d434f9f494d674244fa9b8ae0130ec0" + sha256 cellar: :any, sonoma: "33f9a88a2a7e9a131edf0ba3decbe2c505ab7427357bb72bc554433c85d6549d" + sha256 cellar: :any, ventura: "b9c7c9ea2fe582b7db9824418bdf9cdb27c323c4e13d7d29e16eda7093233533" + sha256 cellar: :any_skip_relocation, x86_64_linux: "b7af786c843b3ddabc4856afa1a82269d5585df4473c702339c0927c6671a39a" end depends_on "postgresql@17" => :test From 7685f8ad068f78bb978f62fa2b84dc5eb3bee708 Mon Sep 17 00:00:00 2001 From: Patrick Linnane Date: Thu, 26 Dec 2024 17:42:25 +0000 Subject: [PATCH 34/55] fastlane: update 2.226.0_1 bottle. --- Formula/f/fastlane.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/f/fastlane.rb b/Formula/f/fastlane.rb index c6d0a8a703c62..5795a3dcc1c2a 100644 --- a/Formula/f/fastlane.rb +++ b/Formula/f/fastlane.rb @@ -13,12 +13,12 @@ class Fastlane < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "fe571ca2e2a756c32d1e1adc0ca1d0613f5355c5dc6da7a559e571e1537b9a65" - sha256 cellar: :any, arm64_sonoma: "6eb64c9dd514cd6b3a1b15a4ffc552f577be6ac8796df4802ead2dd20c47abb2" - sha256 cellar: :any, arm64_ventura: "5dfae4a9f3d6fcf05990a4d7c17a55a504da57f57de2be2799dce62241b626be" - sha256 cellar: :any, sonoma: "2a5d902aedf1db8724569bef2445fcf5b66c89273beff7c8940926ff3f9592bc" - sha256 cellar: :any, ventura: "a86aa6845e7128df6a5bbe34660c1cedbc0cd00a8accc2ebc5976f4d57f5b3a4" - sha256 cellar: :any_skip_relocation, x86_64_linux: "971fa1fb2bb46026f9c97c45f4e2848a39c55bd1ef72de16cdf85a890e8b0c38" + sha256 cellar: :any, arm64_sequoia: "d4c54b581214943be2f5e8063a9b1ef9ff1685a86bd8d0db0d665f8068e2f35c" + sha256 cellar: :any, arm64_sonoma: "98749c5e08c615bedc1dd2244fb90573b869b434f2705c6bcfb3e2b7c3adc1d0" + sha256 cellar: :any, arm64_ventura: "2d41ffe353ab6bd4ce27706cc46cddec1142638ad13c8ee1ff0c14fb80c95864" + sha256 cellar: :any, sonoma: "c012e9f78fb4b08f068bc3082e36cd83688b717bfab325a27f82404cb6a7ed6d" + sha256 cellar: :any, ventura: "292ef02ff9752fde13846171cfbf381028226c79df17481e171ad45a60de5522" + sha256 cellar: :any_skip_relocation, x86_64_linux: "0e72c513943982423660260daa61a9533c553ea4498cda613c2bfcf109fd33b8" end depends_on "ruby" From 347f12b7cf336c6975f0daa45c4055466410c278 Mon Sep 17 00:00:00 2001 From: Patrick Linnane Date: Thu, 26 Dec 2024 17:42:25 +0000 Subject: [PATCH 35/55] gitlab-gem: update 5.1.0_1 bottle. --- Formula/g/gitlab-gem.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/g/gitlab-gem.rb b/Formula/g/gitlab-gem.rb index b58c2edfa1709..f96df3414861a 100644 --- a/Formula/g/gitlab-gem.rb +++ b/Formula/g/gitlab-gem.rb @@ -7,12 +7,12 @@ class GitlabGem < Formula revision 1 bottle do - sha256 cellar: :any, arm64_sequoia: "dfdc4e6149913dbcd7d195dbcd7ed62a379762b842a2acc9a9d1f953ef51ee7c" - sha256 cellar: :any, arm64_sonoma: "c63a00b6eb58d0017fc0e8a5b6bcbaea12321cee802ca87e949ee16e2bfd953c" - sha256 cellar: :any, arm64_ventura: "2328f3c454e5485f1b09e828fbf2cbf66801a47ef3f756211b6b6f88b7d3cb39" - sha256 cellar: :any, sonoma: "632c41da4d5717a0512eb4a0bf62c46b13d0c98628908cc08e289f2741a84ea6" - sha256 cellar: :any, ventura: "215ec1a5e1f75fcaa14877c63a09bf30fe66471b713f6e75df12b784ad2dd28e" - sha256 cellar: :any_skip_relocation, x86_64_linux: "93acf3468f972d534c094ac34b504f5476f6755d77a6b4265ea70fd7d4e12fa9" + sha256 cellar: :any, arm64_sequoia: "05f1b0962f1cdc0ba8325a1cb2161aad2fb2c2d93c144c1efd8aa861b7faac12" + sha256 cellar: :any, arm64_sonoma: "040dfa582c413b0c51cedffc28d3edc5d5482b4c3584e1553fb31fbb9c76ad9e" + sha256 cellar: :any, arm64_ventura: "46f87e54a723b07f5813a32f9d5391c471a6384929e4a1880cf27a864d55543d" + sha256 cellar: :any, sonoma: "7d01617823ef02f76e5ef3ca2f31fbdc07c78c0ecb93fa89b2cad893971851e3" + sha256 cellar: :any, ventura: "c1b354fab666cfffd496156c33b9a8c0bafb5ed371bcf9b1ffdd6ddab30e015d" + sha256 cellar: :any_skip_relocation, x86_64_linux: "f059f0148490b7eaffb7a619c8c7cb146b511defea2b4c9d146c68b68e2da7e4" end depends_on "ruby" From d4065420fb56c4dd54ca3282508424eb5c1594df Mon Sep 17 00:00:00 2001 From: Patrick Linnane Date: Thu, 26 Dec 2024 17:42:26 +0000 Subject: [PATCH 36/55] haiti: update 2.1.0_1 bottle. --- Formula/h/haiti.rb | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/Formula/h/haiti.rb b/Formula/h/haiti.rb index 3d4c5299da526..1cb5d9462a37c 100644 --- a/Formula/h/haiti.rb +++ b/Formula/h/haiti.rb @@ -7,15 +7,12 @@ class Haiti < Formula revision 1 bottle do - rebuild 2 - sha256 cellar: :any, arm64_sequoia: "fa0a92d2a68ff948075c2bf610e4dc3d721e7b54bccf38852bf101d109b39bb6" - sha256 cellar: :any, arm64_sonoma: "b630e0baaeecbf8a0d48a8ef709f9d365ebb44d01190d7a0acb1a3f3354f7dd2" - sha256 cellar: :any, arm64_ventura: "cb9dea0523928f4364481c92dba1aecdec578dcac5104c1fa7e6e946e03928c4" - sha256 cellar: :any, arm64_monterey: "b9f0b8155503ec782e57a1d73065418da594a0707027a9b504388a055efd6b56" - sha256 cellar: :any, sonoma: "a3d90fbc8e007f998d1e4caae9aa3a3db0c1157b5a9225b6bb03d4fead7509db" - sha256 cellar: :any, ventura: "3c043707acf1a26407eb2942148a3051cf91e9154e70c846e7fae715e89423b6" - sha256 cellar: :any, monterey: "38793f6eeab5f02817b672e214670a1b2292990c4fff9aa7db933e1e7413d040" - sha256 cellar: :any_skip_relocation, x86_64_linux: "582eba154c239bff3e1a1080dec23a34e638beb975c5846a15b3248146dd92ab" + sha256 cellar: :any, arm64_sequoia: "0cc641884533a948e74cddcae36687ab233903722c81582ddf1d365c99d67570" + sha256 cellar: :any, arm64_sonoma: "8b0a6b439ca9a9499d344241dcd3350bc14a214b3ce339662d0557db129b580a" + sha256 cellar: :any, arm64_ventura: "7c0c5a7d08953e7d7a00d105a262fbd083d779dcc3a6854caf8ce268e49102e8" + sha256 cellar: :any, sonoma: "f3491dbed77e9cc3a2328492324f1061251e7576bae3f1e15d22e7d5f34b216b" + sha256 cellar: :any, ventura: "26b2779b32a9ad7511189ba6347b453cc9b98f62c96228a3832cfbe12c61d48a" + sha256 cellar: :any_skip_relocation, x86_64_linux: "5c13a3b4a68253847ede94468e90c00ace99cf93095f21fda7064ebc3da96d28" end # Requires Ruby >= 2.7 From fcf847738e2c85f6aa39966370ac0ac1088dffe2 Mon Sep 17 00:00:00 2001 From: Patrick Linnane Date: Thu, 26 Dec 2024 17:42:26 +0000 Subject: [PATCH 37/55] haste-client: update 0.3.0_2 bottle. --- Formula/h/haste-client.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/h/haste-client.rb b/Formula/h/haste-client.rb index 9991546c3b395..d4f7d6f7c78b7 100644 --- a/Formula/h/haste-client.rb +++ b/Formula/h/haste-client.rb @@ -8,14 +8,12 @@ class HasteClient < Formula head "https://github.com/toptal/haste-client.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "748d53b8e3a94df95119e4881d97966bde1e0ba7aed5f85088b8009490a65c45" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "19c113dd6fe207816a9c0dc7b3d16c8242d3302b2c0a0d16182508d3c50b69b0" - sha256 cellar: :any_skip_relocation, arm64_ventura: "19c113dd6fe207816a9c0dc7b3d16c8242d3302b2c0a0d16182508d3c50b69b0" - sha256 cellar: :any_skip_relocation, arm64_monterey: "19c113dd6fe207816a9c0dc7b3d16c8242d3302b2c0a0d16182508d3c50b69b0" - sha256 cellar: :any_skip_relocation, sonoma: "19c113dd6fe207816a9c0dc7b3d16c8242d3302b2c0a0d16182508d3c50b69b0" - sha256 cellar: :any_skip_relocation, ventura: "19c113dd6fe207816a9c0dc7b3d16c8242d3302b2c0a0d16182508d3c50b69b0" - sha256 cellar: :any_skip_relocation, monterey: "19c113dd6fe207816a9c0dc7b3d16c8242d3302b2c0a0d16182508d3c50b69b0" - sha256 cellar: :any_skip_relocation, x86_64_linux: "5ad7b1ac323cd891c96e1b3e83192519c83761f248d8591b7eae25bf5813d939" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "e6968438749dec734a5a5ab8c4dac48fd5eee5b2c8adfe6ec8908d17c72788c1" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "e6968438749dec734a5a5ab8c4dac48fd5eee5b2c8adfe6ec8908d17c72788c1" + sha256 cellar: :any_skip_relocation, arm64_ventura: "e6968438749dec734a5a5ab8c4dac48fd5eee5b2c8adfe6ec8908d17c72788c1" + sha256 cellar: :any_skip_relocation, sonoma: "e6968438749dec734a5a5ab8c4dac48fd5eee5b2c8adfe6ec8908d17c72788c1" + sha256 cellar: :any_skip_relocation, ventura: "e6968438749dec734a5a5ab8c4dac48fd5eee5b2c8adfe6ec8908d17c72788c1" + sha256 cellar: :any_skip_relocation, x86_64_linux: "dee9ebcf14e0273c14d8e28ceb77984f9fcd521e11cbc65f74762897d0e73cba" end uses_from_macos "ruby", since: :high_sierra From d1b78b279aa8aeff1e2c71440e19d1f4e14f10ea Mon Sep 17 00:00:00 2001 From: Patrick Linnane Date: Thu, 26 Dec 2024 17:42:27 +0000 Subject: [PATCH 38/55] licensed: update 5.0.1_1 bottle. --- Formula/l/licensed.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/l/licensed.rb b/Formula/l/licensed.rb index 92f06be170aae..4f220d67c6fae 100644 --- a/Formula/l/licensed.rb +++ b/Formula/l/licensed.rb @@ -8,12 +8,12 @@ class Licensed < Formula revision 1 bottle do - sha256 cellar: :any, arm64_sequoia: "a93226055833003dfd6f675701b213ea0f0476dcb9f40707c99095e86bb1fcc2" - sha256 cellar: :any, arm64_sonoma: "752de08cc0b23c00c9fb9c2106d9b96ac5c73f3bd8a88331dc988d9544eb88e7" - sha256 cellar: :any, arm64_ventura: "87d3c13edabbc1ba48f9ace4b8e01f942b6074cc11c98d33e0680af59e715a7d" - sha256 cellar: :any, sonoma: "38db74e75e7356a2aa0a5a5209b41d76ad75dc34faaf6353eccae3a649963bf3" - sha256 cellar: :any, ventura: "4728cf574701778fb5545e939aca1030b870b55d04871a7fc6f356b3c4c2f4f9" - sha256 cellar: :any_skip_relocation, x86_64_linux: "81da36f629c69ed8af2699770ac1f38642b894d54bc38ceada827bc4ba03697d" + sha256 cellar: :any, arm64_sequoia: "ff62a265e124b6dfa61060017d0ec1c861083f2dcada89e8b08bab249575288b" + sha256 cellar: :any, arm64_sonoma: "77d2b90ddeb1201923133997788dc353e87815d3b32f6de90ecf1e87b88d672b" + sha256 cellar: :any, arm64_ventura: "13556d3679589482caaeb4d7c3073583447a9a0123cebbaec555e4449f67d5e0" + sha256 cellar: :any, sonoma: "46eeb6cb7f8eb7e815b2ee960608945c988e539064e866929b1541a279117804" + sha256 cellar: :any, ventura: "0f12df0a2caf888b9b35102c87d98d4c493147c5628f7dbc9b18d4814418f119" + sha256 cellar: :any_skip_relocation, x86_64_linux: "0ee93a8cb1c187dfbaeb94dab3ebe70157d14360a3b93f88c8187f315e3f61f9" end depends_on "cmake" => :build From 8ca93f3a2e82737a47a4a106ea824a47b0f651a9 Mon Sep 17 00:00:00 2001 From: Patrick Linnane Date: Thu, 26 Dec 2024 17:42:27 +0000 Subject: [PATCH 39/55] macvim: update 9.1.0727_1 bottle. --- Formula/m/macvim.rb | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Formula/m/macvim.rb b/Formula/m/macvim.rb index 8c626fdbe543a..2d2239f55a82e 100644 --- a/Formula/m/macvim.rb +++ b/Formula/m/macvim.rb @@ -24,12 +24,11 @@ class Macvim < Formula end bottle do - rebuild 1 - sha256 cellar: :any, arm64_sequoia: "80e6eed701a2a90d774c3466a1a658eae0602f6514cc179cf5f4094a4a59536f" - sha256 cellar: :any, arm64_sonoma: "0f73e511af34cbe4477d83c907e9b42caf8032b8b2723fc5879d68f00e861dea" - sha256 cellar: :any, arm64_ventura: "e9210bbe26673e2cefc2445636b5b1f4a42e1f19369a4aa64071f7a721680b77" - sha256 cellar: :any, sonoma: "eee7dada958ef31d41d97838efce0689d8aac95adb7a782f16ca3147348fbe49" - sha256 cellar: :any, ventura: "663fb344c7d5e0e73373204a8ba3ebf61e348c8b638791340e985a86e62f8961" + sha256 cellar: :any, arm64_sequoia: "ab76872feed0c90594fc3349302242ab142e87c5e04c364a570a12758fda1fe4" + sha256 cellar: :any, arm64_sonoma: "2d7e4947f9eed2985029bc2ea1d026dda0c363a7eb272f87be4fd82f33d555ae" + sha256 cellar: :any, arm64_ventura: "428beaa2228f7c93adf0f7c00ad7ea9ea8639d7289265188ee74e81219c706c2" + sha256 cellar: :any, sonoma: "79b0f224d6526b64664569fa3dd1bfbf69dcd57c346e7915b75591a282f8f27f" + sha256 cellar: :any, ventura: "55f12977a79c56c95b008644f89586f175bb66eff260c307d0f91eda73dd01e4" end depends_on "gettext" => :build From f41cbf2d983ed0974471b7fb31ae024656b9aa0e Mon Sep 17 00:00:00 2001 From: Patrick Linnane Date: Thu, 26 Dec 2024 17:42:27 +0000 Subject: [PATCH 40/55] mailcatcher: update 0.10.0_1 bottle. --- Formula/m/mailcatcher.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/m/mailcatcher.rb b/Formula/m/mailcatcher.rb index f87e8d36d6efc..dd7cadd0d2571 100644 --- a/Formula/m/mailcatcher.rb +++ b/Formula/m/mailcatcher.rb @@ -7,14 +7,12 @@ class Mailcatcher < Formula revision 1 bottle do - sha256 cellar: :any, arm64_sequoia: "b2e53d4fee8a25e01abeaa5e827e4fa0713c4ec4bcadaaad95db6f53b2b5139e" - sha256 cellar: :any, arm64_sonoma: "b1e3e8c79312f8a9cfc995ebf3323750c1673da1bcc46129a516124575dd4116" - sha256 cellar: :any, arm64_ventura: "48ba775de03b394c5c7981e4e990094c1e7d98781af790f0658d8596f6126250" - sha256 cellar: :any, arm64_monterey: "72fd292521f629a91abc5a99d386689e263553cee6fe70be5ed87f1feec8a3cd" - sha256 cellar: :any, sonoma: "c9df904bb52b0d9d3f0e4ef939d2b213fc9de876ade935ac59a215962754ee10" - sha256 cellar: :any, ventura: "989284e497267b0c55b25e7102650703d7938d4f0ac985c1cf44f62deb930bab" - sha256 cellar: :any, monterey: "30f848d4cbd189a75d7870b2ac8a78b6f411076c82530e24e1930d5c16819b4c" - sha256 cellar: :any_skip_relocation, x86_64_linux: "c70607653632478ba936cb62f56377dc9e17670f453e4018ea39694a15cd2837" + sha256 cellar: :any, arm64_sequoia: "42f5b6813789c297bfb3f2cf9867cb89c387124336f78f0b2db31a9490ff8e39" + sha256 cellar: :any, arm64_sonoma: "98688362105e37e7b5642971887ec454fa5953c013c499b7401ec75f1705f6d3" + sha256 cellar: :any, arm64_ventura: "d8947cfeb3b8e095f9e9df810fe9eccb62e1da2e73889fac2e1b60794056655d" + sha256 cellar: :any, sonoma: "65c435eea0ed3421e911b11a64f8cc73c53070b1ae015dbc2523abe62bc1c06c" + sha256 cellar: :any, ventura: "aab17598a1e1836e38c145aaae6777516b92b0163b4deece91839d2c790280b2" + sha256 cellar: :any_skip_relocation, x86_64_linux: "391be8e92219c2ecdb1a9990be909b52d5d45ca818a82ae02953f291aec5649c" end depends_on "pkgconf" => :build From 56b2a5d8c5bbe29afadb7c5b537e2d07d8dfdb4d Mon Sep 17 00:00:00 2001 From: Patrick Linnane Date: Thu, 26 Dec 2024 17:42:28 +0000 Subject: [PATCH 41/55] mdless: update 2.1.51_1 bottle. --- Formula/m/mdless.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/m/mdless.rb b/Formula/m/mdless.rb index efeb6ad914ca9..7873aba06c181 100644 --- a/Formula/m/mdless.rb +++ b/Formula/m/mdless.rb @@ -7,12 +7,12 @@ class Mdless < Formula revision 1 bottle do - sha256 cellar: :any, arm64_sequoia: "0dc52539af0c30d353cde6eb4966a2a3cd78888136d449cf727c8224150e5490" - sha256 cellar: :any, arm64_sonoma: "494ba6d56e4b5f6322e3b221ee0b7324f097354ff6825bae614862a3747c8ab5" - sha256 cellar: :any, arm64_ventura: "00c4f86d2efa11b59ea2b406a1868cae4c717bf45f9fba3df90db3438e42192e" - sha256 cellar: :any, sonoma: "e45b5ed6f214617c19f6cd4e16cfbc73ada99c841251d5193b05b6beac1f3036" - sha256 cellar: :any, ventura: "8ffaf68d1afbabf8688fa92e1dc2f461a468a7909e10796b6e2d9b46da7b6a9c" - sha256 cellar: :any_skip_relocation, x86_64_linux: "31ad4305b64dc4aad627f776ca684626b3b4104277270b50ecfe14e6eb02ec47" + sha256 cellar: :any, arm64_sequoia: "c53f9b1eec7442a0c501a5758f98c1efe742d1e75ae2cd7b9de84b0a0ffee6d6" + sha256 cellar: :any, arm64_sonoma: "b7465de4d8a7ed2734ddb505f188bc3dc7582134f98c94eb46e3fcf70b235039" + sha256 cellar: :any, arm64_ventura: "529b3fde7b425c29020d5a977337af1137da0744f81c455a70b1648728d88972" + sha256 cellar: :any, sonoma: "315028ea29ae443c4d56b91cbb66e7cc32159fc281d7eb6455b0c00462524783" + sha256 cellar: :any, ventura: "5abacf54acfca534e3c413c0fa6f93c1543f28c0fa326e1ad38947bd38ba8224" + sha256 cellar: :any_skip_relocation, x86_64_linux: "dbdf674a68b07d2f6a39ba0c256a29dc2b841505360418884b587d372ee86a47" end # Requires Ruby >= 2.7 From 0082d92663ef78a2d5ba97bedfd938e5be4dcdf1 Mon Sep 17 00:00:00 2001 From: Patrick Linnane Date: Thu, 26 Dec 2024 17:42:28 +0000 Subject: [PATCH 42/55] mikutter: update 5.0.8_1 bottle. --- Formula/m/mikutter.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/m/mikutter.rb b/Formula/m/mikutter.rb index 461005d776649..98555bc21b2b2 100644 --- a/Formula/m/mikutter.rb +++ b/Formula/m/mikutter.rb @@ -13,12 +13,12 @@ class Mikutter < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "cd859fa77b1c956eae27cb5239b914005708bb83a9fa6bff838a5aaee3c9eeb4" - sha256 cellar: :any, arm64_sonoma: "cd5bef014eb7be1201718fc6d23e101929faadf376cc0550b1f818b775907a22" - sha256 cellar: :any, arm64_ventura: "168aac1652c080ca46bffe711f7f21fc7c492185905edd726aafea05358fbc6f" - sha256 cellar: :any, sonoma: "fa7a44d029548c3aa365c41473755ebdbab7305857661c26705e4a7b2b960e1b" - sha256 cellar: :any, ventura: "b27f1eac423287da960c26f6acaa714c5f0c7863ca25557868c25f73657a762e" - sha256 cellar: :any_skip_relocation, x86_64_linux: "45d7dcf4604999d5f1e97eb2e73fa81fc0945fe6f64a35c923d86612f491cce5" + sha256 cellar: :any, arm64_sequoia: "419a17aa9ee5a8a5d6cbbc11fa1b38c35237b181876b63750f4e89096c20925c" + sha256 cellar: :any, arm64_sonoma: "c43a977714a30074562aca634da3c746b56a46c982a003ed2c91949bbc1dc2d9" + sha256 cellar: :any, arm64_ventura: "6a199016f5882e5fa980ddc597560e329fb76c8c5648d2ed4dfc59b60c90d8ea" + sha256 cellar: :any, sonoma: "ad1d178fd6c86023243d2e45b08247babcc54d7459434c1ae75e72945c6d1bbc" + sha256 cellar: :any, ventura: "1492fbcebbaaeccf453928132eb04b38a375998e90037b48ae5dee2dc2d430d0" + sha256 cellar: :any_skip_relocation, x86_64_linux: "2cbeb23d9b3659e53039748c3f7bfd1596b58412e99a1380041e18f285f4f4a8" end depends_on "at-spi2-core" From 61a689e0d164c1f6921e5dc4fae1905db12f97e5 Mon Sep 17 00:00:00 2001 From: Patrick Linnane Date: Thu, 26 Dec 2024 17:42:28 +0000 Subject: [PATCH 43/55] passenger: update 6.0.24_1 bottle. --- Formula/p/passenger.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/p/passenger.rb b/Formula/p/passenger.rb index b9c37bb70eb89..c9acf8916661d 100644 --- a/Formula/p/passenger.rb +++ b/Formula/p/passenger.rb @@ -8,12 +8,12 @@ class Passenger < Formula head "https://github.com/phusion/passenger.git", branch: "stable-6.0" bottle do - sha256 cellar: :any, arm64_sequoia: "4688b322556f5d7675916d2d1d2b036b9803bfac953fa3f26cea1655dbff9aa0" - sha256 cellar: :any, arm64_sonoma: "4b4724c8bfac9e671f1fa51b73d27489b81c0d222cb37da330da09c59a38ed1a" - sha256 cellar: :any, arm64_ventura: "c98a618992ca5a804f63e04c89a4d0d9b11583983e6831ba5de84988a22e16b0" - sha256 cellar: :any, sonoma: "067ab1e79d5abdeb161c7e42c3186979d81d92adc9bc8e02d5097707a8734b1b" - sha256 cellar: :any, ventura: "7a6cbd725659c4111c5024a3eb065fe4e09afcff09d03e07a35e7326c9d4b20d" - sha256 cellar: :any_skip_relocation, x86_64_linux: "9c4bb493b102bf76c78d805d4cffe2d16cddea688ab9e25632172f302f1df4cb" + sha256 cellar: :any, arm64_sequoia: "4c0ceae0f8545f444989001e830b37942ece639d10e4bf5006bd4072760ddaa6" + sha256 cellar: :any, arm64_sonoma: "629d7d8414714171c58828e7b2a6d87634de1535b7135bbc47309a1179f8d024" + sha256 cellar: :any, arm64_ventura: "b88ca8ffc4cfb90a98387d9c842be7d8d9ee4ae6a7fa271e72dc876c8ca61803" + sha256 cellar: :any, sonoma: "bfa03b50d2b1cebde00edc1c78d9ce4c624d7762b45655fde4474d3cf424dd09" + sha256 cellar: :any, ventura: "3f4fdd17bccb32e4843205e1dafa11b62e17afb77c4571c9d5733835a48ad802" + sha256 cellar: :any_skip_relocation, x86_64_linux: "5df766e6d116443a3b01f2d06681c15d6550dce4f759fe641cf0fc15bd0e7b24" end depends_on "httpd" => :build # to build the apache2 module From 49bd61de6b053fc703ee34eb22f621141705f4e4 Mon Sep 17 00:00:00 2001 From: Patrick Linnane Date: Thu, 26 Dec 2024 17:42:29 +0000 Subject: [PATCH 44/55] pgsync: update 0.8.0_1 bottle. --- Formula/p/pgsync.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/p/pgsync.rb b/Formula/p/pgsync.rb index dc15c73b21f05..813177626524f 100644 --- a/Formula/p/pgsync.rb +++ b/Formula/p/pgsync.rb @@ -7,14 +7,12 @@ class Pgsync < Formula revision 1 bottle do - sha256 cellar: :any, arm64_sequoia: "943687f8e9f670920d7eeaee1a271cdc66d6433010d03375832e12478755ab1f" - sha256 cellar: :any, arm64_sonoma: "d0fca0241bcd1370d86a97de70e9a6255eb8233e732da09777c2b5894c493374" - sha256 cellar: :any, arm64_ventura: "cf0802b4607cd6561a44ab652c5d6fcee8606d30ee2ab26fd6dc173a2861b225" - sha256 cellar: :any, arm64_monterey: "140280805ff038e3ac4acaebe412c00cefc83ab4ead853f4ae118df3ce9ec1cd" - sha256 cellar: :any, sonoma: "11f63bba4caf4667f0932a4478b35796c149f6abb6123cb52ca5f9cd9d6fad29" - sha256 cellar: :any, ventura: "4266dc4941f0a59b6501366328621230140dca93095da411ca59b295864264be" - sha256 cellar: :any, monterey: "685537766509336ec0a61b47a202c279303740e6284ecf85e31a20dfc9a91d28" - sha256 cellar: :any_skip_relocation, x86_64_linux: "be09e2268832219f7fe75c3dcb8c0baf0067cee5a80c325f423f07ab788fba29" + sha256 cellar: :any, arm64_sequoia: "d569525a961f1543642f07928fe0ca9317ac819c670a7f6d6735d8752168bac6" + sha256 cellar: :any, arm64_sonoma: "95f8e9b647da0ca010fe39d6f289e64e849b25f212f0e50fb7906e3a88e854fe" + sha256 cellar: :any, arm64_ventura: "c3fe3a0ab9336a9fd3343e1466ba5a137294d2ffbae99110adb2e2c152f1e206" + sha256 cellar: :any, sonoma: "0b1082fa75fb757eea994e9d50be3116d701587c5880430fb20d3a018b875a3d" + sha256 cellar: :any, ventura: "01e1f89f86a1cb51e8c4821a98611c5bad2f18d7145c82e39498d474af9af87c" + sha256 cellar: :any_skip_relocation, x86_64_linux: "ce4b49836360a1abe20cd60228f4e555765a5e41483709706584931abb6dd64d" end depends_on "libpq" From 17b3b175f8c8d25b5bed76dab76a3917fcab265f Mon Sep 17 00:00:00 2001 From: Patrick Linnane Date: Thu, 26 Dec 2024 17:42:29 +0000 Subject: [PATCH 45/55] ronn: update 0.7.3_4 bottle. --- Formula/r/ronn.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/r/ronn.rb b/Formula/r/ronn.rb index 00cd8b3b23605..c47923e053a4b 100644 --- a/Formula/r/ronn.rb +++ b/Formula/r/ronn.rb @@ -12,14 +12,12 @@ class Ronn < Formula end bottle do - sha256 arm64_sequoia: "bdc72063db5be27dc1d34d941c0e249b39a9c7df448ef3914863948dad7ddc29" - sha256 arm64_sonoma: "416aeca29910f0ce1822a255a7d73809d4dd1a29e5d6fb8375aaf5001343a293" - sha256 arm64_ventura: "408a7986228c62661d63bd01bc2d3ba03e22641018915a3366bcb4b9aa1bf92a" - sha256 arm64_monterey: "5cf031f43f4b10d293293263784cebbfe3d1616412dce8ed94c78ea34297cfcf" - sha256 sonoma: "1660a20ae4acba5d8c2672028c1013babb989458720dbc4dc6dba2386380c5f6" - sha256 ventura: "6bb2e2ffd5ab8a76357720b88ea0283b645b0f45b3dc7b30fcb38cc44612889c" - sha256 monterey: "7b3601e05dd8b64eaea9783767ecf9b40dd8d70b43a497f2b8b3f8952525ca3a" - sha256 cellar: :any_skip_relocation, x86_64_linux: "5a73748f925012eb92e989e625d1086f08c56f211e92a5b1318837004236d1c8" + sha256 arm64_sequoia: "ae47bcebfb7b492d6a6aa8f9dedcb248c79f657f37dd851b8148299120750253" + sha256 arm64_sonoma: "2aa277c67249e543b65df95bd8ae64e88276b8be25497c27edf923aa20933049" + sha256 arm64_ventura: "4a5a015611099aa8618e53d517cbb481528383ca8a7bcaa9a9684d403378308a" + sha256 sonoma: "2bdef28fa1cc074a01fe71f08be92eb459e5c6ff481af10cba987a69857cf89c" + sha256 ventura: "ae254f18931f756ddbbdbff72edeafe83c69be33b59b8dd809e8ccd5dabf4a96" + sha256 cellar: :any_skip_relocation, x86_64_linux: "7039deef414574510a014b1ee4f0b676b0535b1af20fad6c46af736425608795" end depends_on "groff" => :test From 3f6780dd9e16f03a6c630eaad6cba4f0d278a52b Mon Sep 17 00:00:00 2001 From: Patrick Linnane Date: Thu, 26 Dec 2024 17:42:30 +0000 Subject: [PATCH 46/55] ronn-ng: update 0.10.1_1 bottle. --- Formula/r/ronn-ng.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/r/ronn-ng.rb b/Formula/r/ronn-ng.rb index 0dd14fc34d03e..8aa7c8bef0054 100644 --- a/Formula/r/ronn-ng.rb +++ b/Formula/r/ronn-ng.rb @@ -7,14 +7,12 @@ class RonnNg < Formula revision 1 bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "3a36bd1699825e23e988f88430a33992b0d1cb846897e93b7e55d4f48c1c6d0e" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "f31d048c5ebca214ad11c695656894dc560ca865000a78e659985289abcd31ab" - sha256 cellar: :any_skip_relocation, arm64_ventura: "4bee63a22338f66fedbcca8ba2c67035ef78024d8b44462819737c37ff2f62cf" - sha256 cellar: :any_skip_relocation, arm64_monterey: "a1c684641c1b5361e3100e634364d39823eaa4067c7ce2b99993c15c7a9f952f" - sha256 cellar: :any_skip_relocation, sonoma: "a8d059eec73a18c2e2a887d0158c6be288be08be86038e9cbe65d437a68e89d7" - sha256 cellar: :any_skip_relocation, ventura: "bc2e51f2b46864a3997b53c9652d68732639b3d9fa70d59ad872b97b1faf073b" - sha256 cellar: :any_skip_relocation, monterey: "edb291c1f1fd2744613fb4e6ebe61ced523410143b2fc385845a850a29d79935" - sha256 cellar: :any_skip_relocation, x86_64_linux: "ad7f030d0d67dcf77826a7362288d99b334d783a255fd7670d20cbbe417d4148" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "8d39afaff29b90a17336c9033eb12d405f5b8c29c7e804872a87281c889d84d9" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "8d39afaff29b90a17336c9033eb12d405f5b8c29c7e804872a87281c889d84d9" + sha256 cellar: :any_skip_relocation, arm64_ventura: "8d39afaff29b90a17336c9033eb12d405f5b8c29c7e804872a87281c889d84d9" + sha256 cellar: :any_skip_relocation, sonoma: "f0d1bcdca16b8ce2b8641e8224a374ebe25cb744721c84047cd101e505e07f72" + sha256 cellar: :any_skip_relocation, ventura: "f0d1bcdca16b8ce2b8641e8224a374ebe25cb744721c84047cd101e505e07f72" + sha256 cellar: :any_skip_relocation, x86_64_linux: "1b303b18ed67bc5b328597d421c4a2c0449a5e65372706b04ed58f0f9319d10e" end # Nokogiri 1.9 requires a newer Ruby From 1c6304cfdd26f2f39a9dec3256ce6da87637eed6 Mon Sep 17 00:00:00 2001 From: Patrick Linnane Date: Thu, 26 Dec 2024 17:42:30 +0000 Subject: [PATCH 47/55] ruby: update 3.4.1 bottle. --- Formula/r/ruby.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/r/ruby.rb b/Formula/r/ruby.rb index 904ff119a337a..c96e49fb5ed14 100644 --- a/Formula/r/ruby.rb +++ b/Formula/r/ruby.rb @@ -28,12 +28,12 @@ class Ruby < Formula end bottle do - sha256 arm64_sequoia: "d1077f441bf54d6e59bdac468cd44013d218843dea36add546b8946464bc7b59" - sha256 arm64_sonoma: "1d1be63045a004474d7d2f0e0607af710ef04999e70b455a7e1be7df289cc024" - sha256 arm64_ventura: "78f11b6782faa869e8422cf2531be7bf21447f86a563e8eae6d57d148ef2b6a7" - sha256 sonoma: "9102cb5755913c088cb4fb5a9afe0188cdcf2f6b733586a3deb492b6869e8906" - sha256 ventura: "f82fad313fa6e653d9d453ce21a56e16bfe6df4cd8539e883704fc1e08c680ea" - sha256 x86_64_linux: "8784b621019d8580a50a588341ea83ceafded9a1f750f5ae47680a6bad89f909" + sha256 arm64_sequoia: "138b6437f47834712668a08b7c686a47f64daf6f08458994cca854e481c7906a" + sha256 arm64_sonoma: "989bd02640cc28e4f3c14adc6ce58e26cc07d501dbde42c6e0d06277e696de42" + sha256 arm64_ventura: "30ff9cb5a990235992baeba80bd230e419992470e8b512c8cad1134d2e8d2c8f" + sha256 sonoma: "78e1af582c5b4638b4efc7427a5c87fa108f1748855771cdee989613fe79c161" + sha256 ventura: "3ddbd71146baecb8c2c8bc8481a2c07a23ae4fc11919ad5c853e15fb22019e62" + sha256 x86_64_linux: "c1569b364596688221d086a093f152f0ff76a25c6bef75e5aba6eda3f0404055" end keg_only :provided_by_macos From 0a6df8a4daa9a1942559aaba5cb684de80de8022 Mon Sep 17 00:00:00 2001 From: Patrick Linnane Date: Thu, 26 Dec 2024 17:42:30 +0000 Subject: [PATCH 48/55] ruby@3.3: add 3.3.6 bottle. --- Formula/r/ruby@3.3.rb | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Formula/r/ruby@3.3.rb b/Formula/r/ruby@3.3.rb index 0ff7be3788a91..cee48cf81c861 100644 --- a/Formula/r/ruby@3.3.rb +++ b/Formula/r/ruby@3.3.rb @@ -10,6 +10,15 @@ class RubyAT33 < Formula regex(/href=.*?ruby[._-]v?(3\.3(?:\.\d+)+)\.t/i) end + bottle do + sha256 arm64_sequoia: "453e4692db2ae4f3ab85e879db8382421efde75d8796699e8a6c41f8a1fcc296" + sha256 arm64_sonoma: "0c25dbf450faed1e1b07e54cc49f77b309d3cb204bc29e881dea8a44c7d11a49" + sha256 arm64_ventura: "177a36192adcd8062fbed6e213ace9b659940f269cc8f34132994bfd38c300e8" + sha256 sonoma: "e63c6928e15d24fe524f69ba689da08c346f3fbc4b71a55aba0555c72c85582c" + sha256 ventura: "a6d4740c2c7d2acaf51c563a1138a4605c6cbadb3c3d724ea20f6b3d5afe1841" + sha256 x86_64_linux: "fe1695b0b5e756addb492b72c3dbe6c95197a9e1c1f9157550fdc28b336092ac" + end + keg_only :versioned_formula depends_on "autoconf" => :build From 37d1936aa1c4869e81910b8fd8096f8ce8d9b95f Mon Sep 17 00:00:00 2001 From: Patrick Linnane Date: Thu, 26 Dec 2024 17:42:31 +0000 Subject: [PATCH 49/55] solargraph: update 0.50.0_2 bottle. --- Formula/s/solargraph.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/s/solargraph.rb b/Formula/s/solargraph.rb index ca3916f43201a..0cfdc778da521 100644 --- a/Formula/s/solargraph.rb +++ b/Formula/s/solargraph.rb @@ -9,14 +9,12 @@ class Solargraph < Formula revision 2 bottle do - sha256 cellar: :any, arm64_sequoia: "1deca10c6cdef6ffd6b11bd15f9cf0db603e1558efd3d3dd74ff88747e25f38b" - sha256 cellar: :any, arm64_sonoma: "adf2c964dbf8a6e8e6df15c78a99c7635cad6a8e29eeb922e418a135f414c38b" - sha256 cellar: :any, arm64_ventura: "ac3502934bfd32481fc7bb267318ac17fa4a1f4c4f87d83a1226c0fc7b84243e" - sha256 cellar: :any, arm64_monterey: "a5d150ce559e3a63e7c2cf8cacd0b693ecae7d3a0cc4053ab4bfb118ca55e8b8" - sha256 cellar: :any, sonoma: "9a0a1f7fbdbd210833a3fd49228457bb49d73df9aaa3255bbdf539f40bb5755b" - sha256 cellar: :any, ventura: "7c26cfc1b83a167f245b25283fc9c15af0083605f4a6e8a188932466efe3ac32" - sha256 cellar: :any, monterey: "77c8978cae979848b8caf92d1a11c9a7bfa64657b2b27fdedc11d2584a2ec5a5" - sha256 cellar: :any_skip_relocation, x86_64_linux: "36d017f532d294cfc9a8d42ec0997e89117b49d6f9457cdfb0c69bf1da2c88c2" + sha256 cellar: :any, arm64_sequoia: "04ebb482fd487735b9eb818f5c9eb178b47e5fec92eef6d8bc915af542be48d6" + sha256 cellar: :any, arm64_sonoma: "9aed84bdf1bdbde26c9e21b36b131abca04c31f10c5f8e4eb347306a33084b58" + sha256 cellar: :any, arm64_ventura: "548aa4292d06afbc6864218c3392c9ca21733cb33e30b7a1c4d14d10a6d7a51a" + sha256 cellar: :any, sonoma: "ef6f572b7b4d655935802bae9c88419728e9ba568d250679634b927a69b964a7" + sha256 cellar: :any, ventura: "1161fae05d92235981af40869d7c38d1081d942c85c47fe6584ad7bbc1712bb5" + sha256 cellar: :any_skip_relocation, x86_64_linux: "9d94ae8f22f2b69edb594fc60801f5fd32a4f8309c89fa6746afc327d0ab4ffb" end depends_on "ruby" # Requires >= Ruby 2.7 From fd29bd1da6a837343e05f94ba451aa0965ca9d94 Mon Sep 17 00:00:00 2001 From: Patrick Linnane Date: Thu, 26 Dec 2024 17:42:31 +0000 Subject: [PATCH 50/55] travis: update 1.14.0_1 bottle. --- Formula/t/travis.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/t/travis.rb b/Formula/t/travis.rb index 945b0d24dfad0..2cfbd499d8e92 100644 --- a/Formula/t/travis.rb +++ b/Formula/t/travis.rb @@ -7,14 +7,12 @@ class Travis < Formula revision 1 bottle do - sha256 cellar: :any, arm64_sequoia: "36c4e4ec1af82812623a0e6fba9333b536eb215ec0956a33215eebcc5aedeb55" - sha256 cellar: :any, arm64_sonoma: "5766618d480fb76e3005eba00f3a7a7ed5a7d51dfc324371d72babe0c4ff3910" - sha256 cellar: :any, arm64_ventura: "159636202070bdb08a71e8536d3f3fec6a1c1cb2337f7e7155541069eae7db65" - sha256 cellar: :any, arm64_monterey: "d29494581f310f89b031c7890aa97f543135142ab5358b4822354091c6691c25" - sha256 cellar: :any, sonoma: "644741937292acf07e3906cb16e5da38f6f38a3f1b3a5b4b6635e228f5b785ec" - sha256 cellar: :any, ventura: "8608c07f7223723636ff0f0006e581ca79b192aa43bb4c1a7463f208e7f5efb1" - sha256 cellar: :any, monterey: "259c73779364bf1ffa6e4742697f16909f84499180cf30b153ee38d146126e7e" - sha256 cellar: :any_skip_relocation, x86_64_linux: "8c12a3598e9cfdf75556100cbd028916085d5de6c6f49c9d50c27f8c5935fe6b" + sha256 cellar: :any, arm64_sequoia: "a2656c812d2de510207764913a794922237221ac0840c5f238e391fc73b913c9" + sha256 cellar: :any, arm64_sonoma: "51bf2cb257cdd819adb71a0e2b5c44177f5ef3ff83fd23718b08fd89248d8f97" + sha256 cellar: :any, arm64_ventura: "7b54aebccabde93f8f5898240e2107347d671d6d4e7a51606a674c7386111453" + sha256 cellar: :any, sonoma: "5773a64c642d24d49102ae362ff3b877da2e78a2565aac86b8c84b008473fbe7" + sha256 cellar: :any, ventura: "a722365f1d543352566b79d0468abe9a8eebc6b45707d1930af9d6c2cb679ac7" + sha256 cellar: :any_skip_relocation, x86_64_linux: "ad1edfc0f78b697477f04ac92d4e3b6a094341ef0894f92ee684c83b60aba68f" end depends_on "pkgconf" => :build From b5c2d89670bd8f6d03169bcb201dfc5bfe16ea59 Mon Sep 17 00:00:00 2001 From: Patrick Linnane Date: Thu, 26 Dec 2024 17:42:32 +0000 Subject: [PATCH 51/55] uffizzi: update 2.4.11_1 bottle. --- Formula/u/uffizzi.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/u/uffizzi.rb b/Formula/u/uffizzi.rb index f7d3fce2ab8ec..e31eb93669e76 100644 --- a/Formula/u/uffizzi.rb +++ b/Formula/u/uffizzi.rb @@ -12,14 +12,12 @@ class Uffizzi < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "b22c38d2105c9e5aa905523ca1179202f2aa987c6c7ae97341ef472e77db35fd" - sha256 cellar: :any, arm64_sonoma: "c0b2c5f83812a149c776fe7e98607f47d260c5f9011906b1a94d9c921f0c2eba" - sha256 cellar: :any, arm64_ventura: "2f52c0d4a6529cabb2a0433c49ca06ecc5c0c56e39db2eea2e2405572aba188d" - sha256 cellar: :any, arm64_monterey: "f810f30435e058488f29c9019aad3b48976894243ed99c9738803f91c31a0ffa" - sha256 cellar: :any, sonoma: "be23cbe46234971df401a29e135da1748c15d164d6c02ae4dd6b30348aad8e32" - sha256 cellar: :any, ventura: "77d743e634299ee4e05e74d0ae5e20e019e96e173387044157c7f401f35bad96" - sha256 cellar: :any, monterey: "a630714e4ff38983547b92dfaecd2bcc972d99ed6da0a6a051b0a46f8a42c03b" - sha256 cellar: :any_skip_relocation, x86_64_linux: "2ae4c858d28cef6edb96bb2087ec3369239d50fb0305225acb418d4cfa3a3923" + sha256 cellar: :any, arm64_sequoia: "13f479921395f22e9763cd69188cb50741e3b9bdfae2dbb723477bfee83e034b" + sha256 cellar: :any, arm64_sonoma: "f966c6f3cfe2eeb78cde22cb23fce3856b50d95dee8b10aef33b53345a87b0d3" + sha256 cellar: :any, arm64_ventura: "acea7e690d3f8ce0097a6e0e52bfbe1d49bbde78dc41bbd72f5141f21277da7b" + sha256 cellar: :any, sonoma: "ec4cbb44e1158fa3fef74d67b1e1258c35cfb37cd5245f1fd8cca414365dd7d5" + sha256 cellar: :any, ventura: "0d22585d90af47b388cb9642cb3d5178b24627a6b2335b6a5a14f621d07b7550" + sha256 cellar: :any_skip_relocation, x86_64_linux: "1ce9db2b42de079e80a5f7f62a112ba61f26e5d0ae396b50e0b59da0da66d1bc" end depends_on "ruby" From 362127a452ba4c7db9c6df708c010032cf0a8b0d Mon Sep 17 00:00:00 2001 From: Patrick Linnane Date: Thu, 26 Dec 2024 17:42:32 +0000 Subject: [PATCH 52/55] vim: update 9.1.0950_1 bottle. --- Formula/v/vim.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/v/vim.rb b/Formula/v/vim.rb index e85c3110b9e85..4251d970e59cc 100644 --- a/Formula/v/vim.rb +++ b/Formula/v/vim.rb @@ -26,12 +26,12 @@ class Vim < Formula end bottle do - sha256 arm64_sequoia: "be08108e8fdd963d1617de413ba3b28db5da7b5bd6040525bfa4523de269200c" - sha256 arm64_sonoma: "587bdb718609ddee4a483acd1d84bff23082cfcd46a93786540676e4edc10aa1" - sha256 arm64_ventura: "358d56a4037979287036536fd0446886f28b63d3a468dd65d49cb5b90ee87875" - sha256 sonoma: "1daf5b69c51f0f395a56ce22b1cb4e0d05444f3bdab23c12b08344f6d15320a0" - sha256 ventura: "9ac84567e4962e0eccd1c347bda7e781cfca7046c8f5ff4c2c8bf0164e12bb67" - sha256 x86_64_linux: "e03107956103afe94a9848d6ac135ab2b17162a2a83f22a9fac8532106ce8b32" + sha256 arm64_sequoia: "75237b74992b7dbee9168137f4ebba13f76da57cc6345738f2f7e96dce331611" + sha256 arm64_sonoma: "c3bf5cedb42b472d6815d4d687eef43b2f166fe0fe4ecf8f8eba07a87f039ede" + sha256 arm64_ventura: "2dd97b5a2deb1c439c7ce5a009f2e0bb0dd1f1669835f46d79ae365ecb6d4c51" + sha256 sonoma: "ae2049bde4187236012beec46b15f2f47ef8624d701251412b87217b6180344a" + sha256 ventura: "1f8630389dc837b14ead8a625faa2ae6e8b2d04defd9dd773cd25c3ab07e6209" + sha256 x86_64_linux: "968308fbe3aade6581489ffa02e42ddb0d47c42e813cdea2f84e27531ac917df" end depends_on "gettext" From b39c996c9dabfd09bc6a66cb6a61e27fc984d7f7 Mon Sep 17 00:00:00 2001 From: Patrick Linnane Date: Thu, 26 Dec 2024 17:42:32 +0000 Subject: [PATCH 53/55] weechat: update 4.5.1_1 bottle. --- Formula/w/weechat.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/w/weechat.rb b/Formula/w/weechat.rb index 9c61e21636a6d..5636795ea3d8f 100644 --- a/Formula/w/weechat.rb +++ b/Formula/w/weechat.rb @@ -8,12 +8,12 @@ class Weechat < Formula head "https://github.com/weechat/weechat.git", branch: "master" bottle do - sha256 arm64_sequoia: "02873a614850f0a5977b7deb6ea92a7e784caf5c1a835f617043b3d1a25eda37" - sha256 arm64_sonoma: "dbb1bcf87da4ed172a284fe568920605284ee9ea2bb89606c4c641a79f39f505" - sha256 arm64_ventura: "5fa611726ec3d10e9dcfe63699a940c73850a634b9d090cc1378bd7ab3132cb3" - sha256 sonoma: "b01757a1f205e773768c2e56eb83f3c2d89f154cc2df8d41c77c6b6ca868ab18" - sha256 ventura: "5f0809ff7e9f2008e6dcabf06c326b1f67f562315b91992d9b53e700f7a96699" - sha256 x86_64_linux: "0fcaccb8f711c9401b2982e48bee2befbf5c0cd8e6405754e9ca41c9c50939ef" + sha256 arm64_sequoia: "1d67c5430fb275208b17667d4d46efb27f73407d16b74b87450e21f6da71b990" + sha256 arm64_sonoma: "eb160a670b4fe6283c27439b8ef204fd5cef1960657ab42f22d4b9deed6a3a35" + sha256 arm64_ventura: "ec8f40a100219d9e16f3ec871a8df4be7516318c85b99c7edaacc0be8993f8b5" + sha256 sonoma: "4bb5fba2ce14d53c8a7be428c86bfff71628f56413fa3110cf0937e8ba24ccb4" + sha256 ventura: "0fef6a116c728fc85aed039a03fb8ae0e9b850cb8156e689f3f63d26dc6ae803" + sha256 x86_64_linux: "22e73215745c6ca186413a0b85847bffbc1d744090e2a5542afbb129b9e2fb24" end depends_on "asciidoctor" => :build From cdac4cd82be3e584d3eb7ca2e6b92e10ec7fafba Mon Sep 17 00:00:00 2001 From: Patrick Linnane Date: Thu, 26 Dec 2024 17:42:33 +0000 Subject: [PATCH 54/55] youplot: update 0.4.6_1 bottle. --- Formula/y/youplot.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/y/youplot.rb b/Formula/y/youplot.rb index 29b2d50205ba0..bf58246dd76e7 100644 --- a/Formula/y/youplot.rb +++ b/Formula/y/youplot.rb @@ -7,14 +7,12 @@ class Youplot < Formula revision 1 bottle do - sha256 arm64_sequoia: "38af94e0b042576027ea48ddacfa7328a06da03115fd979ffe51ea78f20cce04" - sha256 arm64_sonoma: "34886703341b58e351283223a6fe19717d404120c709ed1a518753ac07f16e85" - sha256 arm64_ventura: "224f2643f50bbd531e19ec45f9a56ec760304379a943420a42c0038b0d5ca2c2" - sha256 arm64_monterey: "e2f7ef7149fec5451496cdc50394a718084180d792d08f7b7db3085db1f56fa3" - sha256 sonoma: "15297f02a8a7176c2cae1a2f541ce7bd8884b15d097070b8882ad6e2fc54d7a6" - sha256 ventura: "3ed832d8288148f3ce99bb857538dabcdca8821e33215db6910c2c0f7075a9ae" - sha256 monterey: "0ab163b9eb0c815a52b0ae4122d3e7ac41c2ad885c39b7106e0bd1b909cd3f92" - sha256 cellar: :any_skip_relocation, x86_64_linux: "e036b00579b5ab8dab662523782303690222a42b3f21197769191c690f1adb87" + sha256 arm64_sequoia: "f4f7a0b1d99fc9472d007745a96456a2d87626a21f9e2f1d781b81713904bc71" + sha256 arm64_sonoma: "0154fece0c0a8ddb10acbac21c168b33bacb2839ecc8f0f28d6d7dcf0ebe7047" + sha256 arm64_ventura: "4bb2dff5ad2c3ed7d664ef15b09ce44f03b2ec9cb01fa538b6420b9aba56d5c1" + sha256 sonoma: "3373ffb2e43529719160f9be85457e89a87eb20648ca158c4b369b38d762b39c" + sha256 ventura: "b642704f1c8f283ef82b61ece8ee89f5bc758949d36c0f66b3bacd192843b223" + sha256 cellar: :any_skip_relocation, x86_64_linux: "4c6afa1c010330d42e76bd3430040c5f289cea496fa805d0fb27a8494a33fd43" end uses_from_macos "ruby" From c8533e672e120bbd26e58697c30c7abf291b59f6 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Thu, 26 Dec 2024 14:24:50 -0500 Subject: [PATCH 55/55] ruby: update bottle sha Co-authored-by: Carlo Cabrera --- Formula/r/ruby.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/r/ruby.rb b/Formula/r/ruby.rb index c96e49fb5ed14..8377a8ce9fc8a 100644 --- a/Formula/r/ruby.rb +++ b/Formula/r/ruby.rb @@ -31,7 +31,7 @@ class Ruby < Formula sha256 arm64_sequoia: "138b6437f47834712668a08b7c686a47f64daf6f08458994cca854e481c7906a" sha256 arm64_sonoma: "989bd02640cc28e4f3c14adc6ce58e26cc07d501dbde42c6e0d06277e696de42" sha256 arm64_ventura: "30ff9cb5a990235992baeba80bd230e419992470e8b512c8cad1134d2e8d2c8f" - sha256 sonoma: "78e1af582c5b4638b4efc7427a5c87fa108f1748855771cdee989613fe79c161" + sha256 sonoma: "100b8abb629f8e1f18aba5e5d00b5051cf0fcc4a15214d41cecb3c7087f7c660" sha256 ventura: "3ddbd71146baecb8c2c8bc8481a2c07a23ae4fc11919ad5c853e15fb22019e62" sha256 x86_64_linux: "c1569b364596688221d086a093f152f0ff76a25c6bef75e5aba6eda3f0404055" end