Permalink
Cannot retrieve contributors at this time
42 lines (37 sloc)
1.36 KB
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
homebrew-core/Formula/twoping.rb
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Twoping < Formula | |
desc "Ping utility to determine directional packet loss" | |
homepage "https://www.finnie.org/software/2ping/" | |
url "https://www.finnie.org/software/2ping/2ping-4.5.1.tar.gz" | |
sha256 "b56beb1b7da1ab23faa6d28462bcab9785021011b3df004d5d3c8a97ed7d70d8" | |
license "MPL-2.0" | |
revision 1 | |
head "https://github.com/rfinnie/2ping.git", branch: "main" | |
bottle do | |
rebuild 1 | |
sha256 cellar: :any_skip_relocation, all: "4a8be32ba927a46659b03b82082dfe5477e5e84ae24b7a1185330ca5a6ac0b34" | |
end | |
depends_on "python@3.11" | |
def install | |
python3 = "python3.11" | |
ENV.prepend_create_path "PYTHONPATH", libexec/Language::Python.site_packages(python3) | |
system python3, *Language::Python.setup_install_args(libexec, python3) | |
man1.install "doc/2ping.1" | |
man1.install_symlink "2ping.1" => "2ping6.1" | |
bin.install Dir["#{libexec}/bin/*"] | |
bin.env_script_all_files(libexec/"bin", PYTHONPATH: ENV["PYTHONPATH"]) | |
bash_completion.install "2ping.bash_completion" => "2ping" | |
end | |
service do | |
run [opt_bin/"2ping", "--listen", "--quiet"] | |
keep_alive true | |
require_root true | |
log_path "/dev/null" | |
error_log_path "/dev/null" | |
end | |
test do | |
assert_match "OK 2PING", shell_output( | |
"#{bin}/2ping --count=10 --interval=0.2 --port=-1 --interface-address=127.0.0.1 " \ | |
"--listen --nagios=1000,5%,1000,5% 127.0.0.1", | |
) | |
end | |
end |