Ticket #47714: 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: Portfile 134859 2015-04-08 22:46:31Z ryandesign@macports.org $
3
4PortSystem          1.0
5PortGroup           python 1.0
6PortGroup           select 1.0
7
8name                py-pluggy
9version             0.3.0
10categories-append   devel
11maintainers         gmail.com:pedro.salgado openmaintainer
12platforms           darwin
13supported_archs     noarch
14license             MIT
15
16description         pluggy: plugin and hook calling mechanisms for python
17long_description    plugin manager as used by pytest but stripped of pytest specific details
18
19homepage            https://github.com/hpk42/pluggy/
20master_sites        https://pypi.python.org/packages/source/p/pluggy/
21
22distname            pluggy-${version}
23
24checksums           rmd160  be171c497663d8e7411f9ec382cd9816187c3aab \
25                    sha256  52631797ad4857e09f0f2b642392d548b304713d0a02a534f1517cffc008a89c
26
27python.versions     27 34
28
29if {${name} ne ${subport}} {
30    depends_lib-append port:py${python.version}-py
31    livecheck.type     none
32}