47 lines
1.3 KiB
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
raise "Usage is `brew untap <tap-name>`" if ARGV.empty?
2012-03-02 20:28:54 +00:00
user, repo = tap_args
# we consistently downcase in tap to ensure we are not bitten by case-insensive
# filesystem issues. Which is the default on mac. The problem being the
# filesystem cares, but our regexps don't. So unless we resolve *every* path
# we will get bitten.
user.downcase!
repo.downcase!
tapd = HOMEBREW_LIBRARY/"Taps/#{user}/homebrew-#{repo}"
2012-03-02 20:28:54 +00:00
raise "No such tap!" unless tapd.directory?
files = []
tapd.find_formula { |file| files << tapd.join(file) }
unlink_tap_formula(files)
tapd.rmtree
tapd.dirname.rmdir_if_possible
puts "Untapped #{files.length} formula"
end
def unlink_tap_formula paths
untapped = 0
gitignores = (HOMEBREW_LIBRARY/"Formula/.gitignore").read.split rescue []
paths.each do |path|
link = HOMEBREW_LIBRARY.join("Formula", path.basename)
if link.symlink? && (!link.exist? || link.resolved_path == path)
link.delete
gitignores.delete(path.basename.to_s)
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