aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2013-05-18 20:26:36 -0500
committerJack Nagel2013-05-18 20:27:15 -0500
commit397fcd9a6eb0b1b367c4f34a6b6b06518e9e6b0e (patch)
tree534a0e0e9525039c0e4dc98378865f783f071f8a /Library/Formula
parent274a67e6397979e07d9fa0f4c65d85260248a5f5 (diff)
downloadhomebrew-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/Formula')
-rw-r--r--Library/Formula/gsutil.rb21
1 files changed, 0 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