Ticket #54245: Portfile_py-pkginfo

File Portfile_py-pkginfo, 1.0 KB (added by jjstickel (Jonathan Stickel), 7 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  $
3
4PortSystem      1.0
5PortGroup       python 1.0
6
7name            py-pkginfo
8set my_name     pkginfo
9version         1.4.1
10platforms       darwin
11maintainers     {@jjstickel gmail.com:jjstickel} openmaintainer
12license         MIT
13description     Query metadatdata from sdists and bdists installed packages.
14long_description \
15    Provides an API for querying the distutils metadata written in the \
16    PKG-INFO file inside a source distriubtion (an sdist) or a binary \
17    distribution (e.g., created by running bdist_egg).
18
19homepage        https://pypi.python.org/pypi/pkginfo
20master_sites    pypi:p/pkginfo/
21distname        ${my_name}-${version}
22
23checksums           rmd160  1cdc3a99119f793f92029178b6ff076f6884260f \
24    sha256  bb1a6aeabfc898f5df124e7e00303a5b3ec9a489535f346bfbddb081af93f89e
25
26python.versions 27 36
27
28if {${name} ne ${subport}} {
29    depends_build-append    port:py${python.version}-setuptools
30}