Revert "Start recording the formula path in the install receipt"

This reverts commit f98d1d660c38afe3caf1450b2443a6d5fab8a14b.
This commit is contained in:
Jack Nagel 2015-02-18 21:08:24 -05:00
parent 3158c398af
commit 1ab384a313

View File

@ -11,23 +11,16 @@ class Tab < OpenStruct
FILENAME = 'INSTALL_RECEIPT.json' FILENAME = 'INSTALL_RECEIPT.json'
def self.create(formula, compiler, stdlib, build) def self.create(formula, compiler, stdlib, build)
attributes = { Tab.new :used_options => build.used_options.as_flags,
:used_options => build.used_options.as_flags, :unused_options => build.unused_options.as_flags,
:unused_options => build.unused_options.as_flags, :tabfile => formula.prefix.join(FILENAME),
:tabfile => formula.prefix.join(FILENAME), :built_as_bottle => !!ARGV.build_bottle?,
:built_as_bottle => !!ARGV.build_bottle?, :poured_from_bottle => false,
:poured_from_bottle => false, :tapped_from => formula.tap,
:tapped_from => formula.tap, :time => Time.now.to_i,
:time => Time.now.to_i, :HEAD => Homebrew.git_head,
:HEAD => Homebrew.git_head, :compiler => compiler,
:compiler => compiler, :stdlib => stdlib
:stdlib => stdlib,
:source => {
:path => formula.path,
},
}
new(attributes)
end end
def self.from_file path def self.from_file path
@ -155,11 +148,7 @@ class Tab < OpenStruct
:time => time, :time => time,
:HEAD => self.HEAD, :HEAD => self.HEAD,
:stdlib => (stdlib.to_s if stdlib), :stdlib => (stdlib.to_s if stdlib),
:compiler => (compiler.to_s if compiler), :compiler => (compiler.to_s if compiler)})
:source => {
:path => source[:path].to_s,
},
})
end end
def write def write