aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/software_spec.rb
diff options
context:
space:
mode:
authorJack Nagel2014-08-19 17:14:02 -0500
committerJack Nagel2014-08-19 17:14:02 -0500
commit19c0692d08d15cb6a259ef5c3942eff0c8675e2c (patch)
tree584c21e6f05362bc5d7bbc73e9e6820a9569b0eb /Library/Homebrew/software_spec.rb
parentbfa884c65d033c306ddef1421d2e234826f1108e (diff)
downloadhomebrew-19c0692d08d15cb6a259ef5c3942eff0c8675e2c.tar.bz2
Make fails_with available in spec blocks
Closes #31706.
Diffstat (limited to 'Library/Homebrew/software_spec.rb')
-rw-r--r--Library/Homebrew/software_spec.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Homebrew/software_spec.rb b/Library/Homebrew/software_spec.rb
index 9fda2cef9..113230247 100644
--- a/Library/Homebrew/software_spec.rb
+++ b/Library/Homebrew/software_spec.rb
@@ -7,6 +7,7 @@ require 'build_options'
require 'dependency_collector'
require 'bottles'
require 'patch'
+require 'compilers'
class SoftwareSpec
extend Forwardable
@@ -21,6 +22,7 @@ class SoftwareSpec
attr_reader :build, :resources, :patches, :options
attr_reader :dependency_collector
attr_reader :bottle_specification
+ attr_reader :compiler_failures
def_delegators :@resource, :stage, :fetch, :verify_download_integrity
def_delegators :@resource, :cached_download, :clear_cache
@@ -35,6 +37,7 @@ class SoftwareSpec
@patches = []
@options = Options.new
@build = BuildOptions.new(Options.create(ARGV.options_only), options)
+ @compiler_failures = []
end
def owner= owner
@@ -112,6 +115,20 @@ class SoftwareSpec
patches << Patch.create(strip, src, &block)
end
+ def fails_with? compiler
+ compiler_failures.any? { |failure| failure === compiler }
+ end
+
+ def fails_with compiler, &block
+ compiler_failures << CompilerFailure.create(compiler, &block)
+ end
+
+ def needs *standards
+ standards.each do |standard|
+ compiler_failures.concat CompilerFailure.for_standard(standard)
+ end
+ end
+
def add_legacy_patches(list)
list = Patch.normalize_legacy_patches(list)
list.each { |p| p.owner = self }