Changeset 99552


Ignore:
Timestamp:
Nov 9, 2012, 10:03:57 PM (12 years ago)
Author:
ryandesign@…
Message:

py26-pyobjc, py27-pyobjc: require Leopard or newer (#26120)

Location:
trunk/dports/python
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/dports/python/py26-pyobjc/Portfile

    r96478 r99552  
    4747}
    4848
     49if {${os.platform} == "darwin" && ${os.major} <= 8} {
     50    pre-fetch {
     51        ui_error "${name} ${version} requires OS X 10.5 or greater."
     52        return -code error "incompatible OS X version"
     53    }
     54}
     55
    4956livecheck.type  regex
    5057livecheck.url   http://pypi.python.org/pypi/pyobjc-core/
  • trunk/dports/python/py27-pyobjc/Portfile

    r96076 r99552  
    4747}
    4848
     49if {${os.platform} == "darwin" && ${os.major} <= 8} {
     50    pre-fetch {
     51        ui_error "${name} ${version} requires OS X 10.5 or greater."
     52        return -code error "incompatible OS X version"
     53    }
     54}
     55
    4956livecheck.type  regex
    5057livecheck.url   http://pypi.python.org/pypi/pyobjc-core/
Note: See TracChangeset for help on using the changeset viewer.