Skip to content

Commit 386e5bf

Browse files
committed
Merge branch 'master' of https://github.com/Homebrew/homebrew-core into statesmith3
2 parents cc8b8f2 + 3772848 commit 386e5bf

File tree

4,291 files changed

+12959
-7363
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

4,291 files changed

+12959
-7363
lines changed

.github/autobump.txt

+54-8
Large diffs are not rendered by default.

.github/dependabot.yml

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ updates:
66
directory: "/"
77
schedule:
88
interval: weekly
9+
day: monday
10+
time: '08:00'
911
allow:
1012
- dependency-type: all
1113
ignore:

.github/workflows/actionlint.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
- run: zizmor --format sarif . > results.sarif
5858

5959
- name: Upload SARIF file
60-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
60+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
6161
with:
6262
name: results.sarif
6363
path: results.sarif
@@ -81,13 +81,13 @@ jobs:
8181
security-events: write
8282
steps:
8383
- name: Download SARIF file
84-
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4.1.9
84+
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
8585
with:
8686
name: results.sarif
8787
path: results.sarif
8888

8989
- name: Upload SARIF file
90-
uses: github/codeql-action/upload-sarif@6bb031afdd8eb862ea3fc1848194185e076637e5 # v3.28.11
90+
uses: github/codeql-action/upload-sarif@5f8171a638ada777af81d42b55959a643bb29017 # v3.28.12
9191
with:
9292
sarif_file: results.sarif
9393
category: zizmor

.github/workflows/automerge-from-merge-queue.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
actions: read
4242
steps:
4343
- name: Upload metadata
44-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
44+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
4545
with:
4646
name: event_payload
4747
path: ${{ github.event_path }}

.github/workflows/automerge.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
workflow-name: Triage tasks
4848

4949
- name: Download `event_payload` artifact
50-
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4.1.9
50+
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
5151
with:
5252
name: event_payload
5353
github-token: ${{ github.token }}

.github/workflows/cache.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
echo "prefix=${cache_key_prefix}" >> "${GITHUB_OUTPUT}"
8787
8888
- name: Cache Homebrew Bundler gems
89-
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
89+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
9090
with:
9191
path: ${{ steps.set-up-homebrew.outputs.gems-path }}
9292
key: ${{ steps.cache-key.outputs.prefix }}-rubygems-${{ steps.set-up-homebrew.outputs.gems-hash }}

.github/workflows/dispatch-build-bottle.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ env:
3232
HOMEBREW_NO_AUTO_UPDATE: 1
3333
HOMEBREW_NO_INSTALL_FROM_API: 1
3434
HOMEBREW_NO_BUILD_ERROR_ISSUES: 1
35+
HOMEBREW_ARM64_TESTING: 1
3536
RUN_URL: ${{github.event.repository.html_url}}/actions/runs/${{github.run_id}}
3637
DISPATCH_BUILD_BOTTLE_SENDER: ${{ github.event.sender.login }}
3738
DISPATCH_BUILD_BOTTLE_FORMULA: ${{ inputs.formula }}
@@ -112,7 +113,9 @@ jobs:
112113
matrix.each do |entry|
113114
runner = entry.fetch("runner")
114115
115-
bottle_tag = if runner.start_with?("ubuntu") || runner.start_with?("linux")
116+
bottle_tag = if runner.start_with?("ubuntu-") && runner.end_with?("-arm")
117+
Utils::Bottles.tag(:arm64_linux)
118+
elsif runner.start_with?("ubuntu") || runner.start_with?("linux")
116119
Utils::Bottles.tag(:x86_64_linux)
117120
elsif runner.match?(/^\d+-/)
118121
os_version, arch, _ = *runner.split("-")
@@ -218,7 +221,7 @@ jobs:
218221
test-bot: false
219222

220223
- name: Download bottles from GitHub Actions
221-
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4.1.9
224+
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
222225
with:
223226
pattern: bottles_*
224227
path: ${{ env.BOTTLES_DIR }}

.github/workflows/dispatch-rebottle.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ env:
4747
HOMEBREW_NO_AUTO_UPDATE: 1
4848
HOMEBREW_NO_INSTALL_FROM_API: 1
4949
HOMEBREW_NO_BUILD_ERROR_ISSUES: 1
50+
HOMEBREW_ARM64_TESTING: 1
5051
RUN_URL: ${{github.event.repository.html_url}}/actions/runs/${{github.run_id}}
5152
DISPATCH_REBOTTLE_SENDER: ${{ github.event.sender.login }}
5253
DISPATCH_REBOTTLE_FORMULA: ${{ inputs.formula }}
@@ -155,7 +156,7 @@ jobs:
155156
test-bot: false
156157

157158
- name: Download bottles from GitHub Actions
158-
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4.1.9
159+
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
159160
with:
160161
pattern: bottles_*
161162
path: ${{ env.BOTTLES_DIR }}

.github/workflows/recreate-linux-runners.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747

4848
- name: Download `event_payload` artifact
4949
if: github.event_name == 'workflow_run'
50-
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4.1.9
50+
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
5151
with:
5252
name: event_payload
5353
github-token: ${{ github.token }}

.github/workflows/tests.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ env:
1515
HOMEBREW_TEST_BOT_ANALYTICS: 1
1616
HOMEBREW_ENFORCE_SBOM: 1
1717
HOMEBREW_NO_BUILD_ERROR_ISSUES: 1
18+
HOMEBREW_ARM64_TESTING: 1
1819
GH_REPO: ${{github.repository}}
1920
GH_NO_UPDATE_NOTIFIER: 1
2021
GH_PROMPT_DISABLED: 1
@@ -55,7 +56,7 @@ jobs:
5556
stable: ${{ matrix.stable }}
5657

5758
- name: Cache style cache
58-
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
59+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
5960
with:
6061
path: /home/linuxbrew/.cache/Homebrew/style
6162
key: style-cache-${{ matrix.stable && 'stable-' || 'master-' }}${{ github.sha }}

.github/workflows/triage-ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
workflow-name: Triage tasks
4242

4343
- name: Download `event_payload` artifact
44-
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4.1.9
44+
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
4545
with:
4646
name: event_payload
4747
github-token: ${{ github.token }}

.github/workflows/triage.yml

+2-27
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
if: always() && github.repository_owner == 'Homebrew'
2525
runs-on: ubuntu-latest
2626
steps:
27-
- uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
27+
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
2828
with:
2929
name: event_payload
3030
path: ${{ github.event_path }}
@@ -65,31 +65,6 @@ jobs:
6565
PR: ${{ github.event.number }}
6666
run: gh pr edit --add-label workflows "$PR" --repo "$GITHUB_REPOSITORY"
6767

68-
limit-pull-requests:
69-
if: >
70-
always() && github.repository_owner == 'Homebrew' &&
71-
(github.event_name == 'pull_request_target' &&
72-
github.event.action == 'opened')
73-
permissions:
74-
contents: read
75-
issues: read
76-
pull-requests: write
77-
runs-on: ubuntu-latest
78-
steps:
79-
- uses: Homebrew/actions/limit-pull-requests@master
80-
with:
81-
except-users: |
82-
BrewTestBot
83-
comment-limit: 15
84-
comment: |
85-
Hi, thanks for your contribution to Homebrew! :heart:
86-
87-
You already have >=15 open pull requests, so please get them ready to be merged or close them before you open more. If CI fails on any of them, please fix it or ask for help doing so.
88-
89-
If you are performing simple version bumps, @BrewTestBot automatically bumps [a list of formulae](https://github.com/${{ github.repository }}/blob/HEAD/.github/autobump.txt) so you don't need to. Please take a look at issues and pull requests labelled https://github.com/${{ github.repository }}/labels/help%20wanted and see if you can help to fix any of them. Thanks!
90-
close-limit: 30
91-
close: true
92-
9368
triage:
9469
runs-on: ubuntu-latest
9570
permissions:
@@ -146,7 +121,7 @@ jobs:
146121
path: Formula/.+@.+
147122
except:
148123
- Formula/b/[email protected]
149-
- Formula/i/icu4c@76.rb
124+
- Formula/i/icu4c@77.rb
150125
- Formula/lib/[email protected]
151126
- Formula/o/[email protected]
152127
- Formula/p/[email protected]

Aliases/icu4c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
../Formula/i/icu4c@76.rb
1+
../Formula/i/icu4c@77.rb

Aliases/protobuf@29

-1
This file was deleted.

Formula/a/a2ps.rb

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ class A2ps < Formula
1414
sha256 sonoma: "010728f54b885a9c8697a81b3602427ccabb10da153d0d74a25526a8144a0e1c"
1515
sha256 ventura: "4b2439ff98f5db6e8c4e3894ba0ab09a4e38e7404a7db950b42de46afeddc62a"
1616
sha256 monterey: "361d7e19f0811037af034bb5a7e582c0cea350cc5a9754f0d05e0094faadf5bb"
17+
sha256 arm64_linux: "67d56e9aed857b4f5d4110820aa4ba50d0d5c6378157ee3a791a5a3a1781947c"
1718
sha256 x86_64_linux: "6df41a07d6bd52713e700a83a2994c5955b305ee068b73c50e4786cbb8213dae"
1819
end
1920

Formula/a/a52dec.rb

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ class A52dec < Formula
2020
sha256 cellar: :any, ventura: "d365954f1957b92868f9a3335509eff98e4d52437b75a868165742c6849555d6"
2121
sha256 cellar: :any, monterey: "36ff9fa73cae7a8d1850cafa0f75d27df33d5f8bf5d57bf10a064de09e234194"
2222
sha256 cellar: :any, big_sur: "cf1809cf8444fb50bbbe685e0f8ac697b84969cc0662d5079fa817c8eadd1ec3"
23+
sha256 cellar: :any_skip_relocation, arm64_linux: "b81010ab1db1eb4740dc4a587fdee7a4340873c6a61d16b17c51bb6ac33371f3"
2324
sha256 cellar: :any_skip_relocation, x86_64_linux: "7a3d786826405966046c6962db674c563b89e86bf9ff5a53aecb9cea18f4df3d"
2425
end
2526

Formula/a/aamath.rb

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ class Aamath < Formula
2525
sha256 cellar: :any_skip_relocation, high_sierra: "41223cb51bc006abfba33b6af77b665c28de4155d19e5f43d0561b885b73368f"
2626
sha256 cellar: :any_skip_relocation, sierra: "d537cb11d2dcbac9b5d5356c471775699312e83450635ba7676083f381a531cd"
2727
sha256 cellar: :any_skip_relocation, el_capitan: "8b805e37fd5f4536b4fbf7f3ae6251b645b4b132027d56ccd015a6036c304744"
28+
sha256 cellar: :any_skip_relocation, arm64_linux: "720220ff8348613058bb9d4ef1cf87bea850c513e721906a37a406136e6d2327"
2829
sha256 cellar: :any_skip_relocation, x86_64_linux: "f803d33b088e251eba9820706307616a771dea7d2994818a8fc36aca85af0541"
2930
end
3031

Formula/a/aarch64-elf-binutils.rb

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ class Aarch64ElfBinutils < Formula
1616
sha256 arm64_ventura: "f07ba9c20e29cbdd0265f5d2e42a2c3b1b34b89a3e72b8fd216ffc10cb058db2"
1717
sha256 sonoma: "dc0f415bbc8f9616257585e972cc38f9a1ae073501365c302003d804a3b0a71e"
1818
sha256 ventura: "e42b87f4f25e29420ed63aebfd7044bfbfab0ee39a19c11eea6ad2b62679a7ae"
19+
sha256 arm64_linux: "efc69b3597a1dc09bb39e029a41d0f90994cfb068d13a5367e323f89f1057423"
1920
sha256 x86_64_linux: "8215c2ae409305a49eef2577a37c49b78a7db9f0b66d113c4f74b5cf4ae2ce63"
2021
end
2122

Formula/a/aarch64-elf-gcc.rb

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ class Aarch64ElfGcc < Formula
1818
sha256 sonoma: "35a213484c8c13848265038047c6dce9c75e0f43f3f81a51c4992ecd39e86a16"
1919
sha256 ventura: "8be78df605ae82c4d9d45ebb1b880be86ee454abbc3f253dd5e84ae285c8eabf"
2020
sha256 monterey: "4b557fe0dafb9b107bb1674e53339f1ec0548dea349aae46f218eca9b75890b5"
21+
sha256 arm64_linux: "8f5d4854b758f15f48dc986416956d27cc3fbbd8c087a528a3bf48cbc0c0c0b9"
2122
sha256 x86_64_linux: "b20b3f72772560c778e8737601d13fa1062a3de125fbb7603fbe114c2c87eb73"
2223
end
2324

Formula/a/aarch64-elf-gdb.rb

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ class Aarch64ElfGdb < Formula
1717
sha256 arm64_ventura: "5c1056bf8a6b599855947d3c449e43f439c0367dd0e9a2a2d7501e039f69e250"
1818
sha256 sonoma: "07d44f785b149db031e9b6f9c65ab4bc96bad7cf348c047e7023f8b8618d3026"
1919
sha256 ventura: "96bc5b3fa085b1ca452460f1619eeef4c1a9109616e5f0d5891d36aeb9682a7c"
20+
sha256 arm64_linux: "97ac90c8694702eb0699084ef28711c7969f41cc6459dc34371c08dba5509d00"
2021
sha256 x86_64_linux: "b424c1bce12d07f93a06767ea48703bdcf10a6bcba460b1ef4b4b99a4c3c36cf"
2122
end
2223

Formula/a/ab-av1.rb

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
class AbAv1 < Formula
22
desc "AV1 re-encoding using ffmpeg, svt-av1 & vmaf"
33
homepage "https://github.com/alexheretic/ab-av1"
4-
url "https://github.com/alexheretic/ab-av1/archive/refs/tags/v0.9.2.tar.gz"
5-
sha256 "9f5926f9e11c1d7ad86d9c993fbf2bed00bc64e3710cba16f89dca706eceea55"
4+
url "https://github.com/alexheretic/ab-av1/archive/refs/tags/v0.9.3.tar.gz"
5+
sha256 "bd1b16ead392a58dfe7851d872e9296ffe63a15940fcee62a60e804596186e4e"
66
license "MIT"
77
head "https://github.com/alexheretic/ab-av1.git", branch: "main"
88

99
bottle do
10-
sha256 cellar: :any_skip_relocation, arm64_sequoia: "eb6575659db45c41b513d1501402ea133a567f4d313bc12f1564e6f8e0c8872c"
11-
sha256 cellar: :any_skip_relocation, arm64_sonoma: "81265d1f80b4c66a6d638ccde86115f597d53cb8b30d18ce57e99bedff30a0f8"
12-
sha256 cellar: :any_skip_relocation, arm64_ventura: "a0f29a5e3f2cf738a56f972bde4630a6a7785d16c8140060b85395ba0c09172d"
13-
sha256 cellar: :any_skip_relocation, sonoma: "138996029202461b5a53ca6be0e1f6bf27d2e7aa8e31a49c69c2036412ed3e87"
14-
sha256 cellar: :any_skip_relocation, ventura: "b63035f379c8907b750c2a21e01dd59d25b07bdd045a799f5459be73be0d8167"
15-
sha256 cellar: :any_skip_relocation, x86_64_linux: "ba12601b3ae443186290445556655b42be739944c1c9bdfb0cce8268316bbe96"
10+
sha256 cellar: :any_skip_relocation, arm64_sequoia: "369e78e67daf8c152e0056759b705c3846b2275057c2efc598b89a46a0d4b550"
11+
sha256 cellar: :any_skip_relocation, arm64_sonoma: "0df51a681c8acc463b4dd5462686e94057fa9bd9431b30a090c375f8563af3e5"
12+
sha256 cellar: :any_skip_relocation, arm64_ventura: "a37bd68b59b2c45360a4c0f98cb7576724721b5da8e5edb741580af9162a2c2b"
13+
sha256 cellar: :any_skip_relocation, sonoma: "b218932b4ac28bb9d37643bd9d9e178268e5ffe1ae3bbd35d3db8bc569c6cdef"
14+
sha256 cellar: :any_skip_relocation, ventura: "5cc90e3553454c11c1538c2a19248feca6edae9047268863c2f27331cd7d3998"
15+
sha256 cellar: :any_skip_relocation, x86_64_linux: "697001bcb02b52018af6b8e45eca402d141136cacfc8a4cfbbab5d6f69dd1f64"
1616
end
1717

1818
depends_on "rust" => :build

Formula/a/abcl.rb

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ class Abcl < Formula
2323
sha256 cellar: :any_skip_relocation, ventura: "682505e8bf32bcd1c89bab05bee6563ef541cdcee8cb563ad0b9a37e3777aa39"
2424
sha256 cellar: :any_skip_relocation, monterey: "923b22698e40554a1920f55c4657153a236e3a3dad6a48266f84ec740dbba6ee"
2525
sha256 cellar: :any_skip_relocation, big_sur: "d8a077488cce7889466e0cd135e9c83d5d6c1425d7b3f794d9ed863ed6c70056"
26+
sha256 cellar: :any_skip_relocation, arm64_linux: "996a3421c3c9543e959914c14736756e4a9f4c30bbf77eb45db1ae8f7756a21c"
2627
sha256 cellar: :any_skip_relocation, x86_64_linux: "461c7a8fe2a872e92ff82e19767b6b80cb69cb6985676ef751dc169fc05737ab"
2728
end
2829

Formula/a/abcm2ps.rb

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ class Abcm2ps < Formula
1616
sha256 arm64_ventura: "b1904fe9f5fb66c73cba6bf1988afdc0a86ba846972738e649a2c9b1c1e6268d"
1717
sha256 sonoma: "e89ffe353ec57c1e6203ea927ad2234bac3cd90b49daba91bec849cc29acbb24"
1818
sha256 ventura: "c7d963e4b54d64a7277ea51e0f9c52b6d522b24affbdd70b4820a7e2dba88eda"
19+
sha256 arm64_linux: "1d02bfb62f29fc77d202476f9848e39520045d0b495b215859c3bfe294388fc8"
1920
sha256 x86_64_linux: "f68c9955212b1f0ece80488663bb67ba04dfca697c6c417f339caa2a625c2413"
2021
end
2122

Formula/a/abcmidi.rb

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ class Abcmidi < Formula
1616
sha256 cellar: :any_skip_relocation, arm64_ventura: "19a638c4f1e1a81e6263c69bb4e1b79a5d6cdb100ba042284a5605b269a4a3a0"
1717
sha256 cellar: :any_skip_relocation, sonoma: "f4adaa01ffef2c90fe3d9beab0469172cdcc99d3dd3c94d8dc371ef3bf69b45a"
1818
sha256 cellar: :any_skip_relocation, ventura: "85de1f953827ee80b9f86eb0a85785a299d60b9ae291e0c675262e5d5324ad35"
19+
sha256 cellar: :any_skip_relocation, arm64_linux: "2c277663417ce625cf781e21f8028073f66d97bb38277d0118836677c854d05f"
1920
sha256 cellar: :any_skip_relocation, x86_64_linux: "847d9f72f899f7e0191094654cfed70506e61d328c978063cd1474bb1564ffb7"
2021
end
2122

Formula/a/abduco.rb

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ class Abduco < Formula
2121
sha256 cellar: :any_skip_relocation, high_sierra: "8ca092b6fd5a6ad39e3c91186421bca2943af6bfdbae4ea95254b36d1e109a78"
2222
sha256 cellar: :any_skip_relocation, sierra: "9367a86666aad4d14cecf2d7c20f897d3eb92d5cd913af43081d80b9452e19fd"
2323
sha256 cellar: :any_skip_relocation, el_capitan: "62b4673f4fba1d3c5b201b972e220a2736ec053e0c83b1369bb4e5641a71f8e4"
24+
sha256 cellar: :any_skip_relocation, arm64_linux: "4e84ed7e82b55ae643f46c6b81488e55535269cb37a95e7eec87a06b60f66427"
2425
sha256 cellar: :any_skip_relocation, x86_64_linux: "2129c6039968a818f71997e800575b581128b56f8783eeb32c990f8a5e8b81ad"
2526
end
2627

Formula/a/abi3audit.rb

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ class Abi3audit < Formula
1313
sha256 cellar: :any_skip_relocation, arm64_ventura: "1e36f27017e8e199df79a1601d4139d5278c3329347233a853e4c8922c7cecc7"
1414
sha256 cellar: :any_skip_relocation, sonoma: "6d59ab072d0a24b00430eaadf44bcf606989b2ac6c46a9311180c1e90b5f6878"
1515
sha256 cellar: :any_skip_relocation, ventura: "6d59ab072d0a24b00430eaadf44bcf606989b2ac6c46a9311180c1e90b5f6878"
16+
sha256 cellar: :any_skip_relocation, arm64_linux: "663c72ba6c49dbb8d7e36f59f03bc2b9d89d70c08bb41e800106fb68a90ac0ed"
1617
sha256 cellar: :any_skip_relocation, x86_64_linux: "2422391df386ced3511227fa44a6057b608610c9198ac35f05cf99f687705afb"
1718
end
1819

Formula/a/abnfgen.rb

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ class Abnfgen < Formula
2020
sha256 cellar: :any_skip_relocation, ventura: "575c3555e7ba9555741886bd51dec912ba229d99f00461f0fa8e5bfcb1953e62"
2121
sha256 cellar: :any_skip_relocation, monterey: "aabd22f0c8be1bfdb787b8ca17c303350ac9d726df2cb6ee2b760972c8fa6b1d"
2222
sha256 cellar: :any_skip_relocation, big_sur: "d26f4e4456ba543aa9b54b8950d26cdd91b7f64e1f40e5b67d4266463f3f9aeb"
23+
sha256 cellar: :any_skip_relocation, arm64_linux: "3d3524e2008a5cb3a6c5248cdddc948d023a0e1781246862c0035d7a3cbf6bbe"
2324
sha256 cellar: :any_skip_relocation, x86_64_linux: "76f35d17e3a1bad80de9ef0c2fb654882619b43a70f00cc23293b7d63c3fc513"
2425
end
2526

0 commit comments

Comments
 (0)