Skip to content

Commit

Permalink
Merge branch 'Homebrew:master' into serial-studio
Browse files Browse the repository at this point in the history
  • Loading branch information
davay authored Jan 6, 2025
2 parents 109a879 + 00cc3a9 commit 637ed51
Show file tree
Hide file tree
Showing 1,054 changed files with 2,302 additions and 1,688 deletions.
28 changes: 23 additions & 5 deletions .github/autobump.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ affinity-designer
affinity-photo
affinity-publisher
aide-app
airflow
airtame
akiflow
alcom
Expand All @@ -47,6 +48,7 @@ aliworkbench
almighty
alt-tab
altair-graphql-client
amadine
amazon-chime
amazon-q
amie
Expand Down Expand Up @@ -138,7 +140,6 @@ blockbench
blockstream-green
blocs
blood-on-the-clocktower-online
bloop
bluewallet
boinc
boltai
Expand Down Expand Up @@ -223,8 +224,10 @@ cog
coin-wallet
commander-one
commandpost
compositor
confluent-cli
connect-fonts
contour
cookie
copilot
copilot-for-xcode
Expand Down Expand Up @@ -465,6 +468,7 @@ geoda
geogebra
geogebra@5
geph
ghostty
ghostty@tip
git-credential-manager
gitbutler
Expand All @@ -480,12 +484,12 @@ gns3
gnucash
go-agent
go-server
go-shiori
godspeed
gog-galaxy
goland
goodsync
google-chrome@beta
google-chrome@canary
google-chrome@dev
google-cloud-sdk
gpg-suite@nightly
Expand All @@ -511,6 +515,7 @@ hbuilderx
heptabase
herd
heroic
heynote
hhkb-studio
hides
holavpn
Expand Down Expand Up @@ -565,8 +570,8 @@ jasp
java@beta
jazz2-resurrection
jbrowse
jdownloader
jellyfin
jet-pilot
jetbrains-gateway
jetbrains-toolbox
jgrennison-openttd
Expand Down Expand Up @@ -768,6 +773,7 @@ mutedeck
mutesync
mweb-pro
nagstamon
naps2
native-access
naver-whale
navicat-for-mariadb
Expand Down Expand Up @@ -815,6 +821,7 @@ obsidian
ocenaudio
octarine
odrive
ok-json
okta-advanced-server-access
ollama
ollamac
Expand Down Expand Up @@ -957,6 +964,7 @@ qfinder-pro
qgis
qgroundcontrol
qlab
qlmarkdown
qownnotes
qq
qqlive
Expand All @@ -975,20 +983,22 @@ quickwhisper
quip
racket
radarr
radiola
rancher
rapidapi
rapidweaver
razorsql
readdle-spark
reader
readest
readmoreading
readyapi
realforce
reaper
receipts
rectangle
rectangle-pro
redisinsight
redis-insight
reflect
reflector
rekordbox
Expand All @@ -1004,6 +1014,7 @@ requestly
resolume-arena
responsively
restfox
restic-browser
retcon
retrobatch
reveal
Expand Down Expand Up @@ -1039,6 +1050,7 @@ saleae-logic
sanctum
santa
sapmachine-jdk
satyrn
sauce-connect
schism-tracker
screaming-frog-log-file-analyser
Expand Down Expand Up @@ -1069,7 +1081,6 @@ setapp
sf
sfm
shadow
shadow-bot
shadow@beta
shadowsocksx-ng
shapr3d
Expand Down Expand Up @@ -1098,6 +1109,7 @@ slack
slack-cli
slack@beta
smartgit
smartsynchronize
smooze-pro
smultron
snagit
Expand Down Expand Up @@ -1144,6 +1156,7 @@ strongvpn
studio-3t
sublime-merge
sublime-text@dev
subsurface
sunsama
super-productivity
superhuman
Expand All @@ -1157,6 +1170,7 @@ swiftformat-for-xcode
sync
syncovery
syncthing
syntax-highlight
tabby
tableflip
tableplus
Expand Down Expand Up @@ -1256,6 +1270,7 @@ ui
ultimate
understand
uninstallpkg
unite
unite-phone
unity
unity-hub
Expand Down Expand Up @@ -1322,8 +1337,10 @@ whalebird
whatsapp
whatsapp@beta
whatsapp@legacy
whatsize
whisky
widelands
wifi-explorer-pro
wifispoof
winbox
windows-app
Expand All @@ -1349,6 +1366,7 @@ xiaomi-cloud
xiv-on-mac
xliff-editor
xmind
xmplify
xnconvert
xnviewmp
xpra
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -184,24 +184,24 @@ jobs:
end
File.open(ENV.fetch("GITHUB_ENV"), "a") do |f|
f.puts "CASK_CONFLICTS=\"#{cask_conflicts&.join(" ")}\"" if cask_conflicts.present?
f.puts "CASK_DEPENDENCIES=\"#{cask_dependencies&.join(" ")}\"" if cask_dependencies.present?
f.puts "FORMULA_CONFLICTS=\"#{formula_conflicts&.join(" ")}\"" if formula_conflicts.present?
f.puts "CASK_CONFLICTS=#{cask_conflicts&.join(" ")}" if cask_conflicts.present?
f.puts "CASK_DEPENDENCIES=#{cask_dependencies&.join(" ")}" if cask_dependencies.present?
f.puts "FORMULA_CONFLICTS=#{formula_conflicts&.join(" ")}" if formula_conflicts.present?
end
EOF
if: always() && steps.fetch.outcome == 'success' && matrix.cask

- name: Uninstall conflicting formulae
run: |
# shellcheck disable=SC2086
brew uninstall --formula $FORMULA_CONFLICTS
read -r -a formula_conflicts_array <<< "$FORMULA_CONFLICTS"
brew uninstall --formula "${formula_conflicts_array[@]}"
if: ${{ always() && steps.info.outcome == 'success' && env.FORMULA_CONFLICTS != '' }}
timeout-minutes: 30

- name: Uninstall conflicting casks
run: |
# shellcheck disable=SC2086
brew uninstall --cask $CASK_CONFLICTS
read -r -a cask_conflicts_array <<< "$CASK_CONFLICTS"
brew uninstall --cask "${cask_conflicts_array[@]}"
if: ${{ always() && steps.info.outcome == 'success' && env.CASK_CONFLICTS != '' }}
timeout-minutes: 30

Expand Down Expand Up @@ -239,8 +239,8 @@ jobs:

- name: Uninstall cask dependencies
run: |
# shellcheck disable=SC2086
brew uninstall --cask $CASK_DEPENDENCIES
read -r -a cask_dependencies_array <<< "$CASK_DEPENDENCIES"
brew uninstall --cask "${cask_dependencies_array[@]}"
if: ${{ always() && steps.install.outcome == 'success' && env.CASK_DEPENDENCIES != '' }}
timeout-minutes: 30

Expand Down
2 changes: 1 addition & 1 deletion Casks/0/0-ad.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

livecheck do
url "https://play0ad.com/download/mac/"
regex(/href=.*?0ad[._-]v?(.*?)[._-]osx64\.dmg/i)
regex(/href=.*?0ad[._-]v?(.*?)[._-]#{arch}\.dmg/i)
end

depends_on macos: ">= :sierra"
Expand Down
6 changes: 3 additions & 3 deletions Casks/1/115browser.rb
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
cask "115browser" do
arch arm: "arm64", intel: "x64"

version "27.0.9.3"
sha256 arm: "d7a274c128b5d0320ce191c828f53614e94c8f83d42e3c396ec30972ae725b61",
intel: "9c2af21b48c0f53b24a4d7b6e89ca8b32e78ecdafdd5375f13c5018258a23767"
version "35.0.0.2"
sha256 arm: "2ca1be4bcbf1d3ad7a08eab1bdb21c7020e394135b3b07754322be23261b5f9a",
intel: "6f962559b13a09ac87a8456d1c142d9292876206f397adc5b15567cec04ecdf6"

url "https://down.115.com/client/mac/115br_v#{version}_#{arch}.dmg"
name "115Browser"
Expand Down
2 changes: 1 addition & 1 deletion Casks/a/abstract.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
end

auto_updates true
depends_on macos: ">= :high_sierra"
depends_on macos: ">= :catalina"

app "Abstract.app"

Expand Down
6 changes: 3 additions & 3 deletions Casks/a/acorn.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cask "acorn" do
version "7.4.6"
sha256 "4102c05f1b5fe8771b98e0070133768e665cfebf0eabf1573053e3833b96e8c0"
version "8.0"
sha256 "64065b7d6a3a801b701be40e082768fbf5aaa05aa41c8c421ed1bd8579ac1e62"

url "https://flyingmeat.com/download/Acorn-#{version}.zip"
name "Acorn"
Expand All @@ -13,7 +13,7 @@
end

auto_updates true
depends_on macos: ">= :mojave"
depends_on macos: ">= :sonoma"

app "Acorn.app"

Expand Down
15 changes: 9 additions & 6 deletions Casks/a/aegisub.rb
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
cask "aegisub" do
version "3.2.2"
sha256 "d71fa46f074a2d5a252f30779e0b8d913d5157258f5d9fc333411f8c9493f42b"
version "3.4.1"
sha256 "006f69f117552a071503f723ad9ac8685e8c051055dcb132e6409c9a2f4cde64"

url "https://github.com/Aegisub/Aegisub/releases/download/v#{version}/Aegisub-#{version}.dmg"
url "https://github.com/TypesettingTools/Aegisub/releases/download/v#{version}/Aegisub-#{version}.dmg",
verified: "github.com/TypesettingTools/Aegisub/"
name "Aegisub"
desc "Create and modify subtitles"
homepage "https://github.com/Aegisub/Aegisub"
homepage "https://aegisub.org/"

# https://github.com/Aegisub/Aegisub/issues/336
deprecate! date: "2024-09-06", because: :unmaintained
livecheck do
url :url
strategy :github_latest
end

app "Aegisub.app"

Expand Down
6 changes: 3 additions & 3 deletions Casks/a/affine.rb
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
cask "affine" do
arch arm: "arm64", intel: "x64"

version "0.19.1"
sha256 arm: "ad8f1993f21ffdf25cb4a5bd7446a4f1d8b3051b22b36f980c3465d1efda33fc",
intel: "524c99c42fc9a5ba7d4fb2e91856949467ccbb8f8ecea8fb75c052836815bce5"
version "0.19.5"
sha256 arm: "06c631f5dc50a97dc131947fab44a9fb7a285b094a80e007dad24f1368bba248",
intel: "7cb29de6137e3ee66b3e1aa30bb98b83ad66f90df8f2821550fdeb59ab5d7772"

url "https://github.com/toeverything/AFFiNE/releases/download/v#{version}/affine-#{version}-stable-macos-#{arch}.zip",
verified: "github.com/toeverything/AFFiNE/"
Expand Down
6 changes: 3 additions & 3 deletions Casks/a/aide-app.rb
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
cask "aide-app" do
arch arm: "arm64", intel: "x64"

version "1.94.2.24361"
sha256 arm: "aa6911bf39d090f933717bee77be428724f292781790cafc412baef39362c0ab",
intel: "29b543816a57499d2f621f6393388f07c054b8fc7c3fcfbb481901191531964c"
version "1.96.2.25003"
sha256 arm: "38945bdae222a968f18da7915cc838696517002470feac922e4f01fd45d072e2",
intel: "1448763eea13f9ed0ff01ade0ad3880d928f79627834efaa899abf1b77487ec4"

url "https://github.com/codestoryai/binaries/releases/download/#{version}/Aide.#{arch}.#{version}.dmg",
verified: "github.com/codestoryai/binaries/"
Expand Down
4 changes: 2 additions & 2 deletions Casks/a/aircall.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cask "aircall" do
version "3.1.65"
sha256 "a9a8d8bda43acf1fcea6130187b15a712826704cc781c5d451c71207c3ce1164"
version "3.1.66"
sha256 "d61c50d9f3466fe3751abe4945bc45d68cc9f6b71865b8ffa2a9bfd616fdb35b"

url "https://download-electron.aircall.io/Aircall-#{version}.dmg"
name "Aircall"
Expand Down
6 changes: 3 additions & 3 deletions Casks/a/airflow.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cask "airflow" do
version "3.3.8"
sha256 "b53d702c365941e4d3bb2bc2272a6809ac04cd1f634be2f0c6a1970ff01fa351"
version "3.3.9"
sha256 "fb7fa83fd4662ffdf5237b683556ef13ccb15ec5f1572a8e86ff9b1779764644"

url "https://cdn.downloads.iocave.net/Airflow/Airflow%20#{version}.zip",
verified: "cdn.downloads.iocave.net/Airflow/"
Expand All @@ -14,7 +14,7 @@
end

auto_updates true
depends_on macos: ">= :sierra"
depends_on macos: ">= :mojave"

app "Airflow.app"

Expand Down
4 changes: 2 additions & 2 deletions Casks/a/alacritty.rb
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
manpage "Alacritty.app/Contents/Resources/alacritty-bindings.5.gz"

zap trash: [
"~/Library/Preferences/io.alacritty.plist",
"~/Library/Saved Application State/io.alacritty.savedState",
"~/Library/Preferences/org.alacritty.plist",
"~/Library/Saved Application State/org.alacritty.savedState",
]
end
4 changes: 2 additions & 2 deletions Casks/a/alcom.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cask "alcom" do
version "0.1.17"
sha256 "90d6b2030ed0c5f7dc124d1b2c91eeb3641ae90a5a40ac1630fb4ab0072d80cb"
version "1.0.0"
sha256 "ffb9c293ead76febc881543918481ea672f7e1083b2a61ea83a14a9bbf0b9993"

url "https://github.com/vrc-get/vrc-get/releases/download/gui-v#{version}/ALCOM-#{version}-universal.dmg",
verified: "github.com/vrc-get/vrc-get/"
Expand Down
4 changes: 2 additions & 2 deletions Casks/a/alcove.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cask "alcove" do
version "1.0.3"
sha256 "3f1c1f3400421d0ebbffa0aede126e2476d9ab72d12b06cbcebbe7c6c59a5fca"
version "1.1.0"
sha256 "28ac86cc7361da7137d9e06406f8f034bd35c6d1208875b92719b612ef448ceb"

url "https://github.com/henrikruscon/alcove-releases/releases/download/#{version}/Alcove.zip",
verified: "github.com/henrikruscon/alcove-releases/"
Expand Down
Loading

0 comments on commit 637ed51

Please sign in to comment.