Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

A new cask for vernet app #198182

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions Casks/v/vernet.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Documentation: https://docs.brew.sh/Cask-Cookbook

Check failure on line 1 in Casks/v/vernet.rb

View workflow job for this annotation

GitHub Actions / syntax (macos-15)

Use `sha256 :no_check` when URL is unversioned.

Check failure on line 1 in Casks/v/vernet.rb

View workflow job for this annotation

GitHub Actions / test vernet (macos-13, intel)

Use `sha256 :no_check` when URL is unversioned.

Check failure on line 1 in Casks/v/vernet.rb

View workflow job for this annotation

GitHub Actions / test vernet (macos-15, arm)

Use `sha256 :no_check` when URL is unversioned.
# https://docs.brew.sh/Adding-Software-to-Homebrew#cask-stanzas
# PLEASE REMOVE ALL GENERATED COMMENTS BEFORE SUBMITTING YOUR PULL REQUEST!
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please do this

cask "vernet" do
version "1.1.0"
sha256 "753e72272b9b6aff4df1cc5d1c21347b20ed12bfbe8cfccbba3e47724b799319"

url "https://github.com/osociety/vernet/releases/download/v1.1.0+29/Vernet-v1.1.0+29-macos.dmg"

Check failure on line 8 in Casks/v/vernet.rb

View workflow job for this annotation

GitHub Actions / test vernet (macos-13, intel)

Signature verification failed: /private/tmp/cask-audit20250114-6736-o5mn8x/vernet.app: rejected macOS on ARM requires software to be signed. Please contact the upstream developer to let them know they should sign and notarize their software.

Check failure on line 8 in Casks/v/vernet.rb

View workflow job for this annotation

GitHub Actions / test vernet (macos-15, arm)

Signature verification failed: /private/tmp/cask-audit20250114-5355-8dgysi/vernet.app: rejected macOS on ARM requires software to be signed. Please contact the upstream developer to let them know they should sign and notarize their software.
name "Vernet"
desc "Network Analyzer and Monitoring Tool"
homepage "https://github.com/osociety/vernet/"

# Documentation: https://docs.brew.sh/Brew-Livecheck
livecheck do
url :url
strategy :github_latest
end

depends_on macos: ">= :big_sur"
depends_on arch: [:x86_64, :arm64]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No need to limit the architecture to everything


app "vernet.app", target: "Vernet.app"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why rename it?


# Documentation: https://docs.brew.sh/Cask-Cookbook#stanza-zap
zap trash: "~/Library/Containers/org.fsociety.vernet.vernet"
end
Loading