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

navidrome 0.53.0 #190903

Closed
wants to merge 2 commits 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
7 changes: 4 additions & 3 deletions Formula/n/navidrome.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
class Navidrome < Formula
desc "Modern Music Server and Streamer compatible with Subsonic/Airsonic"
homepage "https://www.navidrome.org"
url "https://github.com/navidrome/navidrome/archive/refs/tags/v0.52.5.tar.gz"
sha256 "9e5a81589d3e0c04d8cd06dccc680942d082f3d02aa4f0fd2b67dedf9902063b"
url "https://github.com/navidrome/navidrome/archive/refs/tags/v0.53.0.tar.gz"
sha256 "c18a0b9b34567f5c6f55eabebefcc9348cc2a6a57a4ff5ba2dc2604bb99b1e78"
license "GPL-3.0-only"
head "https://github.com/navidrome/navidrome.git", branch: "master"

Expand Down Expand Up @@ -30,12 +30,13 @@ def install
end

test do
mkdir "music"
assert_equal "#{version} (source_archive)", shell_output("#{bin}/navidrome --version").chomp
port = free_port
pid = fork do
exec bin/"navidrome", "--port", port.to_s
end
sleep 15
sleep 30
assert_equal ".", shell_output("curl http://localhost:#{port}/ping")
ensure
Process.kill "TERM", pid
Expand Down
Loading