Skip to content

Commit

Permalink
Builder: Removed Snow Leopard build for versions >= 1.15
Browse files Browse the repository at this point in the history
OS X 10.6 is now obsolete; Doomsday 1.14 is the last stable version
to support it.
  • Loading branch information
skyjake committed Apr 29, 2014
1 parent dee6375 commit 4e13cd0
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions distrib/builder/event.py
Expand Up @@ -56,8 +56,12 @@ def __init__(self, build=None, latestAvailable=False):
('Ubuntu (x86)', 'i386.deb', 'linux2-32bit'),
('Source', '.tar.gz', 'source')]

if self.has_version() and utils.version_cmp(self.version_base(), '1.11') >= 0:
del self.oses[3] # no more OS X 10.4
# Remove obsolete OS X versions:
if self.has_version():
if utils.version_cmp(self.version_base(), '1.11') >= 0:
del self.oses[3] # no more OS X 10.4
if utils.version_cmp(self.version_base(), '1.15') >= 0:
del self.oses[2] # no more OS X 10.6

elif self.num >= 778: # Mac distribution naming was changed.
# Platforms: Name File ext sys_id()
Expand Down

0 comments on commit 4e13cd0

Please sign in to comment.