dropbear 2015.71

Closes Homebrew/homebrew#48821.

Signed-off-by: Baptiste Fontaine <batifon@yahoo.fr>
This commit is contained in:
Baptiste Fontaine 2016-02-04 12:52:55 +01:00
parent e82d11078b
commit 9f02c59292

View file

@ -1,9 +1,9 @@
class Dropbear < Formula
desc "Small SSH server/client for POSIX-based system"
homepage "https://matt.ucc.asn.au/dropbear/dropbear.html"
url "https://matt.ucc.asn.au/dropbear/releases/dropbear-2015.68.tar.bz2"
mirror "https://dropbear.nl/mirror/dropbear-2015.68.tar.bz2"
sha256 "55ea7c1e904ffe4b1cdbe1addca8291a2533d7d285fd22ac33608e9502a62446"
url "https://matt.ucc.asn.au/dropbear/releases/dropbear-2015.71.tar.bz2"
mirror "https://dropbear.nl/mirror/dropbear-2015.71.tar.bz2"
sha256 "376214169c0e187ee9f48ae1a99b3f835016ad5b98ede4bfd1cf581deba783af"
bottle do
cellar :any
@ -36,9 +36,9 @@ class Dropbear < Formula
end
test do
system "dbclient", "-h"
system "dropbearkey", "-t", "ecdsa",
"-f", testpath/"testec521", "-s", "521"
File.exist? testpath/"testec521"
testfile = testpath/"testec521"
system "#{bin}/dbclient", "-h"
system "#{bin}/dropbearkey", "-t", "ecdsa", "-f", testfile, "-s", "521"
assert testfile.exist?
end
end