Commits
Marius Schamschula authored bcc018ddb64
1 1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
2 2 | |
3 3 | PortSystem 1.0 |
4 4 | PortGroup python 1.0 |
5 5 | |
6 6 | set real_name zope.proxy |
7 7 | name py-zope-proxy |
8 8 | version 4.3.2 |
9 + | revision 0 |
9 10 | worksrcdir ${real_name}-${version} |
10 11 | distfiles ${real_name}-${version}${extract.suffix} |
11 12 | categories-append zope |
12 13 | license ZPL-2.1 |
13 14 | maintainers {mps @Schamschula} openmaintainer |
14 15 | description Proxies are special objects which serve as mostly-transparent \ |
15 16 | wrappers around another object, intervening in the apparent behavior \ |
16 17 | of the wrapped object only when necessary to apply the policy \ |
17 18 | (e.g., access checking, location brokering, etc.) for which the \ |
18 19 | proxy is responsible. |
19 20 | long_description ${description} |
20 21 | platforms darwin |
21 22 | homepage https://pypi.python.org/pypi/${real_name} |
22 23 | master_sites pypi:z/${real_name} |
23 24 | |
24 - | python.versions 27 36 37 |
25 + | python.versions 27 36 37 38 |
25 26 | |
26 27 | checksums rmd160 ca1a478711c6e0914ca9d8b97fdd49da49d6357a \ |
27 28 | sha256 ab6d6975d9c51c13cac828ff03168de21fb562b0664c59bcdc4a4b10f39a5b17 \ |
28 29 | size 43567 |
29 30 | |
30 31 | if {${name} ne ${subport}} { |
31 32 | depends_lib-append \ |
32 33 | port:py${python.version}-setuptools |
33 34 | } else { |
34 35 | livecheck.type regex |