aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/bottles.rb
blob: 13ed77590118af81877f2b6e1e70e1dfb00f11c3 (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 'tab'
require 'extend/ARGV'

def bottle_filename f
  "#{f.name}-#{f.version}#{bottle_native_suffix}"
end

def bottles_supported?
  HOMEBREW_PREFIX.to_s == '/usr/local' and HOMEBREW_CELLAR.to_s == '/usr/local/Cellar'
end

def install_bottle? f
  !ARGV.build_from_source? && bottle_current?(f) && bottle_native?(f)
end

def bottle_native? f
  return true if bottle_native_regex.match(f.bottle_url)
  # old brew bottle style
  return true if MacOS.lion? && old_bottle_regex.match(f.bottle_url)
  return false
end

def built_bottle? f
  Tab.for_formula(f).built_bottle
end

def bottle_current? f
  !f.bottle_url.nil? && Pathname.new(f.bottle_url).version == f.version
end

def bottle_native_suffix
  ".#{MacOS.cat}#{bottle_suffix}"
end

def bottle_suffix
  ".bottle.tar.gz"
end

def bottle_native_regex
  /(\.#{MacOS.cat}\.bottle\.tar\.gz)$/
end

def bottle_regex
  /(\.[a-z]+\.bottle\.tar\.gz)$/
end

def old_bottle_regex
  /(-bottle\.tar\.gz)$/
end