1 | # $Id: Portfile 106911 2013-06-11 14:40:14Z jmr@macports.org $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup python 1.0 |
---|
5 | |
---|
6 | name py-pylibacl |
---|
7 | version 0.4.0 |
---|
8 | license {MIT PSF} |
---|
9 | platforms darwin linux |
---|
10 | maintainers nomaintainer |
---|
11 | description py-pylibacl for bup |
---|
12 | long_description POSIX.1e ACLs for python. This is a C extension module for Python which implements POSIX ACLs manipulation. It is a wrapper on top of the systems's acl C library - see acl(5). |
---|
13 | |
---|
14 | homepage http://pylibacl.k1024.org/ |
---|
15 | master_sites https://pypi.python.org/packages/source/p/pylibacl/ |
---|
16 | distname pylibacl-${version} |
---|
17 | checksums md5 0c8c7fd673527fd63d970a6bac15779a |
---|
18 | |
---|
19 | python.versions 25 26 27 |
---|
20 | python.default_version 27 |
---|
21 | |
---|
22 | if {$subport != $name} { |
---|
23 | depends_build port:py${python.version}-setuptools |
---|
24 | livecheck.type none |
---|
25 | } else { |
---|
26 | livecheck.type regex |
---|
27 | livecheck.url http://pypi.python.org/pypi/pylibacl/ |
---|
28 | livecheck.regex pylibacl-(\[0-9.\]+) |
---|
29 | } |
---|