2018-08-25 10:58:13 -04:00
|
|
|
require "cli_parser"
|
2018-07-29 20:51:57 -04:00
|
|
|
require "utils/git"
|
|
|
|
require "formulary"
|
|
|
|
require "tap"
|
|
|
|
|
2018-08-25 14:52:30 -04:00
|
|
|
def with_monkey_patch
|
|
|
|
BottleSpecification.class_eval do
|
|
|
|
if method_defined?(:method_missing)
|
|
|
|
alias_method :old_method_missing, :method_missing
|
|
|
|
end
|
|
|
|
define_method(:method_missing) { |*| }
|
|
|
|
end
|
2018-08-24 11:38:14 -04:00
|
|
|
|
2018-08-25 14:52:30 -04:00
|
|
|
Module.class_eval do
|
|
|
|
if method_defined?(:method_missing)
|
|
|
|
alias_method :old_method_missing, :method_missing
|
|
|
|
end
|
|
|
|
define_method(:method_missing) { |*| }
|
2018-08-24 11:38:14 -04:00
|
|
|
end
|
2018-08-02 00:21:09 -04:00
|
|
|
|
2018-08-25 14:52:30 -04:00
|
|
|
Resource.class_eval do
|
|
|
|
if method_defined?(:method_missing)
|
|
|
|
alias_method :old_method_missing, :method_missing
|
|
|
|
end
|
|
|
|
define_method(:method_missing) { |*| }
|
|
|
|
end
|
2018-08-24 11:38:14 -04:00
|
|
|
|
2018-08-25 19:52:22 -04:00
|
|
|
DependencyCollector.class_eval do
|
|
|
|
if method_defined?(:parse_symbol_spec)
|
|
|
|
alias_method :old_parse_symbol_spec, :parse_symbol_spec
|
|
|
|
end
|
|
|
|
define_method(:parse_symbol_spec) { |*| }
|
|
|
|
end
|
|
|
|
|
2018-08-26 02:22:09 -04:00
|
|
|
if defined?(DependencyCollector::Compat)
|
|
|
|
DependencyCollector::Compat.class_eval do
|
|
|
|
if method_defined?(:parse_string_spec)
|
|
|
|
alias_method :old_parse_string_spec, :parse_string_spec
|
|
|
|
end
|
|
|
|
define_method(:parse_string_spec) { |*| }
|
2018-08-25 19:52:22 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-08-25 14:52:30 -04:00
|
|
|
yield
|
|
|
|
ensure
|
|
|
|
BottleSpecification.class_eval do
|
|
|
|
if method_defined?(:old_method_missing)
|
|
|
|
alias_method :method_missing, :old_method_missing
|
|
|
|
undef :old_method_missing
|
|
|
|
end
|
2018-08-24 11:38:14 -04:00
|
|
|
end
|
2018-08-02 00:21:09 -04:00
|
|
|
|
2018-08-25 14:52:30 -04:00
|
|
|
Module.class_eval do
|
|
|
|
if method_defined?(:old_method_missing)
|
|
|
|
alias_method :method_missing, :old_method_missing
|
|
|
|
undef :old_method_missing
|
|
|
|
end
|
|
|
|
end
|
2018-08-25 13:33:25 -04:00
|
|
|
|
2018-08-25 14:52:30 -04:00
|
|
|
Resource.class_eval do
|
|
|
|
if method_defined?(:old_method_missing)
|
|
|
|
alias_method :method_missing, :old_method_missing
|
|
|
|
undef :old_method_missing
|
|
|
|
end
|
2018-08-25 13:33:25 -04:00
|
|
|
end
|
2018-08-02 00:21:09 -04:00
|
|
|
|
2018-08-25 19:52:22 -04:00
|
|
|
DependencyCollector.class_eval do
|
|
|
|
if method_defined?(:old_parse_symbol_spec)
|
|
|
|
alias_method :parse_symbol_spec, :old_parse_symbol_spec
|
|
|
|
undef :old_parse_symbol_spec
|
2018-08-02 00:21:09 -04:00
|
|
|
end
|
|
|
|
end
|
2018-08-16 12:52:54 -04:00
|
|
|
|
2018-08-26 02:22:09 -04:00
|
|
|
if defined?(DependencyCollector::Compat)
|
|
|
|
DependencyCollector::Compat.class_eval do
|
|
|
|
if method_defined?(:old_parse_string_spec)
|
|
|
|
alias_method :parse_string_spec, :old_parse_string_spec
|
|
|
|
undef :old_parse_string_spec
|
|
|
|
end
|
2018-08-25 19:52:22 -04:00
|
|
|
end
|
|
|
|
end
|
2018-08-02 00:21:09 -04:00
|
|
|
end
|
|
|
|
|
2018-07-29 20:51:57 -04:00
|
|
|
module Homebrew
|
|
|
|
module_function
|
|
|
|
|
2018-10-03 20:16:05 +05:30
|
|
|
def extract_args
|
|
|
|
Homebrew::CLI::Parser.new do
|
|
|
|
usage_banner <<~EOS
|
2018-10-15 15:06:33 -04:00
|
|
|
`extract` [<options>] <formula> <tap>
|
2018-10-03 20:16:05 +05:30
|
|
|
|
2018-10-08 22:49:03 -04:00
|
|
|
Look through repository history to find the most recent version of <formula> and
|
|
|
|
create a copy in <tap>`/Formula/`<formula>`@`<version>`.rb`. If the tap is not
|
|
|
|
installed yet, attempt to install/clone the tap before continuing.
|
2018-10-03 20:16:05 +05:30
|
|
|
EOS
|
|
|
|
|
|
|
|
flag "--version=",
|
2018-10-08 22:49:03 -04:00
|
|
|
description: "Extract the provided <version> of <formula> instead of the most recent."
|
2018-07-30 18:41:45 -04:00
|
|
|
switch :force
|
2018-10-08 22:49:03 -04:00
|
|
|
switch :debug
|
2018-07-29 21:02:36 -04:00
|
|
|
end
|
2018-10-03 20:16:05 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def extract
|
|
|
|
extract_args.parse
|
2018-07-29 20:51:57 -04:00
|
|
|
|
2018-08-10 14:59:09 -04:00
|
|
|
# Expect exactly two named arguments: formula and tap
|
|
|
|
raise UsageError if ARGV.named.length != 2
|
2018-07-29 20:51:57 -04:00
|
|
|
|
2018-09-17 19:44:12 +02:00
|
|
|
destination_tap = Tap.fetch(ARGV.named.second)
|
2018-08-10 14:59:09 -04:00
|
|
|
odie "Cannot extract formula to homebrew/core!" if destination_tap.core_tap?
|
2018-07-30 18:41:45 -04:00
|
|
|
destination_tap.install unless destination_tap.installed?
|
|
|
|
|
2018-08-10 14:59:09 -04:00
|
|
|
name = ARGV.named.first.downcase
|
2018-08-20 09:20:45 -04:00
|
|
|
repo = CoreTap.instance.path
|
|
|
|
# Formulae can technically live in "<repo>/<formula>.rb" or
|
|
|
|
# "<repo>/Formula/<formula>.rb", but explicitly use the latter for now
|
2018-10-08 22:49:03 -04:00
|
|
|
# since that is how the core tap is structured.
|
2018-08-20 09:20:45 -04:00
|
|
|
file = repo/"Formula/#{name}.rb"
|
2018-07-29 20:51:57 -04:00
|
|
|
|
2018-08-10 14:59:09 -04:00
|
|
|
if args.version
|
2018-08-25 13:40:57 -04:00
|
|
|
ohai "Searching repository history"
|
2018-08-02 00:21:09 -04:00
|
|
|
version = args.version
|
|
|
|
rev = "HEAD"
|
|
|
|
test_formula = nil
|
|
|
|
loop do
|
|
|
|
loop do
|
|
|
|
rev = Git.last_revision_commit_of_file(repo, file, before_commit: "#{rev}~1")
|
|
|
|
break if rev.empty?
|
|
|
|
break unless Git.last_revision_of_file(repo, file, before_commit: rev).empty?
|
2018-09-17 02:45:00 +02:00
|
|
|
|
2018-08-02 00:21:09 -04:00
|
|
|
ohai "Skipping revision #{rev} - file is empty at this revision" if ARGV.debug?
|
|
|
|
end
|
|
|
|
test_formula = formula_at_revision(repo, name, file, rev)
|
|
|
|
break if test_formula.nil? || test_formula.version == version
|
2018-09-17 02:45:00 +02:00
|
|
|
|
2018-08-02 00:21:09 -04:00
|
|
|
ohai "Trying #{test_formula.version} from revision #{rev} against desired #{version}" if ARGV.debug?
|
|
|
|
end
|
|
|
|
odie "Could not find #{name}! The formula or version may not have existed." if test_formula.nil?
|
|
|
|
result = Git.last_revision_of_file(repo, file, before_commit: rev)
|
2018-08-24 11:38:14 -04:00
|
|
|
elsif File.exist?(file)
|
2018-08-25 13:35:08 -04:00
|
|
|
rev = "HEAD"
|
2018-08-24 11:38:14 -04:00
|
|
|
version = Formulary.factory(file).version
|
|
|
|
result = File.read(file)
|
2018-08-10 14:59:09 -04:00
|
|
|
else
|
2018-08-25 13:40:57 -04:00
|
|
|
ohai "Searching repository history"
|
2018-08-10 14:59:09 -04:00
|
|
|
rev = Git.last_revision_commit_of_file(repo, file)
|
|
|
|
version = formula_at_revision(repo, name, file, rev).version
|
|
|
|
odie "Could not find #{name}! The formula or version may not have existed." if rev.empty?
|
|
|
|
result = Git.last_revision_of_file(repo, file)
|
2018-08-02 00:21:09 -04:00
|
|
|
end
|
|
|
|
|
2018-08-20 09:20:45 -04:00
|
|
|
# The class name has to be renamed to match the new filename,
|
|
|
|
# e.g. Foo version 1.2.3 becomes FooAT123 and resides in Foo@1.2.3.rb.
|
2018-08-02 00:21:09 -04:00
|
|
|
class_name = name.capitalize
|
|
|
|
versioned_name = Formulary.class_s("#{class_name}@#{version}")
|
|
|
|
result.gsub!("class #{class_name} < Formula", "class #{versioned_name} < Formula")
|
|
|
|
|
2018-08-10 14:59:09 -04:00
|
|
|
path = destination_tap.path/"Formula/#{name}@#{version}.rb"
|
2018-07-30 18:41:45 -04:00
|
|
|
if path.exist?
|
|
|
|
unless ARGV.force?
|
|
|
|
odie <<~EOS
|
|
|
|
Destination formula already exists: #{path}
|
|
|
|
To overwrite it and continue anyways, run:
|
2018-10-08 22:49:03 -04:00
|
|
|
brew extract --force --version=#{version} #{name} #{destination_tap.name}
|
2018-07-30 18:41:45 -04:00
|
|
|
EOS
|
2018-07-29 20:51:57 -04:00
|
|
|
end
|
2018-07-30 18:41:45 -04:00
|
|
|
ohai "Overwriting existing formula at #{path}" if ARGV.debug?
|
|
|
|
path.delete
|
2018-07-29 20:51:57 -04:00
|
|
|
end
|
2018-08-25 13:35:08 -04:00
|
|
|
ohai "Writing formula for #{name} from revision #{rev} to #{path}"
|
2018-07-30 18:41:45 -04:00
|
|
|
path.write result
|
2018-07-29 20:51:57 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
# @private
|
2018-08-02 00:21:09 -04:00
|
|
|
def formula_at_revision(repo, name, file, rev)
|
2018-08-10 14:59:09 -04:00
|
|
|
return if rev.empty?
|
2018-09-17 02:45:00 +02:00
|
|
|
|
2018-08-02 00:21:09 -04:00
|
|
|
contents = Git.last_revision_of_file(repo, file, before_commit: rev)
|
2018-08-16 12:52:54 -04:00
|
|
|
contents.gsub!("@url=", "url ")
|
|
|
|
contents.gsub!("require 'brewkit'", "require 'formula'")
|
2018-08-25 14:52:30 -04:00
|
|
|
with_monkey_patch { Formulary.from_contents(name, file, contents) }
|
2018-07-29 20:51:57 -04:00
|
|
|
end
|
|
|
|
end
|