Skip to content

Commit

Permalink
Remove Tiger references.
Browse files Browse the repository at this point in the history
Homebrew/brew has never supported these and the symbols have been removed in Homebrew/brew#5477.
  • Loading branch information
MikeMcQuaid committed Jan 8, 2019
1 parent 7c37f90 commit 5e375d2
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Casks/appcleaner.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
homepage 'https://freemacsoft.net/appcleaner/'

auto_updates true
depends_on macos: '>= :tiger'
depends_on macos: '>= :leopard'

app 'AppCleaner.app'

Expand Down
2 changes: 1 addition & 1 deletion Casks/bitpim.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
name 'BitPim'
homepage 'http://www.bitpim.org/'

depends_on macos: '>= :tiger'
depends_on macos: '>= :leopard'

app 'BitPim.app'

Expand Down
2 changes: 1 addition & 1 deletion Casks/debt-quencher.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
name 'Debt Quencher'
homepage 'http://nothirst.com/debtquencher/'

depends_on macos: '>= :tiger'
depends_on macos: '>= :leopard'

app 'Debt Quencher.app'
end
2 changes: 1 addition & 1 deletion Casks/deltawalker.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
name 'DeltaWalker'
homepage 'https://www.deltawalker.com/'

depends_on macos: '>= :tiger'
depends_on macos: '>= :leopard'

app 'DeltaWalker.app'

Expand Down
2 changes: 1 addition & 1 deletion Casks/pacifist.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
homepage 'https://www.charlessoft.com/'

auto_updates true
depends_on macos: '>= :tiger'
depends_on macos: '>= :leopard'

app 'Pacifist.app'
end
2 changes: 1 addition & 1 deletion Casks/scroll-reverser.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
name 'Scroll Reverser'
homepage 'https://pilotmoon.com/scrollreverser/'

depends_on macos: '>= :tiger'
depends_on macos: '>= :leopard'

app 'Scroll Reverser.app'

Expand Down
2 changes: 1 addition & 1 deletion doc/cask_language_reference/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ The available symbols for macOS versions are: `:tiger`, `:leopard`, `:snow_leopa
Conditionals should be constructed so that the default is the newest OS version. When using an `if` statement, test for older versions, and then let the `else` statement hold the latest and greatest. This makes it more likely that the Cask will work without alteration when a new OS is released. Example (from [coconutbattery.rb](https://github.com/Homebrew/homebrew-cask/blob/2c801af44be29fff7f3cb2996455fce5dd95d1cc/Casks/coconutbattery.rb)):

```ruby
if MacOS.version <= :tiger
if MacOS.version <= :leopard
# ...
elsif MacOS.version <= :snow_leopard
# ...
Expand Down
1 change: 0 additions & 1 deletion doc/cask_language_reference/stanzas/depends_on.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ The available values for macOS releases are:

| symbol | corresponding string
| -------------------|----------------------
| `:tiger` | `'10.4'`
| `:leopard` | `'10.5'`
| `:snow_leopard` | `'10.6'`
| `:lion` | `'10.7'`
Expand Down

0 comments on commit 5e375d2

Please sign in to comment.