2012-03-02 20:28:54 +00:00
|
|
|
require 'cmd/tap' # for Pathname.recursive_formula
|
2012-03-04 02:47:11 +00:00
|
|
|
require 'tempfile'
|
2012-03-02 20:28:54 +00:00
|
|
|
|
|
|
|
module Homebrew extend self
|
|
|
|
def untap
|
|
|
|
user, repo = tap_args
|
|
|
|
tapd = HOMEBREW_PREFIX/"Library/Taps/#{user}-#{repo}"
|
|
|
|
|
|
|
|
raise "No such tap!" unless tapd.directory?
|
|
|
|
|
2012-03-04 02:47:11 +00:00
|
|
|
gitignores = (HOMEBREW_PREFIX/"Library/Formula/.gitignore").read.split rescue []
|
|
|
|
|
2012-03-02 20:28:54 +00:00
|
|
|
tapd.find_formula do |pn|
|
2012-03-04 02:47:11 +00:00
|
|
|
bn = pn.basename.to_s
|
|
|
|
pn = HOMEBREW_REPOSITORY/"Library/Formula"/bn
|
2012-03-02 20:28:54 +00:00
|
|
|
pn.delete if pn.symlink? and pn.realpath.to_s =~ %r[^#{tapd.realpath}]
|
2012-03-04 02:47:11 +00:00
|
|
|
gitignores.delete(bn)
|
2012-03-02 20:28:54 +00:00
|
|
|
end
|
|
|
|
rm_rf tapd
|
2012-03-04 02:47:11 +00:00
|
|
|
|
|
|
|
tf = Tempfile.new("brew-untap")
|
|
|
|
tf.write(gitignores.join("\n"))
|
|
|
|
tf.close
|
|
|
|
mv tf.path, "#{HOMEBREW_PREFIX}/Library/Formula/.gitignore"
|
2012-03-02 20:28:54 +00:00
|
|
|
end
|
|
|
|
end
|