homebrew-core/Formula/stubby.rb
Mike McQuaid 512758e6eb Rubocop 0.57.1 style fixes (#28754)
Realign trailing EOS.
2018-06-09 01:27:43 -07:00

88 lines
2.9 KiB
Ruby

class Stubby < Formula
desc "DNS privacy enabled stub resolver service based on getdns"
homepage "https://dnsprivacy.org/wiki/display/DP/DNS+Privacy+Daemon+-+Stubby"
url "https://github.com/getdnsapi/stubby/archive/v0.2.3.tar.gz"
sha256 "5fbe10f421f1313b5e2259b0eec96785af0c5b460431cf86bb6450a11cb3f473"
head "https://github.com/getdnsapi/stubby.git", :branch => "develop"
bottle do
sha256 "0a09202232898b51e34ccf898e794eca7ebe920209b535a32b224c28cc188552" => :high_sierra
sha256 "e027e65ca40fbc66101c7e18889588a825d7b2f528238a616f441c42d297807f" => :sierra
sha256 "7a1223ce531d26cd4c97690b2c966ef583b8350e508623dee27da418917a0597" => :el_capitan
end
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :build
depends_on "getdns"
depends_on "libyaml"
def install
system "autoreconf", "-fiv"
system "./configure", "--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}",
"--sysconfdir=#{etc}"
system "make", "install"
end
plist_options :startup => true, :manual => "sudo stubby -C #{HOMEBREW_PREFIX}/etc/stubby/stubby.yml"
def plist; <<~EOS
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-/Apple/DTD PLIST 1.0/EN" "http:/www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>#{plist_name}</string>
<key>KeepAlive</key>
<true/>
<key>RunAtLoad</key>
<true/>
<key>ProgramArguments</key>
<array>
<string>#{opt_bin}/stubby</string>
<string>-C</string>
<string>#{etc}/stubby/stubby.yml</string>
<string>-l</string>
</array>
<key>StandardErrorPath</key>
<string>#{var}/log/stubby/stubby.log</string>
<key>StandardOutPath</key>
<string>#{var}/log/stubby/stubby.log</string>
</dict>
</plist>
EOS
end
test do
assert_predicate etc/"stubby/stubby.yml", :exist?
(testpath/"stubby_test.yml").write <<~EOS
resolution_type: GETDNS_RESOLUTION_STUB
dns_transport_list:
- GETDNS_TRANSPORT_TLS
- GETDNS_TRANSPORT_UDP
- GETDNS_TRANSPORT_TCP
listen_addresses:
- 127.0.0.1@5553
idle_timeout: 0
upstream_recursive_servers:
- address_data: 145.100.185.15
- address_data: 145.100.185.16
- address_data: 185.49.141.37
EOS
output = shell_output("#{bin}/stubby -i -C stubby_test.yml")
assert_match "bindata for 145.100.185.15", output
pid = fork do
exec "#{bin}/stubby", "-C", testpath/"stubby_test.yml"
end
begin
sleep 2
output = shell_output("dig @127.0.0.1 -p 5553 getdnsapi.net")
assert_match "status: NOERROR", output
ensure
Process.kill 9, pid
Process.wait pid
end
end
end