| 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 | |
|---|
| 4 | PortSystem 1.0 |
|---|
| 5 | PortGroup python 1.0 |
|---|
| 6 | |
|---|
| 7 | name py-altgraph |
|---|
| 8 | version 0.9 |
|---|
| 9 | categories-append devel |
|---|
| 10 | license MIT |
|---|
| 11 | maintainers jmr openmaintainer |
|---|
| 12 | description Python graph (network) package |
|---|
| 13 | long_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 | |
|---|
| 20 | platforms darwin |
|---|
| 21 | supported_archs noarch |
|---|
| 22 | |
|---|
| 23 | homepage http://undefined.org/python/#altgraph |
|---|
| 24 | master_sites http://pypi.python.org/packages/source/a/altgraph/ |
|---|
| 25 | distname altgraph-${version} |
|---|
| 26 | |
|---|
| 27 | checksums md5 367015bf871815b632975a26d1750133 \ |
|---|
| 28 | sha1 94a434c1af98c8637969d3942d4f04bb633c382c \ |
|---|
| 29 | rmd160 48263978c5634d970a58a7372a81bed55ecaefd9 |
|---|
| 30 | |
|---|
| 31 | python.versions 24 25 26 27 |
|---|
| 32 | |
|---|
| 33 | subport py24-altgraph { |
|---|
| 34 | depends_lib port:py-setuptools |
|---|
| 35 | } |
|---|
| 36 | subport py25-altgraph { |
|---|
| 37 | depends_lib port:py25-distribute |
|---|
| 38 | } |
|---|
| 39 | subport py26-altgraph { |
|---|
| 40 | depends_lib port:py26-distribute |
|---|
| 41 | } |
|---|
| 42 | subport py27-altgraph { |
|---|
| 43 | depends_lib port:py27-distribute |
|---|
| 44 | } |
|---|
| 45 | |
|---|
| 46 | livecheck.type regex |
|---|
| 47 | livecheck.url http://pypi.python.org/pypi/altgraph/ |
|---|
| 48 | livecheck.regex altgraph (0\.\[0-9.\]+) |
|---|