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 | |
---|
3 | # $Id$ |
---|
4 | |
---|
5 | PortSystem 1.0 |
---|
6 | PortGroup python 1.0 |
---|
7 | |
---|
8 | name py-stevedore |
---|
9 | set real_name stevedore |
---|
10 | version 0.3 |
---|
11 | |
---|
12 | maintainers nomaintainer |
---|
13 | |
---|
14 | categories-append devel |
---|
15 | homepage http://www.doughellmann.com/projects/${real_name}/ |
---|
16 | description Manage dynamic plugins for Python applications |
---|
17 | long_description Manage dynamic plugins for Python applications |
---|
18 | |
---|
19 | platforms darwin |
---|
20 | license Apache |
---|
21 | |
---|
22 | master_sites http://pypi.python.org/packages/source/s/${real_name}/ |
---|
23 | distname ${real_name}-${version} |
---|
24 | checksums md5 05e0c0127466cd821ba0310a54a4dc06 \ |
---|
25 | sha1 ca4c8243788daf5745a85ee2b701d4c7e18415af \ |
---|
26 | rmd160 3d3cb990ebf7d4a13f2fac126f042df6d01f2fdb |
---|
27 | |
---|
28 | python.versions 24 25 26 27 |
---|
29 | |
---|
30 | if {$subport != $name} { |
---|
31 | depends_lib-append port:py${python.version}-distribute |
---|
32 | } |
---|
33 | |
---|
34 | livecheck.type regex |
---|
35 | livecheck.url http://pypi.python.org/pypi/${real_name} |
---|
36 | livecheck.regex ${real_name} (\[0-9\]+(\.\[0-9\]+)+) |
---|
37 | |
---|