2012-03-02 20:28:54 +00:00
|
|
|
module Homebrew extend self
|
|
|
|
|
|
|
|
def tap
|
|
|
|
if ARGV.empty?
|
|
|
|
(HOMEBREW_LIBRARY/"Taps").children.each do |tap|
|
|
|
|
puts tap.basename.sub('-', '/') if (tap/'.git').directory?
|
|
|
|
end
|
|
|
|
else
|
|
|
|
install_tap(*tap_args)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def install_tap user, repo
|
|
|
|
raise "brew install git" unless system "/usr/bin/which -s git"
|
|
|
|
|
|
|
|
tapd = HOMEBREW_LIBRARY/"Taps/#{user}-#{repo}"
|
|
|
|
raise "Already tapped!" if tapd.directory?
|
|
|
|
abort unless system "git clone https://github.com/#{user}/homebrew-#{repo} #{tapd}"
|
|
|
|
|
2012-03-07 22:48:44 +00:00
|
|
|
files = []
|
|
|
|
tapd.find_formula{ |file| files << Pathname.new("#{user}-#{repo}").join(file) }
|
2012-03-16 17:11:40 +00:00
|
|
|
tapped = link_tap_formula(files)
|
|
|
|
puts "Tapped #{tapped} formula"
|
2012-03-07 22:48:44 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def link_tap_formula formulae
|
|
|
|
ignores = (HOMEBREW_LIBRARY/"Formula/.gitignore").read.split rescue []
|
2012-03-16 17:11:40 +00:00
|
|
|
tapped = 0
|
2012-03-07 22:48:44 +00:00
|
|
|
|
|
|
|
cd HOMEBREW_LIBRARY/"Formula" do
|
|
|
|
formulae.each do |formula|
|
2012-03-16 17:11:40 +00:00
|
|
|
from = HOMEBREW_LIBRARY.join("Taps/#{formula}").tap_ref
|
|
|
|
to = HOMEBREW_LIBRARY.join("Formula/#{formula.basename}").tap_ref
|
|
|
|
|
|
|
|
# Unexpected, but possible, lets proceed as if nothing happened
|
|
|
|
formula.delete if from == to
|
|
|
|
|
2012-03-07 22:48:44 +00:00
|
|
|
# using the system ln is the only way to get relative symlinks
|
|
|
|
system "ln -s ../Taps/#{formula} 2>/dev/null"
|
|
|
|
if $?.success?
|
|
|
|
ignores << formula.basename.to_s
|
2012-03-16 17:11:40 +00:00
|
|
|
tapped += 1
|
2012-03-07 22:48:44 +00:00
|
|
|
else
|
2012-03-16 12:49:09 +00:00
|
|
|
opoo "Could not tap #{Tty.white}#{from}#{Tty.reset} over #{Tty.white}#{to}#{Tty.reset}"
|
2012-03-07 22:48:44 +00:00
|
|
|
end
|
2012-03-04 02:47:11 +00:00
|
|
|
end
|
2012-03-16 17:11:40 +00:00
|
|
|
|
|
|
|
tapped
|
2012-03-02 20:28:54 +00:00
|
|
|
end
|
2012-03-04 02:47:11 +00:00
|
|
|
|
2012-03-16 12:58:39 +00:00
|
|
|
HOMEBREW_LIBRARY.join("Formula/.gitignore").atomic_write(ignores.uniq.join("\n"))
|
2012-03-02 20:28:54 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def tap_args
|
|
|
|
ARGV.first =~ %r{^(\w+)/(homebrew-)?(\w+)$}
|
|
|
|
raise "Invalid usage" unless $1 and $3
|
|
|
|
[$1, $3]
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2012-03-16 12:49:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Pathname
|
|
|
|
def tap_ref
|
2012-03-16 17:11:40 +00:00
|
|
|
case self.to_s
|
2012-03-16 12:49:09 +00:00
|
|
|
when %r{^#{HOMEBREW_LIBRARY}/Taps/(\w+)-(\w+)/(.+)}
|
|
|
|
"#$1/#$2/#{File.basename($3, '.rb')}"
|
|
|
|
when %r{^#{HOMEBREW_LIBRARY}/Formula/(.+)}
|
|
|
|
"mxcl/master/#{File.basename($1, '.rb')}"
|
|
|
|
else
|
2012-03-16 17:11:40 +00:00
|
|
|
nil
|
2012-03-16 12:49:09 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|