38 lines
962 B
Ruby
Raw Normal View History

2012-03-16 12:58:39 +00:00
require 'cmd/tap' # for tap_args
2012-03-02 20:28:54 +00:00
module Homebrew extend self
def untap
user, repo = tap_args
tapd = HOMEBREW_LIBRARY/"Taps/#{user}-#{repo}"
2012-03-02 20:28:54 +00:00
raise "No such tap!" unless tapd.directory?
files = []
tapd.find_formula{ |file| files << Pathname.new("#{user}-#{repo}").join(file) }
untapped = unlink_tap_formula(files)
rm_rf tapd
puts "Untapped #{untapped} formula"
end
def unlink_tap_formula formulae
untapped = 0
gitignores = (HOMEBREW_LIBRARY/"Formula/.gitignore").read.split rescue []
formulae.each do |formula|
tapd = (HOMEBREW_LIBRARY/"Taps/#{formula}").dirname
bn = formula.basename.to_s
pn = HOMEBREW_LIBRARY/"Formula/#{bn}"
if pn.symlink? and pn.realpath.to_s =~ %r[^#{tapd}]
pn.delete
gitignores.delete(bn)
untapped += 1
end
2012-03-02 20:28:54 +00:00
end
2012-03-16 12:58:39 +00:00
HOMEBREW_REPOSITORY.join("Library/Formula/.gitignore").atomic_write(gitignores * "\n")
untapped
2012-03-02 20:28:54 +00:00
end
end