Commits
reneeotten authored and Perry E. Metzger committed 9525dfde6c1
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-nose-testconfig |
7 - | set real_name nose-testconfig |
8 - | version 0.8 |
9 - | python.versions 27 |
7 + | version 0.10 |
8 + | revision 0 |
10 9 | categories-append devel |
11 10 | license Apache-2 |
12 11 | maintainers nomaintainer |
13 12 | description Test Configuration plugin for nosetests. |
14 13 | long_description \ |
15 14 | nose-testconfig is a plugin to the nose test framework which provides a \ |
16 15 | faculty for passing test-specific (or test-run specific) configuration data \ |
17 16 | to the tests being executed. |
18 17 | |
19 18 | platforms darwin |
20 19 | supported_archs noarch |
21 - | checksums rmd160 6e13245b021aa027ef81ec5595bda387595c6ff8 \ |
22 - | sha256 cde6a8558e3d246da30021c723c1b8ffc9d59426507ad12c362764ca797aa86e |
20 + | checksums rmd160 3a553c9fab47cd0416d6ec54ffeddd5f60d168f0 \ |
21 + | sha256 54328a20ee8e8f877ba31af9ba76f29aa8254581b0ba57d8e306f37b8e1a94c8 \ |
22 + | size 9390 |
23 + | |
24 + | homepage https://bitbucket.org/jnoller/${python.rootname} |
25 + | master_sites pypi:n/${python.rootname} |
26 + | distname ${python.rootname}-${version} |
23 27 | |
24 - | homepage https://bitbucket.org/jnoller/${real_name} |
25 - | master_sites pypi:n/${real_name} |
26 - | distname ${real_name}-${version} |
28 + | python.versions 27 |
27 29 | |
28 30 | if {${name} ne ${subport}} { |
31 + | depends_build-append \ |
32 + | port:py${python.version}-setuptools |
33 + | |
29 34 | depends_lib-append \ |
30 35 | port:py${python.version}-nose |
31 36 | |
32 37 | patchfiles testconfig.py.patch |
38 + | |
39 + | livecheck.type none |
33 40 | } |