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 84550 2011-09-27 21:05:11Z snc@macports.org $ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python 1.0 |
---|
6 | |
---|
7 | name py-mdp-toolkit |
---|
8 | version 3.3 |
---|
9 | revision 0 |
---|
10 | categories-append science |
---|
11 | platforms darwin |
---|
12 | license BSD |
---|
13 | |
---|
14 | python.versions 25 26 27 32 33 |
---|
15 | |
---|
16 | maintainers mnick openmaintainer |
---|
17 | |
---|
18 | description Modular toolkit for Data Processing. |
---|
19 | long_description ${description} |
---|
20 | |
---|
21 | homepage http://mdp-toolkit.sourceforge.net/ |
---|
22 | master_sites sourceforge:mdp-toolkit |
---|
23 | |
---|
24 | distname MDP-${version} |
---|
25 | |
---|
26 | checksums rmd160 36f09370195abdcab23ee8ab37f61b7ed67c37a1 \ |
---|
27 | sha256 3461a54c96a050029ec548c48fa5c60c2bb5b28cc088092438aa95c94d8b3478 |
---|
28 | |
---|
29 | if {$subport != $name} { |
---|
30 | depends_lib-append port:py${python.version}-distribute \ |
---|
31 | port:py${python.version}-numpy |
---|
32 | |
---|
33 | depends_build-append \ |
---|
34 | port:py${python.version}-py \ |
---|
35 | port:py${python.version}-pytest |
---|
36 | |
---|
37 | livecheck.type none |
---|
38 | |
---|
39 | test.run yes |
---|
40 | test.cmd py.test-${python.branch} |
---|
41 | test.target mdp/test |
---|
42 | } |
---|