82 lines
1.9 KiB
Ruby
Raw Normal View History

2013-05-09 23:53:26 -05:00
module FormulaCompat
def x11_installed?
2016-07-16 22:15:32 +01:00
odeprecated "Formula#x11_installed?", "MacOS::X11.installed?"
2013-05-09 23:53:26 -05:00
MacOS::X11.installed?
end
def snow_leopard_64?
2016-07-16 22:15:32 +01:00
odeprecated "Formula#snow_leopard_64?", "MacOS.prefer_64_bit?"
2013-05-09 23:53:26 -05:00
MacOS.prefer_64_bit?
end
end
class Formula
include FormulaCompat
extend FormulaCompat
def std_cmake_parameters
2016-07-16 22:15:32 +01:00
odeprecated "Formula#std_cmake_parameters", "Formula#std_cmake_args"
2013-05-09 23:53:26 -05:00
"-DCMAKE_INSTALL_PREFIX='#{prefix}' -DCMAKE_BUILD_TYPE=None -DCMAKE_FIND_FRAMEWORK=LAST -Wno-dev"
end
def cxxstdlib_check(check_type)
2016-07-16 22:15:32 +01:00
odeprecated "Formula#cxxstdlib_check in install",
"Formula.cxxstdlib_check outside install"
self.class.cxxstdlib_check check_type
end
2013-05-09 23:53:26 -05:00
def self.bottle_sha1(*)
2016-07-16 22:15:32 +01:00
odeprecated "Formula.bottle_sha1"
2013-05-09 23:53:26 -05:00
end
def self.all
2016-07-16 22:15:32 +01:00
odeprecated "Formula.all", "Formula.map"
2013-05-09 23:53:26 -05:00
map
end
def self.canonical_name(name)
2016-07-16 22:15:32 +01:00
odeprecated "Formula.canonical_name", "Formulary.canonical_name"
Formulary.canonical_name(name)
end
def self.class_s(name)
2016-07-16 22:15:32 +01:00
odeprecated "Formula.class_s", "Formulary.class_s"
Formulary.class_s(name)
end
def self.factory(name)
2016-07-16 22:15:32 +01:00
odeprecated "Formula.factory", "Formulary.factory"
Formulary.factory(name)
end
def self.require_universal_deps
2016-07-16 22:15:32 +01:00
odeprecated "Formula.require_universal_deps"
define_method(:require_universal_deps?) { true }
end
def self.path(name)
2016-07-16 22:15:32 +01:00
odeprecated "Formula.path", "Formulary.core_path"
Formulary.core_path(name)
end
DATA = :DATA
def patches
2016-07-16 22:15:32 +01:00
# Don't print deprecation warning because this method is inherited
# when used.
{}
end
2016-07-16 22:15:32 +01:00
def python(_options = {}, &_block)
odeprecated "Formula#python"
yield if block_given?
PythonRequirement.new
end
2016-09-23 18:13:48 +02:00
alias python2 python
alias python3 python
def startup_plist
2016-07-16 22:15:32 +01:00
odeprecated "Formula#startup_plist", "Formula#plist"
end
2013-05-09 23:53:26 -05:00
end