diff options
| author | Jack Nagel | 2013-05-18 20:26:36 -0500 |
|---|---|---|
| committer | Jack Nagel | 2013-05-18 20:27:15 -0500 |
| commit | 397fcd9a6eb0b1b367c4f34a6b6b06518e9e6b0e (patch) | |
| tree | 534a0e0e9525039c0e4dc98378865f783f071f8a /Library | |
| parent | 274a67e6397979e07d9fa0f4c65d85260248a5f5 (diff) | |
| download | homebrew-397fcd9a6eb0b1b367c4f34a6b6b06518e9e6b0e.tar.bz2 | |
Remove gsutil
This is now available from PyPI, and the github tarball does not contain
all of the necessary dependencies, so remove it and recommend "pip
install gsutil".
Closes #19874.
Closes #19895.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/gsutil.rb | 21 | ||||
| -rw-r--r-- | Library/Homebrew/blacklist.rb | 3 |
2 files changed, 3 insertions, 21 deletions
diff --git a/Library/Formula/gsutil.rb b/Library/Formula/gsutil.rb deleted file mode 100644 index 888e64111..000000000 --- a/Library/Formula/gsutil.rb +++ /dev/null @@ -1,21 +0,0 @@ -require 'formula' - -# This is a pure Python formula, but Google suck and won't provide it in PYPI. -# So fearlessly we elect to maintain the formula. References: -# https://github.com/mxcl/homebrew/pull/7484 -# https://github.com/mxcl/homebrew/issues/2560 - -class Gsutil < Formula - homepage 'https://github.com/GoogleCloudPlatform/gsutil' - url 'https://github.com/GoogleCloudPlatform/gsutil/archive/v3.29.tar.gz' - sha1 'ae224258bcd1aa14c7dd5106766ec48640f815c8' - - def install - libexec.install Dir["*"] - bin.install_symlink libexec/'gsutil' - end - - def test - system "#{bin}/gsutil" - end -end diff --git a/Library/Homebrew/blacklist.rb b/Library/Homebrew/blacklist.rb index 5d9a3dc33..e3077c59a 100644 --- a/Library/Homebrew/blacklist.rb +++ b/Library/Homebrew/blacklist.rb @@ -59,5 +59,8 @@ def blacklisted? name We won't add sshpass because it makes it too easy for novice SSH users to ruin SSH's security. EOS + when 'gsutil' then <<-EOS.undent + Install gsutil with `pip install gsutil` + EOS end end |
