Ticket #33327: Portfile

File Portfile, 1.7 KB (added by gorticus (Jason Mitchell), 12 years ago)

py-pweave portfile

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$
3
4PortSystem          1.0
5PortGroup           python 1.0
6
7name                py-pweave
8version             0.20.1
9categories-append   devel
10maintainers         maiar.org:jason-macports openmaintainer
11license             GPL-2
12description         Pweave is a scientific report generator and a literate programming tool for Python.
13long_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
19platforms           darwin
20supported_archs     noarch
21
22homepage            http://mpastell.com/pweave
23master_sites        http://pypi.python.org/packages/source/P/Pweave/
24distname            Pweave-${version}
25
26checksums           rmd160   8c347b912aeb55c2dfd2587d9242661650a363af \
27                    sha256   24851fc7202270c0e09b97a42eb8db9eb0379d584c6d9a15f73135b7a6fbbe51
28
29python.versions     25 26 27
30python.default_version  27
31
32if {${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}