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$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python 1.0 |
---|
6 | |
---|
7 | name py-pweave |
---|
8 | version 0.20.1 |
---|
9 | categories-append devel |
---|
10 | maintainers maiar.org:jason-macports openmaintainer |
---|
11 | license GPL-2 |
---|
12 | description Pweave is a scientific report generator and a literate programming tool for Python. |
---|
13 | long_description Pweave is a scientific report generator and a literate programming tool for \ |
---|
14 | Python. Pweave can capture the results and plots from data analysis and \ |
---|
15 | works well with numpy, scipy and matplotlib. Pweave is inspired by Sweave, \ |
---|
16 | an excellent tool for R programmers, and the syntax is mostly compatible \ |
---|
17 | with it. Pweave supports reST, Sphinx, LaTeX, and Pandoc markdown markups. |
---|
18 | |
---|
19 | platforms darwin |
---|
20 | supported_archs noarch |
---|
21 | |
---|
22 | homepage http://mpastell.com/pweave |
---|
23 | master_sites http://pypi.python.org/packages/source/P/Pweave/ |
---|
24 | distname Pweave-${version} |
---|
25 | |
---|
26 | checksums rmd160 8c347b912aeb55c2dfd2587d9242661650a363af \ |
---|
27 | sha256 24851fc7202270c0e09b97a42eb8db9eb0379d584c6d9a15f73135b7a6fbbe51 |
---|
28 | |
---|
29 | python.versions 25 26 27 |
---|
30 | python.default_version 27 |
---|
31 | |
---|
32 | if {${subport} != ${name}} { |
---|
33 | depends_build-append port:py${python.version}-distribute |
---|
34 | |
---|
35 | depends_lib-append port:py${python.version}-matplotlib |
---|
36 | |
---|
37 | livecheck.type none |
---|
38 | } else { |
---|
39 | livecheck.type regex |
---|
40 | livecheck.url http://pypi.python.org/pypi/coverage |
---|
41 | livecheck.regex {/pypi/Pweave/(\d+(?:\.\d+)*)"} |
---|
42 | } |
---|