From adfffd57413fdf782b01b3220c8ed4cb4eff45aa Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Mon, 10 Jun 2024 09:43:51 +0000 Subject: [PATCH 01/46] perl 5.40.0 --- Aliases/perl@5.40 | 1 + Formula/p/perl.rb | 5 ++--- 2 files changed, 3 insertions(+), 3 deletions(-) create mode 120000 Aliases/perl@5.40 diff --git a/Aliases/perl@5.40 b/Aliases/perl@5.40 new file mode 120000 index 000000000000..b9d2dfc66706 --- /dev/null +++ b/Aliases/perl@5.40 @@ -0,0 +1 @@ +../Formula/p/perl.rb \ No newline at end of file diff --git a/Formula/p/perl.rb b/Formula/p/perl.rb index 45f8ed5ebe72..95700b6e036b 100644 --- a/Formula/p/perl.rb +++ b/Formula/p/perl.rb @@ -1,10 +1,9 @@ class Perl < Formula desc "Highly capable, feature-rich programming language" homepage "https://www.perl.org/" - url "https://www.cpan.org/src/5.0/perl-5.38.2.tar.xz" - sha256 "d91115e90b896520e83d4de6b52f8254ef2b70a8d545ffab33200ea9f1cf29e8" + url "https://www.cpan.org/src/5.0/perl-5.40.0.tar.xz" + sha256 "d5325300ad267624cb0b7d512cfdfcd74fa7fe00c455c5b51a6bd53e5e199ef9" license any_of: ["Artistic-1.0-Perl", "GPL-1.0-or-later"] - revision 1 head "https://github.com/perl/perl5.git", branch: "blead" livecheck do From feb1642f06db3eaaca0ae0b37fb078671972f13e Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Sun, 13 Oct 2024 20:33:51 +0800 Subject: [PATCH 02/46] perl-xml-parser: depend on `perl` formula It makes no sense to make this `uses_from_macos` since macOS perl already has the `XML::Parser` module. Also, while we're here, let's set this up so that it works out of the box with Homebrew perl. --- Formula/p/perl-xml-parser.rb | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/Formula/p/perl-xml-parser.rb b/Formula/p/perl-xml-parser.rb index 9a0a24f94953..9cf89c9082f3 100644 --- a/Formula/p/perl-xml-parser.rb +++ b/Formula/p/perl-xml-parser.rb @@ -17,17 +17,27 @@ class PerlXmlParser < Formula sha256 cellar: :any_skip_relocation, x86_64_linux: "876f84653f0c11dfe42194d77094ae883520e76a6c0cdf741ea7fa52afa749a7" end - uses_from_macos "perl" + # macOS Perl already has the XML::Parser module + depends_on "perl" + uses_from_macos "expat" def install - ENV.prepend_create_path "PERL5LIB", libexec/"lib/perl5" - system "perl", "Makefile.PL", "INSTALL_BASE=#{libexec}" + system "perl", "Makefile.PL", "INSTALL_BASE=#{prefix}" system "make", "PERL5LIB=#{ENV["PERL5LIB"]}" system "make", "install" + + man.install prefix/"man" + perl_version = Formula["perl"].version.major_minor.to_s + site_perl = lib/"perl5/site_perl"/perl_version + (lib/"perl5").find do |pn| + next unless pn.file? + + subdir = pn.relative_path_from(lib/"perl5").dirname + (site_perl/subdir).install_symlink pn + end end test do - ENV.prepend_create_path "PERL5LIB", libexec/"lib/perl5" if OS.linux? - system "perl", "-e", "require XML::Parser;" + system Formula["perl"].opt_bin/"perl", "-e", "require XML::Parser;" end end From ec6a02bbc783d98d198c471d5da30a6cf608fa71 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Mon, 10 Jun 2024 08:34:11 -0400 Subject: [PATCH 03/46] abricate: revision bump (perl 5.40.0) Signed-off-by: Rui Chen --- Formula/a/abricate.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/a/abricate.rb b/Formula/a/abricate.rb index 30e764134d29..570147782458 100644 --- a/Formula/a/abricate.rb +++ b/Formula/a/abricate.rb @@ -4,7 +4,7 @@ class Abricate < Formula url "https://github.com/tseemann/abricate/archive/refs/tags/v1.0.1.tar.gz" sha256 "5edc6b45a0ff73dcb4f1489a64cb3385d065a6f29185406197379522226a5d20" license "GPL-2.0-only" - revision 2 + revision 3 head "https://github.com/tseemann/abricate.git", branch: "master" bottle do From 17652e5973b524c29532fb5ebdfc263ff2d18052 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Mon, 10 Jun 2024 08:34:11 -0400 Subject: [PATCH 04/46] biber: revision bump (perl 5.40.0) Signed-off-by: Rui Chen --- Formula/b/biber.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/b/biber.rb b/Formula/b/biber.rb index f2682b6cd410..89bb13df99b8 100644 --- a/Formula/b/biber.rb +++ b/Formula/b/biber.rb @@ -4,6 +4,7 @@ class Biber < Formula url "https://github.com/plk/biber/archive/refs/tags/v2.20.tar.gz" sha256 "19f0312e59bf2f5711b8d69b3585a0ca894c36574f086fbb8d53ccd5c0a45ff9" license "Artistic-2.0" + revision 1 bottle do rebuild 1 From 923ab9d16cdbfb8ea0aa511f39b742ea446f2646 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Sun, 13 Oct 2024 14:22:37 +0800 Subject: [PATCH 05/46] collectd: revision bump (perl 5.40.0) --- Formula/c/collectd.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/c/collectd.rb b/Formula/c/collectd.rb index e6ed4a48824b..4aa2a8b97365 100644 --- a/Formula/c/collectd.rb +++ b/Formula/c/collectd.rb @@ -2,7 +2,7 @@ class Collectd < Formula desc "Statistics collection and monitoring daemon" homepage "https://collectd.org/" license "MIT" - revision 7 + revision 8 stable do url "https://storage.googleapis.com/collectd-tarballs/collectd-5.12.0.tar.bz2" From 72952cb3d18dfb7f4d7d310a857dd417671b0a3c Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Sun, 13 Oct 2024 14:22:38 +0800 Subject: [PATCH 06/46] freeradius-server: revision bump (perl 5.40.0) --- Formula/f/freeradius-server.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/f/freeradius-server.rb b/Formula/f/freeradius-server.rb index 61b4f2c0e59b..273dac8dde39 100644 --- a/Formula/f/freeradius-server.rb +++ b/Formula/f/freeradius-server.rb @@ -2,6 +2,7 @@ class FreeradiusServer < Formula desc "High-performance and highly configurable RADIUS server" homepage "https://freeradius.org/" license all_of: ["GPL-2.0-or-later", "LGPL-2.1-or-later"] + revision 1 head "https://github.com/FreeRADIUS/freeradius-server.git", branch: "master" stable do From 0c0188dfca79a75389a2f39594c4cc0de719f624 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Sun, 13 Oct 2024 14:22:39 +0800 Subject: [PATCH 07/46] gnumeric: revision bump (perl 5.40.0) --- Formula/g/gnumeric.rb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Formula/g/gnumeric.rb b/Formula/g/gnumeric.rb index eb4e32865689..c0c77c0bfcfe 100644 --- a/Formula/g/gnumeric.rb +++ b/Formula/g/gnumeric.rb @@ -4,6 +4,7 @@ class Gnumeric < Formula url "https://download.gnome.org/sources/gnumeric/1.12/gnumeric-1.12.57.tar.xz" sha256 "aff50b1b62340c24fccf453d5fad3e7fb73f4bc4b34f7e34b6c3d2d9af6a1e4f" license any_of: ["GPL-3.0-only", "GPL-2.0-only"] + revision 1 bottle do sha256 arm64_sequoia: "dc450b2534ce288a9589fc5646898c49faae013c6027b3af43fb75a14d402036" @@ -43,12 +44,10 @@ class Gnumeric < Formula end on_linux do - depends_on "perl-xml-parser" + depends_on "perl-xml-parser" => :build end def install - ENV.prepend_path "PERL5LIB", Formula["perl-xml-parser"].opt_libexec/"lib/perl5" unless OS.mac? - # ensures that the files remain within the keg inreplace "component/Makefile.in", "GOFFICE_PLUGINS_DIR = @GOFFICE_PLUGINS_DIR@", From 14e39586331dcd0024beaf4884cf119cd3e3cf6c Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Sun, 13 Oct 2024 14:22:39 +0800 Subject: [PATCH 08/46] grokj2k: revision bump (perl 5.40.0) --- Formula/g/grokj2k.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/g/grokj2k.rb b/Formula/g/grokj2k.rb index 581f64e16b2c..c35d25ebaf43 100644 --- a/Formula/g/grokj2k.rb +++ b/Formula/g/grokj2k.rb @@ -6,6 +6,7 @@ class Grokj2k < Formula tag: "v13.0.0", revision: "6db0feb924b0a115f01987edf0ea2fcd735684d5" license "AGPL-3.0-or-later" + revision 1 head "https://github.com/GrokImageCompression/grok.git", branch: "master" livecheck do From d5117c058ce4bfa9398935183932d8fe4c906411 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Mon, 10 Jun 2024 08:34:12 -0400 Subject: [PATCH 09/46] help2man: revision bump (perl 5.40.0) Signed-off-by: Rui Chen --- Formula/h/help2man.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/h/help2man.rb b/Formula/h/help2man.rb index f61c54230cdb..ba37dfe8fe4c 100644 --- a/Formula/h/help2man.rb +++ b/Formula/h/help2man.rb @@ -5,7 +5,7 @@ class Help2man < Formula mirror "https://ftpmirror.gnu.org/help2man/help2man-1.49.3.tar.xz" sha256 "4d7e4fdef2eca6afe07a2682151cea78781e0a4e8f9622142d9f70c083a2fd4f" license "GPL-3.0-or-later" - revision 2 + revision 3 bottle do sha256 cellar: :any, arm64_sequoia: "302508e981921582b36f4846678b1ea739815f9bcc7b9cf96b0b40b3197ba9e3" From c335080bc06fb57639c5f91de3521f1e87ddd3eb Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Sun, 13 Oct 2024 14:22:39 +0800 Subject: [PATCH 10/46] irssi: revision bump (perl 5.40.0) --- Formula/i/irssi.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/i/irssi.rb b/Formula/i/irssi.rb index 9a0e262e72ba..c0ecde24e797 100644 --- a/Formula/i/irssi.rb +++ b/Formula/i/irssi.rb @@ -4,6 +4,7 @@ class Irssi < Formula url "https://github.com/irssi/irssi/releases/download/1.4.5/irssi-1.4.5.tar.xz" sha256 "72a951cb0ad622785a8962801f005a3a412736c7e7e3ce152f176287c52fe062" license "GPL-2.0-or-later" => { with: "openvpn-openssl-exception" } + revision 1 # This formula uses a file from a GitHub release, so we check the latest # release version instead of Git tags. From dcce952f2c60ac7f29c49f968c2b86e8f9374318 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Sun, 13 Oct 2024 07:03:52 +0800 Subject: [PATCH 11/46] lanraragi: revision bump (perl 5.40.0) --- Formula/l/lanraragi.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/l/lanraragi.rb b/Formula/l/lanraragi.rb index ead4ca316c43..5c376373f7e4 100644 --- a/Formula/l/lanraragi.rb +++ b/Formula/l/lanraragi.rb @@ -4,7 +4,7 @@ class Lanraragi < Formula url "https://github.com/Difegue/LANraragi/archive/refs/tags/v.0.9.21.tar.gz" sha256 "ed2d704d058389eb4c97d62080c64fa96fcc230be663ec8958f35764d229c463" license "MIT" - revision 2 + revision 3 head "https://github.com/Difegue/LANraragi.git", branch: "dev" bottle do From f72820048020425a7b8a5d2a885360fa0dcff780 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Mon, 10 Jun 2024 08:34:12 -0400 Subject: [PATCH 12/46] latexml: revision bump (perl 5.40.0) Signed-off-by: Rui Chen --- Formula/l/latexml.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/l/latexml.rb b/Formula/l/latexml.rb index ee605c3c2e40..ef545e2980f6 100644 --- a/Formula/l/latexml.rb +++ b/Formula/l/latexml.rb @@ -4,6 +4,7 @@ class Latexml < Formula url "https://dlmf.nist.gov/LaTeXML/releases/LaTeXML-0.8.8.tar.gz" sha256 "7d2bbe2ce252baf86ba3f388cd0dec3aa4838f49d612b9ec7cc4ff88105badcc" license :public_domain + revision 1 head "https://github.com/brucemiller/LaTeXML.git", branch: "master" livecheck do From 16b6159c6a0cd97e4466f9dfdc6bd828329ae321 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Mon, 10 Jun 2024 08:34:13 -0400 Subject: [PATCH 13/46] mhonarc: revision bump (perl 5.40.0) Signed-off-by: Rui Chen --- Formula/m/mhonarc.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/m/mhonarc.rb b/Formula/m/mhonarc.rb index a190a69cb2d9..0a4a6f4bddb7 100644 --- a/Formula/m/mhonarc.rb +++ b/Formula/m/mhonarc.rb @@ -4,7 +4,7 @@ class Mhonarc < Formula url "https://www.mhonarc.org/release/MHonArc/tar/MHonArc-2.6.19.tar.bz2" sha256 "08912eae8323997b940b94817c83149d2ee3ed11d44f29b3ef4ed2a39de7f480" license "GPL-2.0-or-later" - revision 5 + revision 6 livecheck do url :homepage From 3d71d82cb70ed67d7522aab0f4330caa7aed3530 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Mon, 10 Jun 2024 08:34:13 -0400 Subject: [PATCH 14/46] po4a: revision bump (perl 5.40.0) Signed-off-by: Rui Chen --- Formula/p/po4a.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/p/po4a.rb b/Formula/p/po4a.rb index 0c166d644b35..d75afc4d7855 100644 --- a/Formula/p/po4a.rb +++ b/Formula/p/po4a.rb @@ -8,6 +8,7 @@ class Po4a < Formula url "https://github.com/mquinson/po4a/archive/refs/tags/v0.73.tar.gz" sha256 "ad5edc38bf004807843622fddbf67bd5ac604fc16e14c2bfefa7b07718ad21f3" license "GPL-2.0-or-later" + revision 1 head "https://github.com/mquinson/po4a.git", branch: "master" bottle do From 70f6f4e4f8a5995682db3f2b063ba919f82a4927 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Sun, 13 Oct 2024 14:22:39 +0800 Subject: [PATCH 15/46] postgresql@12: revision bump (perl 5.40.0) --- Formula/p/postgresql@12.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/p/postgresql@12.rb b/Formula/p/postgresql@12.rb index ace843f75679..464621ee895e 100644 --- a/Formula/p/postgresql@12.rb +++ b/Formula/p/postgresql@12.rb @@ -4,7 +4,7 @@ class PostgresqlAT12 < Formula url "https://ftp.postgresql.org/pub/source/v12.20/postgresql-12.20.tar.bz2" sha256 "2d543af3009fec7fd5af35f7a70c95085d3eef6b508e517aa9493e99b15e9ea9" license "PostgreSQL" - revision 1 + revision 2 livecheck do url "https://ftp.postgresql.org/pub/source/" From 56105cbbcf9d4471f6e4fe69b6eb7a1b81f0b2a7 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Sun, 13 Oct 2024 14:22:39 +0800 Subject: [PATCH 16/46] postgresql@13: revision bump (perl 5.40.0) --- Formula/p/postgresql@13.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/p/postgresql@13.rb b/Formula/p/postgresql@13.rb index 28bd4f72b0b0..4698190eba91 100644 --- a/Formula/p/postgresql@13.rb +++ b/Formula/p/postgresql@13.rb @@ -4,7 +4,7 @@ class PostgresqlAT13 < Formula url "https://ftp.postgresql.org/pub/source/v13.16/postgresql-13.16.tar.bz2" sha256 "c9cbbb6129f02328204828066bb3785c00a85c8ca8fd329c2a8a53c1f5cd8865" license "PostgreSQL" - revision 1 + revision 2 livecheck do url "https://ftp.postgresql.org/pub/source/" From eb2332fa08b7ff2da23d9534e37513b28f779c15 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Sun, 13 Oct 2024 14:22:40 +0800 Subject: [PATCH 17/46] postgresql@14: revision bump (perl 5.40.0) --- Formula/p/postgresql@14.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/p/postgresql@14.rb b/Formula/p/postgresql@14.rb index 2bc4e06acaf2..1c490dcf0492 100644 --- a/Formula/p/postgresql@14.rb +++ b/Formula/p/postgresql@14.rb @@ -4,7 +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 + revision 2 livecheck do url "https://ftp.postgresql.org/pub/source/" From d3a70373fef98153e64e9e7f52af204a24e9016a Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Sun, 13 Oct 2024 14:22:40 +0800 Subject: [PATCH 18/46] postgresql@15: revision bump (perl 5.40.0) --- Formula/p/postgresql@15.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/p/postgresql@15.rb b/Formula/p/postgresql@15.rb index 2c0174815c13..4b00eb38b4c8 100644 --- a/Formula/p/postgresql@15.rb +++ b/Formula/p/postgresql@15.rb @@ -4,7 +4,7 @@ class PostgresqlAT15 < Formula url "https://ftp.postgresql.org/pub/source/v15.8/postgresql-15.8.tar.bz2" sha256 "4403515f9a69eeb3efebc98f30b8c696122bfdf895e92b3b23f5b8e769edcb6a" license "PostgreSQL" - revision 1 + revision 2 livecheck do url "https://ftp.postgresql.org/pub/source/" From 374b08d6919d3e536132ca1f299f056de4b60f77 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Sun, 13 Oct 2024 14:22:40 +0800 Subject: [PATCH 19/46] postgresql@16: revision bump (perl 5.40.0) --- Formula/p/postgresql@16.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/p/postgresql@16.rb b/Formula/p/postgresql@16.rb index 866c35b2f32a..394b8ba18a5e 100644 --- a/Formula/p/postgresql@16.rb +++ b/Formula/p/postgresql@16.rb @@ -4,7 +4,7 @@ class PostgresqlAT16 < Formula url "https://ftp.postgresql.org/pub/source/v16.4/postgresql-16.4.tar.bz2" sha256 "971766d645aa73e93b9ef4e3be44201b4f45b5477095b049125403f9f3386d6f" license "PostgreSQL" - revision 1 + revision 2 livecheck do url "https://ftp.postgresql.org/pub/source/" From d848cd107d86962c1d49f824e781a8012b3da6a1 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Sun, 13 Oct 2024 14:22:40 +0800 Subject: [PATCH 20/46] postgresql@17: revision bump (perl 5.40.0) --- Formula/p/postgresql@17.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/p/postgresql@17.rb b/Formula/p/postgresql@17.rb index 8a26bbecdc43..b58783c04271 100644 --- a/Formula/p/postgresql@17.rb +++ b/Formula/p/postgresql@17.rb @@ -4,7 +4,7 @@ class PostgresqlAT17 < Formula url "https://ftp.postgresql.org/pub/source/v17.0/postgresql-17.0.tar.bz2" sha256 "7e276131c0fdd6b62588dbad9b3bb24b8c3498d5009328dba59af16e819109de" license "PostgreSQL" - revision 1 + revision 2 livecheck do url "https://ftp.postgresql.org/pub/source/" From 49315390726bf08de1ee9af8cb3033f00713af1e Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Sun, 13 Oct 2024 14:22:41 +0800 Subject: [PATCH 21/46] uwsgi: revision bump (perl 5.40.0) --- Formula/u/uwsgi.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/u/uwsgi.rb b/Formula/u/uwsgi.rb index fbd9c3096239..10ba14a18c07 100644 --- a/Formula/u/uwsgi.rb +++ b/Formula/u/uwsgi.rb @@ -4,6 +4,7 @@ class Uwsgi < Formula url "https://files.pythonhosted.org/packages/e1/46/fb08706bc5d922584a5aaed1f73e7a17313310aa34615c74406112ea04a6/uwsgi-2.0.27.tar.gz" sha256 "3ee5bfb7e6e9c93478c22aa8183eef35b95a2d5b14cca16172e67f135565c458" license "GPL-2.0-or-later" + revision 1 head "https://github.com/unbit/uwsgi.git", branch: "master" bottle do From 8f27b9313be5d52a10901629bec9f9fd447d6633 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Mon, 10 Jun 2024 08:34:13 -0400 Subject: [PATCH 22/46] vim: revision bump (perl 5.40.0) Signed-off-by: Rui Chen --- Formula/v/vim.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/v/vim.rb b/Formula/v/vim.rb index 1c17a3ce60a4..e81f3a34ea5f 100644 --- a/Formula/v/vim.rb +++ b/Formula/v/vim.rb @@ -5,6 +5,7 @@ class Vim < Formula url "https://github.com/vim/vim/archive/refs/tags/v9.1.0750.tar.gz" sha256 "6d668be3da4ab41081b2b9d935f41d066e6002c8c72e23e37e0c5363c9da977b" license "Vim" + revision 1 head "https://github.com/vim/vim.git", branch: "master" # The Vim repository contains thousands of tags and the `Git` strategy isn't From 4ead63935cedc807c3f8eaec364855d522dfb0e9 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Mon, 10 Jun 2024 08:34:14 -0400 Subject: [PATCH 23/46] weechat: revision bump (perl 5.40.0) Signed-off-by: Rui Chen --- Formula/w/weechat.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/w/weechat.rb b/Formula/w/weechat.rb index efd659d64465..7d6829adf97f 100644 --- a/Formula/w/weechat.rb +++ b/Formula/w/weechat.rb @@ -4,6 +4,7 @@ class Weechat < Formula url "https://weechat.org/files/src/weechat-4.4.2.tar.xz" sha256 "d4df289a9c5bca03a6d4fae006e52037064ef03bad6fbe959c538f3197434dec" license "GPL-3.0-or-later" + revision 1 head "https://github.com/weechat/weechat.git", branch: "master" bottle do From e9c47ed3e7e15919257260cf5dce3505be5055f0 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Tue, 22 Oct 2024 03:00:05 +0000 Subject: [PATCH 24/46] abricate: update 1.0.1_3 bottle. --- Formula/a/abricate.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/a/abricate.rb b/Formula/a/abricate.rb index 570147782458..d13f438f4f9b 100644 --- a/Formula/a/abricate.rb +++ b/Formula/a/abricate.rb @@ -8,14 +8,12 @@ class Abricate < Formula head "https://github.com/tseemann/abricate.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "b6b72078ed6855b2db59381b920405a5025e15ec92624637bfa3ed774f131e4a" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "4e05f6bc80f04e8706e082b21e944921b6de7811be3388f099dfb9df298825da" - sha256 cellar: :any_skip_relocation, arm64_ventura: "312093ac29b9f9c387d802172e05fbed5ea0cf0d0ef664718ecc1d7a520b2361" - sha256 cellar: :any_skip_relocation, arm64_monterey: "ff3521c9a86fbf51387785500f2006106a11362c5223923e00191db3d43c1d1f" - sha256 cellar: :any_skip_relocation, sonoma: "17a15ded172e09a0c28affc08139e8f63998fa83004ec234c18d391c85be3664" - sha256 cellar: :any_skip_relocation, ventura: "4db0a30d1cd363a5e26b12cece47161f817bf37374030ced0c343e1c3f462bb0" - sha256 cellar: :any_skip_relocation, monterey: "f658b5d10292077b2862e50d33dd7b4e1cffa40e69fbdda0ecf4841d3338710c" - sha256 cellar: :any_skip_relocation, x86_64_linux: "346086c1c023b982321bab45d20316d1c25e9f47437bf95350a026bc4fd71d6b" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "2e7f6393112a6a35dce42b72269577f9a625cb161185fc24075afc326e057ad7" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "35e1dff52eb0bf1df021f9fa7cfe0e1a09df089e6bfc4af6c87e07a0f52db655" + sha256 cellar: :any_skip_relocation, arm64_ventura: "a1019399ae72e1e4b793e287b92c2b000b6680f44c60faa2aa63e61683fae70c" + sha256 cellar: :any_skip_relocation, sonoma: "f72cb3d2b9f6d42fe8ff2ff6c72d9dab66d5e7a5f867ae384ae06f2477c8e53c" + sha256 cellar: :any_skip_relocation, ventura: "e64a514eafd58745186e9302e4a5fa0d9da4eb9e686ff15ec3fa53c29b9b3a3b" + sha256 cellar: :any_skip_relocation, x86_64_linux: "7ccff5939400556b14677e73e48b33f8794781a62ed6df468bef9d240ecaffb4" end depends_on "bioperl" From f6800f4d06c6456e73fd3279cb64bd996e432557 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Tue, 22 Oct 2024 03:00:06 +0000 Subject: [PATCH 25/46] biber: update 2.20_1 bottle. --- Formula/b/biber.rb | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/Formula/b/biber.rb b/Formula/b/biber.rb index 89bb13df99b8..bc9b1385fb0c 100644 --- a/Formula/b/biber.rb +++ b/Formula/b/biber.rb @@ -7,15 +7,12 @@ class Biber < Formula revision 1 bottle do - rebuild 1 - sha256 cellar: :any, arm64_sequoia: "c3ea4ec23f241784f3141c50ded0bad178b9a3ed8bb1189f3279df9a56756c97" - sha256 cellar: :any, arm64_sonoma: "f018ab37e28a17160227cd2628a212c1118e19295d0d9eb90b42ad7f0b7761bb" - sha256 cellar: :any, arm64_ventura: "36185def50483b55f1eca670196469b4fef358ea861260bc1f40062d1535204f" - sha256 cellar: :any, arm64_monterey: "0bd8bb16155244410aaca2fe01bf11f560e6a97aa0941a3f190d26f8d911662e" - sha256 cellar: :any, sonoma: "ecc3b942b3546d18d023cc50234c5bf2f0a14ff729cc646bd7725eaa0787b3f9" - sha256 cellar: :any, ventura: "49f979490d7e6f2305ec6f94a364521d7d119e5e152c74d17c90c50b39e16a86" - sha256 cellar: :any, monterey: "0413d6cce8ba9e7e936824f1e8fe7850b686bdf07614a73ecf1e446d949b922c" - sha256 cellar: :any_skip_relocation, x86_64_linux: "cb6f325f4d18b733f2e11753a7283b9f58bd3ff95852ccaf71f3d052bb679b33" + sha256 cellar: :any, arm64_sequoia: "e5ce10fe7c4cfaf687e9ceca4c47dfe981c247c8b5d06744f52ca4e403119d3c" + sha256 cellar: :any, arm64_sonoma: "a06294eb6ba71edfb34846ec60205ad9315c5b6da2d2884da0e56b662c4ad64c" + sha256 cellar: :any, arm64_ventura: "b80c954f868b87585d8c3b91494b3a9549d58a6df88d9b7028b4091d6882c230" + sha256 cellar: :any, sonoma: "f5667829fe7fe597422cbaf2ab17c11fc4a130c6579551908639aec9539bb15d" + sha256 cellar: :any, ventura: "83dd4a86705a0730f1bb52cb8a0556533efdd03b673d24737c16deabc17cc5d5" + sha256 cellar: :any_skip_relocation, x86_64_linux: "4038ee28a6d598309e506acc878f6f3554e1af17ab02851282c993e51db8a0cd" end depends_on "pkg-config" => :build From d619a9c772cb74c0be6e3f0f6189b4f2f06059f8 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Tue, 22 Oct 2024 03:00:07 +0000 Subject: [PATCH 26/46] collectd: update 5.12.0_8 bottle. --- Formula/c/collectd.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/c/collectd.rb b/Formula/c/collectd.rb index 4aa2a8b97365..ea20d906a061 100644 --- a/Formula/c/collectd.rb +++ b/Formula/c/collectd.rb @@ -21,14 +21,12 @@ class Collectd < Formula end bottle do - sha256 arm64_sequoia: "8a439840e29532604b8f7e7f69660e4f10497544a68f3fce5690394cb8de6e2d" - sha256 arm64_sonoma: "feeabfab71b4779d284f35c81db87618f5c27c9567cc2aa817c1ae7e525c29b0" - sha256 arm64_ventura: "27b3ab3603d68a565dab7e7076d0d065692c6f4621094e4b8f0b2608257c092d" - sha256 arm64_monterey: "ea60e985f3b9fa1cea0a6ea0cdd488076c7f5fb913ed874dc97b076617c76c31" - sha256 sonoma: "964fc480f251425f36043c3f88bd14bb43314e122ef1adbd3715e935c8593076" - sha256 ventura: "7ca3d7a8572daa17aa7f11b861c043b09b3f407023d4e64af19f1417f5f9e3ba" - sha256 monterey: "b92aff0140b2d791ba48e7a17e7ab7e522e07f4024589217090dca4b838c8c85" - sha256 x86_64_linux: "02684fac023ca6b20bc8a4dddc1a03005a0003201455200ba313be29ba4dab25" + sha256 arm64_sequoia: "58f7a44814b1a467e4f68fcf719069fe352920ce6e800fc5d60e8ad2e6af1332" + sha256 arm64_sonoma: "ceb6cf730de48b1f6eadfc3784060f0b6ed437c3a4fcb7f991e75853eb0d8295" + sha256 arm64_ventura: "756fa1c1b080652bc6654718c11f5955b1a674b319eb848609e0416415a0cde1" + sha256 sonoma: "74e6ebaf66605da54399207a4f083833b39a90f6ff9edb92c82673f874af5e09" + sha256 ventura: "cea97da9e5ba92d5d02fb688cc72bf698f245e5d849f44f2d3419f64f1ed5000" + sha256 x86_64_linux: "5e73f288cbe0d9d1bd8e35b1782593ab8ef268d41bd05e34913bc63678d926d1" end head do From a0b052d31aa3ac2c6a8fe9ad5aeae5a0a9e4921d Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Tue, 22 Oct 2024 03:00:07 +0000 Subject: [PATCH 27/46] freeradius-server: update 3.2.6_1 bottle. --- Formula/f/freeradius-server.rb | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/Formula/f/freeradius-server.rb b/Formula/f/freeradius-server.rb index 273dac8dde39..21f815bda0eb 100644 --- a/Formula/f/freeradius-server.rb +++ b/Formula/f/freeradius-server.rb @@ -22,13 +22,12 @@ class FreeradiusServer < Formula end bottle do - rebuild 1 - sha256 arm64_sequoia: "ad501fa1bbdb5e317b86514cd7d757aca6602bf54772922880aa187e21fa8069" - sha256 arm64_sonoma: "6e48b43e81a1d2ed6d6c29185a0be28503694650715be451d2bfd80f6766f514" - sha256 arm64_ventura: "0602a44cc66353a1ccb39425342607b409677aae35289f64b26924288bd328f8" - sha256 sonoma: "9805b970376f268da2780e778591191a0102e1855e7d9118f47eed8874e59423" - sha256 ventura: "f0baed18f50779b721f55ce0da598236fb38f43c291b4d8723b4b3ac32b40b12" - sha256 x86_64_linux: "acb0832bf5379a27437bc9bcf95624ea22c58106f1146adbaf554ec453f62409" + sha256 arm64_sequoia: "d63db421e34ba0e5c7cac9ebe9cfc5e3f73eadab18dfe77b42943938058f5d72" + sha256 arm64_sonoma: "2a74537011b666ae888926bab1b35c0d11f30d3c3a8b0bfa6bca893a30d6a19d" + sha256 arm64_ventura: "4f481e6be2ba21f34039beda3b699577d5c1dca07ee24ca344b08eee5fa5e096" + sha256 sonoma: "6a1a37080f9f3f93b9528e0d9a1555257556637fe55cc441a1317de419a03609" + sha256 ventura: "35fbfb48a16d7f1a8bfb8aa5a9d9d2b24d2939405c9feb71b703b1d01746ae34" + sha256 x86_64_linux: "da35a41201962254cd6042786d551a09ae53feba6c79b9dc37c9a65fe76409db" end depends_on "collectd" From 7ff9ee48224f79ce29b40ea56051169dc7c203ab Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Tue, 22 Oct 2024 03:00:07 +0000 Subject: [PATCH 28/46] gnumeric: update 1.12.57_1 bottle. --- Formula/g/gnumeric.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/g/gnumeric.rb b/Formula/g/gnumeric.rb index c0c77c0bfcfe..90a0580bc3bf 100644 --- a/Formula/g/gnumeric.rb +++ b/Formula/g/gnumeric.rb @@ -7,14 +7,12 @@ class Gnumeric < Formula revision 1 bottle do - sha256 arm64_sequoia: "dc450b2534ce288a9589fc5646898c49faae013c6027b3af43fb75a14d402036" - sha256 arm64_sonoma: "9ac4b6038db349fcb894b3f16b2b5450e8b97e130609e8b509e117346eb3edf6" - sha256 arm64_ventura: "d0cb4f9530d15cd61556bc16915e80d0496805fa3a5555d543543ed918de3ec0" - sha256 arm64_monterey: "a94bc870862a5c7d92ea8b1baaf3c7cb84e189b17cb1fdc66130e8e080738f48" - sha256 sonoma: "61fe8907d180ec8d1fbc1e810b8f276566822fb916d582bb1e4264c0f3a6fd2e" - sha256 ventura: "046dd2fbc0294941ae45432b97715fb80d4b5159edc05fd83d256a0b08c91422" - sha256 monterey: "640060260af9ef39b76959b827f81c511351aaf6b70b31a43f958c47a95855f5" - sha256 cellar: :any_skip_relocation, x86_64_linux: "22083c21842d8e41c7a37d5af2bb683d6fb1fb52347db917785fd02024a6a341" + sha256 arm64_sequoia: "8a7e1965742b9ea886076a57802002fa062ce77435d002015f0919e559ed1351" + sha256 arm64_sonoma: "6a82deed674c951c5c9f9c7938b9a9c2f1a9417fb1c4174bb6d06378c2bec735" + sha256 arm64_ventura: "755f8dc344fe237adb34974cf2ad0b14ef86665be16a442f8160b408e32f5f67" + sha256 sonoma: "9898fe1f0c8e15a02ca97a2cb233434a1a74680efe2325d355ae5cc335b5ab1e" + sha256 ventura: "143e39f6cbb0705c3016db957c5d238a45333c1bfe7efccce9dba3b571555d84" + sha256 cellar: :any_skip_relocation, x86_64_linux: "89f3af98641cad01596d6f079d71a16d0bf120a21ec50381890946cf0a2354d6" end depends_on "gettext" => :build From 3b40d2e6f92cfc108bdd00453bae160444b22a10 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Tue, 22 Oct 2024 03:00:08 +0000 Subject: [PATCH 29/46] grokj2k: update 13.0.0_1 bottle. --- Formula/g/grokj2k.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/g/grokj2k.rb b/Formula/g/grokj2k.rb index c35d25ebaf43..44b03d6382f8 100644 --- a/Formula/g/grokj2k.rb +++ b/Formula/g/grokj2k.rb @@ -15,14 +15,12 @@ class Grokj2k < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "4af6fdbf34e1768dab8e67373d86f6d3d1446a9e3b2a9d24b4f98ef034951faa" - sha256 cellar: :any, arm64_sonoma: "a6d120a83c6d34c38909f7412466875323298252b2ca8df9592dbc5a8baa3ee0" - sha256 cellar: :any, arm64_ventura: "7943b68dc48964ca45d49b456cefb7bb97bb16be425f2e500e2bbcbeb2826400" - sha256 cellar: :any, arm64_monterey: "404814be1972ef17eda9e9c60cd822fc3dd875557f5248da1430b1d7f73ba5c4" - sha256 cellar: :any, sonoma: "1d04cddd6f5125f873257c6f90c63312cb20b41221e7c7626257d943958242c7" - sha256 cellar: :any, ventura: "2c777d26e5ebd18b00bfec77e54797df0c189ca6c92e1204838bbd77362161df" - sha256 cellar: :any, monterey: "4701ad27288c74d23af171e1b8d07897fcb67f09f6aa1cf504fd289260e0a05d" - sha256 cellar: :any_skip_relocation, x86_64_linux: "374908ecee88e3d37d16787d052436c47c26c3e385e589a978c7c5a066b84cbd" + sha256 cellar: :any, arm64_sequoia: "2c1575de5e1f39e4888a93594708c158bbc2c789c55cdedc59557a27abf72b70" + sha256 cellar: :any, arm64_sonoma: "b52c7ff5b28f9cd49d262e5b91394f0635361489e4c4b787afff1e25eccc7318" + sha256 cellar: :any, arm64_ventura: "c8ed5e2e3472ac26d456cf5206a6236da2a5954e6c2d7412dc156f7efcb7d4b5" + sha256 cellar: :any, sonoma: "2036f4b1223631929bbe53386167c907725c13a29568494cc1fff1006f7f9e5a" + sha256 cellar: :any, ventura: "df10d8ad5cc5b56b4d1c7f1e33dc602e263e9f562f6751678d3c1c50b6248a03" + sha256 cellar: :any_skip_relocation, x86_64_linux: "e2e655a2cc495e41c3f663a364285b24745d76d29d3893053009a99c10dce813" end depends_on "cmake" => :build From dcfb5c2e5d09e0a5a243a880fe9a1227a0f15e2f Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Tue, 22 Oct 2024 03:00:08 +0000 Subject: [PATCH 30/46] help2man: update 1.49.3_3 bottle. --- Formula/h/help2man.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/h/help2man.rb b/Formula/h/help2man.rb index ba37dfe8fe4c..d730921fbbe1 100644 --- a/Formula/h/help2man.rb +++ b/Formula/h/help2man.rb @@ -8,14 +8,12 @@ class Help2man < Formula revision 3 bottle do - sha256 cellar: :any, arm64_sequoia: "302508e981921582b36f4846678b1ea739815f9bcc7b9cf96b0b40b3197ba9e3" - sha256 cellar: :any, arm64_sonoma: "cbbe4be42473a8911941a77ab20a064a3e5429c943d8fd55b187008e1687009e" - sha256 cellar: :any, arm64_ventura: "c875f5b7412c9b503a3a6c855530d01d014217eba3589e6618b1a0678e0790ee" - sha256 cellar: :any, arm64_monterey: "e2bc370f6b6e9bed84fc77b6ca5536c545299b63f4898303dcdbc3af7324a13f" - sha256 cellar: :any, sonoma: "c7be1329f64b7162d1ae7505f998630f88b58751c84c0240317a77841e250c8a" - sha256 cellar: :any, ventura: "d70c0e7c8cd5293d48c2c93071c8262ba9116b257fe85622623c7ab3e61b3a7a" - sha256 cellar: :any, monterey: "9e5ca214c3b4bcdf56e59e3c389dc86678dc33c1d9961a5764a8dba8f63cd1ff" - sha256 cellar: :any_skip_relocation, x86_64_linux: "49b4060b6a6027b81ea7a68db3b32d91d704a55d01bcb1c73e750963259e64f2" + sha256 cellar: :any, arm64_sequoia: "253c91cfe267b4e6d99516e9b6243db8de63cd2090feba9a411f0de56ffdc003" + sha256 cellar: :any, arm64_sonoma: "6fff08f6e2f1e2c1a116771d2cec67f02fd4e5157c5a7468299d625d8708c9c2" + sha256 cellar: :any, arm64_ventura: "ec4c0a8ad5435ebce1cdcc50850121a465da5d591e02cb3264d0b1ddd367dfd5" + sha256 cellar: :any, sonoma: "e7fee7c80e8f8b0db71ed8f91789676f01f0c25ea7a36dddbe6ac4132a371ffe" + sha256 cellar: :any, ventura: "f50814222c4bf9afb2f0430b65e058bd893eabd43036e2e8083cb8213b69f10b" + sha256 cellar: :any_skip_relocation, x86_64_linux: "b2fe8b82eddc849ea8cb7b7c2f5a2452bf3bfb5fd8af84e18f5689c1f6966a02" end depends_on "gettext" From 0868cf84154b1de948482ebcfd7830a5a02ff4c0 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Tue, 22 Oct 2024 03:00:08 +0000 Subject: [PATCH 31/46] irssi: update 1.4.5_1 bottle. --- Formula/i/irssi.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/i/irssi.rb b/Formula/i/irssi.rb index c0ecde24e797..d5c7e8bd758c 100644 --- a/Formula/i/irssi.rb +++ b/Formula/i/irssi.rb @@ -14,14 +14,12 @@ class Irssi < Formula end bottle do - sha256 arm64_sequoia: "4b7135b0f7e75fff21d2bb83a493bf2808f38e886ce53ad680734daeb52404c6" - sha256 arm64_sonoma: "9376608f394ab71d9f3ed2f89f39fb26d6673626f49b931028f0368599113ddc" - sha256 arm64_ventura: "46c6000387e22c3492210d205c60d371836a79070f4c9f28d1cba742bddb7c14" - sha256 arm64_monterey: "5fa2114a1ed6bcfb0e7c0236b3f8411cf5d6bcec87d352f0a50ba2ee89ed7a37" - sha256 sonoma: "7ae1eee9a714ca68ee92db0cb1940b0f66631a444002303218b41fb2f3aca3e6" - sha256 ventura: "2ee0a18af53baa8656b69a40163a44fb303c2d65378844812b30f56f25fa5df5" - sha256 monterey: "7f006a852802e1b8e650b0e4a47bcce7814a5954eedf82e71f29a45ec2f9993d" - sha256 x86_64_linux: "4e0e4585630510c4b4df61c02103c0018f2e7fb6f1f94c4861655dd73a2f3e00" + sha256 arm64_sequoia: "9f640f1d64cf5331669a1f872ef3f797d4c4360015bba172c9b2ce4c48412453" + sha256 arm64_sonoma: "ca992d7b5d2a8af9a75712670cacccf4910fa7c706e39169037a1c957ca314f1" + sha256 arm64_ventura: "618eb4e0270a79ba93e8a11a190c9650cbf274fb25b029b57c306c236ec68d07" + sha256 sonoma: "24ab2a3d9546159460cb4248a74a0548cc63799ca80ab588f52a04a159c19282" + sha256 ventura: "f35187d68cac2f55f1208c5ca2a362676e55fff197bea91e1a3720dd9e590f52" + sha256 x86_64_linux: "4af07634acbc8972700abb9dd307360a506032ab34eaf389fbb55780f4cd9781" end depends_on "pkg-config" => :build From f8292b1efef036ffa2e477964feb5080d3e6e5fd Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Tue, 22 Oct 2024 03:00:09 +0000 Subject: [PATCH 32/46] lanraragi: update 0.9.21_3 bottle. --- Formula/l/lanraragi.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/l/lanraragi.rb b/Formula/l/lanraragi.rb index 5c376373f7e4..8292b4d74cc6 100644 --- a/Formula/l/lanraragi.rb +++ b/Formula/l/lanraragi.rb @@ -8,12 +8,12 @@ class Lanraragi < Formula head "https://github.com/Difegue/LANraragi.git", branch: "dev" bottle do - sha256 cellar: :any, arm64_sequoia: "32b94989e04f1bc1643bf9ac3fd53798e660f0e3988d9482782648e29a9a144d" - sha256 cellar: :any, arm64_sonoma: "007d0eb316f50682547e931268e501db9c9f70bead21f98901e3f67a7e90c271" - sha256 cellar: :any, arm64_ventura: "f1b0826609df1a9aa730ee2ba788432855112786b0b897d002c85d9b1a3991e6" - sha256 cellar: :any, sonoma: "e3e9780e0a10edd57708c134759e6760ad42868ec0bca0f2e563bf2b1986a55c" - sha256 cellar: :any, ventura: "162dd99fdbae029248a39482b69c83afede408fa7d5058557c1cd03b1012fd02" - sha256 cellar: :any_skip_relocation, x86_64_linux: "6dbae601b895428500313e9c4851fafb8e5edd3c94278b2b7d37639a141bb5a6" + sha256 cellar: :any, arm64_sequoia: "4addeef09e330f210354da1d2f0593e88621616320057ba2cdc388f76a447e29" + sha256 cellar: :any, arm64_sonoma: "3de5bf3ab193cc551e1a843a7ffdf01ef2f28248979079a8b1b390eaa8a052d9" + sha256 cellar: :any, arm64_ventura: "46c910c967b0de95eb0131df3821ca428e91d03c4d0910c6dc1502fc895ffd98" + sha256 cellar: :any, sonoma: "7eea02846ca205288ab639fe55a41f9fb81598f2f4f111c58b3adb157bf8fae6" + sha256 cellar: :any, ventura: "6c295cfa1ef859951ed5855f962c6a8249173f6cd180322091646b4bee817126" + sha256 cellar: :any_skip_relocation, x86_64_linux: "596296f78997c0c66c9cfc01b900ba54782d1500fc2f47ede41c7dc29116b968" end depends_on "nettle" => :build From 59bbe3439cf3c187e4a621ec95a4c35617424422 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Tue, 22 Oct 2024 03:00:09 +0000 Subject: [PATCH 33/46] latexml: update 0.8.8_1 bottle. --- Formula/l/latexml.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/l/latexml.rb b/Formula/l/latexml.rb index ef545e2980f6..db672d274d9a 100644 --- a/Formula/l/latexml.rb +++ b/Formula/l/latexml.rb @@ -13,14 +13,12 @@ class Latexml < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "040e8dac4270f6fdce06e02f3207b299f42bc7dca89fc62ec5c301ca88e73e54" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "a351624c5d9d2bfd7677d0ffd6fb668e4c54e275cd4c982cbffb79e4926bdb7e" - sha256 cellar: :any_skip_relocation, arm64_ventura: "de88d8e11f36af59d1204faa0f8320be926b0defc32181a54def19adfbdd6996" - sha256 cellar: :any_skip_relocation, arm64_monterey: "006ca6a54f04c5cd277b0a344f875239c4f6f8b93d14b5a128e9e20d5f6217e3" - sha256 cellar: :any_skip_relocation, sonoma: "ee8c922049f9064789f168fb6dd8a3e228742d0daa0630abb4739670ce499cc3" - sha256 cellar: :any_skip_relocation, ventura: "b3c4eefb90a0231baad14a534f7f2f88ef0f04797cc6dcdc19ed569bc3a39dea" - sha256 cellar: :any_skip_relocation, monterey: "b8f5ef16a02f7149ae90fccf463fc96ddcabf8f9c373a85d07df575755b8d6af" - sha256 cellar: :any_skip_relocation, x86_64_linux: "655b5fc8ce93e7695cf0188242882d7c65c3f11283a5288b3280ce1db0b13832" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "a37c6fd0d637c43e26e452ceb11ae7dcb92c395fb857a031e49530e3cd3a1f14" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "cb545c7e7242db92803f0576ed29431209e64bdfccd0247a6d23afa5cc39cd82" + sha256 cellar: :any_skip_relocation, arm64_ventura: "e38b026b0b334cc52d75564b715319a30001d6399acd836d19c7024d98ee0372" + sha256 cellar: :any_skip_relocation, sonoma: "fdb835e5e6e8f1c7036f8660d177b7d1010a6409734f2171993f7a76ff5a32f4" + sha256 cellar: :any_skip_relocation, ventura: "b2273557c72715d4b7705c008f0baf9c6c20e5e2cb91fe35c26246e9bc452f82" + sha256 cellar: :any_skip_relocation, x86_64_linux: "2ccca1cfac575c937655ad5ae0482606378c56aa463d303a91493983727f584f" end depends_on "pkg-config" => :build From ec77627121582ea037a4b0df35ad5b6f82cae447 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Tue, 22 Oct 2024 03:00:10 +0000 Subject: [PATCH 34/46] mhonarc: update 2.6.19_6 bottle. --- Formula/m/mhonarc.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Formula/m/mhonarc.rb b/Formula/m/mhonarc.rb index 0a4a6f4bddb7..2f3cfc2ad4cd 100644 --- a/Formula/m/mhonarc.rb +++ b/Formula/m/mhonarc.rb @@ -12,8 +12,7 @@ class Mhonarc < Formula end bottle do - rebuild 1 - sha256 cellar: :any_skip_relocation, all: "d0ee54ecef8975c8f168d0013f1266a4441661180be9475d858f712e40f78c8b" + sha256 cellar: :any_skip_relocation, all: "e4d56bb7e4a40a68b0a23faf8d4df159142e6e4f1f55ebd457fffd64e478a6d9" end depends_on "perl" From 94f9a4ed2bc935b4595e91bc0345b32fc68871b9 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Tue, 22 Oct 2024 03:00:10 +0000 Subject: [PATCH 35/46] perl: update 5.40.0 bottle. --- Formula/p/perl.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/p/perl.rb b/Formula/p/perl.rb index 95700b6e036b..f4d1618d64cc 100644 --- a/Formula/p/perl.rb +++ b/Formula/p/perl.rb @@ -12,14 +12,12 @@ class Perl < Formula end bottle do - sha256 arm64_sequoia: "f3039ca342464845898d1f7dc9bd1aab6ef5929106cbf813dda587b583ad0411" - sha256 arm64_sonoma: "222658f33257e002c74b8720fba0b90d12eba566837014df20494a8721cb1642" - sha256 arm64_ventura: "dcbb3ecc956e00d07f6c17a242975fba48af6147ac732ed5ec78ffef006be7c7" - sha256 arm64_monterey: "ac667b52851c7f6052ec88a7f7a922f8d85a25b96ba8d7e756d728338ddc5203" - sha256 sonoma: "4da05eef811a965977571311b16877bfd281c01494e315125143ba8e7150183e" - sha256 ventura: "b7705031b119b02bbedeff51af5bdd869043af576b7656915c1558ccf91232d4" - sha256 monterey: "37618ba7d8642b1456c3dc915eaa8c8e22f3ac3d25df5fc3c89c10412a372192" - sha256 x86_64_linux: "8c6038740fee1c2084880a53765c23c2d972447e2f960e75bdcb071b0a434c2f" + sha256 arm64_sequoia: "af1f2117729613b32d9c6bb4269a14022fdc51ceab4bd76da9452e9d39577283" + sha256 arm64_sonoma: "668e1b34a46982e4a0712fcdf7f73fd1fbce74efd52dea9c7fb1ab30dda415bd" + sha256 arm64_ventura: "37d29cde5809f66afee15192d8a59b20a9304b22ba4c100a7bf9b5d58947d3a6" + sha256 sonoma: "ce1b7ee92c9e17d49181e89b280ab20bb529edda5c0e82610a6fec80390a3a8b" + sha256 ventura: "223dd89f9b872b018434c7ce67dfda7cbb2874c7ecb13074b7b49c5fa9d92ab4" + sha256 x86_64_linux: "6ea16b075cfcbb386ebfbf9da400092e953df71b0743c323b4a7ca8e3db3c50d" end depends_on "berkeley-db@5" # keep berkeley-db < 6 to avoid AGPL-3.0 restrictions From 88808c28e2430c49df56e3fe00fc14cdd31fb2ee Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Tue, 22 Oct 2024 03:00:10 +0000 Subject: [PATCH 36/46] perl-xml-parser: update 2.47 bottle. --- Formula/p/perl-xml-parser.rb | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Formula/p/perl-xml-parser.rb b/Formula/p/perl-xml-parser.rb index 9cf89c9082f3..b1f39efe891c 100644 --- a/Formula/p/perl-xml-parser.rb +++ b/Formula/p/perl-xml-parser.rb @@ -7,14 +7,13 @@ class PerlXmlParser < Formula head "https://github.com/cpan-authors/XML-Parser.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "d9228ebaa793d92c595330933bae23f35eef1d8ecc2748b1491d1492cf8aa98e" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "abc5750010dbf09e17cad13f74162ce621f12f731e90841e613b805927146b1f" - sha256 cellar: :any_skip_relocation, arm64_ventura: "32325a1ebd1bb1e3254db3e55109102a0ccdf9ee4574af862096db23596ac84c" - sha256 cellar: :any_skip_relocation, arm64_monterey: "d49fad80145a196ee2546d8de14ed565a7b9f56038c6b1c323aa0fc1e1344fbd" - sha256 cellar: :any_skip_relocation, sonoma: "0a7f69bdcdf93c52175a00c985059d65ef662331d52162d3bc66b5179e924be8" - sha256 cellar: :any_skip_relocation, ventura: "89ed0963847169a29ff1f651c1e6aa7dad231b1c3dd31d4780987ef88e28afd2" - sha256 cellar: :any_skip_relocation, monterey: "c062154f9f17fe3002232fa03dd75a4d6215f376964b6ff3628a61fed824ecf4" - sha256 cellar: :any_skip_relocation, x86_64_linux: "876f84653f0c11dfe42194d77094ae883520e76a6c0cdf741ea7fa52afa749a7" + rebuild 1 + sha256 cellar: :any_skip_relocation, arm64_sequoia: "6652df7d2ee4241d47bd7696f6b6b063ce31cfca2d922f5be08adb4364df9952" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "4219900b1c2f9105cefb7e34c0d2d8ef42dee9696881a46646a58a4ed83f339d" + sha256 cellar: :any_skip_relocation, arm64_ventura: "6d8331557430f37f003b838ab9dce30073e0876bddacaa1dbc07aed0ab2c3e2d" + sha256 cellar: :any_skip_relocation, sonoma: "636cdbf8bf30e94da13d51d4785cf3c4bd578338cc5f84c2b219a26b788886f4" + sha256 cellar: :any_skip_relocation, ventura: "9876b8022ee76c8f4b100bc392c04c7fc65975b2a2b08cd24edb7057fe6d1419" + sha256 cellar: :any_skip_relocation, x86_64_linux: "7b353076b4fc4b713b7ae09fd42468ff3f77bed5ac08106c7558d4dd3347316e" end # macOS Perl already has the XML::Parser module From 50c1d13f3138eee64ba9e958b50e2816a5b4c822 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Tue, 22 Oct 2024 03:00:11 +0000 Subject: [PATCH 37/46] po4a: update 0.73_1 bottle. --- Formula/p/po4a.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/p/po4a.rb b/Formula/p/po4a.rb index d75afc4d7855..b7ccef723b7c 100644 --- a/Formula/p/po4a.rb +++ b/Formula/p/po4a.rb @@ -12,14 +12,12 @@ class Po4a < Formula head "https://github.com/mquinson/po4a.git", branch: "master" bottle do - sha256 cellar: :any, arm64_sequoia: "5fe715e649ecfe10e34afa9267f1f701f721928cb46125a1a343d756926c4905" - sha256 cellar: :any, arm64_sonoma: "a09fb125ad7fea46bbb7232cba8ce63f55a165c8c77014b9e9289c3eb8552824" - sha256 cellar: :any, arm64_ventura: "c9e18ecceb0a7f3ee689e70b86d90db67cc40b8ae971686dfbba769a20ee185e" - sha256 cellar: :any, arm64_monterey: "93b8d9c3d60e71500d9b55a40a3b15d3254f7f04867f83f5c0bcb61c414f9582" - sha256 cellar: :any, sonoma: "825f68c8de8bc9bc154df8f20a2b6473a484b568d2597d58ec8435a0289c7c83" - sha256 cellar: :any, ventura: "8d0bf7207983ceda3b02297a1551b63cbb5e1e0ff028c33c36eb09ee31e9175c" - sha256 cellar: :any, monterey: "c5c404bf52ca1612f7c5b576ee1873e3ecf36ed200ff97c416eade35eaf53827" - sha256 cellar: :any_skip_relocation, x86_64_linux: "82498f8b16403c22749e9d69831ce23994916e108b48217ace6c8f6f0dae0962" + sha256 cellar: :any, arm64_sequoia: "afb479bc9624626a1f950a4f201fda2d5e959b59f414b0d87b6a6e8cc2baaae4" + sha256 cellar: :any, arm64_sonoma: "2d74dc1e677bfaf935771544981f7f44ffdd3b5f661e0df07748e5c71849420a" + sha256 cellar: :any, arm64_ventura: "7a4016850542e5ab42173906e8ed86d13fe971b7161103ca49abb787fbdad05c" + sha256 cellar: :any, sonoma: "aea5106a47029e857b9c5ec0ac0a87e87b4cf7843717251df7b41a0461b84a34" + sha256 cellar: :any, ventura: "b0c068aac3d53b27fde2125a35bc474b019e5fc3cee5102d1c2b0b3a32a708e9" + sha256 cellar: :any_skip_relocation, x86_64_linux: "c667b5f9d44d0d116b73b0524d100d362aa202a414c69ee6ce06f68ae9ae0f70" end depends_on "docbook-xsl" => :build From dd98941b66ccdea0f70961dcf04f852813f5a7ca Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Tue, 22 Oct 2024 03:00:11 +0000 Subject: [PATCH 38/46] postgresql@12: update 12.20_2 bottle. --- Formula/p/postgresql@12.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/p/postgresql@12.rb b/Formula/p/postgresql@12.rb index 464621ee895e..d29d48c43101 100644 --- a/Formula/p/postgresql@12.rb +++ b/Formula/p/postgresql@12.rb @@ -12,12 +12,12 @@ class PostgresqlAT12 < Formula end bottle do - sha256 arm64_sequoia: "96d2d8acaf1fbe9e7ff89c45012b859349baa3fa6727fa95c3483003322cc726" - sha256 arm64_sonoma: "9b85ef425587f9817e18c3a2b1ae095c53c5dcb460573578f916527f6174025e" - sha256 arm64_ventura: "edd1c5855962e667a48b16e1f7efa76286642d335231d034cdde468cee183136" - sha256 sonoma: "a0e92d9720543ed2c92248136b8e2c231d5414d39101cd0820e73ce991ff5b85" - sha256 ventura: "cb62c501bc2f49e5e98f0e6671572140d3e6906cbedc50d089386720ba7d1801" - sha256 x86_64_linux: "6feea907198b1bfc2448fdf25639ac0676ae67880d9de7b75967588c5ad7cb10" + sha256 arm64_sequoia: "36891c3cf4f91d6c2c1b8d4b6674800d69e14f8c3f5eb6dd032742e92cf5ec61" + sha256 arm64_sonoma: "a21690588511ae870d237ce02d34452cb249f7cd97deba18cf4fcf4835bbbccc" + sha256 arm64_ventura: "7ce9cea7d4e27cba74928382b0f8a6dec4ea320bd3357e1361477edfcf9baf18" + sha256 sonoma: "64ef55232f176a2b6fb949ca095d4fa5fc99bba9e16b9f8fbeff556f69c8cb79" + sha256 ventura: "84fc74ba4b28804891de46846bac505c9de68c675eba14c81491a983274ff619" + sha256 x86_64_linux: "aa20e312ff59e661af1995349e45a05a75d67e34b1044f7b3c416ac257f5680b" end keg_only :versioned_formula From 1707d0a27aa4fc05f9a51a4477efa67bb784ab40 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Tue, 22 Oct 2024 03:00:12 +0000 Subject: [PATCH 39/46] postgresql@13: update 13.16_2 bottle. --- Formula/p/postgresql@13.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/p/postgresql@13.rb b/Formula/p/postgresql@13.rb index 4698190eba91..1caf6a376b8c 100644 --- a/Formula/p/postgresql@13.rb +++ b/Formula/p/postgresql@13.rb @@ -12,12 +12,12 @@ class PostgresqlAT13 < Formula end bottle do - sha256 arm64_sequoia: "158a9ee506544cf1ecf9af1cf6e1e5ea4b2fa08a2eca9724a087231329eba376" - sha256 arm64_sonoma: "b0071fc3f4501a7754d968d3af954b335106ae8f08865fefdcb697b6e8450a3d" - sha256 arm64_ventura: "0ec176f0ebdacea442ad24d6f89c5267907f801f55c3278c3c5e2fbf0f91ddb2" - sha256 sonoma: "df091773afc542362ad28d5f6269b586b7cc9d60669bf37bc7c7315a3c5248bf" - sha256 ventura: "4902b5ecf09643f500fa3103cf2b911f5ef8a8860feade0fdaa7d46971742921" - sha256 x86_64_linux: "b1e4194470387321d0dfc7ddcf072c11ff383941e0501d356c5d046ab24d893f" + sha256 arm64_sequoia: "145d3aae678816850467b0e12d0f829693c0f07bac5de41f77e7dda6f31e9055" + sha256 arm64_sonoma: "9f62a95810706df6bf7d7f9e71bfeb1e351b33a0741ce4f05209a19129e207ce" + sha256 arm64_ventura: "17b9defacee45a35a715562587237ac0c058f86f76acaff53f69c3badf159981" + sha256 sonoma: "bd5e236f9fb27efac82c555a42a0d3c39e0429e4ade5da6f3e78b4481a33204c" + sha256 ventura: "13d1d9130de9c3fbafb7e78eb433c514d271501cfbc16eb708004e34265f30ea" + sha256 x86_64_linux: "41481352184d8be652457d8b9f442afa22b42be1d38991ec0b70ce8b07e703b1" end keg_only :versioned_formula From 901fe171b024888e9a6ac2ab03e3018560a78065 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Tue, 22 Oct 2024 03:00:12 +0000 Subject: [PATCH 40/46] postgresql@14: update 14.13_2 bottle. --- Formula/p/postgresql@14.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/p/postgresql@14.rb b/Formula/p/postgresql@14.rb index 1c490dcf0492..847f22f46545 100644 --- a/Formula/p/postgresql@14.rb +++ b/Formula/p/postgresql@14.rb @@ -12,12 +12,12 @@ class PostgresqlAT14 < Formula end bottle do - sha256 arm64_sequoia: "177bebd91ca5f804c6ea83e40ce1f14c3e92ffff9d8d05eb1fcaccd649a54135" - sha256 arm64_sonoma: "5a161f556f2180fb033fde056b5099a0e6833c07d63078986dbaa3207da08b45" - sha256 arm64_ventura: "a181d1c827ae36ecddb142c8d540457732947c22ad557e7729d10b019998531d" - sha256 sonoma: "cd932cb4b7d14c2d0f650454a695c6f746acb262ac9b3328dd840bd1f208a597" - sha256 ventura: "d2aab91e74950cd8d2f87109404eae69926ec36592c1f38ae1c47a0cebca08d3" - sha256 x86_64_linux: "0e9c409bc6a0a6ed8d79036a9220f76936466d282195420661ba08fb2c9f74ea" + sha256 arm64_sequoia: "20023497a1a3425b75e420a5719b5cd76625a9570fd3c1b39884248c8b592933" + sha256 arm64_sonoma: "0f7af18ac036eaec5404871634f26cfdf70ebbf4458a6f2ea64e23f1cbe7c976" + sha256 arm64_ventura: "ef30158cb1e46e3d915205aa3a559d73abf13a5f0660e1d240703d4ee29eef9f" + sha256 sonoma: "0a8e79c40b65fec4300d44af4f02ecf3592684d8fcf429f4e8c0367fc10a5416" + sha256 ventura: "124613581918989030d53dcb3dbecc632806cd8a00e3b0f2abaf53c2f7117d94" + sha256 x86_64_linux: "453189582a53660603517b60d97df72de52e24dce4677e5ed84f7db9859b605f" end # https://www.postgresql.org/support/versioning/ From 2e4856191e7f3881036a120743cd111780ce5728 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Tue, 22 Oct 2024 03:00:12 +0000 Subject: [PATCH 41/46] postgresql@15: update 15.8_2 bottle. --- Formula/p/postgresql@15.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/p/postgresql@15.rb b/Formula/p/postgresql@15.rb index 4b00eb38b4c8..5ae89b9fba47 100644 --- a/Formula/p/postgresql@15.rb +++ b/Formula/p/postgresql@15.rb @@ -12,12 +12,12 @@ class PostgresqlAT15 < Formula end bottle do - sha256 arm64_sequoia: "ee7974b662abfa98b41b5e27db72b7ab303214355ac5f126cc0baff173bfd493" - sha256 arm64_sonoma: "7841e7ae6f3a57154568b53cb898cd2fb760706f501426dc53b980534b23cf65" - sha256 arm64_ventura: "19df5034721bd662151d7839a9cabd233b30813a0130c1bde03d3cc117695c6a" - sha256 sonoma: "f1d3d7c788ec49180de2026ca9bb7a8be5e5e94394e5912043c3292c610694a7" - sha256 ventura: "e6a2705aaa823da8cc7eb4c95d37bbc645ff89c3d9c2aa6ebabd54ca433490f9" - sha256 x86_64_linux: "f23e06745e1806a146a4ed5a005d58dea3c9a2501d14244ad4912293f0de0168" + sha256 arm64_sequoia: "5e3312ea5b600046f9d4ea8668f6c0cdc17e0056d1b7e5fbfbfac03bd4cbc294" + sha256 arm64_sonoma: "659dc11525ffdf70f1f8a2abfbd79fbeff6ca7a630d8ded00c2956c8ec19de45" + sha256 arm64_ventura: "91af27ff4e11425387cafcfe83a4551bf2ff353c79522c5698a01ea79840556d" + sha256 sonoma: "cdcc50e0803fb60d91ef03fbd8a4fc26492aea954875a808cb20198a23fdbff1" + sha256 ventura: "a7a3ffd63cb4a661dd2f10f90ea284f8cc3178ff2d4a5c7469006f8543f293fe" + sha256 x86_64_linux: "e5787a9c9655081617e80b2152be0e4d501d92e40a771c613e9e80f3baf1d173" end keg_only :versioned_formula From 3176f3dd455a7a9741f9aa8f30233134386ed478 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Tue, 22 Oct 2024 03:00:13 +0000 Subject: [PATCH 42/46] postgresql@16: update 16.4_2 bottle. --- Formula/p/postgresql@16.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/p/postgresql@16.rb b/Formula/p/postgresql@16.rb index 394b8ba18a5e..186b8995a1fe 100644 --- a/Formula/p/postgresql@16.rb +++ b/Formula/p/postgresql@16.rb @@ -12,12 +12,12 @@ class PostgresqlAT16 < Formula end bottle do - sha256 arm64_sequoia: "e6edefb2047f4695538636c2830e3fb5522496032498aeb09bdd923cf82a1d2f" - sha256 arm64_sonoma: "371a0cd3cfb41549c4735703476e80be2e3c347aaad93ecfc7ae199b3704cc2c" - sha256 arm64_ventura: "f91e841d971be121b21124baefcc5942a175210ae70c44fb1933af630995fcf5" - sha256 sonoma: "e8d4dab6ebc9b58957bdc0ba0730bb7a1142771f7eae3f7ae33d1ebf7edb90f7" - sha256 ventura: "37059a0086dbef38e2871a09770a42ba66794b99d6e90047729727d31ea70d3a" - sha256 x86_64_linux: "d114c8bd935ea0e911ce14c438d4006a1afe2c3789cc938a5f995b45cf49cc18" + sha256 arm64_sequoia: "8820390d778c05797b63ece14bfa69d9ab852e8f5d9727e006c85fd98759443c" + sha256 arm64_sonoma: "61fe7530144ca842acb13bac598626f03b2ed20aad6284d2f70d52f88b0bcb40" + sha256 arm64_ventura: "e64ccd0f01b0aaed4bd9ef7cd811eb3e959d2e52061c0d4814b5424c259be68c" + sha256 sonoma: "7d9952dd432861fe5ef812f1373507adc4145fd1fd43682cd7fd979987ab19ee" + sha256 ventura: "4b48c8f55ceccfd81df464b682cd16c146d7bd696ab6b39114b101e0d280b456" + sha256 x86_64_linux: "737b393ad1ba935f5d07011bdaba0ad1ed7b3df15a27a83ce993700cba2add55" end keg_only :versioned_formula From 6ef9fd0b68537f6056c57733ffe40f32a78c8093 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Tue, 22 Oct 2024 03:00:13 +0000 Subject: [PATCH 43/46] postgresql@17: update 17.0_2 bottle. --- Formula/p/postgresql@17.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/p/postgresql@17.rb b/Formula/p/postgresql@17.rb index b58783c04271..b62e2c0c2c41 100644 --- a/Formula/p/postgresql@17.rb +++ b/Formula/p/postgresql@17.rb @@ -12,12 +12,12 @@ class PostgresqlAT17 < Formula end bottle do - sha256 arm64_sequoia: "ff4c595a664500c23a550c1ea283480c675238f50480a634ff9e235752865e6e" - sha256 arm64_sonoma: "c88488c5475166a5c1825c7b4f0c483e29ddd5a5f283bab6c803e8b11a46949c" - sha256 arm64_ventura: "ec4b61a8c60394bd94d43c4d341538f39a9a9d080b3003ea7f35af882a6e38ce" - sha256 sonoma: "ef87eee95dd9d573c7d3222289e636f036b6afb34cba1bea27d7f1aff56b5669" - sha256 ventura: "e4d3338ef060f75c60d47dc3ed7654b7cbe74fb8694c2f67769c89be47375f99" - sha256 x86_64_linux: "5ae14a14cf228b18fbd4985a73a0732cc2a15580f9e27da5fd611e0eab6623d3" + sha256 arm64_sequoia: "46bf5529bec4ea409a7866d2b660849f026a12eb70a4c709478f9ae1ad9ee41c" + sha256 arm64_sonoma: "b2bd1c7954fa7333e4c9b603806869fbc380086e8ca286d64abba08fde400e3f" + sha256 arm64_ventura: "560670474dc07891e5fe1add56e8956284b60726015abc55e22f3535150a79c4" + sha256 sonoma: "dc48e15ae5e5df86c56b8aa5fb9af09149de122b54a0e290fbf14f4a45a3eb1c" + sha256 ventura: "cc05fa11b42175d9a58eeb18f1778b093f7ea0f812685e543085c4a21daab566" + sha256 x86_64_linux: "f9e901aaa3a30f44ed6e33ba9ba2d40e38a016b6182baafeceab5834cf1fb901" end keg_only :versioned_formula From 04fcddb97d2a41784fd297ed9b5dce01dfa33e08 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Tue, 22 Oct 2024 03:00:13 +0000 Subject: [PATCH 44/46] uwsgi: update 2.0.27_1 bottle. --- Formula/u/uwsgi.rb | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/Formula/u/uwsgi.rb b/Formula/u/uwsgi.rb index 10ba14a18c07..da56edb546e4 100644 --- a/Formula/u/uwsgi.rb +++ b/Formula/u/uwsgi.rb @@ -8,13 +8,12 @@ class Uwsgi < Formula head "https://github.com/unbit/uwsgi.git", branch: "master" bottle do - rebuild 1 - sha256 arm64_sequoia: "93d5e4dc64a853efc3c181b1e3a98580853633f79a8844b36aa0d0907bc403f2" - sha256 arm64_sonoma: "d3d437e9650fe255a94848ddfae25f3505159408f35abfd91376009c4db1355b" - sha256 arm64_ventura: "1e24fb7c34bd01d8bb75efbfa23380bccaab38681d881243f4ecad2dd04bb490" - sha256 sonoma: "6ad052496e956233a114de63957b3b944c925145f611ad9acd3ac2de19239b16" - sha256 ventura: "4b021c120ac0054da777731ebf2dd8630360f8872c54a3571df398cfa1cd288b" - sha256 x86_64_linux: "1e6a8387477cd3dec6710c526a43243ab80e66122393b31c271dab56ae202b68" + sha256 arm64_sequoia: "307b7d6a364e78b15cfa828dd20c3ca2af375ada89ed5528c51de2cfcbf514eb" + sha256 arm64_sonoma: "f98f73e917ff6e3922636d0eb26755242fa7160eac55c602ffd45a9d8837dadf" + sha256 arm64_ventura: "d7fa70e41832d86bc117555b5c61bb42b9b0ebfebb04bb72cb945f99f4659e66" + sha256 sonoma: "cf8a186c83de295e8ed927009c2464b491e51baee916aa7e307d889acd87a523" + sha256 ventura: "8e663a77d7f16771b348a5f36386248e943ccd3a0cf4749fc4b062e67e784211" + sha256 x86_64_linux: "9cd8cf3206897f9191d32fca3e22c567c20d68db781cd6265fb1d0174ad36a48" end depends_on "pkg-config" => :build From 2185c1725ce6952bf6b7776d0b59a43a5ce2fcdc Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Tue, 22 Oct 2024 03:00:14 +0000 Subject: [PATCH 45/46] vim: update 9.1.0750_1 bottle. --- Formula/v/vim.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/v/vim.rb b/Formula/v/vim.rb index e81f3a34ea5f..c3487913fbd3 100644 --- a/Formula/v/vim.rb +++ b/Formula/v/vim.rb @@ -26,12 +26,12 @@ class Vim < Formula end bottle do - sha256 arm64_sequoia: "14c298dab305f7a561abdac4e8c28b99fe2902e71cb1c4bf22fb3e773e86df26" - sha256 arm64_sonoma: "8a868ed6bb27825dba7ad8cb112b37ff8e1168b8c33623b19dbd9304e1b282c1" - sha256 arm64_ventura: "8e244a128980f7bcd10bedd4090a7dcba6c75487aea0f6fccb7bda5fc13dfae8" - sha256 sonoma: "3a34e285693c9d6848fc45f13b2b3e5c5d6b8bbbd1684ec77cc64f38bbe1553b" - sha256 ventura: "e76e904c3c8af41ce76c70d18205343c9da6c6232b3d60e41629d6135118c5c5" - sha256 x86_64_linux: "dc04a8a373c23dce78f37cf0343faa3bb07325e4e20cd605ac5b45aa9ad08d4f" + sha256 arm64_sequoia: "2aaf9eb75239f68ec7ad3010524fd67eec74d969e11ce3e8c516cb88c05919c5" + sha256 arm64_sonoma: "6f997a03ed577ab494a9625a610073fee04869dfd2a9da1ac9ca18f375f543af" + sha256 arm64_ventura: "b3e2e21c062f7760a0d4a537b6ed0fb807149c0f3479f7b4388c81465f966f25" + sha256 sonoma: "181f83e955689b2a5da68d01d59833df1ddcae646910b4cd58916036e94efe02" + sha256 ventura: "28543462860ebbae517f9c7a327345c713361dfcfbc0b06d39e7129f6669f722" + sha256 x86_64_linux: "26d65bc2e0073e283722b0943e68bbfb0619f71b39fa77e5b949d07bc41d478a" end depends_on "gettext" From 0e8d211983867aa59964d283809a8bf5f4812301 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Tue, 22 Oct 2024 03:00:14 +0000 Subject: [PATCH 46/46] weechat: update 4.4.2_1 bottle. --- Formula/w/weechat.rb | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/Formula/w/weechat.rb b/Formula/w/weechat.rb index 7d6829adf97f..469d1685ffdb 100644 --- a/Formula/w/weechat.rb +++ b/Formula/w/weechat.rb @@ -8,13 +8,12 @@ class Weechat < Formula head "https://github.com/weechat/weechat.git", branch: "master" bottle do - rebuild 1 - sha256 arm64_sequoia: "414ec5dbac1074369636c3abf3f63bd55eebf2aaa27cc1da1843a30a83794f5e" - sha256 arm64_sonoma: "f3e1dc302a9662e1fb11ff5231a202a6b103fa682e35c758148d5450f1c4b564" - sha256 arm64_ventura: "c06b518c8f0863961f92d9f534892fb8e2d011bea9f95509ced75b76211834ba" - sha256 sonoma: "b017f4c2c74e7d56dbe6c17e24bbe2d2d54b42bb0512e3ae5e1b86846d7683a1" - sha256 ventura: "01e96a9d1400742e0cd922c9cda4af40dc9bb35b5628057613f5e8bb0705dc03" - sha256 x86_64_linux: "bec747add7e5341a1f76711402538da57090812daad10276f7d745e6bf86bcb4" + sha256 arm64_sequoia: "b767a24e99e8f11a445abd015355d06acb78a7c75d202bde85b4af5566019b47" + sha256 arm64_sonoma: "a533bda3a59faeb5aa8e8f283173a42d4c07f38032570616b2370aad40cc76d8" + sha256 arm64_ventura: "60c6ab13d61bea9d885f5c1eb38765653b3765804760e5ca5b6160b38437b858" + sha256 sonoma: "5bca5158ce803c901d1db1a5c7c4bb57915852c4a83d9645ee8ac8ffcfe607e5" + sha256 ventura: "503e2083f302de253c49b3eee14a16f914960c733354550f8d916868bd3c6062" + sha256 x86_64_linux: "70d404f12926f8fe36492c2084724ce46720bbb3eb305ce3134cca1efaac98f7" end depends_on "asciidoctor" => :build