Ticket #46286: Portfile

File Portfile, 1.1 KB (added by steenzout (Pedro Salgado), 9 years ago)
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
6PortGroup           select 1.0
7
8name                py-pytest-sugar
9version             0.3.6
10revision            0
11categories-append   devel
12maintainers         gmail.com:pedro.salgado openmaintainer
13platforms           darwin
14supported_archs     noarch
15license             MIT
16description         py.test: plugin for py.test that changes the default look and feel of py.test.
17long_description    py.test is a plugin for py.test that changes the default look and feel of py.test.
18homepage            http://pivotfinland.com/pytest-sugar/
19master_sites        https://pypi.python.org/packages/source/p/pytest-sugar/
20
21distname            pytest-sugar-${version}
22
23checksums           rmd160  00e7d49efd7590297252cbaa2b308ba83ffed442 \
24                    sha256  2aff79a40d1e9640559ff2b1af784d7492d3617b5538ecbd0ffc7d9c7415d31f
25
26python.versions     27 34
27
28if {${name} ne ${subport}} {
29    depends_lib-append port:py${python.version}-pytest
30    livecheck.type     none
31}