2016-09-13 08:57:55 +01:00
|
|
|
#: * `bottle` [`--verbose`] [`--no-rebuild`] [`--keep-old`] [`--skip-relocation`] [`--root-url=<root_url>`] [`--force-core-tap`]:
|
2016-09-08 09:05:00 +01:00
|
|
|
#: * `bottle` `--merge` [`--no-commit`] [`--keep-old`] [`--write`]:
|
|
|
|
#:
|
|
|
|
#: Generate a bottle (binary package) from a formula installed with
|
|
|
|
#: `--build-bottle`.
|
|
|
|
|
2015-08-03 13:09:07 +01:00
|
|
|
require "formula"
|
2016-04-25 17:57:51 +01:00
|
|
|
require "utils/bottles"
|
2015-08-03 13:09:07 +01:00
|
|
|
require "tab"
|
|
|
|
require "keg"
|
|
|
|
require "formula_versions"
|
|
|
|
require "utils/inreplace"
|
|
|
|
require "erb"
|
|
|
|
require "extend/pathname"
|
2012-03-07 17:29:05 -05:00
|
|
|
|
2016-09-11 17:41:51 +01:00
|
|
|
BOTTLE_ERB = <<-EOS.freeze
|
2013-09-21 21:21:42 +01:00
|
|
|
bottle do
|
2015-07-03 21:42:09 +08:00
|
|
|
<% if !root_url.start_with?(BottleSpecification::DEFAULT_DOMAIN) %>
|
2014-05-09 17:38:12 +09:00
|
|
|
root_url "<%= root_url %>"
|
|
|
|
<% end %>
|
2014-07-12 22:43:35 -05:00
|
|
|
<% if prefix != BottleSpecification::DEFAULT_PREFIX %>
|
2014-01-18 21:40:52 +00:00
|
|
|
prefix "<%= prefix %>"
|
2013-09-21 21:21:42 +01:00
|
|
|
<% end %>
|
|
|
|
<% if cellar.is_a? Symbol %>
|
|
|
|
cellar :<%= cellar %>
|
2014-07-12 22:43:35 -05:00
|
|
|
<% elsif cellar != BottleSpecification::DEFAULT_CELLAR %>
|
2014-01-18 21:40:52 +00:00
|
|
|
cellar "<%= cellar %>"
|
2013-09-21 21:21:42 +01:00
|
|
|
<% end %>
|
2016-08-18 17:32:35 +01:00
|
|
|
<% if rebuild > 0 %>
|
|
|
|
rebuild <%= rebuild %>
|
2013-09-21 21:21:42 +01:00
|
|
|
<% end %>
|
2013-09-23 17:30:47 +01:00
|
|
|
<% checksums.each do |checksum_type, checksum_values| %>
|
|
|
|
<% checksum_values.each do |checksum_value| %>
|
2016-09-18 19:57:19 +01:00
|
|
|
<% checksum, macos = checksum_value.shift %>
|
|
|
|
<%= checksum_type %> "<%= checksum %>" => :<%= macos %>
|
2013-09-21 21:21:42 +01:00
|
|
|
<% end %>
|
2013-09-23 17:30:47 +01:00
|
|
|
<% end %>
|
2013-09-21 21:21:42 +01:00
|
|
|
end
|
|
|
|
EOS
|
|
|
|
|
2015-09-23 14:55:22 +01:00
|
|
|
MAXIMUM_STRING_MATCHES = 100
|
|
|
|
|
2014-06-18 22:41:47 -05:00
|
|
|
module Homebrew
|
2016-07-27 16:19:40 -07:00
|
|
|
def keg_contain?(string, keg, ignores)
|
2015-12-26 23:00:38 +01:00
|
|
|
@put_string_exists_header, @put_filenames = nil
|
2015-02-26 19:13:10 +00:00
|
|
|
|
2016-09-27 19:11:56 +02:00
|
|
|
print_filename = lambda do |str, filename|
|
2015-02-26 19:13:10 +00:00
|
|
|
unless @put_string_exists_header
|
2016-09-27 19:11:56 +02:00
|
|
|
opoo "String '#{str}' still exists in these files:"
|
2015-02-26 19:13:10 +00:00
|
|
|
@put_string_exists_header = true
|
|
|
|
end
|
2013-10-31 01:20:28 -07:00
|
|
|
|
2015-02-26 19:13:10 +00:00
|
|
|
@put_filenames ||= []
|
2016-09-22 20:12:28 +02:00
|
|
|
|
|
|
|
return if @put_filenames.include? filename
|
|
|
|
|
2016-08-30 21:38:13 +02:00
|
|
|
puts Formatter.error(filename.to_s)
|
2016-09-22 20:12:28 +02:00
|
|
|
@put_filenames << filename
|
2015-02-20 14:29:43 +00:00
|
|
|
end
|
|
|
|
|
2013-12-17 20:46:42 -06:00
|
|
|
result = false
|
2013-10-31 01:20:28 -07:00
|
|
|
|
2013-12-17 20:46:42 -06:00
|
|
|
keg.each_unique_file_matching(string) do |file|
|
2015-07-10 19:51:43 +08:00
|
|
|
# skip document file.
|
|
|
|
next if Metafiles::EXTENSIONS.include? file.extname
|
|
|
|
|
2016-07-09 13:52:05 +01:00
|
|
|
linked_libraries = Keg.file_linked_libraries(file, string)
|
2016-08-05 22:01:32 +08:00
|
|
|
result ||= !linked_libraries.empty?
|
2013-10-31 01:20:28 -07:00
|
|
|
|
2014-01-20 15:26:18 -08:00
|
|
|
if ARGV.verbose?
|
2016-09-27 19:11:56 +02:00
|
|
|
print_filename.call(string, file) unless linked_libraries.empty?
|
2014-01-20 15:26:18 -08:00
|
|
|
linked_libraries.each do |lib|
|
|
|
|
puts " #{Tty.gray}-->#{Tty.reset} links to #{lib}"
|
|
|
|
end
|
2013-10-31 01:20:28 -07:00
|
|
|
end
|
|
|
|
|
2015-09-23 14:55:22 +01:00
|
|
|
text_matches = []
|
|
|
|
|
2013-10-31 01:20:28 -07:00
|
|
|
# Use strings to search through the file for each string
|
2014-07-05 13:50:54 -05:00
|
|
|
Utils.popen_read("strings", "-t", "x", "-", file.to_s) do |io|
|
2013-12-14 15:43:15 -06:00
|
|
|
until io.eof?
|
|
|
|
str = io.readline.chomp
|
2015-08-03 13:09:07 +01:00
|
|
|
next if ignores.any? { |i| i =~ str }
|
2013-12-14 15:43:15 -06:00
|
|
|
next unless str.include? string
|
|
|
|
offset, match = str.split(" ", 2)
|
|
|
|
next if linked_libraries.include? match # Don't bother reporting a string if it was found by otool
|
2015-09-11 16:49:39 +08:00
|
|
|
|
|
|
|
result = true
|
2015-09-23 14:55:22 +01:00
|
|
|
text_matches << [match, offset]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-09-11 17:41:51 +01:00
|
|
|
next unless ARGV.verbose? && !text_matches.empty?
|
2016-09-27 19:11:56 +02:00
|
|
|
print_filename.call(string, file)
|
2016-09-11 17:41:51 +01:00
|
|
|
text_matches.first(MAXIMUM_STRING_MATCHES).each do |match, offset|
|
2016-08-26 16:04:47 +02:00
|
|
|
puts " #{Tty.gray}-->#{Tty.reset} match '#{match}' at offset #{Tty.bold}0x#{offset}#{Tty.reset}"
|
2016-09-11 17:41:51 +01:00
|
|
|
end
|
2015-02-20 14:29:43 +00:00
|
|
|
|
2016-09-11 17:41:51 +01:00
|
|
|
if text_matches.size > MAXIMUM_STRING_MATCHES
|
|
|
|
puts "Only the first #{MAXIMUM_STRING_MATCHES} matches were output"
|
2013-10-31 01:20:28 -07:00
|
|
|
end
|
|
|
|
end
|
2013-12-17 20:46:42 -06:00
|
|
|
|
2016-07-27 16:19:40 -07:00
|
|
|
keg_contain_absolute_symlink_starting_with?(string, keg) || result
|
2016-07-26 21:50:00 -07:00
|
|
|
end
|
|
|
|
|
2016-07-27 16:19:40 -07:00
|
|
|
def keg_contain_absolute_symlink_starting_with?(string, keg)
|
2015-09-11 16:49:39 +08:00
|
|
|
absolute_symlinks_start_with_string = []
|
2014-03-27 17:05:17 -05:00
|
|
|
keg.find do |pn|
|
2016-09-11 17:41:51 +01:00
|
|
|
next unless pn.symlink? && (link = pn.readlink).absolute?
|
2016-09-23 11:01:40 +02:00
|
|
|
absolute_symlinks_start_with_string << pn if link.to_s.start_with?(string)
|
2014-03-18 19:03:24 -05:00
|
|
|
end
|
|
|
|
|
2015-09-11 16:49:39 +08:00
|
|
|
if ARGV.verbose?
|
2016-07-26 21:50:00 -07:00
|
|
|
unless absolute_symlinks_start_with_string.empty?
|
2015-09-11 16:49:39 +08:00
|
|
|
opoo "Absolute symlink starting with #{string}:"
|
|
|
|
absolute_symlinks_start_with_string.each do |pn|
|
|
|
|
puts " #{pn} -> #{pn.resolved_path}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-07-27 08:54:56 -07:00
|
|
|
!absolute_symlinks_start_with_string.empty?
|
2013-03-11 18:56:26 +00:00
|
|
|
end
|
|
|
|
|
2015-08-03 13:09:07 +01:00
|
|
|
def bottle_output(bottle)
|
2013-09-21 21:21:42 +01:00
|
|
|
erb = ERB.new BOTTLE_ERB
|
2015-08-03 13:09:07 +01:00
|
|
|
erb.result(bottle.instance_eval { binding }).gsub(/^\s*$\n/, "")
|
2013-06-04 20:39:09 +01:00
|
|
|
end
|
|
|
|
|
2015-08-03 13:09:07 +01:00
|
|
|
def bottle_formula(f)
|
2012-03-15 10:57:34 +13:00
|
|
|
unless f.installed?
|
2015-05-27 20:44:51 +08:00
|
|
|
return ofail "Formula not installed or up-to-date: #{f.full_name}"
|
2012-03-15 10:57:34 +13:00
|
|
|
end
|
|
|
|
|
2016-09-13 08:57:55 +01:00
|
|
|
tap = f.tap
|
|
|
|
|
|
|
|
unless tap
|
2016-09-22 20:12:28 +02:00
|
|
|
unless ARGV.include?("--force-core-tap")
|
2016-09-13 08:57:55 +01:00
|
|
|
return ofail "Formula not from core or any taps: #{f.full_name}"
|
|
|
|
end
|
2016-09-22 20:12:28 +02:00
|
|
|
|
|
|
|
tap = CoreTap.instance
|
2015-12-26 13:15:29 +08:00
|
|
|
end
|
|
|
|
|
2015-09-14 20:06:27 +08:00
|
|
|
if f.bottle_disabled?
|
|
|
|
ofail "Formula has disabled bottle: #{f.full_name}"
|
|
|
|
puts f.bottle_disable_reason
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2016-09-11 17:41:51 +01:00
|
|
|
unless Utils::Bottles.built_as? f
|
2015-05-27 20:44:51 +08:00
|
|
|
return ofail "Formula not installed with '--build-bottle': #{f.full_name}"
|
2012-03-15 10:57:34 +13:00
|
|
|
end
|
2012-03-07 17:29:05 -05:00
|
|
|
|
2016-09-23 11:01:40 +02:00
|
|
|
return ofail "Formula has no stable version: #{f.full_name}" unless f.stable
|
2014-02-15 11:28:48 +00:00
|
|
|
|
2016-09-13 08:57:55 +01:00
|
|
|
if ARGV.include?("--no-rebuild") || !f.tap
|
2016-08-18 17:32:35 +01:00
|
|
|
rebuild = 0
|
2015-09-10 19:47:22 +08:00
|
|
|
elsif ARGV.include? "--keep-old"
|
2016-08-18 17:32:35 +01:00
|
|
|
rebuild = f.bottle_specification.rebuild
|
2015-05-28 23:57:02 -04:00
|
|
|
else
|
2016-08-18 17:32:35 +01:00
|
|
|
ohai "Determining #{f.full_name} bottle rebuild..."
|
2014-05-28 16:23:33 -05:00
|
|
|
versions = FormulaVersions.new(f)
|
2016-08-18 17:32:35 +01:00
|
|
|
rebuilds = versions.bottle_version_map("origin/master")[f.pkg_version]
|
|
|
|
rebuilds.pop if rebuilds.last.to_i > 0
|
|
|
|
rebuild = rebuilds.empty? ? 0 : rebuilds.max.to_i + 1
|
2013-12-10 15:16:22 -06:00
|
|
|
end
|
|
|
|
|
2016-08-18 17:32:35 +01:00
|
|
|
filename = Bottle::Filename.create(f, Utils::Bottles.tag, rebuild)
|
2013-02-09 19:06:54 -08:00
|
|
|
bottle_path = Pathname.pwd/filename
|
2012-03-07 17:29:05 -05:00
|
|
|
|
2015-12-15 14:21:27 +00:00
|
|
|
tar_filename = filename.to_s.sub(/.gz$/, "")
|
|
|
|
tar_path = Pathname.pwd/tar_filename
|
|
|
|
|
2013-03-11 18:56:26 +00:00
|
|
|
prefix = HOMEBREW_PREFIX.to_s
|
2016-09-18 16:31:58 +01:00
|
|
|
repository = HOMEBREW_REPOSITORY.to_s
|
2013-03-11 18:56:26 +00:00
|
|
|
cellar = HOMEBREW_CELLAR.to_s
|
|
|
|
|
2013-12-12 19:46:37 -06:00
|
|
|
ohai "Bottling #{filename}..."
|
2013-09-21 21:21:42 +01:00
|
|
|
|
2013-12-12 19:46:37 -06:00
|
|
|
keg = Keg.new(f.prefix)
|
|
|
|
relocatable = false
|
2015-09-11 19:13:52 +08:00
|
|
|
skip_relocation = false
|
2013-12-04 22:37:57 -06:00
|
|
|
|
2013-12-12 19:46:37 -06:00
|
|
|
keg.lock do
|
2015-12-15 14:21:27 +00:00
|
|
|
original_tab = nil
|
|
|
|
|
2013-12-12 19:46:37 -06:00
|
|
|
begin
|
2016-06-28 15:33:22 +08:00
|
|
|
unless ARGV.include? "--skip-relocation"
|
2016-07-09 13:52:05 +01:00
|
|
|
keg.relocate_dynamic_linkage prefix, Keg::PREFIX_PLACEHOLDER,
|
2016-06-28 15:33:22 +08:00
|
|
|
cellar, Keg::CELLAR_PLACEHOLDER
|
2016-07-09 16:50:35 +02:00
|
|
|
keg.relocate_text_files prefix, Keg::PREFIX_PLACEHOLDER,
|
2016-09-18 16:31:58 +01:00
|
|
|
cellar, Keg::CELLAR_PLACEHOLDER,
|
|
|
|
repository, Keg::REPOSITORY_PLACEHOLDER
|
2016-06-28 15:33:22 +08:00
|
|
|
end
|
2015-09-11 19:13:52 +08:00
|
|
|
|
2014-03-13 09:06:22 +00:00
|
|
|
keg.delete_pyc_files!
|
2013-12-04 22:37:57 -06:00
|
|
|
|
2016-01-26 15:52:45 +08:00
|
|
|
Tab.clear_cache
|
2015-12-15 14:21:27 +00:00
|
|
|
tab = Tab.for_keg(keg)
|
|
|
|
original_tab = tab.dup
|
2015-12-16 02:12:50 +01:00
|
|
|
tab.poured_from_bottle = false
|
|
|
|
tab.HEAD = nil
|
|
|
|
tab.time = nil
|
2015-12-15 14:21:27 +00:00
|
|
|
tab.write
|
|
|
|
|
2016-02-10 19:29:40 +08:00
|
|
|
keg.find do |file|
|
|
|
|
if file.symlink?
|
|
|
|
# Ruby does not support `File.lutime` yet.
|
|
|
|
# Shellout using `touch` to change modified time of symlink itself.
|
|
|
|
system "/usr/bin/touch", "-h",
|
|
|
|
"-t", tab.source_modified_time.strftime("%Y%m%d%H%M.%S"), file
|
|
|
|
else
|
|
|
|
file.utime(tab.source_modified_time, tab.source_modified_time)
|
|
|
|
end
|
|
|
|
end
|
2015-12-15 14:21:27 +00:00
|
|
|
|
2014-07-17 14:46:05 -05:00
|
|
|
cd cellar do
|
2015-12-15 14:21:27 +00:00
|
|
|
safe_system "tar", "cf", tar_path, "#{f.name}/#{f.pkg_version}"
|
2016-02-10 19:29:40 +08:00
|
|
|
tar_path.utime(tab.source_modified_time, tab.source_modified_time)
|
2015-12-15 14:21:27 +00:00
|
|
|
relocatable_tar_path = "#{f}-bottle.tar"
|
|
|
|
mv tar_path, relocatable_tar_path
|
2013-12-04 22:37:57 -06:00
|
|
|
# Use gzip, faster to compress than bzip2, faster to uncompress than bzip2
|
|
|
|
# or an uncompressed tarball (and more bandwidth friendly).
|
2015-12-15 14:21:27 +00:00
|
|
|
safe_system "gzip", "-f", relocatable_tar_path
|
|
|
|
mv "#{relocatable_tar_path}.gz", bottle_path
|
2013-12-12 19:46:37 -06:00
|
|
|
end
|
|
|
|
|
2014-07-17 14:56:38 -05:00
|
|
|
if bottle_path.size > 1*1024*1024
|
2013-12-12 19:46:37 -06:00
|
|
|
ohai "Detecting if #{filename} is relocatable..."
|
|
|
|
end
|
2013-12-04 22:37:57 -06:00
|
|
|
|
2015-08-03 13:09:07 +01:00
|
|
|
if prefix == "/usr/local"
|
2014-07-17 14:46:05 -05:00
|
|
|
prefix_check = File.join(prefix, "opt")
|
2013-12-12 19:46:37 -06:00
|
|
|
else
|
2014-07-17 14:46:05 -05:00
|
|
|
prefix_check = prefix
|
2013-12-12 19:46:37 -06:00
|
|
|
end
|
|
|
|
|
2015-02-20 14:29:43 +00:00
|
|
|
ignores = []
|
|
|
|
if f.deps.any? { |dep| dep.name == "go" }
|
2016-07-13 15:58:04 +08:00
|
|
|
ignores << %r{#{Regexp.escape(HOMEBREW_CELLAR)}/go/[\d\.]+/libexec}
|
2015-02-20 14:29:43 +00:00
|
|
|
end
|
|
|
|
|
2016-07-27 08:54:56 -07:00
|
|
|
relocatable = true
|
2016-06-28 15:33:22 +08:00
|
|
|
if ARGV.include? "--skip-relocation"
|
|
|
|
skip_relocation = true
|
|
|
|
else
|
2016-07-27 16:19:40 -07:00
|
|
|
relocatable = false if keg_contain?(prefix_check, keg, ignores)
|
2016-09-18 16:31:58 +01:00
|
|
|
relocatable = false if keg_contain?(repository, keg, ignores)
|
2016-07-27 16:19:40 -07:00
|
|
|
relocatable = false if keg_contain?(cellar, keg, ignores)
|
2016-07-27 08:54:56 -07:00
|
|
|
if prefix != prefix_check
|
2016-07-27 16:19:40 -07:00
|
|
|
relocatable = false if keg_contain_absolute_symlink_starting_with?(prefix, keg)
|
2016-07-27 08:54:56 -07:00
|
|
|
end
|
2016-09-22 14:36:24 -04:00
|
|
|
skip_relocation = relocatable && !keg.require_relocation?
|
2016-06-28 15:33:22 +08:00
|
|
|
end
|
2014-01-20 15:26:18 -08:00
|
|
|
puts if !relocatable && ARGV.verbose?
|
2013-12-12 19:46:37 -06:00
|
|
|
rescue Interrupt
|
|
|
|
ignore_interrupts { bottle_path.unlink if bottle_path.exist? }
|
|
|
|
raise
|
|
|
|
ensure
|
|
|
|
ignore_interrupts do
|
2016-06-24 06:40:52 +02:00
|
|
|
original_tab.write if original_tab
|
2016-06-28 15:33:22 +08:00
|
|
|
unless ARGV.include? "--skip-relocation"
|
2016-07-09 13:52:05 +01:00
|
|
|
keg.relocate_dynamic_linkage Keg::PREFIX_PLACEHOLDER, prefix,
|
2016-06-28 15:33:22 +08:00
|
|
|
Keg::CELLAR_PLACEHOLDER, cellar
|
|
|
|
keg.relocate_text_files Keg::PREFIX_PLACEHOLDER, prefix,
|
2016-09-18 16:31:58 +01:00
|
|
|
Keg::CELLAR_PLACEHOLDER, cellar,
|
|
|
|
Keg::REPOSITORY_PLACEHOLDER, repository
|
2016-06-28 15:33:22 +08:00
|
|
|
end
|
2013-12-04 22:37:57 -06:00
|
|
|
end
|
|
|
|
end
|
2013-12-12 19:46:37 -06:00
|
|
|
end
|
2013-12-04 22:37:57 -06:00
|
|
|
|
2014-11-24 08:25:05 +00:00
|
|
|
root_url = ARGV.value("root-url")
|
|
|
|
# Use underscored version for legacy reasons. Remove at some point.
|
|
|
|
root_url ||= ARGV.value("root_url")
|
2014-05-09 17:38:12 +09:00
|
|
|
|
2014-03-10 14:56:02 -05:00
|
|
|
bottle = BottleSpecification.new
|
2016-09-13 08:57:55 +01:00
|
|
|
bottle.tap = tap
|
2014-05-09 17:38:12 +09:00
|
|
|
bottle.root_url(root_url) if root_url
|
2015-09-11 19:13:52 +08:00
|
|
|
if relocatable
|
|
|
|
if skip_relocation
|
|
|
|
bottle.cellar :any_skip_relocation
|
|
|
|
else
|
|
|
|
bottle.cellar :any
|
|
|
|
end
|
|
|
|
else
|
|
|
|
bottle.cellar cellar
|
2015-09-11 19:15:22 +08:00
|
|
|
bottle.prefix prefix
|
2015-09-11 19:13:52 +08:00
|
|
|
end
|
2016-08-18 17:32:35 +01:00
|
|
|
bottle.rebuild rebuild
|
2016-05-28 15:54:05 +01:00
|
|
|
sha256 = bottle_path.sha256
|
2016-09-04 13:22:08 +01:00
|
|
|
bottle.sha256 sha256 => Utils::Bottles.tag
|
2013-03-11 18:56:26 +00:00
|
|
|
|
2016-09-04 13:22:08 +01:00
|
|
|
old_spec = f.bottle_specification
|
|
|
|
if ARGV.include?("--keep-old") && !old_spec.checksums.empty?
|
2016-09-10 19:43:49 +01:00
|
|
|
mismatches = [:root_url, :prefix, :cellar, :rebuild].select do |key|
|
|
|
|
old_spec.send(key) != bottle.send(key)
|
2015-09-10 19:47:22 +08:00
|
|
|
end
|
2016-09-10 16:11:01 +01:00
|
|
|
mismatches.delete(:cellar) if old_spec.cellar == :any && bottle.cellar == :any_skip_relocation
|
|
|
|
unless mismatches.empty?
|
2015-09-10 19:47:22 +08:00
|
|
|
bottle_path.unlink if bottle_path.exist?
|
2016-09-10 10:13:33 +01:00
|
|
|
|
2016-09-10 19:43:49 +01:00
|
|
|
mismatches.map! do |key|
|
|
|
|
old_value = old_spec.send(key).inspect
|
|
|
|
value = bottle.send(key).inspect
|
|
|
|
"#{key}: old: #{old_value}, new: #{value}"
|
2016-09-10 10:13:33 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
odie <<-EOS.undent
|
|
|
|
--keep-old was passed but there are changes in:
|
2016-09-10 16:11:01 +01:00
|
|
|
#{mismatches.join("\n")}
|
2016-09-10 10:13:33 +01:00
|
|
|
EOS
|
2015-09-10 19:47:22 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-12-12 19:46:37 -06:00
|
|
|
output = bottle_output bottle
|
2013-03-11 18:56:26 +00:00
|
|
|
|
2013-12-12 19:46:37 -06:00
|
|
|
puts "./#{filename}"
|
|
|
|
puts output
|
2013-09-21 21:24:50 +01:00
|
|
|
|
2016-09-22 20:12:28 +02:00
|
|
|
return unless ARGV.include? "--json"
|
|
|
|
json = {
|
|
|
|
f.full_name => {
|
|
|
|
"formula" => {
|
|
|
|
"pkg_version" => f.pkg_version.to_s,
|
|
|
|
"path" => f.path.to_s.strip_prefix("#{HOMEBREW_REPOSITORY}/"),
|
|
|
|
},
|
|
|
|
"bottle" => {
|
|
|
|
"root_url" => bottle.root_url,
|
|
|
|
"prefix" => bottle.prefix,
|
|
|
|
"cellar" => bottle.cellar.to_s,
|
|
|
|
"rebuild" => bottle.rebuild,
|
|
|
|
"tags" => {
|
|
|
|
Utils::Bottles.tag.to_s => {
|
|
|
|
"filename" => filename.to_s,
|
|
|
|
"sha256" => sha256,
|
2016-09-11 17:41:51 +01:00
|
|
|
},
|
2016-05-28 15:54:05 +01:00
|
|
|
},
|
|
|
|
},
|
2016-09-22 20:12:28 +02:00
|
|
|
"bintray" => {
|
|
|
|
"package" => Utils::Bottles::Bintray.package(f.name),
|
|
|
|
"repository" => Utils::Bottles::Bintray.repository(tap),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
File.open("#{filename.prefix}.bottle.json", "w") do |file|
|
|
|
|
file.write Utils::JSON.dump json
|
2013-09-21 21:24:50 +01:00
|
|
|
end
|
2012-03-07 17:29:05 -05:00
|
|
|
end
|
|
|
|
|
2013-09-21 15:16:16 +01:00
|
|
|
def merge
|
2015-09-10 19:47:22 +08:00
|
|
|
write = ARGV.include? "--write"
|
2016-05-28 15:54:05 +01:00
|
|
|
|
|
|
|
bottles_hash = ARGV.named.reduce({}) do |hash, json_file|
|
2016-05-28 20:09:49 +01:00
|
|
|
deep_merge_hashes hash, Utils::JSON.load(IO.read(json_file))
|
2013-09-21 15:16:16 +01:00
|
|
|
end
|
2014-03-10 14:56:02 -05:00
|
|
|
|
2016-05-28 15:54:05 +01:00
|
|
|
bottles_hash.each do |formula_name, bottle_hash|
|
2013-09-21 15:16:16 +01:00
|
|
|
ohai formula_name
|
2014-03-10 14:56:02 -05:00
|
|
|
|
2016-05-28 15:54:05 +01:00
|
|
|
bottle = BottleSpecification.new
|
|
|
|
bottle.root_url bottle_hash["bottle"]["root_url"]
|
|
|
|
cellar = bottle_hash["bottle"]["cellar"]
|
|
|
|
if cellar == "any" || cellar == "any_skip_relocation"
|
|
|
|
cellar = cellar.to_sym
|
2015-09-14 20:06:27 +08:00
|
|
|
end
|
2016-05-28 15:54:05 +01:00
|
|
|
bottle.cellar cellar
|
|
|
|
bottle.prefix bottle_hash["bottle"]["prefix"]
|
2016-08-18 17:32:35 +01:00
|
|
|
bottle.rebuild bottle_hash["bottle"]["rebuild"]
|
2016-05-28 15:54:05 +01:00
|
|
|
bottle_hash["bottle"]["tags"].each do |tag, tag_hash|
|
|
|
|
bottle.sha256 tag_hash["sha256"] => tag.to_sym
|
2015-09-10 19:47:22 +08:00
|
|
|
end
|
|
|
|
|
2013-09-21 21:30:57 +01:00
|
|
|
output = bottle_output bottle
|
|
|
|
|
2015-09-10 19:47:22 +08:00
|
|
|
if write
|
2016-09-11 17:41:51 +01:00
|
|
|
path = Pathname.new((HOMEBREW_REPOSITORY/bottle_hash["formula"]["path"]).to_s)
|
2014-01-31 19:07:49 +01:00
|
|
|
update_or_add = nil
|
2013-12-27 16:43:34 -06:00
|
|
|
|
2016-05-28 15:54:05 +01:00
|
|
|
Utils::Inreplace.inreplace(path) do |s|
|
2015-08-03 13:09:07 +01:00
|
|
|
if s.include? "bottle do"
|
|
|
|
update_or_add = "update"
|
2016-05-28 15:54:05 +01:00
|
|
|
if ARGV.include? "--keep-old"
|
|
|
|
mismatches = []
|
2016-05-28 16:46:34 +01:00
|
|
|
bottle_block_contents = s[/ bottle do(.+?)end\n/m, 1]
|
2016-05-28 15:54:05 +01:00
|
|
|
bottle_block_contents.lines.each do |line|
|
|
|
|
line = line.strip
|
|
|
|
next if line.empty?
|
2016-09-10 21:15:28 +01:00
|
|
|
key, old_value_original, _, tag = line.split " ", 4
|
2016-08-18 17:32:35 +01:00
|
|
|
valid_key = %w[root_url prefix cellar rebuild sha1 sha256].include? key
|
2016-05-28 16:46:34 +01:00
|
|
|
next unless valid_key
|
|
|
|
|
2016-09-10 21:15:28 +01:00
|
|
|
old_value = old_value_original.to_s.delete ":'\""
|
2016-05-28 15:54:05 +01:00
|
|
|
tag = tag.to_s.delete ":"
|
|
|
|
|
2016-09-11 17:41:51 +01:00
|
|
|
unless tag.empty?
|
2016-05-28 15:54:05 +01:00
|
|
|
if !bottle_hash["bottle"]["tags"][tag].to_s.empty?
|
2016-09-04 13:22:06 +01:00
|
|
|
mismatches << "#{key} => #{tag}"
|
|
|
|
else
|
2016-09-10 21:15:28 +01:00
|
|
|
bottle.send(key, old_value => tag.to_sym)
|
2016-05-28 15:54:05 +01:00
|
|
|
end
|
|
|
|
next
|
|
|
|
end
|
|
|
|
|
2016-09-10 21:15:28 +01:00
|
|
|
value_original = bottle_hash["bottle"][key]
|
|
|
|
value = value_original.to_s
|
2016-05-28 15:54:05 +01:00
|
|
|
next if key == "cellar" && old_value == "any" && value == "any_skip_relocation"
|
2016-09-11 17:41:51 +01:00
|
|
|
next unless old_value.empty? || value != old_value
|
|
|
|
old_value = old_value_original.inspect
|
|
|
|
value = value_original.inspect
|
|
|
|
mismatches << "#{key}: old: #{old_value}, new: #{value}"
|
2016-05-28 15:54:05 +01:00
|
|
|
end
|
2016-09-10 16:11:01 +01:00
|
|
|
|
2016-08-05 22:01:32 +08:00
|
|
|
unless mismatches.empty?
|
2016-09-10 16:11:01 +01:00
|
|
|
odie <<-EOS.undent
|
|
|
|
--keep-old was passed but there are changes in:
|
|
|
|
#{mismatches.join("\n")}
|
|
|
|
EOS
|
2016-05-28 15:54:05 +01:00
|
|
|
odie "--keep-old was passed but there were changes in #{mismatches.join(", ")}!"
|
|
|
|
end
|
|
|
|
output = bottle_output bottle
|
|
|
|
end
|
|
|
|
puts output
|
2014-01-31 19:07:49 +01:00
|
|
|
string = s.sub!(/ bottle do.+?end\n/m, output)
|
2015-08-03 13:09:07 +01:00
|
|
|
odie "Bottle block update failed!" unless string
|
2013-09-21 21:30:57 +01:00
|
|
|
else
|
2016-05-28 16:46:34 +01:00
|
|
|
if ARGV.include? "--keep-old"
|
|
|
|
odie "--keep-old was passed but there was no existing bottle block!"
|
|
|
|
end
|
2016-05-28 15:54:05 +01:00
|
|
|
puts output
|
2015-08-03 13:09:07 +01:00
|
|
|
update_or_add = "add"
|
|
|
|
if s.include? "stable do"
|
2016-09-21 08:49:04 +02:00
|
|
|
indent = s.slice(/^( +)stable do/, 1).length
|
2015-02-21 18:57:29 +08:00
|
|
|
string = s.sub!(/^ {#{indent}}stable do(.|\n)+?^ {#{indent}}end\n/m, '\0' + output + "\n")
|
|
|
|
else
|
2015-06-07 16:44:03 +08:00
|
|
|
string = s.sub!(
|
|
|
|
/(
|
2016-01-11 00:26:48 +07:00
|
|
|
\ {2}( # two spaces at the beginning
|
|
|
|
(url|head)\ ['"][\S\ ]+['"] # url or head with a string
|
2015-06-07 16:44:03 +08:00
|
|
|
(
|
2016-01-11 00:26:48 +07:00
|
|
|
,[\S\ ]*$ # url may have options
|
|
|
|
(\n^\ {3}[\S\ ]+$)* # options can be in multiple lines
|
2015-06-07 16:44:03 +08:00
|
|
|
)?|
|
2016-01-11 00:26:48 +07:00
|
|
|
(homepage|desc|sha1|sha256|version|mirror)\ ['"][\S\ ]+['"]| # specs with a string
|
2016-08-18 17:32:35 +01:00
|
|
|
rebuild\ \d+ # rebuild with a number
|
2016-01-11 00:26:48 +07:00
|
|
|
)\n+ # multiple empty lines
|
2015-06-07 16:44:03 +08:00
|
|
|
)+
|
2016-09-11 17:41:51 +01:00
|
|
|
/mx, '\0' + output + "\n"
|
|
|
|
)
|
2015-02-21 18:57:29 +08:00
|
|
|
end
|
2015-08-03 13:09:07 +01:00
|
|
|
odie "Bottle block addition failed!" unless string
|
2013-09-21 21:30:57 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-10-15 15:12:02 +08:00
|
|
|
unless ARGV.include? "--no-commit"
|
2016-06-02 17:42:44 +02:00
|
|
|
short_name = formula_name.split("/", -1).last
|
2016-05-28 15:54:05 +01:00
|
|
|
pkg_version = bottle_hash["formula"]["pkg_version"]
|
|
|
|
|
|
|
|
path.parent.cd do
|
2015-10-15 15:12:02 +08:00
|
|
|
safe_system "git", "commit", "--no-edit", "--verbose",
|
2016-06-02 17:42:44 +02:00
|
|
|
"--message=#{short_name}: #{update_or_add} #{pkg_version} bottle.",
|
2016-05-28 15:54:05 +01:00
|
|
|
"--", path
|
2015-10-15 15:12:02 +08:00
|
|
|
end
|
2014-06-18 19:31:18 -05:00
|
|
|
end
|
2016-05-28 15:54:05 +01:00
|
|
|
else
|
|
|
|
puts output
|
2013-09-21 21:30:57 +01:00
|
|
|
end
|
2013-06-08 16:48:43 +01:00
|
|
|
end
|
2013-09-21 15:16:16 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def bottle
|
2015-09-10 17:03:51 +08:00
|
|
|
if ARGV.include? "--merge"
|
|
|
|
merge
|
|
|
|
else
|
|
|
|
ARGV.resolved_formulae.each do |f|
|
|
|
|
bottle_formula f
|
|
|
|
end
|
2012-03-07 17:29:05 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|