Ticket #38719: Portfile

File Portfile, 971 bytes (added by mail@…, 11 years ago)
Line 
1# $Id: Portfile 106911 2013-06-11 14:40:14Z jmr@macports.org $
2
3PortSystem 1.0
4PortGroup python 1.0
5
6name                       py-pylibacl
7version                    0.4.0
8license                    {MIT PSF}
9platforms                  darwin linux
10maintainers                nomaintainer
11description                py-pylibacl for bup
12long_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
14homepage                   http://pylibacl.k1024.org/
15master_sites       https://pypi.python.org/packages/source/p/pylibacl/
16distname           pylibacl-${version}
17checksums          md5 0c8c7fd673527fd63d970a6bac15779a
18
19python.versions     25 26 27
20python.default_version  27
21
22if {$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}