Commits
Kurt Hindenburg authored 74b5e94e43b
1 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 2 | |
3 3 | PortSystem 1.0 |
4 4 | PortGroup python 1.0 |
5 5 | |
6 6 | name py-ddt |
7 - | version 1.2.0 |
7 + | version 1.2.1 |
8 8 | platforms darwin |
9 9 | license MIT |
10 10 | maintainers {khindenburg @kurthindenburg} openmaintainer |
11 11 | |
12 12 | description Data-Driven/Decorated Tests |
13 13 | long_description A library to multiply test cases |
14 14 | |
15 15 | homepage https://pypi.python.org/pypi/${python.rootname}/ |
16 16 | master_sites pypi:[string index ${python.rootname} 0]/${python.rootname} |
17 17 | distname ${python.rootname}-${version} |
18 18 | |
19 - | checksums rmd160 a07020398269dcbc019e16407617ef0658a8ff5d \ |
20 - | sha256 898364fc34b27981b925171a0011c174c94633cb678eb1fac05fe7a234c7912c \ |
21 - | size 8772 |
19 + | checksums rmd160 635a7bf90e2d5cb89c3731e84d8d4f5587f152a3 \ |
20 + | sha256 d13e6af8f36238e89d00f4ebccf2bda4f6d1878be560a6600689e42077e164e3 \ |
21 + | size 8981 |
22 22 | |
23 23 | python.versions 27 34 35 36 37 |
24 24 | |
25 25 | if {${name} ne ${subport}} { |
26 26 | depends_build-append port:py${python.version}-setuptools |
27 27 | |
28 28 | depends_test-append port:py${python.version}-mock \ |
29 29 | port:py${python.version}-nose \ |
30 30 | port:py${python.version}-yaml |
31 31 | test.run yes |
32 32 | test.env PYTHONPATH=${worksrcpath}/build/lib:${worksrcpath} |
33 33 | test.cmd nosetests-${python.branch} |
34 34 | test.target test/test_example.py test/test_functional.py |
35 35 | |
36 36 | livecheck.type none |
37 - | } else { |
38 - | livecheck.type pypi |
39 37 | } |