Ticket #16723: Portfile

File Portfile, 1.4 KB (added by jmroot (Joshua Root), 13 years ago)

altgraph ported to the new portgroup

Line 
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# $Id: Portfile 77404 2011-03-29 21:43:09Z jmr@macports.org $
3
4PortSystem                      1.0
5PortGroup                       python 1.0
6
7name                            py-altgraph
8version                         0.9
9categories-append       devel
10license             MIT
11maintainers                     jmr openmaintainer
12description                     Python graph (network) package
13long_description \
14        altgraph is a fork of graphlib: a graph (network) package for \
15        constructing graphs, BFS and DFS traversals, topological sort, \
16        shortest paths, etc. with graphviz output. \
17        altgraph includes some additional usage of Python 2.3+ features and \
18        enhancements related to modulegraph and macholib.
19
20platforms                       darwin
21supported_archs         noarch
22
23homepage                        http://undefined.org/python/#altgraph
24master_sites            http://pypi.python.org/packages/source/a/altgraph/
25distname                        altgraph-${version}
26
27checksums                       md5 367015bf871815b632975a26d1750133 \
28                                        sha1 94a434c1af98c8637969d3942d4f04bb633c382c \
29                                        rmd160 48263978c5634d970a58a7372a81bed55ecaefd9
30
31python.versions     24 25 26 27
32
33subport py24-altgraph {
34    depends_lib     port:py-setuptools
35}
36subport py25-altgraph {
37    depends_lib     port:py25-distribute
38}
39subport py26-altgraph {
40    depends_lib     port:py26-distribute
41}
42subport py27-altgraph {
43    depends_lib     port:py27-distribute
44}
45
46livecheck.type  regex
47livecheck.url   http://pypi.python.org/pypi/altgraph/
48livecheck.regex altgraph (0\.\[0-9.\]+)