58 lines
2 KiB
Ruby
58 lines
2 KiB
Ruby
class Gopass < Formula
|
|
desc "The slightly more awesome Standard Unix Password Manager for Teams"
|
|
homepage "https://www.justwatch.com/gopass"
|
|
url "https://www.justwatch.com/gopass/releases/1.3.1/gopass-1.3.1.tar.gz"
|
|
sha256 "d95e9d04440d9a81a5a5135c2e1ad381d8a27e0a54afdc4b2acc717613942e11"
|
|
head "https://github.com/justwatchcom/gopass.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "de1f1f1815431795a5ee70c67cfd47ff09a191a8cc04f42b1f2b6883b3a76559" => :sierra
|
|
sha256 "a7b41e377d463b9444425fd53e3c297e6ea8476458368c46fb2437760ed53616" => :el_capitan
|
|
sha256 "8b183db12a93b611ed480fe5d966a17fab30d6698c0ca6613e59ae1f68853199" => :yosemite
|
|
end
|
|
|
|
depends_on "go" => :build
|
|
depends_on :gpg => :run
|
|
|
|
def install
|
|
ENV["GOPATH"] = buildpath
|
|
(buildpath/"src/github.com/justwatchcom/gopass").install buildpath.children
|
|
|
|
cd "src/github.com/justwatchcom/gopass" do
|
|
prefix.install_metafiles
|
|
ENV["PREFIX"] = prefix
|
|
system "make", "install"
|
|
end
|
|
|
|
output = Utils.popen_read("#{bin}/gopass completion bash")
|
|
(bash_completion/"gopass-completion").write output
|
|
end
|
|
|
|
test do
|
|
assert_match version.to_s, shell_output("#{bin}/gopass version")
|
|
|
|
(testpath/"batch.gpg").write <<-EOS.undent
|
|
Key-Type: RSA
|
|
Key-Length: 2048
|
|
Subkey-Type: RSA
|
|
Subkey-Length: 2048
|
|
Name-Real: Testing
|
|
Name-Email: testing@foo.bar
|
|
Expire-Date: 1d
|
|
%no-protection
|
|
%commit
|
|
EOS
|
|
begin
|
|
system Formula["gnupg"].opt_bin/"gpg", "--batch", "--gen-key", "batch.gpg"
|
|
|
|
system bin/"gopass", "init", "--nogit", "testing@foo.bar"
|
|
system bin/"gopass", "generate", "Email/other@foo.bar", "15"
|
|
assert File.exist?(".password-store/Email/other@foo.bar.gpg")
|
|
ensure
|
|
system Formula["gnupg"].opt_bin/"gpgconf", "--kill", "gpg-agent"
|
|
system Formula["gnupg"].opt_bin/"gpgconf", "--homedir", "keyrings/live",
|
|
"--kill", "gpg-agent"
|
|
end
|
|
end
|
|
end
|