From aae447996cb4cf88fed0d9b60e9bdb7a4429de36 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Fri, 13 May 2016 08:45:37 +0100 Subject: formula: deprecate startup_plist. Closes #228.--- Library/Homebrew/compat/formula.rb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'Library/Homebrew/compat') diff --git a/Library/Homebrew/compat/formula.rb b/Library/Homebrew/compat/formula.rb index ee948572e..d75ff4ae5 100644 --- a/Library/Homebrew/compat/formula.rb +++ b/Library/Homebrew/compat/formula.rb @@ -55,10 +55,14 @@ class Formula end def python(_options = {}, &block) - opoo "Formula#python is deprecated and will go away shortly." + opoo "Formula#python is deprecated." block.call if block_given? PythonRequirement.new end alias_method :python2, :python alias_method :python3, :python + + def startup_plist + opoo "startup_plist is deprecated: use plist instead." + end end -- cgit v1.2.3