From 0929f8d8bb0bf211d370c25aa823c28fd5caff1b Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Tue, 16 Apr 2024 18:14:26 -0400 Subject: [PATCH 01/91] icu4c@75 75.1 (new formula) --- Formula/i/icu4c@75.rb | 44 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 Formula/i/icu4c@75.rb diff --git a/Formula/i/icu4c@75.rb b/Formula/i/icu4c@75.rb new file mode 100644 index 0000000000000..672291ecc306b --- /dev/null +++ b/Formula/i/icu4c@75.rb @@ -0,0 +1,44 @@ +class Icu4cAT75 < Formula + desc "C/C++ and Java libraries for Unicode and globalization" + homepage "https://icu.unicode.org/home" + url "https://github.com/unicode-org/icu/releases/download/release-75-1/icu4c-75_1-src.tgz" + version "75.1" + sha256 "cb968df3e4d2e87e8b11c49a5d01c787bd13b9545280fc6642f826527618caef" + license "ICU" + + livecheck do + url :stable + regex(/^release[._-]v?(\d+(?:[.-]\d+)+)$/i) + strategy :git do |tags, regex| + tags.filter_map { |tag| tag[regex, 1]&.tr("-", ".") } + end + end + + # TODO: Switch keg_only reason after renaming `icu4c` formula to `icu4c@74` and updating alias to `icu4c@75` + # keg_only :provided_by_macos, "macOS provides libicucore.dylib (but nothing else)" + keg_only :versioned_formula + + def install + args = %w[ + --disable-samples + --disable-tests + --enable-static + --with-library-bits=64 + ] + + cd "source" do + system "./configure", *args, *std_configure_args + system "make" + system "make", "install" + end + end + + test do + if File.exist? "/usr/share/dict/words" + system bin/"gendict", "--uchars", "/usr/share/dict/words", "dict" + else + (testpath/"hello").write "hello\nworld\n" + system bin/"gendict", "--uchars", "hello", "dict" + end + end +end From 0e0371d13914b98b013f38da6a09e5a59fcc2f0d Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Tue, 16 Apr 2024 18:27:33 -0400 Subject: [PATCH 02/91] icu4c: add `icu4c@74` alias --- Aliases/icu4c@74 | 1 + 1 file changed, 1 insertion(+) create mode 120000 Aliases/icu4c@74 diff --git a/Aliases/icu4c@74 b/Aliases/icu4c@74 new file mode 120000 index 0000000000000..508f4bd25f1d2 --- /dev/null +++ b/Aliases/icu4c@74 @@ -0,0 +1 @@ +../Formula/i/icu4c.rb \ No newline at end of file From 63e8e713220d615d8b7a9413759628879334dd55 Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Tue, 16 Apr 2024 18:43:48 -0400 Subject: [PATCH 03/91] apngasm: revision bump to migrate to `icu4c@75` --- Formula/a/apngasm.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/a/apngasm.rb b/Formula/a/apngasm.rb index 60bcf354899b2..7b9f380eaaf79 100644 --- a/Formula/a/apngasm.rb +++ b/Formula/a/apngasm.rb @@ -4,7 +4,7 @@ class Apngasm < Formula url "https://github.com/apngasm/apngasm/archive/refs/tags/3.1.10.tar.gz" sha256 "8171e2c1d37ab231a2061320cb1e5d15cee37642e3ce78e8ab0b8dfc45b80f6c" license "Zlib" - revision 12 + revision 13 head "https://github.com/apngasm/apngasm.git", branch: "master" bottle do @@ -20,7 +20,7 @@ class Apngasm < Formula depends_on "cmake" => :build depends_on "boost" - depends_on "icu4c" + depends_on "icu4c@75" depends_on "libpng" depends_on "lzlib" depends_on macos: :catalina From e62c1ca26dbd569f5fe104f505eb8ce80b6dcde7 Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Tue, 16 Apr 2024 18:37:37 -0400 Subject: [PATCH 04/91] boost: revision bump to migrate to `icu4c@75` --- Formula/b/boost.rb | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/Formula/b/boost.rb b/Formula/b/boost.rb index a28dd4f9d4bea..e336c577b6e4f 100644 --- a/Formula/b/boost.rb +++ b/Formula/b/boost.rb @@ -2,6 +2,7 @@ class Boost < Formula desc "Collection of portable C++ source libraries" homepage "https://www.boost.org/" license "BSL-1.0" + revision 1 head "https://github.com/boostorg/boost.git", branch: "master" stable do @@ -41,7 +42,7 @@ class Boost < Formula sha256 cellar: :any_skip_relocation, x86_64_linux: "9b54de744fca5203371e41bbe08f18fe347d9873558b9b0e1c40b60e4bc5515c" end - depends_on "icu4c" + depends_on "icu4c@75" depends_on "xz" depends_on "zstd" @@ -59,11 +60,11 @@ def install end # libdir should be set by --prefix but isn't - icu4c_prefix = Formula["icu4c"].opt_prefix + icu4c = deps.map(&:to_formula).find { |f| f.name.match?(/^icu4c@\d+$/) } bootstrap_args = %W[ --prefix=#{prefix} --libdir=#{lib} - --with-icu=#{icu4c_prefix} + --with-icu=#{icu4c.opt_prefix} ] # Handle libraries that will not be built. @@ -88,9 +89,10 @@ def install link=shared,static ] - # Boost is using "clang++ -x c" to select C compiler which breaks C++14 - # handling using ENV.cxx14. Using "cxxflags" and "linkflags" still works. - args << "cxxflags=-std=c++14" + # Boost is using "clang++ -x c" to select C compiler which breaks C++ + # handling in superenv. Using "cxxflags" and "linkflags" still works. + # C++17 is due to `icu4c`. + args << "cxxflags=-std=c++17" args << "cxxflags=-stdlib=libc++" << "linkflags=-stdlib=libc++" if ENV.compiler == :clang system "./bootstrap.sh", *bootstrap_args From ef26798fa252d05daf58211027d627ea605ea4ed Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Tue, 16 Apr 2024 18:56:50 -0400 Subject: [PATCH 05/91] dotnet@6: revision bump to migrate to `icu4c@75` --- Formula/d/dotnet@6.rb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Formula/d/dotnet@6.rb b/Formula/d/dotnet@6.rb index 429d2d1456b4d..134d67b3ce1cd 100644 --- a/Formula/d/dotnet@6.rb +++ b/Formula/d/dotnet@6.rb @@ -6,6 +6,7 @@ class DotnetAT6 < Formula tag: "v6.0.133", revision: "48ad8f7176f00900ff49df9fb936bc7c8c79d345" license "MIT" + revision 1 bottle do sha256 cellar: :any, arm64_sonoma: "2f732d33c49d2549ca9bd05907d4e86d7c54cb5264b9bc27844118cde98fe5ea" @@ -23,7 +24,7 @@ class DotnetAT6 < Formula depends_on "cmake" => :build depends_on "pkg-config" => :build depends_on "python@3.12" => :build - depends_on "icu4c" + depends_on "icu4c@75" depends_on "openssl@3" uses_from_macos "llvm" => :build @@ -106,7 +107,8 @@ def clang19_patch def install if OS.linux? - ENV.append_path "LD_LIBRARY_PATH", Formula["icu4c"].opt_lib + icu4c = deps.map(&:to_formula).find { |f| f.name.match?(/^icu4c@\d+$/) } + ENV.append_path "LD_LIBRARY_PATH", icu4c.opt_lib if OS.linux? ENV.append_to_cflags "-I#{Formula["krb5"].opt_include}" ENV.append_to_cflags "-I#{Formula["zlib"].opt_include}" end From f4e63a1e434cfff35eb9c2657efe10d2d408c06a Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Tue, 16 Apr 2024 18:57:53 -0400 Subject: [PATCH 06/91] easyrpg-player: revision bump to migrate to `icu4c@75` --- Formula/e/easyrpg-player.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/e/easyrpg-player.rb b/Formula/e/easyrpg-player.rb index 2f48da0d49deb..a845ed9adb504 100644 --- a/Formula/e/easyrpg-player.rb +++ b/Formula/e/easyrpg-player.rb @@ -4,7 +4,7 @@ class EasyrpgPlayer < Formula url "https://easyrpg.org/downloads/player/0.8/easyrpg-player-0.8.tar.xz" sha256 "06e6d034348d1c52993d0be6b88fc3502a6c7718e366f691401539d5a2195c79" license "GPL-3.0-or-later" - revision 4 + revision 5 livecheck do url "https://github.com/EasyRPG/Player.git" @@ -26,7 +26,7 @@ class EasyrpgPlayer < Formula depends_on "fmt" depends_on "freetype" depends_on "harfbuzz" - depends_on "icu4c" + depends_on "icu4c@75" depends_on "liblcf" depends_on "libpng" depends_on "libsndfile" From d3d55839b2835d70d91f5797a4f3831899341baf Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Tue, 16 Apr 2024 19:28:43 -0400 Subject: [PATCH 07/91] freeciv: revision bump to migrate to `icu4c@75` --- Formula/f/freeciv.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Formula/f/freeciv.rb b/Formula/f/freeciv.rb index 442bc7a1c17ec..b209e1e586161 100644 --- a/Formula/f/freeciv.rb +++ b/Formula/f/freeciv.rb @@ -4,6 +4,7 @@ class Freeciv < Formula url "https://downloads.sourceforge.net/project/freeciv/Freeciv%203.1/3.1.2/freeciv-3.1.2.tar.xz" sha256 "7ab19d218a023306091a34e5c3bc3fd70981d8ebc4b9542c1646827dede55828" license "GPL-2.0-or-later" + revision 1 livecheck do url :stable @@ -40,7 +41,7 @@ class Freeciv < Formula depends_on "glib" depends_on "gtk+3" depends_on "harfbuzz" - depends_on "icu4c" + depends_on "icu4c@75" depends_on "pango" depends_on "readline" depends_on "sdl2" From 91c7bbff658d8fe98cf8b317175fb6e0df60e433 Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Tue, 16 Apr 2024 19:29:02 -0400 Subject: [PATCH 08/91] freeling: revision bump to migrate to `icu4c@75` --- Formula/f/freeling.rb | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Formula/f/freeling.rb b/Formula/f/freeling.rb index 6ecf787cc8995..4cec429e136c1 100644 --- a/Formula/f/freeling.rb +++ b/Formula/f/freeling.rb @@ -4,7 +4,7 @@ class Freeling < Formula url "https://github.com/TALP-UPC/FreeLing/releases/download/4.2/FreeLing-src-4.2.1.tar.gz" sha256 "c672a6379142ac2e872741e7662f17eccd8230bffc680564d2843d87480f1600" license "AGPL-3.0-only" - revision 5 + revision 6 bottle do sha256 cellar: :any, arm64_sequoia: "247d7a29b0f294b2907de43d169bc1a248675b87b7981c211b8283a0e4fe72a5" @@ -19,16 +19,18 @@ class Freeling < Formula depends_on "cmake" => :build depends_on "boost" - depends_on "icu4c" + depends_on "icu4c@75" conflicts_with "dynet", because: "freeling ships its own copy of dynet" conflicts_with "eigen", because: "freeling ships its own copy of eigen" conflicts_with "foma", because: "freeling ships its own copy of foma" conflicts_with "hunspell", because: "both install 'analyze' binary" - conflicts_with "crfsuite", because: "both install `crfsuite` binaries" def install + # icu4c 75+ needs C++17 + inreplace "CMakeLists.txt", "set(CMAKE_CXX_STANDARD 11)", "set(CMAKE_CXX_STANDARD 17)" + system "cmake", "-S", ".", "-B", "build", *std_cmake_args system "cmake", "--build", "build" system "cmake", "--install", "build" From 90351906789eae9014bddadd24d89c264d1fb298 Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Tue, 16 Apr 2024 18:55:59 -0400 Subject: [PATCH 09/91] gspell: revision bump to migrate to `icu4c@75` --- Formula/g/gspell.rb | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Formula/g/gspell.rb b/Formula/g/gspell.rb index e01a80ea4a03a..0150e116cf1b0 100644 --- a/Formula/g/gspell.rb +++ b/Formula/g/gspell.rb @@ -4,6 +4,7 @@ class Gspell < Formula url "https://download.gnome.org/sources/gspell/1.14/gspell-1.14.0.tar.xz" sha256 "64ea1d8e9edc1c25b45a920e80daf67559d1866ffcd7f8432fecfea6d0fe8897" license "LGPL-2.1-or-later" + revision 1 bottle do sha256 arm64_sequoia: "a3d28d4743f36aa5324d601af39343d2cb0b927576f46de016bd52c1f1cf13fb" @@ -27,7 +28,7 @@ class Gspell < Formula depends_on "glib" depends_on "gtk+3" depends_on "harfbuzz" - depends_on "icu4c" + depends_on "icu4c@75" depends_on "pango" on_macos do @@ -55,7 +56,9 @@ def install return 0; } EOS - ENV.prepend_path "PKG_CONFIG_PATH", Formula["icu4c"].opt_lib/"pkgconfig" if OS.mac? + + icu4c = deps.map(&:to_formula).find { |f| f.name.match?(/^icu4c@\d+$/) } + ENV.prepend_path "PKG_CONFIG_PATH", icu4c.opt_lib/"pkgconfig" flags = shell_output("pkg-config --cflags --libs gspell-1").chomp.split system ENV.cc, "test.c", "-o", "test", *flags ENV["G_DEBUG"] = "fatal-warnings" From b76ad4660b751e5707f2547a7db79525479b4737 Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Tue, 16 Apr 2024 18:31:38 -0400 Subject: [PATCH 10/91] harfbuzz: revision bump to migrate to `icu4c@75` --- Formula/h/harfbuzz.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Formula/h/harfbuzz.rb b/Formula/h/harfbuzz.rb index cb070e6caf2d5..d5b19bd2ca3d4 100644 --- a/Formula/h/harfbuzz.rb +++ b/Formula/h/harfbuzz.rb @@ -4,6 +4,7 @@ class Harfbuzz < Formula url "https://github.com/harfbuzz/harfbuzz/archive/refs/tags/10.0.1.tar.gz" sha256 "e7358ea86fe10fb9261931af6f010d4358dac64f7074420ca9bc94aae2bdd542" license "MIT" + revision 1 head "https://github.com/harfbuzz/harfbuzz.git", branch: "main" bottle do @@ -25,7 +26,7 @@ class Harfbuzz < Formula depends_on "freetype" depends_on "glib" depends_on "graphite2" - depends_on "icu4c" + depends_on "icu4c@75" resource "homebrew-test-ttf" do url "https://github.com/harfbuzz/harfbuzz/raw/fc0daafab0336b847ac14682e581a8838f36a0bf/test/shaping/fonts/sha1sum/270b89df543a7e48e206a2d830c0e10e5265c630.ttf" From 7b532a8597170b59af9d20c6b59385223f6dfc9a Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Tue, 16 Apr 2024 19:29:22 -0400 Subject: [PATCH 11/91] libcdr: revision bump to migrate to `icu4c@75` --- Formula/lib/libcdr.rb | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Formula/lib/libcdr.rb b/Formula/lib/libcdr.rb index ff23eeca800e9..489fcd163171a 100644 --- a/Formula/lib/libcdr.rb +++ b/Formula/lib/libcdr.rb @@ -4,7 +4,7 @@ class Libcdr < Formula url "https://dev-www.libreoffice.org/src/libcdr/libcdr-0.1.7.tar.xz" sha256 "5666249d613466b9aa1e987ea4109c04365866e9277d80f6cd9663e86b8ecdd4" license "MPL-2.0" - revision 6 + revision 7 livecheck do url "https://dev-www.libreoffice.org/src/" @@ -25,11 +25,14 @@ class Libcdr < Formula depends_on "boost" => :build depends_on "pkg-config" => :build - depends_on "icu4c" + depends_on "icu4c@75" depends_on "librevenge" depends_on "little-cms2" def install + # icu4c 75+ needs C++17 + ENV.append "CXXFLAGS", "-std=gnu++17" + system "./configure", "--disable-silent-rules", "--disable-tests", "--disable-werror", From f820001244c7a3407ae38e86fc19e605a2cabc1e Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Tue, 16 Apr 2024 18:57:33 -0400 Subject: [PATCH 12/91] liblcf: revision bump to migrate to `icu4c@75` --- Formula/lib/liblcf.rb | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/Formula/lib/liblcf.rb b/Formula/lib/liblcf.rb index e7c5ee5e53cef..d8f6ba5dfbff1 100644 --- a/Formula/lib/liblcf.rb +++ b/Formula/lib/liblcf.rb @@ -1,12 +1,21 @@ class Liblcf < Formula desc "Library for RPG Maker 2000/2003 games data" homepage "https://easyrpg.org/" - url "https://easyrpg.org/downloads/player/0.8/liblcf-0.8.tar.xz" - sha256 "6b0d8c7fefe3d66865336406f69ddf03fe59e52b5601687265a4d1e47a25c386" license "MIT" - revision 2 + revision 3 head "https://github.com/EasyRPG/liblcf.git", branch: "master" + stable do + url "https://easyrpg.org/downloads/player/0.8/liblcf-0.8.tar.xz" + sha256 "6b0d8c7fefe3d66865336406f69ddf03fe59e52b5601687265a4d1e47a25c386" + + # Backport C++17 for `icu4c` 75. Remove in the next release. + patch do + url "https://github.com/EasyRPG/liblcf/commit/8c782e54ba244981141d91e7d44922952563677c.patch?full_index=1" + sha256 "593f729e7f9a5411e6d8548aaac0039e09eee437f525409a9ca8513a0ee15cd0" + end + end + bottle do sha256 cellar: :any, arm64_sequoia: "1ccfa697b76af2be4dc824897e01f19930b77d38064b1f68db20eec27ab9f57b" sha256 cellar: :any, arm64_sonoma: "e6b2a50537cda6de3f2de66da5eab8887b60e2fe89b773737b5f18b936305244" @@ -20,7 +29,7 @@ class Liblcf < Formula depends_on "cmake" => :build depends_on "expat" # Building against `liblcf` fails with `uses_from_macos` - depends_on "icu4c" + depends_on "icu4c@75" def install system "cmake", "-S", ".", "-B", "build", From 50933b7be05d307be33d2f7d90c426faa6a1504d Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Tue, 16 Apr 2024 19:29:42 -0400 Subject: [PATCH 13/91] libmspub: revision bump to migrate to `icu4c@75` --- Formula/lib/libmspub.rb | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/Formula/lib/libmspub.rb b/Formula/lib/libmspub.rb index b515582b64b12..0a0ca57e77b18 100644 --- a/Formula/lib/libmspub.rb +++ b/Formula/lib/libmspub.rb @@ -4,7 +4,7 @@ class Libmspub < Formula url "https://dev-www.libreoffice.org/src/libmspub/libmspub-0.1.4.tar.xz" sha256 "ef36c1a1aabb2ba3b0bedaaafe717bf4480be2ba8de6f3894be5fd3702b013ba" license "MPL-2.0" - revision 15 + revision 16 livecheck do url "https://dev-www.libreoffice.org/src/" @@ -25,7 +25,7 @@ class Libmspub < Formula depends_on "boost" => :build depends_on "libwpg" => :build depends_on "pkg-config" => :build - depends_on "icu4c" + depends_on "icu4c@75" depends_on "librevenge" depends_on "libwpd" @@ -36,12 +36,15 @@ class Libmspub < Formula end def install - system "./configure", "--without-docs", - "--disable-dependency-tracking", - "--enable-static=no", - "--disable-werror", + # icu4c 75+ needs C++17 + ENV.append "CXXFLAGS", "-std=gnu++17" + + system "./configure", "--disable-silent-rules", + "--disable-static", "--disable-tests", - "--prefix=#{prefix}" + "--disable-werror", + "--without-docs", + *std_configure_args system "make", "install" end From a9acb68b09ad7d6ea350b18be04ab594a8bdd907 Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Tue, 16 Apr 2024 19:22:58 -0400 Subject: [PATCH 14/91] libphonenumber: revision bump to migrate to `icu4c@75` --- Formula/lib/libphonenumber.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Formula/lib/libphonenumber.rb b/Formula/lib/libphonenumber.rb index 57b9131ac71d1..afae4fdb37204 100644 --- a/Formula/lib/libphonenumber.rb +++ b/Formula/lib/libphonenumber.rb @@ -4,6 +4,7 @@ class Libphonenumber < Formula url "https://github.com/google/libphonenumber/archive/refs/tags/v8.13.47.tar.gz" sha256 "b56ef9dbdfd91968242d63e38457cf58f1c03ddff5a9cb8862dd0138419f6cd2" license "Apache-2.0" + revision 1 livecheck do url :stable @@ -23,7 +24,7 @@ class Libphonenumber < Formula depends_on "openjdk" => :build depends_on "abseil" depends_on "boost" - depends_on "icu4c" + depends_on "icu4c@75" depends_on "protobuf" fails_with gcc: "5" # For abseil and C++17 From 554db318715c08765245abe543c6c0a50b04bf0f Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Tue, 16 Apr 2024 18:55:26 -0400 Subject: [PATCH 15/91] libpq: revision bump to migrate to `icu4c@75` --- Formula/lib/libpq.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Formula/lib/libpq.rb b/Formula/lib/libpq.rb index 3feb7451ad27e..e3cb4af0f85ea 100644 --- a/Formula/lib/libpq.rb +++ b/Formula/lib/libpq.rb @@ -4,6 +4,7 @@ class Libpq < Formula url "https://ftp.postgresql.org/pub/source/v17.0/postgresql-17.0.tar.bz2" sha256 "7e276131c0fdd6b62588dbad9b3bb24b8c3498d5009328dba59af16e819109de" license "PostgreSQL" + revision 1 livecheck do url "https://ftp.postgresql.org/pub/source/" @@ -24,7 +25,7 @@ class Libpq < Formula depends_on "docbook" => :build depends_on "docbook-xsl" => :build depends_on "pkg-config" => :build - depends_on "icu4c" + depends_on "icu4c@75" # GSSAPI provided by Kerberos.framework crashes when forked. # See https://github.com/Homebrew/homebrew-core/issues/47494. depends_on "krb5" From 260bba20b7f4a8a99d317e507fd84905292d1907 Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Tue, 16 Apr 2024 19:30:02 -0400 Subject: [PATCH 16/91] libvisio: revision bump to migrate to `icu4c@75` --- Formula/lib/libvisio.rb | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Formula/lib/libvisio.rb b/Formula/lib/libvisio.rb index a0c2e3c1a7346..24549213c62f9 100644 --- a/Formula/lib/libvisio.rb +++ b/Formula/lib/libvisio.rb @@ -4,7 +4,7 @@ class Libvisio < Formula url "https://dev-www.libreoffice.org/src/libvisio/libvisio-0.1.7.tar.xz" sha256 "8faf8df870cb27b09a787a1959d6c646faa44d0d8ab151883df408b7166bea4c" license "MPL-2.0" - revision 9 + revision 10 livecheck do url "https://dev-www.libreoffice.org/src/" @@ -25,13 +25,16 @@ class Libvisio < Formula depends_on "boost" => :build depends_on "pkg-config" => :build - depends_on "icu4c" + depends_on "icu4c@75" depends_on "librevenge" uses_from_macos "gperf" => :build uses_from_macos "libxml2" def install + # icu4c 75+ needs C++17 + ENV.append "CXXFLAGS", "-std=gnu++17" + system "./configure", "--disable-silent-rules", "--disable-static", "--disable-tests", From c38f10d8f2da600bf35b89937c0b4a5d6cfe6c07 Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Tue, 16 Apr 2024 19:14:06 -0400 Subject: [PATCH 17/91] libxml2: revision bump to migrate to `icu4c@75` --- Formula/lib/libxml2.rb | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/Formula/lib/libxml2.rb b/Formula/lib/libxml2.rb index 43eabbc949133..55c50f2a03b9f 100644 --- a/Formula/lib/libxml2.rb +++ b/Formula/lib/libxml2.rb @@ -4,6 +4,7 @@ class Libxml2 < Formula url "https://download.gnome.org/sources/libxml2/2.13/libxml2-2.13.4.tar.xz" sha256 "65d042e1c8010243e617efb02afda20b85c2160acdbfbcb5b26b80cec6515650" license "MIT" + revision 1 # We use a common regex because libxml2 doesn't use GNOME's "even-numbered # minor is stable" version scheme. @@ -32,11 +33,10 @@ class Libxml2 < Formula keg_only :provided_by_macos - depends_on "python-setuptools" => :build depends_on "python@3.11" => [:build, :test] depends_on "python@3.12" => [:build, :test] depends_on "pkg-config" => :test - depends_on "icu4c" + depends_on "icu4c@75" depends_on "readline" uses_from_macos "zlib" @@ -48,6 +48,12 @@ def pythons end def install + # Work around build failure due to icu4c 75+ adding -std=c11 to installed + # files when built without manually setting "-std=" in CFLAGS. This causes + # issues on Linux for `libxml2` as `addrinfo` needs GNU extensions. + # nanohttp.c:1019:42: error: invalid use of undefined type 'struct addrinfo' + ENV.append "CFLAGS", "-std=gnu11" if OS.linux? + system "autoreconf", "--force", "--install", "--verbose" if build.head? system "./configure", *std_configure_args, "--sysconfdir=#{etc}", @@ -79,7 +85,8 @@ def install # https://github.com/Homebrew/homebrew-core/pull/154551#issuecomment-1820102786 with_env(PYTHONPATH: buildpath/"python") do pythons.each do |python| - system python, "-m", "pip", "install", *std_pip_args, "." + build_isolation = Language::Python.major_minor_version(python) >= "3.12" + system python, "-m", "pip", "install", *std_pip_args(build_isolation:), "." end end end From 2aa12f724e319f555da42558c2127d996eeda3c5 Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Tue, 16 Apr 2024 19:18:43 -0400 Subject: [PATCH 18/91] libxslt: revision bump to migrate to `icu4c@75` Drop dependency as it isn't directly used --- Formula/lib/libxslt.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/lib/libxslt.rb b/Formula/lib/libxslt.rb index 6cecba0c2692b..11989a36980c8 100644 --- a/Formula/lib/libxslt.rb +++ b/Formula/lib/libxslt.rb @@ -4,6 +4,7 @@ class Libxslt < Formula url "https://download.gnome.org/sources/libxslt/1.1/libxslt-1.1.42.tar.xz" sha256 "85ca62cac0d41fc77d3f6033da9df6fd73d20ea2fc18b0a3609ffb4110e1baeb" license "X11" + revision 1 # We use a common regex because libxslt doesn't use GNOME's "even-numbered # minor is stable" version scheme. @@ -33,7 +34,6 @@ class Libxslt < Formula keg_only :provided_by_macos - depends_on "icu4c" depends_on "libgcrypt" depends_on "libxml2" From f9240b6499b04dadba825fba607518fcbc10eb23 Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Tue, 16 Apr 2024 19:30:20 -0400 Subject: [PATCH 19/91] manticoresearch: revision bump to migrate to `icu4c@75` --- Formula/m/manticoresearch.rb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Formula/m/manticoresearch.rb b/Formula/m/manticoresearch.rb index 94ae908579a44..3e2ccad757844 100644 --- a/Formula/m/manticoresearch.rb +++ b/Formula/m/manticoresearch.rb @@ -9,6 +9,7 @@ class Manticoresearch < Formula { "GPL-2.0-only" => { with: "x11vnc-openssl-exception" } }, # galera { any_of: ["Unlicense", "MIT"] }, # uni-algo (our formula is too new) ] + revision 1 version_scheme 1 head "https://github.com/manticoresoftware/manticoresearch.git", branch: "master" @@ -36,7 +37,7 @@ class Manticoresearch < Formula # NOTE: `libpq`, `mysql-client`, `unixodbc` and `zstd` are dynamically loaded rather than linked depends_on "cctz" - depends_on "icu4c" + depends_on "icu4c@75" depends_on "libpq" depends_on "mysql-client" depends_on "openssl@3" @@ -57,7 +58,8 @@ def install # Issue ref: https://github.com/manticoresoftware/manticoresearch/issues/2393 ENV.append_to_cflags "-fpermissive" if OS.linux? - ENV["ICU_ROOT"] = Formula["icu4c"].opt_prefix.to_s + icu4c = deps.map(&:to_formula).find { |f| f.name.match?(/^icu4c@\d+$/) } + ENV["ICU_ROOT"] = icu4c.opt_prefix.to_s ENV["OPENSSL_ROOT_DIR"] = Formula["openssl@3"].opt_prefix.to_s ENV["MYSQL_ROOT_DIR"] = Formula["mysql-client"].opt_prefix.to_s ENV["PostgreSQL_ROOT"] = Formula["libpq"].opt_prefix.to_s From 07ab6277c2d4ed66d7a786eb9952e9ca3b8792d5 Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Tue, 16 Apr 2024 19:30:58 -0400 Subject: [PATCH 20/91] mapnik: revision bump to migrate to `icu4c@75` --- Formula/m/mapnik.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Formula/m/mapnik.rb b/Formula/m/mapnik.rb index 452fde9fc2cbc..5ec26a0abf4dc 100644 --- a/Formula/m/mapnik.rb +++ b/Formula/m/mapnik.rb @@ -6,6 +6,7 @@ class Mapnik < Formula tag: "v4.0.2", revision: "5f327ff3c88d8acca7c5db15b598258eea363aa7" license "LGPL-2.1-or-later" + revision 1 head "https://github.com/mapnik/mapnik.git", branch: "master" livecheck do @@ -31,7 +32,7 @@ class Mapnik < Formula depends_on "freetype" depends_on "gdal" depends_on "harfbuzz" - depends_on "icu4c" + depends_on "icu4c@75" depends_on "jpeg-turbo" depends_on "libpng" depends_on "libpq" From e0f96b29d55c4a0153343d4360aa72100bc37d32 Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Tue, 16 Apr 2024 19:40:34 -0400 Subject: [PATCH 21/91] mpd: revision bump to migrate to `icu4c@75` --- Formula/m/mpd.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/m/mpd.rb b/Formula/m/mpd.rb index e53ce7a610486..74939ff36cfa5 100644 --- a/Formula/m/mpd.rb +++ b/Formula/m/mpd.rb @@ -2,7 +2,7 @@ class Mpd < Formula desc "Music Player Daemon" homepage "https://github.com/MusicPlayerDaemon/MPD" license "GPL-2.0-or-later" - revision 3 + revision 4 head "https://github.com/MusicPlayerDaemon/MPD.git", branch: "master" stable do @@ -46,7 +46,7 @@ class Mpd < Formula depends_on "fluid-synth" depends_on "fmt" depends_on "glib" - depends_on "icu4c" + depends_on "icu4c@75" depends_on "lame" depends_on "libao" depends_on "libgcrypt" From c409b8b50704cc68df5498b3f4acc4b5fcb79cbe Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Tue, 16 Apr 2024 19:21:52 -0400 Subject: [PATCH 22/91] mysql: revision bump to migrate to `icu4c@75` --- Formula/m/mysql.rb | 50 +++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 47 insertions(+), 3 deletions(-) diff --git a/Formula/m/mysql.rb b/Formula/m/mysql.rb index c0db36a379d1a..d384438a5d77d 100644 --- a/Formula/m/mysql.rb +++ b/Formula/m/mysql.rb @@ -4,7 +4,7 @@ class Mysql < Formula url "https://cdn.mysql.com/Downloads/MySQL-9.0/mysql-9.0.1.tar.gz" sha256 "18fa65f1ea6aea71e418fe0548552d9a28de68e2b8bc3ba9536599eb459a6606" license "GPL-2.0-only" => { with: "Universal-FOSS-exception-1.0" } - revision 3 + revision 4 livecheck do url "https://dev.mysql.com/downloads/mysql/?tpl=files&os=src" @@ -24,7 +24,7 @@ class Mysql < Formula depends_on "cmake" => :build depends_on "pkg-config" => :build depends_on "abseil" - depends_on "icu4c" + depends_on "icu4c@75" depends_on "lz4" depends_on "openssl@3" depends_on "protobuf" @@ -56,6 +56,11 @@ class Mysql < Formula cause "Requires C++20" end + # Patch out check for Homebrew `boost`. + # This should not be necessary when building inside `brew`. + # https://github.com/Homebrew/homebrew-test-bot/pull/820 + patch :DATA + def datadir var/"mysql" end @@ -87,6 +92,7 @@ def install ENV.prepend_path "HOMEBREW_LIBRARY_PATHS", Formula["llvm"].opt_lib/"c++" end + icu4c = deps.map(&:to_formula).find { |f| f.name.match?(/^icu4c@\d+$/) } # -DINSTALL_* are relative to `CMAKE_INSTALL_PREFIX` (`prefix`) # -DWITH_FIDO=system isn't set as feature isn't enabled and bundled copy was removed. # Formula paths are set to avoid HOMEBREW_HOME logic in CMake scripts @@ -102,7 +108,7 @@ def install -DSYSCONFDIR=#{etc} -DBISON_EXECUTABLE=#{Formula["bison"].opt_bin}/bison -DOPENSSL_ROOT_DIR=#{Formula["openssl@3"].opt_prefix} - -DWITH_ICU=#{Formula["icu4c"].opt_prefix} + -DWITH_ICU=#{icu4c.opt_prefix} -DWITH_SYSTEM_LIBS=ON -DWITH_BOOST=boost -DWITH_EDITLINE=system @@ -210,3 +216,41 @@ def caveats end end end + +__END__ +diff --git a/CMakeLists.txt b/CMakeLists.txt +index 438dff720c5..47863c17e23 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -1948,31 +1948,6 @@ MYSQL_CHECK_RAPIDJSON() + MYSQL_CHECK_FIDO() + MYSQL_CHECK_FIDO_DLLS() + +-IF(APPLE) +- GET_FILENAME_COMPONENT(HOMEBREW_BASE ${HOMEBREW_HOME} DIRECTORY) +- IF(EXISTS ${HOMEBREW_BASE}/include/boost) +- FOREACH(SYSTEM_LIB ICU LZ4 PROTOBUF ZSTD FIDO) +- IF(WITH_${SYSTEM_LIB} STREQUAL "system") +- MESSAGE(FATAL_ERROR +- "WITH_${SYSTEM_LIB}=system is not compatible with Homebrew boost\n" +- "MySQL depends on ${BOOST_PACKAGE_NAME} with a set of patches.\n" +- "Including headers from ${HOMEBREW_BASE}/include " +- "will break the build.\n" +- "Please use WITH_${SYSTEM_LIB}=bundled\n" +- "or do 'brew uninstall boost' or 'brew unlink boost'" +- ) +- ENDIF() +- ENDFOREACH() +- ENDIF() +- # Ensure that we look in /usr/local/include or /opt/homebrew/include +- FOREACH(SYSTEM_LIB ICU LZ4 PROTOBUF ZSTD FIDO) +- IF(WITH_${SYSTEM_LIB} STREQUAL "system") +- INCLUDE_DIRECTORIES(SYSTEM ${HOMEBREW_BASE}/include) +- BREAK() +- ENDIF() +- ENDFOREACH() +-ENDIF() +- + IF(WITH_AUTHENTICATION_WEBAUTHN OR + WITH_AUTHENTICATION_CLIENT_PLUGINS) + IF(WITH_FIDO STREQUAL "system" AND From 522fb6b8f37c30c32bb11c887ee8668664898f01 Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Tue, 16 Apr 2024 19:40:58 -0400 Subject: [PATCH 23/91] ncmpcpp: revision bump to migrate to `icu4c@75` --- Formula/n/ncmpcpp.rb | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Formula/n/ncmpcpp.rb b/Formula/n/ncmpcpp.rb index 5590cd4f09264..ec08c7c9b4e45 100644 --- a/Formula/n/ncmpcpp.rb +++ b/Formula/n/ncmpcpp.rb @@ -4,7 +4,7 @@ class Ncmpcpp < Formula url "https://rybczak.net/ncmpcpp/stable/ncmpcpp-0.9.2.tar.bz2" sha256 "faabf6157c8cb1b24a059af276e162fa9f9a3b9cd3810c43b9128860c9383a1b" license "GPL-2.0-or-later" - revision 17 + revision 18 livecheck do url "https://rybczak.net/ncmpcpp/installation/" @@ -33,7 +33,7 @@ class Ncmpcpp < Formula depends_on "pkg-config" => :build depends_on "boost" depends_on "fftw" - depends_on "icu4c" + depends_on "icu4c@75" depends_on "libmpdclient" depends_on "ncurses" depends_on "readline" @@ -42,16 +42,17 @@ class Ncmpcpp < Formula uses_from_macos "curl" def install - ENV.cxx11 + # Work around to build with icu4c 75 in stable release. Fixed in HEAD. + # Ref: https://github.com/ncmpcpp/ncmpcpp/commit/ba484cff1e4ac3225b6eb87dc94272daca88e613 + inreplace "configure", /\$std_cpp14\b/, "-std=c++17" if build.stable? ENV.append "LDFLAGS", "-liconv" if OS.mac? ENV.append "BOOST_LIB_SUFFIX", "-mt" ENV.append "CXXFLAGS", "-D_XOPEN_SOURCE_EXTENDED" - args = %W[ - --disable-dependency-tracking - --prefix=#{prefix} + args = %w[ + --disable-silent-rules --enable-clock --enable-outputs --enable-unicode @@ -61,7 +62,7 @@ def install ] system "./autogen.sh" if build.head? - system "./configure", *args + system "./configure", *args, *std_configure_args system "make" system "make", "install" end From c45f38bfd0c90ef3dbc16026c9308b9467d7ef77 Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Tue, 16 Apr 2024 18:37:19 -0400 Subject: [PATCH 24/91] node: revision bump to migrate to `icu4c@75` --- Formula/n/node.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Formula/n/node.rb b/Formula/n/node.rb index 69907fba8837b..5ca92ef2f37e6 100644 --- a/Formula/n/node.rb +++ b/Formula/n/node.rb @@ -4,6 +4,7 @@ class Node < Formula url "https://nodejs.org/dist/v22.9.0/node-v22.9.0.tar.xz" sha256 "a55aeb368dee93432f610127cf94ce682aac07b93dcbbaadd856df122c9239df" license "MIT" + revision 1 head "https://github.com/nodejs/node.git", branch: "main" livecheck do @@ -24,7 +25,7 @@ class Node < Formula depends_on "python@3.12" => :build depends_on "brotli" depends_on "c-ares" - depends_on "icu4c" + depends_on "icu4c@75" depends_on "libnghttp2" depends_on "libuv" depends_on "openssl@3" From 6e7564cae54c6a9904ef674f818cd2f6471b52be Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Tue, 16 Apr 2024 19:46:27 -0400 Subject: [PATCH 25/91] pazpar2: revision bump to migrate to `icu4c@75` --- Formula/p/pazpar2.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/p/pazpar2.rb b/Formula/p/pazpar2.rb index f300f7463b152..06d52610fc602 100644 --- a/Formula/p/pazpar2.rb +++ b/Formula/p/pazpar2.rb @@ -4,7 +4,7 @@ class Pazpar2 < Formula url "https://ftp.indexdata.com/pub/pazpar2/pazpar2-1.14.1.tar.gz" sha256 "9baf590adb52cd796eccf01144eeaaf7353db1fd05ae436bdb174fe24362db53" license "GPL-2.0-or-later" - revision 5 + revision 6 livecheck do url "https://ftp.indexdata.com/pub/pazpar2/" @@ -31,7 +31,7 @@ class Pazpar2 < Formula depends_on "pkg-config" => :build - depends_on "icu4c" + depends_on "icu4c@75" depends_on "yaz" uses_from_macos "libxml2" From fd22dc42a14fdf6bb4e6adaeec3a26ff6a910de4 Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Tue, 16 Apr 2024 19:21:31 -0400 Subject: [PATCH 26/91] percona-server: revision bump to migrate to `icu4c@75` --- Formula/p/percona-server.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Formula/p/percona-server.rb b/Formula/p/percona-server.rb index 6a8ba5d119c31..1f5eda9cc2dbf 100644 --- a/Formula/p/percona-server.rb +++ b/Formula/p/percona-server.rb @@ -5,6 +5,7 @@ class PerconaServer < Formula url "https://downloads.percona.com/downloads/Percona-Server-8.0/Percona-Server-8.0.36-28/source/tarball/percona-server-8.0.36-28.tar.gz" sha256 "8a4b44bd9cf79a38e6275e8f5f9d4e8d2c308854b71fd5bf5d1728fff43a6844" license "BSD-3-Clause" + revision 1 livecheck do url "https://docs.percona.com/percona-server/latest/" @@ -32,7 +33,7 @@ class PerconaServer < Formula depends_on "bison" => :build depends_on "cmake" => :build depends_on "pkg-config" => :build - depends_on "icu4c" + depends_on "icu4c@75" depends_on "libevent" depends_on "libfido2" depends_on "lz4" From aa20054504f0ef44b497874dcb48f7de17c949d2 Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Tue, 16 Apr 2024 19:13:17 -0400 Subject: [PATCH 27/91] php: revision bump to migrate to `icu4c@75` --- Formula/p/php.rb | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Formula/p/php.rb b/Formula/p/php.rb index 1db4bd4c3bb33..5496f95447fa9 100644 --- a/Formula/p/php.rb +++ b/Formula/p/php.rb @@ -6,6 +6,7 @@ class Php < Formula mirror "https://fossies.org/linux/www/php-8.3.12.tar.xz" sha256 "f774e28633e26fc8c5197f4dae58ec9e3ff87d1b4311cbc61ab05a7ad24bd131" license "PHP-3.01" + revision 1 livecheck do url "https://www.php.net/downloads" @@ -40,7 +41,7 @@ class Php < Formula depends_on "gd" depends_on "gettext" depends_on "gmp" - depends_on "icu4c" + depends_on "icu4c@75" depends_on "krb5" depends_on "libpq" depends_on "libsodium" @@ -398,7 +399,7 @@ def caveats pid = fork do exec Formula["httpd"].opt_bin/"httpd", "-X", "-f", "#{testpath}/httpd.conf" end - sleep 3 + sleep 10 assert_match expected_output, shell_output("curl -s 127.0.0.1:#{port}") @@ -411,7 +412,7 @@ def caveats pid = fork do exec Formula["httpd"].opt_bin/"httpd", "-X", "-f", "#{testpath}/httpd-fpm.conf" end - sleep 3 + sleep 10 assert_match expected_output, shell_output("curl -s 127.0.0.1:#{port}") ensure From 2eddeeb0904c838917c48368259a2d859847bcc7 Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Tue, 16 Apr 2024 19:22:21 -0400 Subject: [PATCH 28/91] php@8.1: revision bump to migrate to `icu4c@75` --- Formula/p/php@8.1.rb | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/Formula/p/php@8.1.rb b/Formula/p/php@8.1.rb index 107f13265ddfd..096dbbbd10df8 100644 --- a/Formula/p/php@8.1.rb +++ b/Formula/p/php@8.1.rb @@ -6,6 +6,7 @@ class PhpAT81 < Formula mirror "https://fossies.org/linux/www/php-8.1.30.tar.xz" sha256 "f24a6007f0b25a53cb7fbaee69c85017e0345b62089c2425a0afb7e177192ed1" license "PHP-3.01" + revision 1 livecheck do url "https://www.php.net/downloads" @@ -39,7 +40,7 @@ class PhpAT81 < Formula depends_on "gd" depends_on "gettext" depends_on "gmp" - depends_on "icu4c" + depends_on "icu4c@75" depends_on "krb5" depends_on "libpq" depends_on "libsodium" @@ -73,6 +74,10 @@ def install "!= XML_PARSER_ENTITY_VALUE && parser->parser->instate != XML_PARSER_ATTRIBUTE_VALUE)", "== XML_PARSER_CONTENT)" + # Work around to support `icu4c` 75, which needs C++17. + # Can remove if upstream backports support into PHP 8.1 + ENV["ICU_CXXFLAGS"] = "-std=c++17" + # buildconf required due to system library linking bug patch system "./buildconf", "--force" @@ -407,7 +412,7 @@ def caveats pid = fork do exec Formula["httpd"].opt_bin/"httpd", "-X", "-f", "#{testpath}/httpd.conf" end - sleep 3 + sleep 10 assert_match expected_output, shell_output("curl -s 127.0.0.1:#{port}") @@ -420,7 +425,7 @@ def caveats pid = fork do exec Formula["httpd"].opt_bin/"httpd", "-X", "-f", "#{testpath}/httpd-fpm.conf" end - sleep 3 + sleep 10 assert_match expected_output, shell_output("curl -s 127.0.0.1:#{port}") ensure From bd8c347db3bf48db4a67d333605eaa65dc11de1c Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Tue, 16 Apr 2024 19:22:34 -0400 Subject: [PATCH 29/91] php@8.2: revision bump to migrate to `icu4c@75` --- Formula/p/php@8.2.rb | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Formula/p/php@8.2.rb b/Formula/p/php@8.2.rb index 2c85a44c36559..283dcd2ee1f77 100644 --- a/Formula/p/php@8.2.rb +++ b/Formula/p/php@8.2.rb @@ -6,6 +6,7 @@ class PhpAT82 < Formula mirror "https://fossies.org/linux/www/php-8.2.24.tar.xz" sha256 "80a5225746a9eb484475b312d4c626c63a88a037d8e56d214f30205e1ba1411a" license "PHP-3.01" + revision 1 livecheck do url "https://www.php.net/downloads" @@ -39,7 +40,7 @@ class PhpAT82 < Formula depends_on "gd" depends_on "gettext" depends_on "gmp" - depends_on "icu4c" + depends_on "icu4c@75" depends_on "krb5" depends_on "libpq" depends_on "libsodium" @@ -401,7 +402,7 @@ def caveats pid = fork do exec Formula["httpd"].opt_bin/"httpd", "-X", "-f", "#{testpath}/httpd.conf" end - sleep 3 + sleep 10 assert_match expected_output, shell_output("curl -s 127.0.0.1:#{port}") @@ -414,7 +415,7 @@ def caveats pid = fork do exec Formula["httpd"].opt_bin/"httpd", "-X", "-f", "#{testpath}/httpd-fpm.conf" end - sleep 3 + sleep 10 assert_match expected_output, shell_output("curl -s 127.0.0.1:#{port}") ensure From e70d641c36177278ada77a15e17048b5787f84c4 Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Tue, 16 Apr 2024 19:19:17 -0400 Subject: [PATCH 30/91] postgis: revision bump to migrate to `icu4c@75` --- Formula/p/postgis.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Formula/p/postgis.rb b/Formula/p/postgis.rb index ade54f39913dc..e6ceea22ad438 100644 --- a/Formula/p/postgis.rb +++ b/Formula/p/postgis.rb @@ -4,6 +4,7 @@ class Postgis < Formula url "https://download.osgeo.org/postgis/source/postgis-3.5.0.tar.gz" sha256 "ca698a22cc2b2b3467ac4e063b43a28413f3004ddd505bdccdd74c56a647f510" license "GPL-2.0-or-later" + revision 1 livecheck do url "https://download.osgeo.org/postgis/source/" @@ -34,7 +35,7 @@ class Postgis < Formula depends_on "gdal" depends_on "geos" - depends_on "icu4c" + depends_on "icu4c@75" depends_on "json-c" depends_on "libpq" depends_on "libxml2" From 393298bbfbc9e2ce809a1652993e996a1777f3c2 Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Tue, 16 Apr 2024 19:19:31 -0400 Subject: [PATCH 31/91] postgresql@14: revision bump to migrate to `icu4c@75` --- Formula/p/postgresql@14.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Formula/p/postgresql@14.rb b/Formula/p/postgresql@14.rb index 6688b58825a1d..c5de396bde444 100644 --- a/Formula/p/postgresql@14.rb +++ b/Formula/p/postgresql@14.rb @@ -4,6 +4,7 @@ class PostgresqlAT14 < Formula url "https://ftp.postgresql.org/pub/source/v14.13/postgresql-14.13.tar.bz2" sha256 "59aa3c4b495ab26a9ec69f3ad0a0228c51f0fe6facf3634dfad4d1197d613a56" license "PostgreSQL" + revision 1 livecheck do url "https://ftp.postgresql.org/pub/source/" @@ -25,7 +26,7 @@ class PostgresqlAT14 < Formula deprecate! date: "2026-11-12", because: :unsupported depends_on "pkg-config" => :build - depends_on "icu4c" + depends_on "icu4c@75" # GSSAPI provided by Kerberos.framework crashes when forked. # See https://github.com/Homebrew/homebrew-core/issues/47494. From 8ac915f8c80e5da90f4a3a713333ef768af48012 Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Tue, 16 Apr 2024 18:53:11 -0400 Subject: [PATCH 32/91] qt: revision bump to migrate to `icu4c@75` --- Formula/q/qt.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Formula/q/qt.rb b/Formula/q/qt.rb index 3e64d0a7e4d8b..a61456a4bd388 100644 --- a/Formula/q/qt.rb +++ b/Formula/q/qt.rb @@ -10,6 +10,7 @@ class Qt < Formula { "GPL-3.0-only" => { with: "Qt-GPL-exception-1.0" } }, "LGPL-3.0-only", ] + revision 1 head "https://code.qt.io/qt/qt5.git", branch: "dev" stable do @@ -72,7 +73,7 @@ class Qt < Formula depends_on "glib" depends_on "harfbuzz" depends_on "hunspell" - depends_on "icu4c" + depends_on "icu4c@75" depends_on "jasper" depends_on "jpeg-turbo" depends_on "libb2" From 6d55253d5e9b835c0fe9cde6534ace94eb5c1d14 Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Tue, 16 Apr 2024 19:20:51 -0400 Subject: [PATCH 33/91] sile: revision bump to migrate to `icu4c@75` --- Formula/s/sile.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Formula/s/sile.rb b/Formula/s/sile.rb index 8aff56931047e..87d725f98408e 100644 --- a/Formula/s/sile.rb +++ b/Formula/s/sile.rb @@ -4,6 +4,7 @@ class Sile < Formula url "https://github.com/sile-typesetter/sile/releases/download/v0.15.5/sile-0.15.5.tar.zst" sha256 "d20137b02d16302d287670fd285ad28ac3b8d3af916460aa6bc8cbff9321b9f9" license "MIT" + revision 1 bottle do sha256 cellar: :any, arm64_sequoia: "d917f65ee5c6f789430d31c28ff1129dcd59a463c103f4b6835511231ac1d25f" @@ -31,7 +32,7 @@ class Sile < Formula depends_on "fontconfig" depends_on "harfbuzz" - depends_on "icu4c" + depends_on "icu4c@75" depends_on "libpng" depends_on "luajit" depends_on "luarocks" From f53f3d9f75fcc3d355ac1b5ce9de94ed79fd0d5f Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Tue, 16 Apr 2024 19:20:32 -0400 Subject: [PATCH 34/91] tectonic: revision bump to migrate to `icu4c@75` --- Formula/t/tectonic.rb | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/Formula/t/tectonic.rb b/Formula/t/tectonic.rb index 1efecca1be0c2..179dc73825336 100644 --- a/Formula/t/tectonic.rb +++ b/Formula/t/tectonic.rb @@ -2,7 +2,7 @@ class Tectonic < Formula desc "Modernized, complete, self-contained TeX/LaTeX engine" homepage "https://tectonic-typesetting.github.io/" license "MIT" - revision 1 + revision 2 head "https://github.com/tectonic-typesetting/tectonic.git", branch: "master" stable do @@ -14,6 +14,12 @@ class Tectonic < Formula url "https://github.com/tectonic-typesetting/tectonic/commit/6b49ca8db40aaca29cb375ce75add3e575558375.patch?full_index=1" sha256 "86e5343d1ce3e725a7dab0227003dddd09dcdd5913eb9e5866612cb77962affb" end + + # Backport fix for icu4c 75 + patch do + url "https://github.com/tectonic-typesetting/tectonic/commit/d260961426b01f7643ba0f35f493bdb671eeaf3f.patch?full_index=1" + sha256 "7d2014a1208569a63fca044b8957e2d2256fa169ea2ebe562aed6f490eec17d1" + end end # As of writing, only the tags starting with `tectonic@` are release versions. @@ -41,13 +47,11 @@ class Tectonic < Formula depends_on "freetype" depends_on "graphite2" depends_on "harfbuzz" - depends_on "icu4c" + depends_on "icu4c@75" depends_on "libpng" depends_on "openssl@3" def install - ENV.cxx11 - if OS.mac? ENV["MACOSX_DEPLOYMENT_TARGET"] = MacOS.version.to_s # needed for CLT-only builds ENV.delete("HOMEBREW_SDKROOT") if MacOS.version == :high_sierra From 29958b7656399f1a7d8f73bd7c7516277eb609eb Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Tue, 16 Apr 2024 19:20:11 -0400 Subject: [PATCH 35/91] libgedit-tepl: revision bump to migrate to `icu4c@75` --- Formula/lib/libgedit-tepl.rb | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Formula/lib/libgedit-tepl.rb b/Formula/lib/libgedit-tepl.rb index cce634004bc61..9eb107a5c4b6f 100644 --- a/Formula/lib/libgedit-tepl.rb +++ b/Formula/lib/libgedit-tepl.rb @@ -4,6 +4,7 @@ class LibgeditTepl < Formula url "https://gitlab.gnome.org/World/gedit/libgedit-tepl/-/archive/6.10.0/libgedit-tepl-6.10.0.tar.bz2" sha256 "bfaf68a4c81b7e32ff69d102dad1d656c49b5ef8570db15327a3c5479c8c3164" license "LGPL-2.1-or-later" + revision 1 head "https://gitlab.gnome.org/World/gedit/libgedit-tepl.git", branch: "main" # https://gitlab.gnome.org/swilmet/tepl/-/blob/main/docs/more-information.md @@ -33,7 +34,7 @@ class LibgeditTepl < Formula depends_on "cairo" depends_on "glib" depends_on "gtk+3" - depends_on "icu4c" + depends_on "icu4c@75" depends_on "libgedit-amtk" depends_on "libgedit-gfls" depends_on "libgedit-gtksourceview" @@ -48,6 +49,14 @@ def install system "meson", "setup", "build", "-Dgtk_doc=false", *std_meson_args system "meson", "compile", "-C", "build", "--verbose" system "meson", "install", "-C", "build" + + # `pkg-config --libs libgedit-tepl-6` includes icu-uc and icu-i18n but modules + # are from keg-only `icu4c@75` so pkg-config needs to look in the opt path. + # TODO: Remove after https://github.com/Homebrew/brew/pull/18229 + icu4c_pc_dir = Formula["icu4c@75"].opt_lib/"pkgconfig" + inreplace lib/"pkgconfig/libgedit-tepl-6.pc", + /^(Requires\.private:.*) icu-uc, icu-i18n,/, + "\\1 #{icu4c_pc_dir}/icu-uc.pc, #{icu4c_pc_dir}/icu-i18n.pc," end test do @@ -60,7 +69,6 @@ def install } EOS - ENV.prepend_path "PKG_CONFIG_PATH", Formula["icu4c"].opt_lib/"pkgconfig" if OS.mac? flags = shell_output("pkg-config --cflags --libs libgedit-tepl-6").chomp.split system ENV.cc, "test.c", "-o", "test", *flags system "./test" From 7417e5021b3fe29d904fcb4e7aca4af697c5dc51 Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Tue, 16 Apr 2024 18:44:25 -0400 Subject: [PATCH 36/91] tesseract: revision bump to migrate to `icu4c@75` --- Formula/t/tesseract.rb | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Formula/t/tesseract.rb b/Formula/t/tesseract.rb index a0f604ce6afce..cbfd6173abbbb 100644 --- a/Formula/t/tesseract.rb +++ b/Formula/t/tesseract.rb @@ -4,6 +4,7 @@ class Tesseract < Formula url "https://github.com/tesseract-ocr/tesseract/archive/refs/tags/5.4.1.tar.gz" sha256 "c4bc2a81c12a472f445b7c2fb4705a08bd643ef467f51ec84f0e148bd368051b" license "Apache-2.0" + revision 1 head "https://github.com/tesseract-ocr/tesseract.git", branch: "main" livecheck do @@ -30,7 +31,7 @@ class Tesseract < Formula depends_on "fontconfig" depends_on "glib" depends_on "harfbuzz" - depends_on "icu4c" + depends_on "icu4c@75" depends_on "leptonica" depends_on "libarchive" depends_on "pango" @@ -65,9 +66,9 @@ def install ENV.cxx11 system "./autogen.sh" - system "./configure", "--prefix=#{prefix}", - "--disable-dependency-tracking", - "--datarootdir=#{HOMEBREW_PREFIX}/share" + system "./configure", "--datarootdir=#{HOMEBREW_PREFIX}/share", + "--disable-silent-rules", + *std_configure_args system "make", "training" From 4a639c3edac5cb6a7fa76e9c8c219e08f00c5a88 Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Tue, 16 Apr 2024 19:19:51 -0400 Subject: [PATCH 37/91] tracker: revision bump to migrate to `icu4c@75` --- Formula/t/tracker.rb | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Formula/t/tracker.rb b/Formula/t/tracker.rb index 85fbfdb27a4a3..adbcc808b462e 100644 --- a/Formula/t/tracker.rb +++ b/Formula/t/tracker.rb @@ -6,7 +6,7 @@ class Tracker < Formula tag: "3.6.0", revision: "624ef729966f2d9cf748321bd7bac822489fa8ed" license all_of: ["LGPL-2.1-or-later", "GPL-2.0-or-later"] - revision 1 + revision 2 # Tracker doesn't follow GNOME's "even-numbered minor is stable" version # scheme but they do appear to use 90+ minor/patch versions, which may @@ -36,7 +36,7 @@ class Tracker < Formula depends_on "dbus" depends_on "glib" - depends_on "icu4c" + depends_on "icu4c@75" depends_on "json-glib" depends_on "libsoup" depends_on "sqlite" @@ -113,7 +113,8 @@ def post_install } EOS - ENV.prepend_path "PKG_CONFIG_PATH", Formula["icu4c"].opt_lib/"pkgconfig" if OS.mac? + icu4c = deps.map(&:to_formula).find { |f| f.name.match?(/^icu4c@\d+$/) } + ENV.prepend_path "PKG_CONFIG_PATH", icu4c.opt_lib/"pkgconfig" flags = shell_output("pkg-config --cflags --libs tracker-sparql-3.0").chomp.split system ENV.cc, "test.c", "-o", "test", *flags system "./test" From f9b92c7e457f5a4f45539ea85d30b28f7a5aabdd Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Tue, 16 Apr 2024 18:42:02 -0400 Subject: [PATCH 38/91] vte3: revision bump to migrate to `icu4c@75` --- Formula/v/vte3.rb | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Formula/v/vte3.rb b/Formula/v/vte3.rb index 6e67f5123d93c..21d01b8212a7e 100644 --- a/Formula/v/vte3.rb +++ b/Formula/v/vte3.rb @@ -4,6 +4,7 @@ class Vte3 < Formula url "https://download.gnome.org/sources/vte/0.76/vte-0.76.4.tar.xz" sha256 "9c52d1da6c6f7409289351fc1cba8948cd3b47d048cbfede763a0f75b77453cc" license "LGPL-2.0-or-later" + revision 1 bottle do sha256 arm64_sequoia: "e9968ae162ed90b8c97aa6c8628263a4287f83475e4bb94e3d16f4345831b4b0" @@ -30,7 +31,7 @@ class Vte3 < Formula depends_on "gnutls" depends_on "gtk+3" depends_on "gtk4" - depends_on "icu4c" + depends_on "icu4c@75" depends_on "lz4" depends_on macos: :mojave depends_on "pango" @@ -64,9 +65,13 @@ class Vte3 < Formula def install if OS.mac? && DevelopmentTools.clang_build_version <= 1500 + llvm = Formula["llvm"] ENV.llvm_clang if DevelopmentTools.clang_build_version <= 1400 - ENV.prepend "LDFLAGS", "-L#{Formula["llvm"].opt_lib}/c++ -L#{Formula["llvm"].opt_lib} -lunwind" + ENV.prepend "LDFLAGS", "-L#{llvm.opt_lib}/c++ -L#{llvm.opt_lib} -lunwind" + else + # Avoid linkage to LLVM libunwind. Should have been handled by superenv but still occurs + ENV.remove "HOMEBREW_LIBRARY_PATHS", llvm.opt_lib end end From e3a8ed0ef69d74b188f45bc20f0678d34f2031e6 Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Tue, 16 Apr 2024 19:41:23 -0400 Subject: [PATCH 39/91] webkitgtk: revision bump to migrate to `icu4c@75` --- Formula/w/webkitgtk.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Formula/w/webkitgtk.rb b/Formula/w/webkitgtk.rb index 2f0caa1ac5e91..fee8ef49e2493 100644 --- a/Formula/w/webkitgtk.rb +++ b/Formula/w/webkitgtk.rb @@ -4,6 +4,7 @@ class Webkitgtk < Formula url "https://webkitgtk.org/releases/webkitgtk-2.46.1.tar.xz" sha256 "2a14faac359aff941d0bc4443eb5537e3702bcaf316b0a129e0e65f3ff8eaac0" license "GPL-3.0-or-later" + revision 1 livecheck do url "https://webkitgtk.org/releases/" @@ -33,7 +34,7 @@ class Webkitgtk < Formula depends_on "gstreamer" depends_on "gtk+3" depends_on "harfbuzz" - depends_on "icu4c" + depends_on "icu4c@75" depends_on "jpeg-turbo" depends_on "jpeg-xl" depends_on "libavif" From 74eacb048c7ae772c8268bb0a7ae19db84a34a7d Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Tue, 16 Apr 2024 19:18:22 -0400 Subject: [PATCH 40/91] widelands: revision bump to migrate to `icu4c@75` --- Formula/w/widelands.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Formula/w/widelands.rb b/Formula/w/widelands.rb index 279bf6341d7f9..d8aa75ca26dee 100644 --- a/Formula/w/widelands.rb +++ b/Formula/w/widelands.rb @@ -4,6 +4,7 @@ class Widelands < Formula url "https://github.com/widelands/widelands/archive/refs/tags/v1.2.tar.gz" sha256 "c6bed3717c541276fbed8a33adce230a2637297588c719268fcb963e076210e2" license "GPL-2.0-or-later" + revision 1 version_scheme 1 livecheck do @@ -29,7 +30,7 @@ class Widelands < Formula depends_on "pkg-config" => :build depends_on "glew" - depends_on "icu4c" + depends_on "icu4c@75" depends_on "libpng" depends_on "lua" depends_on "minizip" From d759243077d8c2fb37410c5ed2d046dfdb331f8b Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Tue, 16 Apr 2024 19:40:08 -0400 Subject: [PATCH 41/91] yaz: revision bump to migrate to `icu4c@75` --- Formula/y/yaz.rb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Formula/y/yaz.rb b/Formula/y/yaz.rb index 00d499e66f249..4bdafcdb786ad 100644 --- a/Formula/y/yaz.rb +++ b/Formula/y/yaz.rb @@ -4,6 +4,7 @@ class Yaz < Formula url "https://ftp.indexdata.com/pub/yaz/yaz-5.34.2.tar.gz" sha256 "ab45cf48036fc6da7493815c033b5db2b1e7a34632caed1a43e9cdef745b9618" license "BSD-3-Clause" + revision 1 # The latest version text is currently omitted from the homepage for this # software, so we have to check the related directory listing page. @@ -35,7 +36,7 @@ class Yaz < Formula depends_on "pkg-config" => :build depends_on "gnutls" - depends_on "icu4c" + depends_on "icu4c@75" depends_on "readline" # Possible opportunistic linkage. TODO: Check if this can be removed. uses_from_macos "libxml2" @@ -54,9 +55,10 @@ def install # Replace dependencies' cellar paths, which can break build for dependents # (like `metaproxy` and `zebra`) after a dependency is version/revision bumped + icu4c = deps.map(&:to_formula).find { |f| f.name.match?(/^icu4c@\d+$/) } inreplace bin/"yaz-config" do |s| s.gsub! Formula["gnutls"].prefix.realpath, Formula["gnutls"].opt_prefix - s.gsub! Formula["icu4c"].prefix.realpath, Formula["icu4c"].opt_prefix + s.gsub! icu4c.prefix.realpath, icu4c.opt_prefix end unless OS.mac? inreplace [bin/"yaz-config", lib/"pkgconfig/yaz.pc"] do |s| From adb4483e67ef56c722341d2a2e97ade7c088c74c Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Tue, 16 Apr 2024 19:46:50 -0400 Subject: [PATCH 42/91] zebra: revision bump to migrate to `icu4c@75` --- Formula/z/zebra.rb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Formula/z/zebra.rb b/Formula/z/zebra.rb index 68699cef8d135..24bff19dc52eb 100644 --- a/Formula/z/zebra.rb +++ b/Formula/z/zebra.rb @@ -4,7 +4,7 @@ class Zebra < Formula url "https://ftp.indexdata.com/pub/zebra/idzebra-2.2.7.tar.gz" sha256 "b465ffeb060f507316e6cfc20ebd46022472076d0d4e96ef7dab63e798066420" license "GPL-2.0-or-later" - revision 2 + revision 3 livecheck do url "https://ftp.indexdata.com/pub/zebra/" @@ -22,7 +22,7 @@ class Zebra < Formula sha256 x86_64_linux: "1038933d7519ce99529c371bfd3d08759626bf84d81a01e65f2154d08e5fcf9a" end - depends_on "icu4c" + depends_on "icu4c@75" depends_on "yaz" uses_from_macos "bzip2" @@ -33,15 +33,15 @@ class Zebra < Formula uses_from_macos "zlib" def install - system "./configure", "--disable-dependency-tracking", - "--prefix=#{prefix}", + system "./configure", "--disable-silent-rules", "--enable-mod-text", "--enable-mod-grs-regx", "--enable-mod-grs-marc", "--enable-mod-grs-xml", "--enable-mod-dom", "--enable-mod-alvis", - "--enable-mod-safari" + "--enable-mod-safari", + *std_configure_args system "make", "install" end From 46e24f9ecf693189fc4b7789dd7a84d16b1c01cd Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Tue, 16 Apr 2024 19:17:59 -0400 Subject: [PATCH 43/91] znc: revision bump to migrate to `icu4c@75` --- Formula/z/znc.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Formula/z/znc.rb b/Formula/z/znc.rb index f3a4264223dd1..491c97451e143 100644 --- a/Formula/z/znc.rb +++ b/Formula/z/znc.rb @@ -4,6 +4,7 @@ class Znc < Formula url "https://znc.in/releases/znc-1.9.1.tar.gz" sha256 "e8a7cf80e19aad510b4e282eaf61b56bc30df88ea2e0f64fadcdd303c4894f3c" license "Apache-2.0" + revision 1 livecheck do url "https://znc.in/releases/" @@ -24,7 +25,7 @@ class Znc < Formula depends_on "cmake" => :build depends_on "pkg-config" => :build depends_on "boost" - depends_on "icu4c" + depends_on "icu4c@75" depends_on "openssl@3" depends_on "python@3.12" From 848ea53f60fe3cc5ea2797d8d6fab87800968edd Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Fri, 23 Aug 2024 09:04:18 -0400 Subject: [PATCH 44/91] libspelling: revision bump to migrate to `icu4c@75` --- Formula/lib/libspelling.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Formula/lib/libspelling.rb b/Formula/lib/libspelling.rb index a94a46848f169..4f8d86f979f5b 100644 --- a/Formula/lib/libspelling.rb +++ b/Formula/lib/libspelling.rb @@ -4,6 +4,7 @@ class Libspelling < Formula url "https://gitlab.gnome.org/GNOME/libspelling/-/archive/0.2.1/libspelling-0.2.1.tar.bz2" sha256 "5393a9b93fda445598348a47c42d1ad13586c0bcf35dfd257afd613fd31812c1" license "LGPL-2.1-or-later" + revision 1 bottle do sha256 cellar: :any, arm64_sequoia: "2c4271f43d13aea74b7c4d582489b7c442efd19cc71bcc7d27c741e5069b4794" @@ -26,7 +27,7 @@ class Libspelling < Formula depends_on "glib" depends_on "gtk4" depends_on "gtksourceview5" - depends_on "icu4c" + depends_on "icu4c@75" depends_on "pango" on_macos do From 38b8acd60e17ca2fb78b1c52843d9fdbd776ed49 Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Fri, 23 Aug 2024 09:08:17 -0400 Subject: [PATCH 45/91] texlive: revision bump to migrate to `icu4c@75` --- Formula/t/texlive.rb | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Formula/t/texlive.rb b/Formula/t/texlive.rb index 545e370c9aaf6..d6e06eb955ac1 100644 --- a/Formula/t/texlive.rb +++ b/Formula/t/texlive.rb @@ -8,7 +8,7 @@ class Texlive < Formula mirror "https://ftp.tu-chemnitz.de/pub/tug/historic/systems/texlive/2024/texlive-20240312-source.tar.xz" sha256 "7b6d87cf01661670fac45c93126bed97b9843139ed510f975d047ea938b6fe96" license :cannot_represent - revision 1 + revision 2 head "https://github.com/TeX-Live/texlive-source.git", branch: "trunk" livecheck do @@ -54,7 +54,7 @@ class Texlive < Formula depends_on "gmp" depends_on "graphite2" depends_on "harfbuzz" - depends_on "icu4c" + depends_on "icu4c@75" depends_on "jpeg-turbo" depends_on "libpng" depends_on "libx11" @@ -69,6 +69,7 @@ class Texlive < Formula depends_on "potrace" depends_on "pstoedit" depends_on "python@3.12" + uses_from_macos "ncurses" uses_from_macos "ruby" uses_from_macos "tcl-tk" @@ -411,6 +412,9 @@ def install inreplace share/"texmf-dist/web2c/texmfcnf.lua", "selfautoparent:texmf", "selfautodir:share/texmf" + # icu4c 75+ needs C++17 + ENV.append "CXXFLAGS", "-std=gnu++17" + args = std_configure_args + [ "--disable-dvisvgm", # needs its own formula "--disable-missing", From b348c34188d4f7ec6fb4be01155e110288de8aeb Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Fri, 27 Sep 2024 11:21:33 -0400 Subject: [PATCH 46/91] spidermonkey: revision bump to migrate to `icu4c@75` --- Formula/s/spidermonkey.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Formula/s/spidermonkey.rb b/Formula/s/spidermonkey.rb index c32756e470dff..eb4cf35cada99 100644 --- a/Formula/s/spidermonkey.rb +++ b/Formula/s/spidermonkey.rb @@ -5,6 +5,7 @@ class Spidermonkey < Formula version "128.2.0" sha256 "9617a1e547d373fe25c2f5477ba1b2fc482b642dc54adf28d815fc36ed72d0c2" license "MPL-2.0" + revision 1 head "https://hg.mozilla.org/mozilla-central", using: :hg # Spidermonkey versions use the same versions as Firefox, so we simply check @@ -29,7 +30,7 @@ class Spidermonkey < Formula depends_on "pkg-config" => :build depends_on "python@3.12" => :build depends_on "rust" => :build - depends_on "icu4c" + depends_on "icu4c@75" depends_on "nspr" depends_on "readline" From a41054890dd12508f5c1daf9cb80924178d6f7d6 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:03:55 +0000 Subject: [PATCH 47/91] apngasm: update 3.1.10_13 bottle. --- Formula/a/apngasm.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/a/apngasm.rb b/Formula/a/apngasm.rb index 7b9f380eaaf79..1b9bd61291a37 100644 --- a/Formula/a/apngasm.rb +++ b/Formula/a/apngasm.rb @@ -8,14 +8,12 @@ class Apngasm < Formula head "https://github.com/apngasm/apngasm.git", branch: "master" bottle do - sha256 arm64_sequoia: "a80899901549db7dcbccd4244c044c3e8ebf2d638ddc43a8f1879d04e279a60a" - sha256 arm64_sonoma: "3a6f6e9b91f2d80ce968c45c3afb0451571c8c36e8d77d0bd39a3019bb287a7b" - sha256 arm64_ventura: "4e25dd800a4f2d03b45eacd18923a4f506e12ebd622f40320897e54010f55005" - sha256 cellar: :any, arm64_monterey: "6e14826462b3dc0680497efedb6e07a1c5c7b7e654390bc0a4dd4717988ca795" - sha256 sonoma: "85e58492f5d69bf7a49fe7383853c522d9cabdf5f5a0089843f289128d1743b9" - sha256 ventura: "acdd034209553a72323d865bbe920e5de4b292a59280bd1d5b932313189ba36a" - sha256 cellar: :any, monterey: "ce09450b72330d1149d8dd583a6514f6d885340a44455f55829d0a6d78ca501a" - sha256 cellar: :any_skip_relocation, x86_64_linux: "22992924f031618d9172e5c0f08e3e6e3337e9658b29604494abddd1a2af60f5" + sha256 arm64_sequoia: "2d444cec3ef5d87bf413c3301e57694afffa0c1ec51d433263e2cc95d89b266b" + sha256 arm64_sonoma: "5295b412245ce613f0d55fdd649ba21912882d48b3ec5ee7d1f7c3b3467be20b" + sha256 arm64_ventura: "52256178a1979d8f85508d7c272840791bafeca1ef4c4bc036dc38304500bb04" + sha256 sonoma: "f687ee190ad2460ec32fb4a9792449c130b1d1317de72561f9fdc5068553eb5a" + sha256 ventura: "394141501308f60470f4b3a6205b057cf067423da675d1283136020758aaa0f7" + sha256 cellar: :any_skip_relocation, x86_64_linux: "e9c0d5bea8288502309fc70b025fe030fb2067053242a0315afbe04b304988bf" end depends_on "cmake" => :build From ad51dd97c13764863378ca3de9f089e3cd8077ee Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:03:56 +0000 Subject: [PATCH 48/91] boost: update 1.86.0_1 bottle. --- Formula/b/boost.rb | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/Formula/b/boost.rb b/Formula/b/boost.rb index e336c577b6e4f..93aa613159524 100644 --- a/Formula/b/boost.rb +++ b/Formula/b/boost.rb @@ -31,15 +31,12 @@ class Boost < Formula end bottle do - rebuild 2 - sha256 cellar: :any, arm64_sequoia: "c05f399132e5fdca2e010ba1d9af155e956a8ed70dcfd57aa285a772efac3efa" - sha256 cellar: :any, arm64_sonoma: "8f6d3d3c76708a287c0157a0e48f0e2b8c7175ee23269c03c8eb0ad7c003dc86" - sha256 cellar: :any, arm64_ventura: "7eb491c2e34ff445b92883bba4483f085c35eeb40cc6f021636d09c9fc3b7b25" - sha256 cellar: :any, arm64_monterey: "e1942964bba4803b5c01bf1b69f1fa15908e4f1372732f7bf2edb5fa1be54a75" - sha256 cellar: :any, sonoma: "eb5a1eab5cfa550707a4e2148451c9a9c2b0ecdd2b7a4f4cf786cc830055e80c" - sha256 cellar: :any, ventura: "f40318ac4b779df9fbb13bed9166a39eb9819438fe8b9c4b764cca973f739295" - sha256 cellar: :any, monterey: "bd5f3394381a43315858c033adfbc430ead8e53d607686efef760637fe77298f" - sha256 cellar: :any_skip_relocation, x86_64_linux: "9b54de744fca5203371e41bbe08f18fe347d9873558b9b0e1c40b60e4bc5515c" + sha256 cellar: :any, arm64_sequoia: "7ed42f5454994b547066d52549a57edd157ca6f80a9f2d73fe69eec4a7bbc5ee" + sha256 cellar: :any, arm64_sonoma: "70a85cfceb6b54c0ace4956b937aae3cde81a874741f5d9aa5938ffdd7de3d77" + sha256 cellar: :any, arm64_ventura: "da2a9898cde2900e528109b4e0c4db3e26c3f5c7f8d0830c9523c4b3bc9d44a0" + sha256 cellar: :any, sonoma: "ccd461109e3760cefcc170e8ec75c166e780aba32fa852581e2f88e777bd40aa" + sha256 cellar: :any, ventura: "6c3b8d51bcbae0c803953304c8c8d9c5743e29df9659b9a28d9fc5f0a6df24e9" + sha256 cellar: :any_skip_relocation, x86_64_linux: "cd0a090c857598cd14490425b8a80351355e23c064d57d7e0a29ca1ea016d9fd" end depends_on "icu4c@75" From 8fef467eb63c0126fa3c6b40e06e694fd11aca24 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:03:57 +0000 Subject: [PATCH 49/91] dotnet@6: update 6.0.133_1 bottle. --- Formula/d/dotnet@6.rb | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/Formula/d/dotnet@6.rb b/Formula/d/dotnet@6.rb index 134d67b3ce1cd..e8953ecde409d 100644 --- a/Formula/d/dotnet@6.rb +++ b/Formula/d/dotnet@6.rb @@ -9,11 +9,9 @@ class DotnetAT6 < Formula revision 1 bottle do - sha256 cellar: :any, arm64_sonoma: "2f732d33c49d2549ca9bd05907d4e86d7c54cb5264b9bc27844118cde98fe5ea" - sha256 cellar: :any, arm64_monterey: "823832e04deadfb006e61f0ad100a20b6e07a38b8214ba924e77a2fe4b00d5af" - sha256 cellar: :any, sonoma: "22e6078e1fc3003cad4a5d3cdcab343c76b0e4463a9f376a69a32c97aaf7d9cf" - sha256 cellar: :any, monterey: "9ded0ea147313c22cc23dc5922266a649c07679321249de3a11f81fbde100be0" - sha256 x86_64_linux: "56bae991404a1dc7441fada6fda22a4197f7847ba977b1734aa39bea044ea75b" + sha256 cellar: :any, arm64_sonoma: "3eb824051504d2753ab5cca847f0b943bc4dc05fb403558d18fe18c5532c3845" + sha256 cellar: :any, sonoma: "2f19620dfb82a8bcbcec0a68175426c64ff43e3fa231cf9d05ef21e8616572b1" + sha256 cellar: :any_skip_relocation, x86_64_linux: "ffe54b54568dd28475dde52acdcd69cba25cd2b4a94ec568908e164477024045" end keg_only :versioned_formula From 8344eeef4b9c676f62850270d9da18aa8e7c0f5b Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:03:57 +0000 Subject: [PATCH 50/91] easyrpg-player: update 0.8_5 bottle. --- Formula/e/easyrpg-player.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/e/easyrpg-player.rb b/Formula/e/easyrpg-player.rb index a845ed9adb504..aa15c22aa0959 100644 --- a/Formula/e/easyrpg-player.rb +++ b/Formula/e/easyrpg-player.rb @@ -11,14 +11,12 @@ class EasyrpgPlayer < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "940fa9890761c2e0e6f97823f609b2a86c3d8c132af99041ccd291520ddb4937" - sha256 cellar: :any, arm64_sonoma: "cb6367f8d7021433cb0777e645c3f2f23b03b78404baac81898c020f799ebc54" - sha256 cellar: :any, arm64_ventura: "0b918d1a21110b3cc284d7ee0b453cf01cf9d306de3471e5ae868a522ac3ab38" - sha256 cellar: :any, arm64_monterey: "81ddad2d6f50aee5493a461d86c3cef8071d2b4f8186c32cbce7880fbbd7f4ad" - sha256 cellar: :any, sonoma: "cbccb0b6c47ee38eecc699969f53e963f5edfb34f4290215f829ab501aa24ede" - sha256 cellar: :any, ventura: "8d136de7c6d891113f50669181ccb5a81e244d6b7b1b63b969ea040379d60210" - sha256 cellar: :any, monterey: "81a4c9e5b846c151b380ae620192e18cf8db7cebdb34d8d9766e8e96ce3173d5" - sha256 cellar: :any_skip_relocation, x86_64_linux: "2af54063e4cd34ce5b2a9e1da3c515a464b1029a6fe071307c28a17cab8fc675" + sha256 cellar: :any, arm64_sequoia: "ed3647547b6f153cccfe3771832a67936708da6baf03e8d440f3237a75f84356" + sha256 cellar: :any, arm64_sonoma: "5b27a034830a4050954923f9b206bb7246173db519e0b845191bb41429005a5e" + sha256 cellar: :any, arm64_ventura: "c163e38ecf71c3874abea6103d9bf1c9b860c35b7e0c07d6f52bcd6295b805c9" + sha256 cellar: :any, sonoma: "04a3f8684b52013b2afd12721cf387120682a6a3a44c7022663fc56b968e3872" + sha256 cellar: :any, ventura: "d76943f69db08caad588017b69493856909aee291ecc03137ea753f3e98ff7ca" + sha256 cellar: :any_skip_relocation, x86_64_linux: "5a22f0febddd000ad159bad7a0422ed6bfb5f0e98a9e28d6d3d45c5a16857f12" end depends_on "cmake" => :build From 464b994f139b30e68c8b09890c8f79aa6a7539db Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:03:57 +0000 Subject: [PATCH 51/91] freeciv: update 3.1.2_1 bottle. --- Formula/f/freeciv.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/f/freeciv.rb b/Formula/f/freeciv.rb index b209e1e586161..15696279e14c2 100644 --- a/Formula/f/freeciv.rb +++ b/Formula/f/freeciv.rb @@ -12,14 +12,12 @@ class Freeciv < Formula end bottle do - sha256 arm64_sequoia: "9078c0121c5fd6813ef0fdb67beb07bc9f23e01d5b8f13de55e92c7806082762" - sha256 arm64_sonoma: "b7162ce0379dfbe1e2ec91c12522440eb1be2683c8b174f870fcebc20bf8a68d" - sha256 arm64_ventura: "8c7b90207942264128cd60c0a374a0ae72c953da6be2e3f205a4aab8a431b76c" - sha256 arm64_monterey: "ad9ef0dc1940fa154c346c487a120fa37a2590ce0e91f9947cb1a8d6eaea60c8" - sha256 sonoma: "c35ba1e4befb8609e2a0b1ad111a9e4308582a68c3b6b08732d4120caed44fab" - sha256 ventura: "ed923f2a702eb2ba87e801339b03bc30387d0e9bd60ada5a014584686c642a72" - sha256 monterey: "6f7c5e1a7b041322c559d1aae0e40a77d09f70e3e93125ce941d9fc1d3e17b31" - sha256 x86_64_linux: "32b2b6cab1b82d3863f0db79617dcb41519604e6f8e0dbb4ca81fe74e224ca64" + sha256 arm64_sequoia: "680ebc2640405a5032fee2a53397115a50556e8257c147be7c1c775eb3874f89" + sha256 arm64_sonoma: "c1350e24ea132c9944db0f38af8f13acb4e107d8a42711de629c9e36b0263a5d" + sha256 arm64_ventura: "9f7090f2d2ebb148d13c3b2e8aa2402d524536bbb4b3fd6db4b3bdc8099ebcea" + sha256 sonoma: "2030be34217e8e09d737dd28c0533800755d7d4e0c5eca28829a10dfe86e35f9" + sha256 ventura: "19fc9d78f32a0e9e2dd12de560a8a1e61b58a6ade7c15771c175ee88fe9b129e" + sha256 x86_64_linux: "5e0150ea9f04dd3285fe157a09d5a7a24efe875b0cb1dfa2ba6130e7fc1ca936" end head do From 4aca6a73de9ee9624df040d88734adce8fcd46bc Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:03:58 +0000 Subject: [PATCH 52/91] freeling: update 4.2.1_6 bottle. --- Formula/f/freeling.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/f/freeling.rb b/Formula/f/freeling.rb index 4cec429e136c1..381b3e9ae499a 100644 --- a/Formula/f/freeling.rb +++ b/Formula/f/freeling.rb @@ -7,14 +7,12 @@ class Freeling < Formula revision 6 bottle do - sha256 cellar: :any, arm64_sequoia: "247d7a29b0f294b2907de43d169bc1a248675b87b7981c211b8283a0e4fe72a5" - sha256 cellar: :any, arm64_sonoma: "ecfc8921a5a1ce53c49dc24850bca48bb1c8877cf1784e03b5cff1e3bf2de19c" - sha256 cellar: :any, arm64_ventura: "801f54dc1051a01623a9503d4785d163125c46dfa1922fc08223d1aeeda4b4e7" - sha256 cellar: :any, arm64_monterey: "75f5cd437c1988cec1a7c596b372929cdefe083cfd30bfaa9a27afa8c0cd943c" - sha256 cellar: :any, sonoma: "bc98a94ec428215d2a86dc80f8be616f6982293fab0ef530253607bbf32945fb" - sha256 cellar: :any, ventura: "7bbf13e7ba9759332834e77f7f993788becb51b2a770969c444d6b76d235f41d" - sha256 cellar: :any, monterey: "03fdbde545042f81bf8c7a4f18bd7d49bdf405e3625fa2a2c9598e6c72d12812" - sha256 cellar: :any_skip_relocation, x86_64_linux: "c7d86da0c4348eaa3a2bd082920138234bbe0ef76fc238384a96144c67f3ef2d" + sha256 cellar: :any, arm64_sequoia: "f0f0e3c141692fe62d6d1b4392ed2455083426962709498d85676ca1ecfef542" + sha256 cellar: :any, arm64_sonoma: "b80d16a431b0d304eccbce5229b4cba351b240598218ac966e506071953235c3" + sha256 cellar: :any, arm64_ventura: "62077347e29ff817974bf37bfd12ff801c826963597776ee276db726fdb5497b" + sha256 cellar: :any, sonoma: "38ed7b6262161ba1b7974dbe1ee3c839bc66de5cf3a710e208bc4b8ebb44801f" + sha256 cellar: :any, ventura: "0501691716a64df0b3ed7dfaf77c5de04d6b6e1ddb6a5a16ab3ddb13d6c224cd" + sha256 cellar: :any_skip_relocation, x86_64_linux: "b2965621d075c50b1dfd196ca2dff63add2d3b6c2c9bd8521674fb2241e27178" end depends_on "cmake" => :build From 2b251f4a48b5eec4772a0882186aafd9cb5d8e09 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:03:58 +0000 Subject: [PATCH 53/91] gspell: update 1.14.0_1 bottle. --- Formula/g/gspell.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/g/gspell.rb b/Formula/g/gspell.rb index 0150e116cf1b0..9d03ecf856c3d 100644 --- a/Formula/g/gspell.rb +++ b/Formula/g/gspell.rb @@ -7,12 +7,12 @@ class Gspell < Formula revision 1 bottle do - sha256 arm64_sequoia: "a3d28d4743f36aa5324d601af39343d2cb0b927576f46de016bd52c1f1cf13fb" - sha256 arm64_sonoma: "9d7ab375e21486d33fa616e911aeec66dc72d8b733b93de1adc4d4c6ed7e4dcb" - sha256 arm64_ventura: "8d73c7df6f06a5cb9a0d0ef7b95477fbb4748219a5ba1de3ea6e14293588efa8" - sha256 sonoma: "4ca7d04804be23a0d127de01fc012b20f16e4e77a3e1e89b304af4a4994a8674" - sha256 ventura: "1a49dc867546d57425ff125735d0a00a271d5573ce6da77895a0e37c7a13aeb7" - sha256 x86_64_linux: "24c3f7f7b162851fcbde7198b4d15d95dc399bc55d3b7463e61a0e3249c9bfce" + sha256 arm64_sequoia: "9dec60f563ca9e60d876333171bb564382d00ffa5da910784489db6bc208691e" + sha256 arm64_sonoma: "2c033e3bc11d51365182cde9ee8cc20da5d574217a0a76beed0933d78ef3bc26" + sha256 arm64_ventura: "91c9177c3e408fc448da130b74fa20cdf3c265512758d10f1b630cdc3c38797b" + sha256 sonoma: "1db0530819348525709667fef8100d88475ff6ab5af53ba31aff8a59bfebcf61" + sha256 ventura: "4fc80046e658ae4c3fffbeeb587fb52efe430584a534842c13a9964fdeadeb92" + sha256 x86_64_linux: "ce89b53e3952478331425ce95047ec8c93bbd74231cc654914cc78c829aea8a0" end depends_on "gobject-introspection" => :build From bed76ad1aac62fa5926cb469f89fce042936a983 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:03:58 +0000 Subject: [PATCH 54/91] harfbuzz: update 10.0.1_1 bottle. --- Formula/h/harfbuzz.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/h/harfbuzz.rb b/Formula/h/harfbuzz.rb index d5b19bd2ca3d4..ef4a586def0ca 100644 --- a/Formula/h/harfbuzz.rb +++ b/Formula/h/harfbuzz.rb @@ -8,12 +8,12 @@ class Harfbuzz < Formula head "https://github.com/harfbuzz/harfbuzz.git", branch: "main" bottle do - sha256 cellar: :any, arm64_sequoia: "d7d99294e4a9cec03e2564de8bfbff6a7e13deb0bd65f9dc0f1c252a238e2ccd" - sha256 cellar: :any, arm64_sonoma: "47ff8bbd289471f8b5703009d59cb0269dd1dd028f71646586598466a9fa61aa" - sha256 cellar: :any, arm64_ventura: "59578346054df1c1060fde29159b90d3964fbec6462e77b5917d3db130077bf1" - sha256 cellar: :any, sonoma: "adee20f05e347bd6c3b200b16af44b46b073e1319ff49eea6daf6cd38663b099" - sha256 cellar: :any, ventura: "bef171dea7de12a26b1584dd149cf78d53e4c13614bcc386ea543d2c59483ede" - sha256 x86_64_linux: "9735013cd10088bfbe0e92ef4ff534cfe07ed5924337a06971c85ba415f59c41" + sha256 cellar: :any, arm64_sequoia: "9929dbfee478a7df8af8a4dc20064b06075269a69c85c3ac7987debf32eb1613" + sha256 cellar: :any, arm64_sonoma: "385db025846a56597809370f470ce1c387d818895c4f9151ece6d1fe6bd557d3" + sha256 cellar: :any, arm64_ventura: "d9048c6446a50919c93ebac94a1b5ffbe5b53f33be4c42a76272d272b7c287b8" + sha256 cellar: :any, sonoma: "820ef457c7a3272aa5164b8231cb9f7a80751684ab73b4fe2878f69177ab5640" + sha256 cellar: :any, ventura: "2da1ef5e13bb060f10654db7f573f5ca8fd6a96799c1a8b7c1b3f6caaaf40b6a" + sha256 x86_64_linux: "0e3cce49524e68d3d89f703c7faca12791a4f5d0b674870bdba92ba5286e79da" end depends_on "gobject-introspection" => :build From a8adb69369f55f818ef6b4af93bf3ae58fbd8d28 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:03:59 +0000 Subject: [PATCH 55/91] icu4c@75: add 75.1 bottle. --- Formula/i/icu4c@75.rb | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Formula/i/icu4c@75.rb b/Formula/i/icu4c@75.rb index 672291ecc306b..2d415f6ee2db6 100644 --- a/Formula/i/icu4c@75.rb +++ b/Formula/i/icu4c@75.rb @@ -14,6 +14,15 @@ class Icu4cAT75 < Formula end end + bottle do + sha256 cellar: :any, arm64_sequoia: "a7e245c13a6a784dbdfc1b0e52abab9f159d684f8ae6d9293c585bd21b441e75" + sha256 cellar: :any, arm64_sonoma: "3da9b88cf2f84e5f37d964400a7a8e1a2042d3dda33acf7eb9c2d81e785e0532" + sha256 cellar: :any, arm64_ventura: "760542f48a7cc4e7aff89d5a9c3030fe549e51753a5f7167d838f48fa9a8df38" + sha256 cellar: :any, sonoma: "b8d525ce3c6f163981641f69920b6ed92cf4bfef7dab84979dc8f49777d7ea3b" + sha256 cellar: :any, ventura: "e040d0d6cb994165a20ce9fdcc691ea15043b1c583c9af9a18e7a2ac63aaabcf" + sha256 cellar: :any_skip_relocation, x86_64_linux: "ab60784f7aee6a4a7827bbff1cf524c1c357a76be2898fdbf144ffa1df145eff" + end + # TODO: Switch keg_only reason after renaming `icu4c` formula to `icu4c@74` and updating alias to `icu4c@75` # keg_only :provided_by_macos, "macOS provides libicucore.dylib (but nothing else)" keg_only :versioned_formula From 90a66347b35938eeac736e1c32fa92fea746f2b4 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:03:59 +0000 Subject: [PATCH 56/91] libcdr: update 0.1.7_7 bottle. --- Formula/lib/libcdr.rb | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/Formula/lib/libcdr.rb b/Formula/lib/libcdr.rb index 489fcd163171a..c62dae43e1e6d 100644 --- a/Formula/lib/libcdr.rb +++ b/Formula/lib/libcdr.rb @@ -12,15 +12,12 @@ class Libcdr < Formula end bottle do - rebuild 1 - sha256 cellar: :any, arm64_sequoia: "828104e9ac0396fada40357eaf5da22f3137ee7cb91eba91ad7bd1661f7428f9" - sha256 cellar: :any, arm64_sonoma: "b4324147de4d9b3a82e0ae4239bd1306cb5e5b01d52c49e137d8002fd9999fa8" - sha256 cellar: :any, arm64_ventura: "588bbde423941f0353de8d1079e317732c576af3b0a661aec50c83352a9047c7" - sha256 cellar: :any, arm64_monterey: "7a30b587bbba798295a3af16acff7d9974ec298d0e3b7b2f1fd92f249b140e09" - sha256 cellar: :any, sonoma: "644cf0326dbf7d581058607b31f042e279ca25399f21d718b4d1685aa7af8017" - sha256 cellar: :any, ventura: "f8ee293a246acd9b49b89191d8261670752a11361b536140554f7453b086e563" - sha256 cellar: :any, monterey: "f2c5dc565e10c04952c7a9aa9233c03b10b03105b67e31150766838a10281c65" - sha256 cellar: :any_skip_relocation, x86_64_linux: "ca8b063489f3ba6c851e69c3c6dd2677c1a1cdfea605c386507bb81840a4b74c" + sha256 cellar: :any, arm64_sequoia: "22b81a0cc297bc61961801314d1c8c2c4ea90851ef69c506adb4b63f83ca9f90" + sha256 cellar: :any, arm64_sonoma: "db2451f83efc9b3cf1e08518890cdd059fa844d54e767a3ec6b1f793870ffdad" + sha256 cellar: :any, arm64_ventura: "f4edcb56add80d1f5efed45d1e4c22ea9b1c2f355dad220eec15972bb915be03" + sha256 cellar: :any, sonoma: "0a6289b75868cef5545240da3c9843c42981a9762e937c8be64fdf1b312d7ffa" + sha256 cellar: :any, ventura: "610325d1a71956e0c49d6797fa6c8c97589f2b5e0577576030c1e322ef45eb24" + sha256 cellar: :any_skip_relocation, x86_64_linux: "03adb0de9bdd5f562bb2cee2df5e7ec3006acec4edfa376c32b6177e52034c09" end depends_on "boost" => :build From 9a992ad6fdc0de09ac6202bfa6cb1c7043fbddbe Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:04:00 +0000 Subject: [PATCH 57/91] libgedit-tepl: update 6.10.0_1 bottle. --- Formula/lib/libgedit-tepl.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/lib/libgedit-tepl.rb b/Formula/lib/libgedit-tepl.rb index 9eb107a5c4b6f..73542f13b8d9f 100644 --- a/Formula/lib/libgedit-tepl.rb +++ b/Formula/lib/libgedit-tepl.rb @@ -16,14 +16,12 @@ class LibgeditTepl < Formula end bottle do - sha256 arm64_sequoia: "7e17b703c30ba1db715d47ee23f9d589db4f00d025fd3b0aeed10776001b1cb4" - sha256 arm64_sonoma: "b433544a25b334a3fc1d7e788cf8d49e99637390ff7a09ef5693bf366a3a95c2" - sha256 arm64_ventura: "49875c169b846727b8ac55463a86dcbb3b938c12063e9f14b2557901fde3f59e" - sha256 arm64_monterey: "afe0dc300dee8af11b6d30b9ce59dc5790b0b9161fcf499138725b9088ee576d" - sha256 sonoma: "968456ec7238409108ecf38183c5829855dcc33324605a4201b1081f1c76d93c" - sha256 ventura: "9fbcbec04391c9acea8794cb736ad4a126644dae87f7a8e9208eb67f71c85806" - sha256 monterey: "78f7e1fdd9fc27ef949c4487704d0d482b146f352c96b36958e4382fd405675e" - sha256 x86_64_linux: "aa06267843aeea879d9aacf3f4415f36650fed599ad25927444d3d16f84b0b8f" + sha256 arm64_sequoia: "d0ba4da39b07185f98be03d9d664ce1db2aa99698dd545fe7d41cca8c509ab9a" + sha256 arm64_sonoma: "69dfe861bd519068043df4d769a91884181eac275b22fc603a8e8703e47f3605" + sha256 arm64_ventura: "e0cd8a12348aeb9222a3d9cc98b6a78b77ca623cc03b5f2846a514db9181e31b" + sha256 sonoma: "ea9146aeb23f78c5550b8a41a1eaaa9dfcaa6a54f0f5cc476f2711b478f1fa61" + sha256 ventura: "f653793e0d6ba2dcb539557a476b7c79922f0b44b8a8c187f2aa784f7579ffe3" + sha256 x86_64_linux: "1ea4508523ffb2c00b8b9fe1fd91f6fa61d7373266880fb680533a15052c6067" end depends_on "gettext" => :build From 0b97f66fe6a9a6d12485920e60b2ed398099e08e Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:04:00 +0000 Subject: [PATCH 58/91] liblcf: update 0.8_3 bottle. --- Formula/lib/liblcf.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/lib/liblcf.rb b/Formula/lib/liblcf.rb index d8f6ba5dfbff1..c2c847d2c03e3 100644 --- a/Formula/lib/liblcf.rb +++ b/Formula/lib/liblcf.rb @@ -17,14 +17,12 @@ class Liblcf < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "1ccfa697b76af2be4dc824897e01f19930b77d38064b1f68db20eec27ab9f57b" - sha256 cellar: :any, arm64_sonoma: "e6b2a50537cda6de3f2de66da5eab8887b60e2fe89b773737b5f18b936305244" - sha256 cellar: :any, arm64_ventura: "ef2914abc50f38f5cd948c70513925e16b46cca7e523e26d480cd77465c21a32" - sha256 cellar: :any, arm64_monterey: "d69068fe28272da2f397082bfa60f98ea942df2200dab9fd7f8df2e5472700d6" - sha256 cellar: :any, sonoma: "c5343e23925ac2afbaec41331cad08c65bdebd775cf237f595b8b40cc258034c" - sha256 cellar: :any, ventura: "6d76007219de8377928af43b548b0636793939f1f5211e20bb3d6fcf8b4f5963" - sha256 cellar: :any, monterey: "a8c0422b3d5d91e6af9de8165169a600b6313676132efe2d8cfc6dca2e533bec" - sha256 cellar: :any_skip_relocation, x86_64_linux: "18460590e8ae8ded3470cda06540fe6431c93da712e7e32f7ac5155a8527f3ab" + sha256 cellar: :any, arm64_sequoia: "d1d9e646c81b640cbaf17ad905eebeb66d6dac978a888cb1fafeca5a78611179" + sha256 cellar: :any, arm64_sonoma: "256529d43242a8972f90f8bb52b9615ee958ed6f87e61a9a40f70c135ece3a4a" + sha256 cellar: :any, arm64_ventura: "04509b3dff6ce0ec1858f8ba1b2baa3361aa4aa5e74b8ca9384508f26f76a574" + sha256 cellar: :any, sonoma: "857e6875f3089228ddde5f8ece70abef84e6e065355d4d10f5398aca2888ffa9" + sha256 cellar: :any, ventura: "dc5f05d256ad44a4f20f434a78b98ddba9d88f65ff31670c336dbc5acd0ee3f2" + sha256 cellar: :any_skip_relocation, x86_64_linux: "e16c8a8486531339e8df25b6cc14de1165f922e83d2458faf2716376d489b10e" end depends_on "cmake" => :build From 4ed36940f0de42e2e4aefed781d8c86e7f5e730d Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:04:00 +0000 Subject: [PATCH 59/91] libmspub: update 0.1.4_16 bottle. --- Formula/lib/libmspub.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/lib/libmspub.rb b/Formula/lib/libmspub.rb index 0a0ca57e77b18..e0494a9de2103 100644 --- a/Formula/lib/libmspub.rb +++ b/Formula/lib/libmspub.rb @@ -12,14 +12,12 @@ class Libmspub < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "fbb1cb9b4966d79fa289f9f9cb09726c37b46557378d89381d7b51d9f3177016" - sha256 cellar: :any, arm64_sonoma: "8cb2377b7d0cfa029bc64851ccc621c7e75f28fd9d96ecdd87b46c043ef5fdcf" - sha256 cellar: :any, arm64_ventura: "a17bfc0422565de7fade8199f23c2a97c1daf0834a34b113f11b83777c7138b7" - sha256 cellar: :any, arm64_monterey: "58d3b2c548f8d38cda3ade55681f0b41d045b33d36614f4eeb38e28ca0b2d763" - sha256 cellar: :any, sonoma: "0e8a7db8b068af6009973bcf3a077c13f6107e1d0e9b0b92e109ad38429b0396" - sha256 cellar: :any, ventura: "45ddab4bd14a6f2a5b8f0814cb10eb58328076d076e0444177f063a4c634d222" - sha256 cellar: :any, monterey: "d792d2c08761c3e13de216ae3a4e8b516cd1a4d749c4397b9dc284901475c477" - sha256 cellar: :any_skip_relocation, x86_64_linux: "18293c8d8717b1fcf2388ee6eb6278295cc02c4e4b92335dbfe2ec9828479245" + sha256 cellar: :any, arm64_sequoia: "b33108e9f470c326457ce72597150776142fe65cef4e836ab316e1aa53efe419" + sha256 cellar: :any, arm64_sonoma: "bd81708ab36ccd98ab4d0ae5b9c05358161168e1736270abf53ebfa3d4dd3bc5" + sha256 cellar: :any, arm64_ventura: "4f8fbeaa5611e8a8fdbd043689f5919e559364b2306dc030f937d40ef6d17110" + sha256 cellar: :any, sonoma: "7b3a6c9a3272ca1ae667c95d708f1b9d2a61de80ee77d8767184e0be4ef05ddf" + sha256 cellar: :any, ventura: "cebfac88c71d5c974b27d87383c8ea1226827688245697dcf794f481bd3a34bc" + sha256 cellar: :any_skip_relocation, x86_64_linux: "6392ab88071ddb41424b8ddb0698e9c45a0a89ae91bcb801938e00c46b155613" end depends_on "boost" => :build From 513c67ee2a62081e9bb7a0f94a099ee9743894c0 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:04:01 +0000 Subject: [PATCH 60/91] libphonenumber: update 8.13.47_1 bottle. --- Formula/lib/libphonenumber.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/lib/libphonenumber.rb b/Formula/lib/libphonenumber.rb index afae4fdb37204..c962e8f8ac26d 100644 --- a/Formula/lib/libphonenumber.rb +++ b/Formula/lib/libphonenumber.rb @@ -12,12 +12,12 @@ class Libphonenumber < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "e1ae202197a6d43e8e0355acb819946759fb480d8a1b9fc7f5cf3dab6fb17a29" - sha256 cellar: :any, arm64_sonoma: "a1435198085c9718426a289bb16f9f928b9ec9a653c38b5079b5c77219dac8a8" - sha256 cellar: :any, arm64_ventura: "4ca610893e61abf6013a8089d824aacead61ebea4b840434e1ef51802ad1a2e0" - sha256 cellar: :any, sonoma: "5867593bf398b1d0d5419849f60cb743839cf97db940de97f806874e387b012e" - sha256 cellar: :any, ventura: "16d5a8084179910da5ae18c8ef9f1ca114bc9bc07e909e8788e1d16ab1387338" - sha256 cellar: :any_skip_relocation, x86_64_linux: "eb568c65432547cf22b5baca9cd3d3206dc302182975434dc6557875ee34986c" + sha256 cellar: :any, arm64_sequoia: "9368e6ebb90d92ad63a1a8d42fb7193e832e0e941236a7b7b361904d257d49d5" + sha256 cellar: :any, arm64_sonoma: "b55cd2955482f867d11222e395e48221c9c8d93ec7a58e9f76f665057726d6e9" + sha256 cellar: :any, arm64_ventura: "56ff353ae83e9d176e476441f0a269edc6c0c5c75f0d9c9fe6c2ccfe348e7da3" + sha256 cellar: :any, sonoma: "61a70ae92b382b6821b673db9bed6b99af2f003c82e8f707f226e0c7956921c5" + sha256 cellar: :any, ventura: "69fcafbd8223f8d4ec935e711b2feb358fa75118968698330ecf53d8084e4046" + sha256 cellar: :any_skip_relocation, x86_64_linux: "28094999cf5a057ab93f4379c271d7973481a31cecc7e1f6d6005085c8749e7d" end depends_on "cmake" => :build From d89823e1ccd7788066203c627098a6c75fd2a837 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:04:01 +0000 Subject: [PATCH 61/91] libpq: update 17.0_1 bottle. --- Formula/lib/libpq.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/lib/libpq.rb b/Formula/lib/libpq.rb index e3cb4af0f85ea..9aa8693f770fe 100644 --- a/Formula/lib/libpq.rb +++ b/Formula/lib/libpq.rb @@ -12,12 +12,12 @@ class Libpq < Formula end bottle do - sha256 arm64_sequoia: "b0ce742bd7027442b48fd665367048856c44bdc0aad8b8189aa2015456d96e5c" - sha256 arm64_sonoma: "85f7d3d183a0959b8fec6f888b5b69f409281da844499e8ac32ba4ec7d6a2ed9" - sha256 arm64_ventura: "f0b36a3460c0f1fa450aad4b2d686fea44a7eb3e04ee75b3b034fda38f10f9d8" - sha256 sonoma: "cb6b96bd419f966dd7865f8fdfd193ebe6fb59d551c9b248473d87e385426b7c" - sha256 ventura: "513bc08c47e1638fd77209dfb8cc5f8be2fc48e308687613d924e2ae1fcb6c3e" - sha256 x86_64_linux: "2ecaed074cd7bc5ed53aad3d8ee71862192451a946caa3c27d44c75cd02f5bd4" + sha256 arm64_sequoia: "83ce158b59c1e6c0f1e0b6321c9af1e141cc9ea22a520afa9348a7ea1e94386a" + sha256 arm64_sonoma: "0e7d0ca57a1eebcf021d3ae9573a5406e26f1be29bdc264beaf5a0ba011151f9" + sha256 arm64_ventura: "16055a30f8a594e616ae20e59dc87e8bb253ef602a844acf684e4cbc92a32015" + sha256 sonoma: "1a5d90741561c6384f6552b4483bd7e588ef11e92b5a88e2596fc7aeb565aeeb" + sha256 ventura: "00f99a18357b79c57c5e8a557192be42a7300f652f715ddd57ee92c8b37f067f" + sha256 x86_64_linux: "e648c3462066b5befe069154d52dff247a20908d3e8b309dd659b38e8417bac5" end keg_only "conflicts with postgres formula" From b1ef5e7b380b0b753996337b3dbe19963c0f85f7 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:04:01 +0000 Subject: [PATCH 62/91] libspelling: update 0.2.1_1 bottle. --- Formula/lib/libspelling.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/lib/libspelling.rb b/Formula/lib/libspelling.rb index 4f8d86f979f5b..6c6fe1e021f0d 100644 --- a/Formula/lib/libspelling.rb +++ b/Formula/lib/libspelling.rb @@ -7,14 +7,12 @@ class Libspelling < Formula revision 1 bottle do - sha256 cellar: :any, arm64_sequoia: "2c4271f43d13aea74b7c4d582489b7c442efd19cc71bcc7d27c741e5069b4794" - sha256 cellar: :any, arm64_sonoma: "0b67d9b2b9d9b93e5a71cd91c413444c656e8a30f6477f18f4386bdf30fb9187" - sha256 cellar: :any, arm64_ventura: "b66212b63da3b6f4b08f43c0aa91867c6519264bfef080a64213397910f457b4" - sha256 cellar: :any, arm64_monterey: "fa750d80d38e7dcf30ec59ffaf63e0fbe2d13f0586c28732072e5b1a6836a663" - sha256 cellar: :any, sonoma: "53c748d558f513ad1e98da4c6f956fb39421e51c6d35503b4ab2b6b5bccace15" - sha256 cellar: :any, ventura: "82747b3e4fd94dd53bc8a7bde8487bee99bd86252e58a014b10878389fcfa65e" - sha256 cellar: :any, monterey: "c5cff6a0fc0b2ddc1a75e04f4ed0cc3197f571b80170522383b6fdf3d60577a6" - sha256 x86_64_linux: "59f65192b18ebed20951c1aae5af463dec1206eef1bc4779114f5bf06c01d785" + sha256 cellar: :any, arm64_sequoia: "acdd32585f66bf2dcef0ef13c0166294ae3e8742eba12f88b4f8fcf78a9644e6" + sha256 cellar: :any, arm64_sonoma: "ca7f5c29c5ffca0ef01ca9d2488eb1749e21ce456593096b4b60431a66b1cbd2" + sha256 cellar: :any, arm64_ventura: "c8487296937ad4d072c1728c97163c82247ee89f8caac40174518730b16826e4" + sha256 cellar: :any, sonoma: "36dc778f440851ade2fe2b56c494e7058f3804117b04edf0ba7fb5f29a05d034" + sha256 cellar: :any, ventura: "2f1018445dabc70101abef5a49e13b5e32c886f6d246f7788f651dad221cc4ab" + sha256 x86_64_linux: "4b771175ee3b8db56799e624bcdb8e077b14487bd97a98a6fb40ba2b644e178a" end depends_on "gobject-introspection" => :build From 621135f55b1edfb8a3dec7bac096ec2dd7eb97cd Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:04:02 +0000 Subject: [PATCH 63/91] libvisio: update 0.1.7_10 bottle. --- Formula/lib/libvisio.rb | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/Formula/lib/libvisio.rb b/Formula/lib/libvisio.rb index 24549213c62f9..1c31e10064046 100644 --- a/Formula/lib/libvisio.rb +++ b/Formula/lib/libvisio.rb @@ -12,15 +12,12 @@ class Libvisio < Formula end bottle do - rebuild 1 - sha256 cellar: :any, arm64_sequoia: "87ac7f5c6b255fba3d53c09d49938f45ea373a7aaa12c8ab865ec690cafdf00b" - sha256 cellar: :any, arm64_sonoma: "9bfe32f374fdb4df86bf8ebc699f3aa29812590301e9cf081b2bb84b0b99467b" - sha256 cellar: :any, arm64_ventura: "e0c7e7d053872d13fb45dbab46fa56f56da4c1870102af9f099be704abfbed85" - sha256 cellar: :any, arm64_monterey: "35c16739c618799fba69e03d20f12721acfeb83dde4145cde6858d18c787c71a" - sha256 cellar: :any, sonoma: "1b2b6787013e9a518bb237c218d860e229c8b3469d7a1770ced6d94d1ee8d170" - sha256 cellar: :any, ventura: "2963b1b99018b111a783072a9d6abd0a02fe229e22a25d3c8ba0f6265069831a" - sha256 cellar: :any, monterey: "b253cdf2cecb4346c3f09299e2e4231fede1f68b16bcf4ae81402e2cf0204875" - sha256 cellar: :any_skip_relocation, x86_64_linux: "0959a2cb94e549f664c6279543101f1a53840892c0155cb3a734cc03f552feb6" + sha256 cellar: :any, arm64_sequoia: "ebebaceb54777a026f7a0cfe6e3b9282dc40d359416a0a6ab9236ac0faad4d02" + sha256 cellar: :any, arm64_sonoma: "fc2b2c30cf2e3df7f21a9b0518a454c1490182f555c32e80db1a944b1323991a" + sha256 cellar: :any, arm64_ventura: "84ba4a807fe220d9226d6de48f093c3c9eeb68d55d6026cbd2829454b7294158" + sha256 cellar: :any, sonoma: "789b83140d9161fe4856e7c6c5dba97dea622c2ed05d736dcb0b99195f21f2c9" + sha256 cellar: :any, ventura: "c6a08f0171c8df5718e886f36b8285d8701ecfce6c6c5d439c088f4d69b559fa" + sha256 cellar: :any_skip_relocation, x86_64_linux: "5c864ef2b4a42cb7e3b1b7aea3c8c0c3eb79d4df2de9ac3e1ff747c4d3ba6072" end depends_on "boost" => :build From 8d7c2548a482e14add1505b20988561e49ee79de Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:04:02 +0000 Subject: [PATCH 64/91] libxml2: update 2.13.4_1 bottle. --- Formula/lib/libxml2.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/lib/libxml2.rb b/Formula/lib/libxml2.rb index 55c50f2a03b9f..91dff16de3f22 100644 --- a/Formula/lib/libxml2.rb +++ b/Formula/lib/libxml2.rb @@ -14,12 +14,12 @@ class Libxml2 < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "28b2523edb939ceb85216103be88e994a156a4f0157a045ce03bb2418239926a" - sha256 cellar: :any, arm64_sonoma: "3e95a731b533d2151d0ba3924d38459db34dc1b09142bd5388c38489c690c05b" - sha256 cellar: :any, arm64_ventura: "f9e6108a1f2564a54155cabf79c5b62d1472a3ccf7e3bd87a11667cebd9e149e" - sha256 cellar: :any, sonoma: "f2ee23b587e3d0390cae43a9c396f417ecd66ba599ace888983914f8c3ba91ca" - sha256 cellar: :any, ventura: "6a407f5772c16f7e4faecf439e0df8bbffbd6df53a7214981e45b9a8b9a8f029" - sha256 cellar: :any_skip_relocation, x86_64_linux: "07d2aa6c77733470aee3cfddcd2e9159f1ea4184a297cfc2de33d9e5038ca728" + sha256 cellar: :any, arm64_sequoia: "e55be8b308a20960064eda65e61bf119ed063c016c3af3fc512b78a2a7902105" + sha256 cellar: :any, arm64_sonoma: "c7723baf8bb27b7207c095099fb98a4e35262922ad0984e4d43e7f8aa1c2ffa0" + sha256 cellar: :any, arm64_ventura: "022e585d660f17306b4a6aa38ef5c3eef5bcb91fc1911c47e4c5311fc726508d" + sha256 cellar: :any, sonoma: "5db978e999a8f3ab0f72380f37318620dec63c9a52b01d49bed01e9a78de3cc2" + sha256 cellar: :any, ventura: "0f8e4bb206959e34c7b96afe45e504bc6c4ee8e076253f04487c0c239a19e8d8" + sha256 cellar: :any_skip_relocation, x86_64_linux: "56efca78252ed7c800f31bb97afc41db3fc5eb4f626de440769c1f846d3e7a98" end head do From 20843848b6abeb3809acc9151d5abe5ff84a8da3 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:04:03 +0000 Subject: [PATCH 65/91] libxslt: update 1.1.42_1 bottle. --- Formula/lib/libxslt.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/lib/libxslt.rb b/Formula/lib/libxslt.rb index 11989a36980c8..364889104d4f9 100644 --- a/Formula/lib/libxslt.rb +++ b/Formula/lib/libxslt.rb @@ -14,14 +14,12 @@ class Libxslt < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "bf13c5f7c1e76a199ed494c88c24eee4ba697acba83248566eb4e017cc9226c6" - sha256 cellar: :any, arm64_sonoma: "3c3a336b56c8384b9c2956202cc78e28271db8b627a65227f77f049d387b8c05" - sha256 cellar: :any, arm64_ventura: "fd6b363128cde585e7086df6d54c8473475a568842b6aa04add1947dae8b9135" - sha256 cellar: :any, arm64_monterey: "27c8a5e233ab19a82557b33c99f4e226610859832b27c18276a49c1a3765621d" - sha256 cellar: :any, sonoma: "33fbe4982e16be91957f9eeb77f35f70385831d479a15b87908389a1077a475c" - sha256 cellar: :any, ventura: "82e7425e4331d0024a053434efbd3e6035721a3f792b3fb5b8b8d72fce88cc73" - sha256 cellar: :any, monterey: "1609668b445f07134b3f6fafa6cc0307d0659466f2d4aa708e0787bf3a064a6b" - sha256 cellar: :any_skip_relocation, x86_64_linux: "222f19398d1b8f2d1efb196b2336d9b6a8b805abd6b3ab3f1d002112dc7fa67c" + sha256 cellar: :any, arm64_sequoia: "1e5743ac455f3135b1238d5bfc26860f5421093761b7c6974579d9db6dbd68d8" + sha256 cellar: :any, arm64_sonoma: "3027548c825b0f6715294f5ba996e580b09c6530d459788044a6a095cf789a24" + sha256 cellar: :any, arm64_ventura: "ac34533e43ac19e2c259598ee0b233b7f75e66547423b7fe0a99f5b27be5c7fd" + sha256 cellar: :any, sonoma: "bd9313ff618b8a9a2c4b55948d3a57162017e1c01deb2cc7e2529814be41f904" + sha256 cellar: :any, ventura: "5ed5bfee0e7dbfc436885d85dd498beac016647ff997fe3da54ae3972899fdf2" + sha256 cellar: :any_skip_relocation, x86_64_linux: "09861e3e118d40c2ab0eae14761182f95aa6c71600c5850bea1c0ee32afe0b1e" end head do From c487a00ba27faac75b41c1773f7d83a5210173d9 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:04:03 +0000 Subject: [PATCH 66/91] manticoresearch: update 6.3.6_1 bottle. --- Formula/m/manticoresearch.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/m/manticoresearch.rb b/Formula/m/manticoresearch.rb index 3e2ccad757844..ce7d4c01a80bd 100644 --- a/Formula/m/manticoresearch.rb +++ b/Formula/m/manticoresearch.rb @@ -20,14 +20,12 @@ class Manticoresearch < Formula end bottle do - sha256 arm64_sequoia: "d1cc0bf982a31827707598ebfca997641504ff4807402ce3fefb7249e9898cb1" - sha256 arm64_sonoma: "e8c8da051f17ed8e3984e7a73b2956fe9dbb15af20f6586f7c639b82871d8b76" - sha256 arm64_ventura: "7af52d4fa6beb2a7fe7a7fab57d7781c50f340e1c4f164668e03ca543ffc36ba" - sha256 arm64_monterey: "f793c0bb62386e8cc63f9657788d587c06dc742b507ac3c28d1d828d7ad00c8e" - sha256 sonoma: "6f42e036fa7fe8fa7b5e3da02e0c4e0c685c862e0a332d7329aa14d75264007a" - sha256 ventura: "ed97b55541841ab96bec286202cbc13bd6e4b3768f82ad18b4a207d2f4d631c9" - sha256 monterey: "be12886881943aa6c44fe6f6506322f08163f129e4c91fcb4d3db9a8045bee9c" - sha256 x86_64_linux: "5ddaec2c620e960e04733e79738758b88ecdafa09284c11283561005c3cb2449" + sha256 arm64_sequoia: "c1d3ba2930306333adf8fb0b520fab4aa1049b8820848ab8ebebf26c65439392" + sha256 arm64_sonoma: "62aa91631038e5eb4b927d98348799449b0d0279f682bbb57517aeefeb04a31f" + sha256 arm64_ventura: "b8967a7b72cdcacf9d52ee55b94da412bafc1fe0ab1a12405758ef1efc9684b9" + sha256 sonoma: "d07adf6c1e6a4fbf85e6c0883a961837b3de87e79778b81c1118db8fc661237f" + sha256 ventura: "14997a93fa20490c7b3709423817afb9637c27ef47ed4150f729f1d8faecffa7" + sha256 x86_64_linux: "4e34dac8b96e920c3e8852afba0ebebc7f1010edff93c9c887d558ad1456a413" end depends_on "boost" => :build From 4ed3c135e6fef83d8fecb0c46e304fad64bf41f4 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:04:03 +0000 Subject: [PATCH 67/91] mapnik: update 4.0.2_1 bottle. --- Formula/m/mapnik.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/m/mapnik.rb b/Formula/m/mapnik.rb index 5ec26a0abf4dc..314777cf8fbd3 100644 --- a/Formula/m/mapnik.rb +++ b/Formula/m/mapnik.rb @@ -15,14 +15,12 @@ class Mapnik < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "26640f552d65f93b7945a55e0869f5c2d05becab2b5b0784c41982a77503e8f0" - sha256 cellar: :any, arm64_sonoma: "a08567fab792639725b4e49a52bdadd453663dd6382e425e2543dc488dfa6ffc" - sha256 cellar: :any, arm64_ventura: "4a63b043bf14cfd50a5542e8675241c6688914fe04e36fe8b07404f2844bbb42" - sha256 cellar: :any, arm64_monterey: "4f6dce463d60991c23de3f2671167a17b00b14293a431506211b5e4afd804803" - sha256 cellar: :any, sonoma: "5f94034082640323ab30dd80bc312e15f1bbec7478b0bd4a4581c0a62b50eec1" - sha256 cellar: :any, ventura: "2b99f0190fb783e7ebaa4a447c476dacb0d33ae331e22160009e2b44f7997cf4" - sha256 cellar: :any, monterey: "52f154e3437dc9ab1970833bd7fe3ef62bb8cf8015d5c7f234c65d248714a8cd" - sha256 cellar: :any_skip_relocation, x86_64_linux: "7fecb83093c9547b2ead8be587b08d124fd7f98db62971d972f550edcef96dd6" + sha256 cellar: :any, arm64_sequoia: "fa50fbcf7bccfda8776f66b624a66b0d8efa750afa93881403879c857bd26638" + sha256 cellar: :any, arm64_sonoma: "471145019614d7468a9eb6a823381af41b07a46619e3d06d9059cb539bcfe83c" + sha256 cellar: :any, arm64_ventura: "b665c7179dca160990c2b21ba5fbac88ced96c9718591b8bf271c28d903053a2" + sha256 cellar: :any, sonoma: "82f415996ea6d244779903c718a1196338f3b9efe72ea14a0d64ca119484bba0" + sha256 cellar: :any, ventura: "ce2d965f33b79c612bbce543d3320e8f96e4d96b9ea5a4a5d1bf68ae1f84bc57" + sha256 cellar: :any_skip_relocation, x86_64_linux: "258fb4ed55478f0fbf50e74ef23ba9d2da75af065eb294849c613aadcffe7672" end depends_on "cmake" => :build From 7ebd0cf0f5e7069027c07801336f9e8c0d2212a2 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:04:04 +0000 Subject: [PATCH 68/91] mpd: update 0.23.15_4 bottle. --- Formula/m/mpd.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/m/mpd.rb b/Formula/m/mpd.rb index 74939ff36cfa5..fcbb2cc321464 100644 --- a/Formula/m/mpd.rb +++ b/Formula/m/mpd.rb @@ -23,14 +23,12 @@ class Mpd < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "1477a629f78d3a59ec276c2ed76fcee30fab741a21c3afa05fef1f26c1f4c336" - sha256 cellar: :any, arm64_sonoma: "a0c5ec95e9166169ff6f6cde2f41d7c5af4aba7f96f69c09843706f811c18b02" - sha256 cellar: :any, arm64_ventura: "a53881cb62b2a4a5ffb73c3ada4d68ae81d7b83fdd3bddbcdb0f621289e2ca45" - sha256 cellar: :any, arm64_monterey: "79e0919e8c4439882903acb722454e7b90ccf83b3c53c1343db1d2c37eba7484" - sha256 cellar: :any, sonoma: "8e89240bcd8df2bdf4b1c77365f8bde9234b23196ca5886d511e62a4a6202637" - sha256 cellar: :any, ventura: "eecfcd3df5af3e08b03eb11308b95a81188f886f8fd770847254351ba7c3defc" - sha256 cellar: :any, monterey: "89927c46ef03920991d68708b95d4449a2772797e2e88e689b15d915fbcfd169" - sha256 x86_64_linux: "75d0d90d316c773424592fec34f88647029259f8f71b7b3547481bfa0250c2b3" + sha256 cellar: :any, arm64_sequoia: "8a12b2f699b5e35306f0202e23a8e70c4d4c91afb31d69dffd52d7bd5d6c9d48" + sha256 cellar: :any, arm64_sonoma: "c075df5f4127773fd783ca601fe9c3db60aa44c258938c5d98f5ac2521e4f260" + sha256 cellar: :any, arm64_ventura: "81a28f9ac47a7ced4f3478668c8e191b4f3dd3be8f79618ec92ed9676ac413f7" + sha256 cellar: :any, sonoma: "6e679a66d2b7620c4e17432701859b21aa702974380779f7cba8499a83544960" + sha256 cellar: :any, ventura: "ec80333810dcdc8404eeac11a94ed3ac9517dd7a6a73035a16bcd38b1b12474a" + sha256 x86_64_linux: "0686b5d3e7579ca2fa949fe9c85869a9808699eb58db6524fa73b5e4e3e03f73" end depends_on "boost" => :build From 1e2480dc78543c7c2971d40f53c4b33fee32196a Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:04:04 +0000 Subject: [PATCH 69/91] mysql: update 9.0.1_4 bottle. --- Formula/m/mysql.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/m/mysql.rb b/Formula/m/mysql.rb index d384438a5d77d..0f7480bd3e829 100644 --- a/Formula/m/mysql.rb +++ b/Formula/m/mysql.rb @@ -12,12 +12,12 @@ class Mysql < Formula end bottle do - sha256 arm64_sequoia: "7d3c4494fe892cba4354a5b99676b0e8d038a903a57ee22630a7a64feff88f2f" - sha256 arm64_sonoma: "0fc64a850a7d862eb3143ff163175e46151d094e0ccbc5aa1ae3817716d3c3cb" - sha256 arm64_ventura: "26f1f9195f2b5e280161a4b4973eedda29ebbfa7b35cdcadd884df90b70ed104" - sha256 sonoma: "4410a402f65201900d058dca22f5ec1b859c03ea7fc56f976a3389b085ea1914" - sha256 ventura: "05ab9d92e182e65eaa36b68c09cc816d2b7da038a50f5802fb360e6231106774" - sha256 x86_64_linux: "5ed448269e91700b0add6b35220314637342ae008d4aee525cdb86c0784c76f1" + sha256 arm64_sequoia: "16dd296951c11dd0c603b0fdb10ae2a3be136abcd5badf97c5e6102178550b1f" + sha256 arm64_sonoma: "c3b543fbe170198e59a25548b8e4f616c2b029b1ea53dc07e9eb3c6a9897a37c" + sha256 arm64_ventura: "58fd92a9ba6c8ec16e9962d850fd3995982275ee337cc0a2b845dbf93124aab6" + sha256 sonoma: "15d27df2b4f2061f29b1250603bccd5b6e8fb5940517364a3d09a78974b77761" + sha256 ventura: "442a458937a726755d13c170621b8e1c9694608cc9f140e71db10eb96da15f42" + sha256 x86_64_linux: "522984610cd481928f33d0b3383306538c72231583b3dadcab2f8058848c1384" end depends_on "bison" => :build From e0eebcf165f6397a8b62e518301a07e486684901 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:04:05 +0000 Subject: [PATCH 70/91] ncmpcpp: update 0.9.2_18 bottle. --- Formula/n/ncmpcpp.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/n/ncmpcpp.rb b/Formula/n/ncmpcpp.rb index ec08c7c9b4e45..acd238fd35b8c 100644 --- a/Formula/n/ncmpcpp.rb +++ b/Formula/n/ncmpcpp.rb @@ -12,14 +12,12 @@ class Ncmpcpp < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "0eb8239ae0b57578d05dc9271fb7fdaa800a709a8b3050d7b3e118b7ca6d916c" - sha256 cellar: :any, arm64_sonoma: "697505ba19ceb282b1f3d6a7ee9dca9850e5aacbdd555c06726360b7b3e34807" - sha256 cellar: :any, arm64_ventura: "fddd6f8b41e1ec3c6e3b8723fb6bd02232f7999eecb104cadfd1f5342d86253e" - sha256 cellar: :any, arm64_monterey: "54065a4855826eeac1e1fb87760e72bc7a2b243c41657270a7115bad5714d175" - sha256 cellar: :any, sonoma: "fbfb67620edcc0c907762dcd77002530c3b43130856c7a90daa0ab26f3cd0faf" - sha256 cellar: :any, ventura: "2be85dace5f5c11ba98510972e23321d6cbd4b8dfdd960f50f95703b0e658910" - sha256 cellar: :any, monterey: "493f9684b942ec5112ed4b4f61112265eb58a49acfd0e5761a4c465e179c07ee" - sha256 cellar: :any_skip_relocation, x86_64_linux: "255f731bf0430d37240b3ea8b095eb06c39e7240f797f017134217b420300db5" + sha256 cellar: :any, arm64_sequoia: "87e6097bb1197995aac78dac724f227bdcbcd17b253bcb0d7caa3e6e79e59a5f" + sha256 cellar: :any, arm64_sonoma: "67d73c172be28c9f644500ca34a6a809429e84ac9865908ea3f3067f8f9b1cb8" + sha256 cellar: :any, arm64_ventura: "eb1c978c8fdaa32c2a91812d31f6187e8c513ff44a4a6c327f64174d985f2d2e" + sha256 cellar: :any, sonoma: "9017705dc5879ee65956fd43d43bf75bf0afa36df5d01a5dd5194903b5f86a94" + sha256 cellar: :any, ventura: "20feeb1d157ac235c2bf18c7a50d43a9284bdbc8b1c0d29e6fe8ee924a52aab6" + sha256 cellar: :any_skip_relocation, x86_64_linux: "91d3832e67611b3860d18102d8648982326ebb7e91869d3d237eeeecb5693d7e" end head do From 9793f247d4bb3f545580c9bcd5eef6add5d3ce7a Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:04:05 +0000 Subject: [PATCH 71/91] node: update 22.9.0_1 bottle. --- Formula/n/node.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/n/node.rb b/Formula/n/node.rb index 5ca92ef2f37e6..74cd2cf503078 100644 --- a/Formula/n/node.rb +++ b/Formula/n/node.rb @@ -13,12 +13,12 @@ class Node < Formula end bottle do - sha256 arm64_sequoia: "0bfb1ebbf304458e9ff7c2cd0a1c410c06f51aa0fb8d458200cc274e2c66e16c" - sha256 arm64_sonoma: "05299315937716d7646a7bcf911fbfd2dbafc0be73e42a126203b00b565ab657" - sha256 arm64_ventura: "c3eaf571f4e12eea25b74bbff5b82bd85c2117ecfc09af9bedaef238fdb94cc8" - sha256 sonoma: "dfca05a3068ac014f25fe1a21c2c771d2a44cc7d04dfed556d6ca04b01033887" - sha256 ventura: "538d42997595a59d7c242dc78fd4412121ae6e3ab475223a6f1b89ec3a8cad85" - sha256 x86_64_linux: "ca407a117cf667d560a24f8db3de0f7675cea6f43f3832e7fbe5460501059e92" + sha256 arm64_sequoia: "cf11099a798826240964dcf984741456b73218f177dd16d8ec56be676e1f29d0" + sha256 arm64_sonoma: "68dee27224d3715ce86766563d89a834c03d7d9b35eee7150c25d94ba29c8b1e" + sha256 arm64_ventura: "d9b7844150021e8ec32468c6e5cdec4f0863988643eab4b0578d8e16baaaefa0" + sha256 sonoma: "df14e1b67ee62cf9a33300f59f3d6ff6c4280f76dfcaf5279baa673b874ad9f0" + sha256 ventura: "9be7c7082adc46119a6c52ea413a5437094d33c894b4c833136387aa953bfb12" + sha256 x86_64_linux: "9447d0936c6b3eb34cccaae5f55f8886f5c920dcb17743ac9569505c78b9b30c" end depends_on "pkg-config" => :build From 8fe0a2d57d8164351834ae90c90209371578c4d0 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:04:05 +0000 Subject: [PATCH 72/91] pazpar2: update 1.14.1_6 bottle. --- Formula/p/pazpar2.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/p/pazpar2.rb b/Formula/p/pazpar2.rb index 06d52610fc602..73218f03be2b6 100644 --- a/Formula/p/pazpar2.rb +++ b/Formula/p/pazpar2.rb @@ -12,14 +12,12 @@ class Pazpar2 < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "2e52d8a22589e2f6678dc1d75ee1a467b64f1f1ae9104d0fba38839ae5191cbf" - sha256 cellar: :any, arm64_sonoma: "0f5b9eda587cc7108478df960e74800ce079e09bc131199b24cc37c6ed2ed0aa" - sha256 cellar: :any, arm64_ventura: "19fe5a070389f82d87c36335ac4b123d8c72cff599e973acda4adb6e7be0384f" - sha256 cellar: :any, arm64_monterey: "c849fb96b762c184451e288ccde1514420e2b8071856d000e5b0a4ba5176a278" - sha256 cellar: :any, sonoma: "7da68c0e0be9587afa65f166f41e20d6e6e6dcfc1d0fa55443c747ca867e4f03" - sha256 cellar: :any, ventura: "5ec6a7c0bd7bb41976b42b3514b5c66f58e0021a027ac7136fbc3d2e942d6055" - sha256 cellar: :any, monterey: "e0d0e10a9d903782753abe567aa3610a310276f2f4ce0a1332c02e0b22e5cfa2" - sha256 cellar: :any_skip_relocation, x86_64_linux: "3122dee93d74f767ca110f6ca80763c78c4fa9d376892b08fdbe3e27f98d0cce" + sha256 cellar: :any, arm64_sequoia: "4b341966194b7c988cc8b4af73502ce274e2d7ddc536fd73afeba131460a1b30" + sha256 cellar: :any, arm64_sonoma: "7ccf897d5318cea5448194edf0ec10ac3c5ada0b9f3b5cf129fe04e30719149f" + sha256 cellar: :any, arm64_ventura: "7283dc88d4e3fb27f79439f7d7b8f289c1984735049e283c9b5a520f669eee38" + sha256 cellar: :any, sonoma: "021b31c71579217e9dd7fdbd4f752ce4b155261e2647e90328a763cd96b12076" + sha256 cellar: :any, ventura: "a84bf9859a3a7ba300b3a8325be1f714ffa1dabfa9b0ccd61b46d8351ffcc666" + sha256 cellar: :any_skip_relocation, x86_64_linux: "7e1d83bdb114ba8c0039248e08a224e042e1abd8f233aeef9306afe1ff6c2d0d" end head do From 2463e114dbd6e4feae6f71b6ad1d6cedb51315ff Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:04:06 +0000 Subject: [PATCH 73/91] percona-server: update 8.0.36-28_1 bottle. --- Formula/p/percona-server.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/p/percona-server.rb b/Formula/p/percona-server.rb index 1f5eda9cc2dbf..843c27b66b636 100644 --- a/Formula/p/percona-server.rb +++ b/Formula/p/percona-server.rb @@ -20,14 +20,12 @@ class PerconaServer < Formula end bottle do - sha256 arm64_sequoia: "cd76c0b42e96b03f9b42c3e49fbf3846a4df8bc46775213221b6ad083ffc6130" - sha256 arm64_sonoma: "e8ddfcd137263345d70bdb98a10ce465e3afa3742e0340176ced344d7a76af09" - sha256 arm64_ventura: "fece2bd93b32cc7798eae60ec05ffccb6ca8f1a2514f17413e5f60ac449851e0" - sha256 arm64_monterey: "792e8dc5522ae83089e3ad379d390a0b6830d386e9904945db9bdfb52e48a29a" - sha256 sonoma: "343a4d8124a980e1c90e96978c4a648a1f14f8e0b2539cfd21584119729f76f7" - sha256 ventura: "828ed28d3a9642ced256561c2d71c717ea95b85590e4aed2f2400e8af0a30bf7" - sha256 monterey: "55b1d398b262723c6ca7db6bb4d9e11fbae6246d0294f7e63983b0ff5cb5bae4" - sha256 x86_64_linux: "8220675cd32b2106a4d4d03f12189e17c4184e55f3662287108d559e9d1f979d" + sha256 arm64_sequoia: "c924c7a9f1cea7185b1bc83b2cb475e7ffcc42cfad09b37af89340e25cfec41c" + sha256 arm64_sonoma: "3ec708717d596a91d01fa62adbf4a0416b5df8079bc7b62ee560170a86073cbb" + sha256 arm64_ventura: "a33c79982f16cacbfd20db032bed6c7ee3ab690c8090057c0099fea8f673eef7" + sha256 sonoma: "b4bee41231557506fb1a0285698f132b4c3679ccfbd8459c8ad922511c84df67" + sha256 ventura: "61752de2787798a6f255bd4d95448df58fa782e137e32374bd57dbd301999188" + sha256 x86_64_linux: "1f9c75b6455a853ddd26051a612353ee852c2dc0785b08b1c3e8c3b79e6a608b" end depends_on "bison" => :build From b6ab7c80dda043413988aa7a224bb7d59e8cfe7a Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:04:06 +0000 Subject: [PATCH 74/91] php: update 8.3.12_1 bottle. --- Formula/p/php.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/p/php.rb b/Formula/p/php.rb index 5496f95447fa9..d9398a6e83dcb 100644 --- a/Formula/p/php.rb +++ b/Formula/p/php.rb @@ -14,12 +14,12 @@ class Php < Formula end bottle do - sha256 arm64_sequoia: "59ed687f3c95122018e2137249a00f0172eb83d84a348b5735f31f1e9ff958a7" - sha256 arm64_sonoma: "042bf7b01c8de99ff588514eb407f82c82ab3c0db22e7cf2e4f3c7edeb0176fb" - sha256 arm64_ventura: "79fde409b9add9295c31cdbe07646cd776cc62400704bfb15d248df25efb6b11" - sha256 sonoma: "9611dba306d69f5687ce88b7846c5f8c69d04b2dd4429bc1a6b0a4af2e8f109a" - sha256 ventura: "133ac2c4827d8522fabfc3d05d8862c97921a11158629895a2b814b9b7981072" - sha256 x86_64_linux: "1bfbe05948c998917c207a211a8aaf43714cc015da70f553d48035f01c8d336c" + sha256 arm64_sequoia: "3a1b68bfcaa324d24804cdc53f39713bdd3394783cd15c3b03d3d306af9c7dda" + sha256 arm64_sonoma: "86b422357d3a6e8cbfe4f40163bcb025d4a5165992d4f6183989e915cc6c0818" + sha256 arm64_ventura: "31fe803f14f625a3eca39317eb97d9235fd9a78bc92d92d18954c0790abc819a" + sha256 sonoma: "4ba01da5435b785da498d907d213651fc19688d14bffe5fa69f7147f9fe376e3" + sha256 ventura: "3a557eded33d150fc3eddbc18770c44adbdd5febbe5f02bdc01bebcdd7312349" + sha256 x86_64_linux: "4bcd6227512ff50b956298f82c4775662028969cb0701a6a13e1808a6f539846" end head do From 0f0d4c64d78c32a80b9f98b419a09270e390ca52 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:04:07 +0000 Subject: [PATCH 75/91] php@8.1: update 8.1.30_1 bottle. --- Formula/p/php@8.1.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/p/php@8.1.rb b/Formula/p/php@8.1.rb index 096dbbbd10df8..810456b0445e6 100644 --- a/Formula/p/php@8.1.rb +++ b/Formula/p/php@8.1.rb @@ -14,12 +14,12 @@ class PhpAT81 < Formula end bottle do - sha256 arm64_sequoia: "a0dfc7f805b18c94ae1cfb7f7cc43f7c2679897a715a676d6f82502c14fc31e7" - sha256 arm64_sonoma: "e6f33a553327310290d1683bf54ef20886f1c115caf07239463b8c873f4f1bd9" - sha256 arm64_ventura: "e5e84455c9f917980b235151253adfbda6193eb867a28250702f386ca5a4a6e3" - sha256 sonoma: "6296581536d82f8dd98ca8aa98915a69f1d22401a5d49f743032818e4a206703" - sha256 ventura: "68df6eae481240615d659db0a3b26652540b519d8c93bf951aeb956cb0a647a0" - sha256 x86_64_linux: "be6f1b8530c2a0839ee830961f2966d5915789cb73dc04365785019960d64db2" + sha256 arm64_sequoia: "bda07c54c481d4717807986dc68414e6afb99f212933b7c8ee40b677752db997" + sha256 arm64_sonoma: "34c90ef7ec0014051e18a25da64df075b08f6c2b51c0c28f12921fce0a01ee39" + sha256 arm64_ventura: "2ec9f47f5c3c3457f74541c5bc7cc5a0299f283c7bafe2d8db961fe22f43493a" + sha256 sonoma: "8b63e3d897b33cc0b8c51bee88ac8bcb55cc801bae809fd685634693c23fee93" + sha256 ventura: "c2749c7933dffc43ef5e517527f2b1e4730934dd30daabb93a225f1c7994a7ec" + sha256 x86_64_linux: "3ed5dced786f4116d35f61c9996826a87939b1e47b467c4b9e0062ce73fae0cd" end keg_only :versioned_formula From fc806978963221d66ca53d1fb0320aef9dcd1fda Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:04:07 +0000 Subject: [PATCH 76/91] php@8.2: update 8.2.24_1 bottle. --- Formula/p/php@8.2.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/p/php@8.2.rb b/Formula/p/php@8.2.rb index 283dcd2ee1f77..d9aaad61b4e3d 100644 --- a/Formula/p/php@8.2.rb +++ b/Formula/p/php@8.2.rb @@ -14,12 +14,12 @@ class PhpAT82 < Formula end bottle do - sha256 arm64_sequoia: "f069e47c20bd9add60eaf5b7900ec1ea80ceddc3547261011b0648d79368d43e" - sha256 arm64_sonoma: "5da3d50380fb414607f2fab95228d84b8aa6b58ae3cd329416202b9c48b84077" - sha256 arm64_ventura: "674ed070c9e3358f4179c683eae93dc639b567a37a52f4aca58b96128834828d" - sha256 sonoma: "f9f412aed8713eb7c73ad34eaca25ae023bfcbf5b40bf311b002df75de8effaa" - sha256 ventura: "afd7347743fcb543f2f8ec1f68cf69d506edec3f40fe58aad7458f2629fe293a" - sha256 x86_64_linux: "195ed79a4e372a98d4e5ecccf0ee4394be3c45c151f1a9f1fa11730e06813722" + sha256 arm64_sequoia: "3c6a83104193081c192959748f627b31d0ab07f80c4450d93f8f8427d7f476f5" + sha256 arm64_sonoma: "26840d376aeb10ccf1e343572f63a0b98e72a24c6c26196d526f766e278f2ca4" + sha256 arm64_ventura: "07e09ca7226060abe42ea07012cf595a8877bcbf3292ff1dcd5d50c3325dfa2e" + sha256 sonoma: "52cc2f48216f6ac3c06dfec4b9718b6e34eb34177fcdab29c59d1dd577933600" + sha256 ventura: "6396e6ba27ee8fdc6a3f53f4dcec4c169144a849d03abe4ba6d071e1384b87a7" + sha256 x86_64_linux: "aeaa83ed5f1510c3b8991fd894e8db051b87cf16b860a31a42443309f80e7a9d" end keg_only :versioned_formula From 134e6462d999cf640a962fab8821810723418351 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:04:07 +0000 Subject: [PATCH 77/91] postgis: update 3.5.0_1 bottle. --- Formula/p/postgis.rb | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/Formula/p/postgis.rb b/Formula/p/postgis.rb index e6ceea22ad438..551cbd0744ab5 100644 --- a/Formula/p/postgis.rb +++ b/Formula/p/postgis.rb @@ -12,13 +12,12 @@ class Postgis < Formula end bottle do - rebuild 1 - sha256 cellar: :any, arm64_sequoia: "fa7199217cdc71a7fc459885f47146dcbfe831633bbc6e3a916ffc37655d9bcf" - sha256 cellar: :any, arm64_sonoma: "45eeb9f286dc8a028c22360a27a796b008fd0347719edaa5a9402515dc3231f6" - sha256 cellar: :any, arm64_ventura: "8239b9230b45ca7e0a997484aac90cbcfb81b47c519e04410381a9306a783f08" - sha256 cellar: :any, sonoma: "575a907d23cdc03ec9953710f401f7b14330b015a0173d30158642e6de439be2" - sha256 cellar: :any, ventura: "f1de61b9a2b443d283f65dcc32c4653a32f5092998c9f3985a9c4e51308be6f1" - sha256 cellar: :any_skip_relocation, x86_64_linux: "c5537ac18cccf61c1ab51c11927584102c112ff4484d3093ac4cc897789513ed" + sha256 cellar: :any, arm64_sequoia: "e62283b563babcec87da699f8a55f3b5ffb4f4d4b36fd846ff8ac7ea2bdbf4d4" + sha256 cellar: :any, arm64_sonoma: "07140b0b5a70984e0585b12605be0f785f323b3983142cc19bcb54e678e8680a" + sha256 cellar: :any, arm64_ventura: "861e20ba9f29f26c35b2a69211ea2f0ce6f1153338ea82be4c2af295acc3bf71" + sha256 cellar: :any, sonoma: "2321eeccea6eaa85e436e179f6a57f8a2e92bacc657089050e05033bfa9198bd" + sha256 cellar: :any, ventura: "3379b2ebf83ea32799961f6821c7568eef036750c35e09f112201f850a458d6f" + sha256 cellar: :any_skip_relocation, x86_64_linux: "9f76fa3686dd71f6d04b227d179a8315e97cced6ad72cefac5ac1539763a71c1" end head do From 4cfe2bd834d92e9865e624ef5f37c6d549e9530a Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:04:08 +0000 Subject: [PATCH 78/91] postgresql@14: update 14.13_1 bottle. --- Formula/p/postgresql@14.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/p/postgresql@14.rb b/Formula/p/postgresql@14.rb index c5de396bde444..2bc4e06acaf2a 100644 --- a/Formula/p/postgresql@14.rb +++ b/Formula/p/postgresql@14.rb @@ -12,14 +12,12 @@ class PostgresqlAT14 < Formula end bottle do - sha256 arm64_sequoia: "1410b876ce0721287d483da3ebb177777faa7507b218c41c6353ff2784fd0454" - sha256 arm64_sonoma: "f4ba50648ecca21113ae0c7b7fb23c50d38420ba2eea0f061baaa3cbcc3188a7" - sha256 arm64_ventura: "8843cf8ec704ddc11241d1a88fd5654d2f570b22e2a5600bdced19756ed5c80b" - sha256 arm64_monterey: "58936a91f15f304babd7bc59bd9ee2d9d34fad5e2467a6db86657953ff2a90d6" - sha256 sonoma: "9b0cb6bcf1945c5669e787d44deb6081b9df7efd75bf4380bb28c907f4ca75fe" - sha256 ventura: "539bd52067af36025bf7c37259f8a435c55f26ac98f4117f7de3539537e3cf9d" - sha256 monterey: "b6762818557091c784bdfa389e0a931915ce16acaddc9d2825d3cf448d516bd3" - sha256 x86_64_linux: "54725f7474b94d359baf7e1e5b101e805ec922bd5017daa2b26979c6caad6d67" + sha256 arm64_sequoia: "177bebd91ca5f804c6ea83e40ce1f14c3e92ffff9d8d05eb1fcaccd649a54135" + sha256 arm64_sonoma: "5a161f556f2180fb033fde056b5099a0e6833c07d63078986dbaa3207da08b45" + sha256 arm64_ventura: "a181d1c827ae36ecddb142c8d540457732947c22ad557e7729d10b019998531d" + sha256 sonoma: "cd932cb4b7d14c2d0f650454a695c6f746acb262ac9b3328dd840bd1f208a597" + sha256 ventura: "d2aab91e74950cd8d2f87109404eae69926ec36592c1f38ae1c47a0cebca08d3" + sha256 x86_64_linux: "0e9c409bc6a0a6ed8d79036a9220f76936466d282195420661ba08fb2c9f74ea" end # https://www.postgresql.org/support/versioning/ From fbd4d82d99651bcfafdbeb94a68a8287e225b4dd Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:04:08 +0000 Subject: [PATCH 79/91] qt: update 6.7.2_1 bottle. --- Formula/q/qt.rb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Formula/q/qt.rb b/Formula/q/qt.rb index a61456a4bd388..e62e70de8ffbc 100644 --- a/Formula/q/qt.rb +++ b/Formula/q/qt.rb @@ -49,11 +49,11 @@ class Qt < Formula end bottle do - sha256 cellar: :any, arm64_sonoma: "ee963ae8db1a9aa4e704a8bd7661af582803a62b98ab01ceff7a30faaf84801d" - sha256 cellar: :any, arm64_ventura: "00211c4cdb53dcacceef31a7b86d1c86ce00a3888764fa8478d60eba0b3b2efd" - sha256 cellar: :any, sonoma: "d6ad879c3f896c504c17622c070b4203676694410f7b3b0a34a2c108250002fe" - sha256 cellar: :any, ventura: "ef5ef408a3ecb52066f08ec0554f3a771a1fed1efd77da39eb6758532f1892d1" - sha256 cellar: :any_skip_relocation, x86_64_linux: "0700ec3390554ab544a421e2aaa68f35634fafb6714369344e8718837dfba5bc" + sha256 cellar: :any, arm64_sonoma: "de0596d68828545edb19f9b4fdbd4231f55665ffe24445982cde1d8cab158e76" + sha256 cellar: :any, arm64_ventura: "15292f50c614f96b44909d9e6bd7740332d6f0aaea7d58867b72b4a92bcc91c6" + sha256 cellar: :any, sonoma: "dde328f798bab68dfec97e5e0531cbc2047f22d350bb59fc7bfdf5fd739f1ded" + sha256 cellar: :any, ventura: "b4fb7663f99e75b5e46e909002c415f0e7619bf5c5d2370071ebd4e1683e3182" + sha256 cellar: :any_skip_relocation, x86_64_linux: "660595e4ee37395e5929df612556de6dc044bec8937f9e7ce584d10e8a593c74" end depends_on "cmake" => [:build, :test] From 1511299be67583815de3acf9cd2b63ad61e68385 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:04:09 +0000 Subject: [PATCH 80/91] sile: update 0.15.5_1 bottle. --- Formula/s/sile.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/s/sile.rb b/Formula/s/sile.rb index 87d725f98408e..9734c88383dda 100644 --- a/Formula/s/sile.rb +++ b/Formula/s/sile.rb @@ -7,14 +7,12 @@ class Sile < Formula revision 1 bottle do - sha256 cellar: :any, arm64_sequoia: "d917f65ee5c6f789430d31c28ff1129dcd59a463c103f4b6835511231ac1d25f" - sha256 cellar: :any, arm64_sonoma: "a1801ebce21ef8b73214424bb9b2c8c8bcc4e28cee8493af697094a7363a8c40" - sha256 cellar: :any, arm64_ventura: "2d9fcfe4e250baec177f8db23c8d58e053a35f6a105d2c16ddcd4324afd8f0bb" - sha256 cellar: :any, arm64_monterey: "f44480f15c1d1248b2c22fb9c5cb72ae6b69b3df4da6d949ffa682b8975968d5" - sha256 cellar: :any, sonoma: "fa60e5df2d736decd381ff4f461d833d00954358567bab80a0dfd794d2020e83" - sha256 cellar: :any, ventura: "1616bcc807d1757f2a68486c6cb20636e832da9854e2eec55850685753d376e7" - sha256 cellar: :any, monterey: "417bb4b5ee1b3783d91e4d2821dd0d7c6fedc5ed47a3c192e27d0e5ffce3ca99" - sha256 cellar: :any_skip_relocation, x86_64_linux: "def682f18f0f928c68f5eefdd9a2fbfff89faae4f46ccafe0989f5403dd0b089" + sha256 cellar: :any, arm64_sequoia: "99457175ef945f3dadf7772a5803d241024dc3d0239c9374c127f31025065b16" + sha256 cellar: :any, arm64_sonoma: "0336ffc9958c96ad39c4cadcfcdda8d7e87eaca22089f99c00632287670a4348" + sha256 cellar: :any, arm64_ventura: "077665bc074168d89805933aefdf8e651943b7e78d08c213c461431f67fa1789" + sha256 cellar: :any, sonoma: "bde850dcc3bcebaddaeb56826ec4053387dee316bdb97e0b928aadb1a2cf1710" + sha256 cellar: :any, ventura: "7e4cdb78860f0e020f3bbf3b4153ca22a79d8274675f5749fd26799ce2140e12" + sha256 cellar: :any_skip_relocation, x86_64_linux: "3bd7be9973e8d3840c1e73546b9409cad93dc7ba52497e0bc2f957f06cb856d8" end head do From 48a520e0a89beaf67af548ae907bdfbe7d448513 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:04:09 +0000 Subject: [PATCH 81/91] spidermonkey: update 128.2.0_1 bottle. --- Formula/s/spidermonkey.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/s/spidermonkey.rb b/Formula/s/spidermonkey.rb index eb4cf35cada99..d59a40b56ee55 100644 --- a/Formula/s/spidermonkey.rb +++ b/Formula/s/spidermonkey.rb @@ -16,14 +16,12 @@ class Spidermonkey < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "a48639001f6f9ed05f6e4ebc1019c90973ca2527761e82a2bd4dc4d5e46032c5" - sha256 cellar: :any, arm64_sonoma: "cbea1e2cff3267795eeac7b12c1033c2e1159bcf0fb2aaba19db5df928419e18" - sha256 cellar: :any, arm64_ventura: "364079dc6acbed8160fda49345ce9028fc9f1b1d3a536bdfd14913f5693db4d4" - sha256 cellar: :any, arm64_monterey: "e63fd223d1d8b83fe4082a0b0bd194376a625559b7d5c74cef621f7953ae1a07" - sha256 cellar: :any, sonoma: "3e023d4431f7d23e72db93475d90a7e557c9a384d441978caa4fb00f1375189d" - sha256 cellar: :any, ventura: "d0ca7fb0c5eb46034d8071c688335aa3e160c3eae6573ef3f849669c5bb54257" - sha256 cellar: :any, monterey: "047654f00524d97eb78fc4e3a468f04c05246a0b6cdda4ba635a4fb3692c98ca" - sha256 x86_64_linux: "a0a206d3d430733f9567c7b435e719bb4f3a3708b3f096391624f1d3fa69fc1a" + sha256 cellar: :any, arm64_sequoia: "6fe0796eee858a564e69b1177dd570c2a44960d5fc6df5825d34f0ae5104e3ee" + sha256 cellar: :any, arm64_sonoma: "11974635b9e35ccd0edf36f553732fc91e7a8b968603e9be54a09b2a13a21f99" + sha256 cellar: :any, arm64_ventura: "b41e468afe95410db6fa3dcec3b506567bd360214870b54b18243f83c8e4e5c8" + sha256 cellar: :any, sonoma: "27799a651b2291ef1b6e15f5c09438c7383616852fa0020edcd0023f92732218" + sha256 cellar: :any, ventura: "2c9b914fd1c12313bc3a1eb5af3788ffd35983e9e7b40f1f7cffbb17d3bf8caf" + sha256 x86_64_linux: "a14155cd533018b60d756bf03f5123450683befe381854d92d18db20c9fcc812" end depends_on "cbindgen" => :build From e58d18b31bfc34d3d5d2129120d2b9f72ee6504e Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:04:09 +0000 Subject: [PATCH 82/91] tectonic: update 0.15.0_2 bottle. --- Formula/t/tectonic.rb | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/Formula/t/tectonic.rb b/Formula/t/tectonic.rb index 179dc73825336..d4957104e4c2c 100644 --- a/Formula/t/tectonic.rb +++ b/Formula/t/tectonic.rb @@ -31,15 +31,12 @@ class Tectonic < Formula end bottle do - rebuild 1 - sha256 cellar: :any, arm64_sequoia: "ccdfb46e10306ea5e546e5b4ab88cb743226dd7dc72c338aeed07c14579e9630" - sha256 cellar: :any, arm64_sonoma: "85647768c6b32b1cceebac4c541e5efbb99fdc566924fe4559f6533d161eb06a" - sha256 cellar: :any, arm64_ventura: "39804b39b3a365a653c64bd7c38ed9f8f8375b7295b4b488d65a9a0ea45fe465" - sha256 cellar: :any, arm64_monterey: "88d39d53987fbe343aecb1dba5b388bd87981bcef6f378ce16be169732f93d16" - sha256 cellar: :any, sonoma: "eecc9938bf7b89cdb57054f9f098ebc619a284fa6f6fe077f984ff8497c35a35" - sha256 cellar: :any, ventura: "aa1b9a3cca1c889ac3140030b3b940d18de821a75e7b10211cf20940add18c04" - sha256 cellar: :any, monterey: "29b6de4cf2fa8ea3de5f209fe3cfd3608cca115954989eb674679d1dd9651b45" - sha256 cellar: :any_skip_relocation, x86_64_linux: "8d15114dca090265bdd487b79a65295ff695ee1c928c5471fd1ad633fccfebc0" + sha256 cellar: :any, arm64_sequoia: "241db42c1447078e8e0482edcc66a29913ca412bf69de14ba04392df4a9200f0" + sha256 cellar: :any, arm64_sonoma: "e3c07400585937c7a0e7391d4ed6b038a4839552a6cbcf838b9ab521de9decfd" + sha256 cellar: :any, arm64_ventura: "eb6d3c4e2539a5c35c6cdfba38731d9512a098cf9f5161a2ce71560298752be6" + sha256 cellar: :any, sonoma: "c384757312754a13da913bacaaf00bc6fda14ecbb8b2b11380ba69e380c9eb01" + sha256 cellar: :any, ventura: "c021e77bb90017445aa1e7f6ad2497211112596d0d9de3e193ec9a9256b7c519" + sha256 cellar: :any_skip_relocation, x86_64_linux: "a6bcf34b8ef21be00079a5790a763db9e10d6c95bbc3193f51a10a735f7b54f2" end depends_on "pkg-config" => :build From 59b6f486b3b2455c80c860e6575f1e43b980b69c Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:04:10 +0000 Subject: [PATCH 83/91] tesseract: update 5.4.1_1 bottle. --- Formula/t/tesseract.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/t/tesseract.rb b/Formula/t/tesseract.rb index cbfd6173abbbb..7b7bfacca4f1d 100644 --- a/Formula/t/tesseract.rb +++ b/Formula/t/tesseract.rb @@ -13,14 +13,12 @@ class Tesseract < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "1aa1e95a7c392b42a06b10dc07ca4e3d068d4acb7d350fc8afa345187d7c0c6f" - sha256 cellar: :any, arm64_sonoma: "41f0427bedd959c89b6c0aeb4eca98801f229745d50e4aa39dfc05c31785e289" - sha256 cellar: :any, arm64_ventura: "ac7861b3d6ceb629f9618e0e5d73706196738cbb01f90bcc48418d25508b5d68" - sha256 cellar: :any, arm64_monterey: "ac2c5c4c3d242f88fe1eb198e1f0d83c1d714e6db0da42f11752efa084e1e682" - sha256 cellar: :any, sonoma: "43ad1eb8de45a461536c0d117767e46e50fb92a0d8a940f7022e9c55fef1da93" - sha256 cellar: :any, ventura: "0bdf6471b1818008bead07bc19f73128cd915421cbd56e4d8e5a2b78456c97ed" - sha256 cellar: :any, monterey: "d063d7ceb42dc5b4b921c5e5268f8f39f1dd710d313416be6e9fb8f2653736ea" - sha256 cellar: :any_skip_relocation, x86_64_linux: "99be97155dc76f21c1ff4522c39a63ed6630c061b7f55c6ed1a8a99abb83ba4b" + sha256 cellar: :any, arm64_sequoia: "edca8dcd15c9c5575a9e8a5a8da6a2bb70df96dea283dfda381ef71196313a3a" + sha256 cellar: :any, arm64_sonoma: "354ea4bc743c86f3118336a955ca4a8e61f5d37b8b7978c375ee437eea1b9832" + sha256 cellar: :any, arm64_ventura: "96ffde5ffcf48dc26eb59e74f23d7efcb762210c4771b8d900127af6afaaaf46" + sha256 cellar: :any, sonoma: "4db1a4fcedd3ac176b364126777589a7281bfb09f1052462c32725f20959f390" + sha256 cellar: :any, ventura: "96ef10fc82ec5da8b9b8221901050af0dd7ab894a4444625ec336e405e6557af" + sha256 cellar: :any_skip_relocation, x86_64_linux: "b05ff7b2127a045256885e991636d061c9efe4980c817bdffbb034e77c230cbc" end depends_on "autoconf" => :build From 0378ef67f7e8f8301bc5626e9bf4cfecdcc5d947 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:04:10 +0000 Subject: [PATCH 84/91] texlive: update 20240312_2 bottle. --- Formula/t/texlive.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/t/texlive.rb b/Formula/t/texlive.rb index d6e06eb955ac1..d3f8fe62656bb 100644 --- a/Formula/t/texlive.rb +++ b/Formula/t/texlive.rb @@ -34,14 +34,12 @@ class Texlive < Formula end bottle do - sha256 arm64_sequoia: "94a2f611a38724fbc8dc21aaecb445a3f2bb61fffd5a7bc2ed13291716fac2b7" - sha256 arm64_sonoma: "36f2ac1e40afea99ec819132bf2efcb5d47e4490c02729ed24444e6884b1fbd6" - sha256 arm64_ventura: "903ac239e9213bbf89ec733589406a5c060d7f35ad2e53c3ca0d1d2db39cebd0" - sha256 arm64_monterey: "258165d99a101ca6ec8afac14aa3a4006cab92bb26b2ab3e87d39a342ad0f95e" - sha256 sonoma: "b649f37b6ed625cf602c1218aea9f2bec68ec5deb8bc6b6a455f43dd7120df7b" - sha256 ventura: "060e5ae8e5760b73a48b738aa214a4434b2987c5c9224658c718257f2fde3796" - sha256 monterey: "8c26b5f1eb681a43adad972a79d97302f66f5be8d6ec72f807cf24ad583f2c64" - sha256 x86_64_linux: "b7847a9f7f3da040504204b65eb3f4a7c7c5f3ab9be13b7a8919d85949aaa265" + sha256 arm64_sequoia: "8df2b87b3e5dd1e8cbcf411ba01087f44124a7c0798e2ea92b6f1ab539882bc5" + sha256 arm64_sonoma: "789c9b7588798cba955bd5b4ed904f50cd96440cf249d9a6e4639faa925a471a" + sha256 arm64_ventura: "39e722eb05f849c70152f8017034402eabd4406b560f77a56dacfc9528f4ea4d" + sha256 sonoma: "d36fab3f2d82a1874455c600b49b0257fa36bbde33b0307c9f9b249961cf5eed" + sha256 ventura: "75a57de98c2735f315d51dedb9c0102d39fda3ab0dcea3a37ae666619849eac0" + sha256 x86_64_linux: "109a5919769a185f04fd1c1c34a462fbc07371e68fd25da3eb3d0dd7585e5a24" end depends_on "pkg-config" => :build From 7a1c0dc079e0bb70544e55f6d939157a8a9d7ed4 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:04:11 +0000 Subject: [PATCH 85/91] tracker: update 3.6.0_2 bottle. --- Formula/t/tracker.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/t/tracker.rb b/Formula/t/tracker.rb index adbcc808b462e..c48c284c347b4 100644 --- a/Formula/t/tracker.rb +++ b/Formula/t/tracker.rb @@ -17,14 +17,12 @@ class Tracker < Formula end bottle do - sha256 arm64_sequoia: "b817638cc06576c81d9914770d3d60c1d1492825f5c89841d3b7441f28c1bfbc" - sha256 arm64_sonoma: "a786b2b3491a5703f792f0011716e5cb7ecee55928caffb765a2b6ac3f55cab3" - sha256 arm64_ventura: "277812e0fda3fd75fada5fe36ad2809755f35605ad2550988ea5a1634ffaad7c" - sha256 arm64_monterey: "bc1401fea1e7c77ee3a1706c029aba7cde648b9228cfca990d1cd098f9e51bdb" - sha256 sonoma: "cf05c52e47410b399d2f52827d64027aa802009bee0db70a970a72009cfc5b2c" - sha256 ventura: "cdc13ce4c3b905226af7150eab017ad9eb08e3d894ed69e928b360cf218707c5" - sha256 monterey: "8a728aee6d68011f8bd3a071bb11edd3710996e45b8e1f2991d141f296ed1fe5" - sha256 x86_64_linux: "fd31fdf16061831cc0057d07f7dd89a7958c4895020fb7e4d9a058a984c2220a" + sha256 arm64_sequoia: "572ce6780679b9aa84e7ff00ea91e547660870e37290068f74e4ec88ca4a9ccd" + sha256 arm64_sonoma: "eba5a267f049004c51f5f1b8e0969ffe59c7ea7914a9e6abb313425b62247077" + sha256 arm64_ventura: "90aca5813f89aa0564cd8f6b1519f9f060b8d5f8cbbbd8f3143f668d0eabf7d4" + sha256 sonoma: "c035256e46520521dfc50ee2d67c6b255b82f4905f11b9a0d9fda4178424dd9d" + sha256 ventura: "2969610e34a1a51e2d9d8d5c18ab117b0683e6c9285772cea0ac280fec3ba455" + sha256 x86_64_linux: "4390b2647d6d14888e0467bc31d7a97f1a77997c0bc86d1d61ead40aca7eb17c" end depends_on "gobject-introspection" => :build From d791a286f67665624b3511576d95bc669c60e4de Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:04:11 +0000 Subject: [PATCH 86/91] vte3: update 0.76.4_1 bottle. --- Formula/v/vte3.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/v/vte3.rb b/Formula/v/vte3.rb index 21d01b8212a7e..6e0d0da24a4a2 100644 --- a/Formula/v/vte3.rb +++ b/Formula/v/vte3.rb @@ -7,14 +7,12 @@ class Vte3 < Formula revision 1 bottle do - sha256 arm64_sequoia: "e9968ae162ed90b8c97aa6c8628263a4287f83475e4bb94e3d16f4345831b4b0" - sha256 arm64_sonoma: "e493a594877dcc06595b725b96dd915289bdd2293f467c746a07c685aaa0e9b2" - sha256 arm64_ventura: "fef9c048213f11fe2cace83bd11a7c2d239bc3c4f0acad94206e7a758135f6ea" - sha256 arm64_monterey: "f80b773894ca38262ec0dcb54581c3daf3e975a3d6cb8f3f079b921289a824fb" - sha256 sonoma: "422a31aaa3512958bd5f6546d5480ba2e61db36f674e0b3dfb6ee5eb8cf16f27" - sha256 ventura: "4bd7c053119db55c5763afb4c8210b54932a578d55eaf17143bd9b9a6ee1f2ae" - sha256 monterey: "4f9d6a846c608303d5f2bb81441732bc2be1fb5f1de94c103dd9fa191dca8f14" - sha256 x86_64_linux: "f465add75933021f53c62287933fea92353640ec7e5e36c5be73ed0e541aa459" + sha256 arm64_sequoia: "4468041d31d005bde0d94d6eabcccb487d9695677da2c991d282ad3d99e4eb75" + sha256 arm64_sonoma: "d6b90c1a4b8074748174b0823a22d191c55345f8d1f0129a69f44902822ba712" + sha256 arm64_ventura: "09bf5e914cd32247c5b571f61d51208b62f852b1a9002f9b184dfa95a6cf5b2a" + sha256 sonoma: "029c5d9e8320e768c9dd89fadb8b54d3011aeed5146140b551008fd735a57599" + sha256 ventura: "55731ac8cee88e9f008ca0f47b4bcae57db570b425f504d55def7c4251c708b8" + sha256 x86_64_linux: "8f4ddada3aa7acd5f2d1df6f8bc0ab5a9ab1c4eda0a32e58c32c83bd01ef66cb" end depends_on "gettext" => :build From 47118f9b6e54cd3c2ebbd3bb5d0d2a34ac702373 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:04:11 +0000 Subject: [PATCH 87/91] webkitgtk: update 2.46.1_1 bottle. --- Formula/w/webkitgtk.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/w/webkitgtk.rb b/Formula/w/webkitgtk.rb index fee8ef49e2493..181688dbad5d1 100644 --- a/Formula/w/webkitgtk.rb +++ b/Formula/w/webkitgtk.rb @@ -12,7 +12,7 @@ class Webkitgtk < Formula end bottle do - sha256 x86_64_linux: "1c262f7ec74d4c05494fe20f2315441161051c71978d516269638f8c490a4d26" + sha256 x86_64_linux: "27d22a93922bf48497a3270df3b18a4639d71e5c9860a65edca92cfad45452cb" end depends_on "cmake" => :build From e25f3321d82e696683ca6b7c9ae563fd0cc2f75d Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:04:12 +0000 Subject: [PATCH 88/91] widelands: update 1.2_1 bottle. --- Formula/w/widelands.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/w/widelands.rb b/Formula/w/widelands.rb index d8aa75ca26dee..7cac3c4afe2cb 100644 --- a/Formula/w/widelands.rb +++ b/Formula/w/widelands.rb @@ -13,14 +13,12 @@ class Widelands < Formula end bottle do - sha256 arm64_sequoia: "6311aa32f42afd08e32f69f76b584fef409179adefe81166b8dff6463e7f62c4" - sha256 arm64_sonoma: "49df0bbc341c148bb09064dfdf41be0216f9c026e4cf78c803d5d58b15031028" - sha256 arm64_ventura: "5286091b56fb4c2bbd15841ac7074e07933bc75d4e1699d959e7da2eeabf5b45" - sha256 arm64_monterey: "8b6883a14cd5732b4d71e423573a48da53f05329552f581775ac06ddb3f6bea5" - sha256 sonoma: "07ea532a734d18fbb7d1cb08ad4fad5c5c2c742ab25b28ba597c10af765d821c" - sha256 ventura: "8be55a2c96d0782a1195c0beae0221f52d52938af570835268fccc6339ffe205" - sha256 monterey: "18ad1a1c68b547c4a7079cd546b7d9f07f0a9a75a04eeb9d1f1a85dbf9eeb402" - sha256 x86_64_linux: "9cb4ef5b7a47e801e43e43c3b848fceaf2cdc510e94d9cbc00afc27bdcc4e518" + sha256 arm64_sequoia: "ef5011b7b2949d380e2793bd2805d64ae6df4ff121cbbc0a527832e517ee04f2" + sha256 arm64_sonoma: "433046161980ec43882054adfe81d69b7a66be689816608d6436b027192af261" + sha256 arm64_ventura: "0c55b3ec21a434d72e4752b5da90111de2c9bf0118ea049221e30d538a84f224" + sha256 sonoma: "ff50e8ef45cae5c807fc27267fbcb133b010cfa8c7acf1bb493fed0efa91cebe" + sha256 ventura: "c629a2736fc3437abb528a9de87794edc8afb3fc22a4e0071322385ac2a601ad" + sha256 x86_64_linux: "7664648dc80ec5a0d70fa674628244f8a652b1e326f1f1ee03b7187570f43169" end depends_on "asio" => :build From 81b75d814d9234ac3808df5e9a62c86383101f6b Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:04:12 +0000 Subject: [PATCH 89/91] yaz: update 5.34.2_1 bottle. --- Formula/y/yaz.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/y/yaz.rb b/Formula/y/yaz.rb index 4bdafcdb786ad..2b23b1179344e 100644 --- a/Formula/y/yaz.rb +++ b/Formula/y/yaz.rb @@ -14,12 +14,12 @@ class Yaz < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "cdd2614e6bb233a8e1d721ad1579ae1f52704c8c97c240143628e67d11a78d23" - sha256 cellar: :any, arm64_sonoma: "f5f775d569c087f4d6b9eddce40f330e27a04d88e1cc08266267683144578511" - sha256 cellar: :any, arm64_ventura: "fcee21602cff1db846864202217e5eee1b73a419dbf21f7e49f4ce84fcc4d155" - sha256 cellar: :any, sonoma: "e4cb4a988e746915b5d812350124c76e831440ae50e2570362c9930d7ae84e0a" - sha256 cellar: :any, ventura: "19ebfe9d7bc5f382086866410ced5f1ba8aa821c499cc682651b6025a69a56b5" - sha256 cellar: :any_skip_relocation, x86_64_linux: "10d4ba3db077ddbf7cd73204859c8dfabc7e446f77c60e18314efb02e4838956" + sha256 cellar: :any, arm64_sequoia: "a44b7c5887c5410210f7230a0e93df46cbf48e60b2143758bca4474085471e4b" + sha256 cellar: :any, arm64_sonoma: "59f257290e52e8a37120a212aebdd115bd4af7b7626e33eea8723837febb4aba" + sha256 cellar: :any, arm64_ventura: "ef0e15a7a7b4b15bd4fb0d96adb25e78c13923a72e39b8782532eb491a56e841" + sha256 cellar: :any, sonoma: "222ffaea50dbac82503e2c18962b36e48df74b71ee37a2106df5df20d042d3e1" + sha256 cellar: :any, ventura: "427fa3664a5f33412422f793a0a3ef9807908df1a19fc43c39346a923e152797" + sha256 cellar: :any_skip_relocation, x86_64_linux: "4889df9aa745f8b29329d00159ace539d451bbb71f4714604756b1496d3780a4" end head do From 3ba7b0ec7c3d587dd13101b0076f9ee9f8d3fbea Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:04:12 +0000 Subject: [PATCH 90/91] zebra: update 2.2.7_3 bottle. --- Formula/z/zebra.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/z/zebra.rb b/Formula/z/zebra.rb index 24bff19dc52eb..468bd7a5f7a98 100644 --- a/Formula/z/zebra.rb +++ b/Formula/z/zebra.rb @@ -12,14 +12,12 @@ class Zebra < Formula end bottle do - sha256 arm64_sequoia: "8a9a673d23318466c28c827c850ce1d3df3527b32751f9b37361fed48828b9d2" - sha256 arm64_sonoma: "ed5577f3ddf35fa49cbc6f341de27307e871ce01899f3fceee962431bbf9a40e" - sha256 arm64_ventura: "0490893dedda889a386fa7d796f8a48ecd2cde6079c0dfbc8280fc1cc9a59749" - sha256 arm64_monterey: "fa41931108751f1e96d79b03a914e180cf839775625448268006c63aa07de875" - sha256 sonoma: "41cc4509c63ab4c111937bd04d593cf0afa71af3d81c7d5ee7f4b6bc9fd9546d" - sha256 ventura: "778f56686d0e428122392a68d5f804612701826bab545e8edab2258512e9207f" - sha256 monterey: "6a135417aa799bf98438651ad4efb6b5429be948b6b7d02c0051a5e8b4960d15" - sha256 x86_64_linux: "1038933d7519ce99529c371bfd3d08759626bf84d81a01e65f2154d08e5fcf9a" + sha256 arm64_sequoia: "2dab60e1b3c95616ac9c048aec209087be376c4651d93a5dc7345d26a5947ef9" + sha256 arm64_sonoma: "aafbef27a3a99cd0b17e9a66cf72945515ab2f6bbba0cd328b63899214178608" + sha256 arm64_ventura: "5d89124eaad48daa344dd50b9c902c2e97f4b2aa7ea72dd3d1e8a5b1c5fb36fd" + sha256 sonoma: "d8e0f12a009e66ed621d5a66e3284950f2c8d882f35f41fb3f0b65ca0a41a45b" + sha256 ventura: "71ea2bebec1b10f9e9b70859b3f26701e138936b14e16d2ddfa6ae7b68c797fd" + sha256 x86_64_linux: "395aea132ec9ed03c2346a9237a701d55095bbe1d68f58b9ba788eeaf4bcac20" end depends_on "icu4c@75" From fe49f82a830485aa49f50b6d51ce5d68af843f9a Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:04:13 +0000 Subject: [PATCH 91/91] znc: update 1.9.1_1 bottle. --- Formula/z/znc.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/z/znc.rb b/Formula/z/znc.rb index 491c97451e143..908022111f69e 100644 --- a/Formula/z/znc.rb +++ b/Formula/z/znc.rb @@ -12,14 +12,12 @@ class Znc < Formula end bottle do - sha256 arm64_sequoia: "f4a065725ff2dfe4a00d83c3745f708e31fe08f5aac6929880feb40879f74411" - sha256 arm64_sonoma: "ee6eaf54730ba8dbb41db83afaf55dd576fb40d5d4d7240e91350b52bde15553" - sha256 arm64_ventura: "b2b61efde97fb30819e20401df289b60b0785ebb50d59f6ed55e2d52883855f8" - sha256 arm64_monterey: "1ec419a63bc8bd6af046d8cab7cbc0faa0fd13385b90dea59c0d359548a41c91" - sha256 sonoma: "97d86798faf0e95e85b1a7383c1e0ff4eacbce118af2ad76d6bcf10e1ffab337" - sha256 ventura: "82d0ea87748360a70f0be47072f4a080396f8bc1bbce669d13dd68924fcdb40b" - sha256 monterey: "21fa98d7aaa364cdc304fd4568897e241ec819441c345a3c1a9081703c722e3d" - sha256 x86_64_linux: "f17e3e7b444ff827b864d63389e7e42e1cdbddfdd5faf0c1208d09ef62a86917" + sha256 arm64_sequoia: "9fce3b5382b0380bd66254957e18fb3267cb018171b9036d310e66e87eb4024a" + sha256 arm64_sonoma: "ca7e81f997a2088cf8be05e8d91fa58cf1624c10a380af761183cf4e56874e3d" + sha256 arm64_ventura: "32335d86196df89e0b2cf68b111267f04b14f258c0393fe0eaf86add7c1950e8" + sha256 sonoma: "fd03a0c2c63620847014975e8a4ee5e9c182a5a60e936b3b1970545d4fbfb816" + sha256 ventura: "f92a3827ecaf2aac78a5ff213cc1aef5bb11b11e8dd185ff60b933497659f916" + sha256 x86_64_linux: "8410bceeaa10743e520ba2cb0e9e160a0a689d9096a6a2134ff0f58873326f2b" end depends_on "cmake" => :build