diff options
| author | Mike McQuaid | 2016-05-13 08:45:37 +0100 |
|---|---|---|
| committer | Mike McQuaid | 2016-05-13 08:45:37 +0100 |
| commit | aae447996cb4cf88fed0d9b60e9bdb7a4429de36 (patch) | |
| tree | 7d24fe0cd26c25afb387850294aa50fd2a08aad7 | |
| parent | 77836cfb3fb1e24668e79f096431f671b56ec6da (diff) | |
| download | brew-aae447996cb4cf88fed0d9b60e9bdb7a4429de36.tar.bz2 | |
formula: deprecate startup_plist.
Closes #228.
| -rw-r--r-- | Library/Homebrew/compat/formula.rb | 6 | ||||
| -rw-r--r-- | Library/Homebrew/formula.rb | 1 |
2 files changed, 5 insertions, 2 deletions
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 diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb index 3e6006b3b..93663e58d 100644 --- a/Library/Homebrew/formula.rb +++ b/Library/Homebrew/formula.rb @@ -725,7 +725,6 @@ class Formula def plist nil end - alias_method :startup_plist, :plist # The generated launchd {.plist} service name. def plist_name |
