blob: b0044b24cc3547eeb29c948cf9aa41f42f64af8d (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
 | require 'cmd/tap' # for tap_args
module Homebrew
  def untap
    raise "Usage is `brew untap <tap-name>`" if ARGV.empty?
    ARGV.each do |tapname|
      user, repo = tap_args(tapname)
      # 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}"
      raise "No such tap!" unless tapd.directory?
      puts "Untapping #{tapname}... (#{tapd.abv})"
      files = []
      tapd.find_formula { |file| files << file }
      unlink_tap_formula(files)
      tapd.rmtree
      tapd.dirname.rmdir_if_possible
      puts "Untapped #{files.length} formula#{plural(files.length, 'e')}"
    end
  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
    end
    HOMEBREW_REPOSITORY.join("Library/Formula/.gitignore").atomic_write(gitignores * "\n")
    untapped
  end
end
 |