b2-tools: move to Python 3

This commit is contained in:
FX Coudert 2018-10-11 17:55:18 +02:00
parent 853660b141
commit 6684e86c70

View file

@ -5,6 +5,7 @@ class B2Tools < Formula
homepage "https://github.com/Backblaze/B2_Command_Line_Tool" homepage "https://github.com/Backblaze/B2_Command_Line_Tool"
url "https://github.com/Backblaze/B2_Command_Line_Tool/archive/v1.3.6.tar.gz" url "https://github.com/Backblaze/B2_Command_Line_Tool/archive/v1.3.6.tar.gz"
sha256 "077d5e9b186d4cb0be1fcbeb3b80e1788d8b941b0fcfbf2c7386b8c6a653740c" sha256 "077d5e9b186d4cb0be1fcbeb3b80e1788d8b941b0fcfbf2c7386b8c6a653740c"
revision 1
bottle do bottle do
cellar :any_skip_relocation cellar :any_skip_relocation
@ -14,12 +15,12 @@ class B2Tools < Formula
sha256 "3501141422e516c220615b4d30770cce7e65da9b6dcd6c55ea83ac183724714a" => :el_capitan sha256 "3501141422e516c220615b4d30770cce7e65da9b6dcd6c55ea83ac183724714a" => :el_capitan
end end
depends_on "python@2" depends_on "python"
conflicts_with "boost-build", :because => "both install `b2` binaries" conflicts_with "boost-build", :because => "both install `b2` binaries"
def install def install
venv = virtualenv_create(libexec) venv = virtualenv_create(libexec, "python3")
system libexec/"bin/pip", "install", "-v", "--no-binary", ":all:", system libexec/"bin/pip", "install", "-v", "--no-binary", ":all:",
"--ignore-installed", buildpath "--ignore-installed", buildpath
system libexec/"bin/pip", "uninstall", "-y", "b2" system libexec/"bin/pip", "uninstall", "-y", "b2"
@ -30,6 +31,7 @@ class B2Tools < Formula
end end
test do test do
ENV["LC_ALL"] = "en_US.UTF-8"
cmd = "#{bin}/b2 authorize_account BOGUSACCTID BOGUSAPPKEY 2>&1" cmd = "#{bin}/b2 authorize_account BOGUSACCTID BOGUSAPPKEY 2>&1"
assert_match "unable to authorize account", shell_output(cmd, 1) assert_match "unable to authorize account", shell_output(cmd, 1)
end end