aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
diff options
context:
space:
mode:
authorMike McQuaid2013-12-14 18:15:59 +0000
committerMike McQuaid2013-12-14 23:10:20 +0000
commitda7c92f0debed52a0c9229a2fb4faa9f756e90a6 (patch)
tree6f70d8e9f6d26cd411c0ccca5f923691750110c5 /Library/Homebrew
parent282dc564ab11e62890551367d2ddf5eca50ee0f2 (diff)
downloadhomebrew-da7c92f0debed52a0c9229a2fb4faa9f756e90a6.tar.bz2
tap: change core formula tap naming.
Diffstat (limited to 'Library/Homebrew')
-rw-r--r--Library/Homebrew/cmd/tap.rb4
-rw-r--r--Library/Homebrew/formula.rb2
2 files changed, 3 insertions, 3 deletions
diff --git a/Library/Homebrew/cmd/tap.rb b/Library/Homebrew/cmd/tap.rb
index 2b17629a5..f599f7762 100644
--- a/Library/Homebrew/cmd/tap.rb
+++ b/Library/Homebrew/cmd/tap.rb
@@ -68,7 +68,7 @@ module Homebrew extend self
else
to = to.realpath if to.exist?
# Whitelist gcc42 temporarily until Mavericks/Xcode 5.0 issues are resolved.
- unless to.tap_ref == 'mxcl/master/apple-gcc42'
+ unless to.tap_ref == 'Homebrew/homebrew/apple-gcc42'
opoo "Could not tap #{Tty.white}#{from.tap_ref}#{Tty.reset} over #{Tty.white}#{to.tap_ref}#{Tty.reset}"
end
end
@@ -121,7 +121,7 @@ class Pathname
when %r{^#{HOMEBREW_LIBRARY}/Taps/([a-z\-_]+)-(\w+)/(.+)}
"#$1/#$2/#{File.basename($3, '.rb')}"
when %r{^#{HOMEBREW_LIBRARY}/Formula/(.+)}
- "mxcl/master/#{File.basename($1, '.rb')}"
+ "Homebrew/homebrew/#{File.basename($1, '.rb')}"
else
nil
end
diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb
index 460b4bb47..585f669ca 100644
--- a/Library/Homebrew/formula.rb
+++ b/Library/Homebrew/formula.rb
@@ -451,7 +451,7 @@ class Formula
if path.realpath.to_s =~ HOMEBREW_TAP_DIR_REGEX
"#$1/#$2"
elsif core_formula?
- "mxcl/master"
+ "Homebrew/homebrew"
else
"path or URL"
end