brew/Library/Homebrew/formula_versions.rb

74 lines
2.1 KiB
Ruby
Raw Normal View History

2014-06-19 17:57:36 -05:00
require "formula"
class FormulaVersions
IGNORED_EXCEPTIONS = [
ArgumentError, NameError, SyntaxError, TypeError,
FormulaSpecificationError, FormulaValidationError,
ErrorDuringExecution, LoadError, FormulaMethodDeprecatedError
]
attr_reader :name, :path, :repository, :entry_name
2016-01-16 23:18:04 +08:00
def initialize(formula, options = {})
2015-04-01 21:06:03 -04:00
@name = formula.name
@path = formula.path
@repository = formula.tap.path
@entry_name = @path.relative_path_from(repository).to_s
2016-01-16 23:18:04 +08:00
@max_depth = options[:max_depth]
end
2015-05-29 00:16:50 -04:00
def rev_list(branch)
repository.cd do
2016-01-16 23:18:04 +08:00
depth = 0
Utils.popen_read("git", "rev-list", "--abbrev-commit", "--remove-empty", branch, "--", entry_name) do |io|
2016-01-16 23:18:04 +08:00
yield io.readline.chomp until io.eof? || (@max_depth && (depth += 1) > @max_depth)
end
end
end
def file_contents_at_revision(rev)
repository.cd { Utils.popen_read("git", "cat-file", "blob", "#{rev}:#{entry_name}") }
end
2015-01-04 14:29:00 -05:00
def formula_at_revision(rev)
contents = file_contents_at_revision(rev)
begin
Homebrew.raise_deprecation_exceptions = true
nostdout { yield Formulary.from_contents(name, path, contents) }
rescue *IGNORED_EXCEPTIONS => e
# We rescue these so that we can skip bad versions and
# continue walking the history
ohai "#{e} in #{name} at revision #{rev}", e.backtrace if ARGV.debug?
rescue FormulaUnavailableError
# Suppress this error
ensure
Homebrew.raise_deprecation_exceptions = false
end
end
2015-05-29 00:20:05 -04:00
def bottle_version_map(branch)
map = Hash.new { |h, k| h[k] = [] }
rev_list(branch) do |rev|
formula_at_revision(rev) do |f|
bottle = f.bottle_specification
unless bottle.checksums.empty?
map[f.pkg_version] << bottle.revision
end
end
end
map
end
def revision_map(branch)
map = Hash.new { |h, k| h[k] = [] }
rev_list(branch) do |rev|
formula_at_revision(rev) do |f|
map[f.stable.version] << f.revision if f.stable
map[f.devel.version] << f.revision if f.devel
end
end
map
end
end