29 lines
712 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?
gitignores = (HOMEBREW_LIBRARY/"Formula/.gitignore").read.split rescue []
untapped = 0
2012-03-02 20:28:54 +00:00
tapd.find_formula do |pn|
bn = pn.basename.to_s
pn = HOMEBREW_LIBRARY/"Formula/#{bn}"
if pn.symlink? and pn.realpath.to_s =~ %r[^#{tapd.realpath}]
pn.delete
gitignores.delete(bn)
untapped += 1
end
2012-03-02 20:28:54 +00:00
end
rm_rf tapd
2012-03-16 12:58:39 +00:00
HOMEBREW_REPOSITORY.join("Library/Formula/.gitignore").atomic_write(gitignores * "\n")
puts "Untapped #{untapped} formula"
2012-03-02 20:28:54 +00:00
end
end