aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
diff options
context:
space:
mode:
authorAdam Vandenberg2013-06-08 23:09:44 -0700
committerAdam Vandenberg2013-06-09 07:32:06 -0700
commita60eed48bcff30d309ce10f62260c8e92bd691a9 (patch)
tree5dba860be16877ed9adcae6104d5001f8dcf1af0 /Library/Homebrew
parent4c9ac19e878750cf2c2832759d9902796079d9f0 (diff)
downloadbrew-a60eed48bcff30d309ce10f62260c8e92bd691a9.tar.bz2
Remove adamv-alt references.
Closes Homebrew/homebrew#20364.
Diffstat (limited to 'Library/Homebrew')
-rw-r--r--Library/Homebrew/cmd/update.rb9
-rw-r--r--Library/Homebrew/extend/pathname.rb8
2 files changed, 0 insertions, 17 deletions
diff --git a/Library/Homebrew/cmd/update.rb b/Library/Homebrew/cmd/update.rb
index 95125d33c..6f4992dee 100644
--- a/Library/Homebrew/cmd/update.rb
+++ b/Library/Homebrew/cmd/update.rb
@@ -2,9 +2,6 @@ require 'cmd/tap'
require 'cmd/untap'
module Homebrew extend self
-
- DEPRECATED_TAPS = ['adamv-alt']
-
def update
unless ARGV.named.empty?
abort <<-EOS.undent
@@ -28,12 +25,6 @@ module Homebrew extend self
Dir["Library/Taps/*"].each do |tapd|
next unless File.directory?(tapd)
- basename = Pathname.new(tapd).basename.to_s
- if DEPRECATED_TAPS.include?(basename)
- opoo "#{basename} is deprecated; please untap it"
- next
- end
-
cd tapd do
begin
updater = Updater.new
diff --git a/Library/Homebrew/extend/pathname.rb b/Library/Homebrew/extend/pathname.rb
index b6a47d520..1b0bf8b27 100644
--- a/Library/Homebrew/extend/pathname.rb
+++ b/Library/Homebrew/extend/pathname.rb
@@ -344,14 +344,6 @@ class Pathname
end
def find_formula
- # remove special casing once tap is established and alt removed
- if self == HOMEBREW_LIBRARY/"Taps/adamv-alt"
- all_formula do |file|
- yield file
- end
- return
- end
-
[self/:Formula, self/:HomebrewFormula, self].each do |d|
if d.exist?
d.children.map{ |child| child.relative_path_from(self) }.each do |pn|