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 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python 1.0 |
---|
6 | |
---|
7 | name py-pkginfo |
---|
8 | set my_name pkginfo |
---|
9 | version 1.4.1 |
---|
10 | platforms darwin |
---|
11 | maintainers {@jjstickel gmail.com:jjstickel} openmaintainer |
---|
12 | license MIT |
---|
13 | description Query metadatdata from sdists and bdists installed packages. |
---|
14 | long_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 | |
---|
19 | homepage https://pypi.python.org/pypi/pkginfo |
---|
20 | master_sites pypi:p/pkginfo/ |
---|
21 | distname ${my_name}-${version} |
---|
22 | |
---|
23 | checksums rmd160 1cdc3a99119f793f92029178b6ff076f6884260f \ |
---|
24 | sha256 bb1a6aeabfc898f5df124e7e00303a5b3ec9a489535f346bfbddb081af93f89e |
---|
25 | |
---|
26 | python.versions 27 36 |
---|
27 | |
---|
28 | if {${name} ne ${subport}} { |
---|
29 | depends_build-append port:py${python.version}-setuptools |
---|
30 | } |
---|