svn commit: r398444 - in head/sysutils: . py-pkginfo
Pawel Pekala
pawel at FreeBSD.org
Fri Oct 2 17:49:58 UTC 2015
Author: pawel
Date: Fri Oct 2 17:49:56 2015
New Revision: 398444
URL: https://svnweb.freebsd.org/changeset/ports/398444
Log:
This package provides an API for querying the distutils metadata written in
the PKG-INFO file inside a source distribution (an sdist) or a binary
distribution (e.g., created by running bdist_egg). It can also query the
EGG-INFO directory of an installed distribution, and the *.egg-info stored in
a "development checkout" (e.g, created by running setup.py develop).
WWW: http://pypi.python.org/pypi/pkginfo/
PR: 202604
Submitted by: Maxim Filimonov <che at bein.link>
Added:
head/sysutils/py-pkginfo/
head/sysutils/py-pkginfo/Makefile (contents, props changed)
head/sysutils/py-pkginfo/distinfo (contents, props changed)
head/sysutils/py-pkginfo/pkg-descr (contents, props changed)
Modified:
head/sysutils/Makefile
Modified: head/sysutils/Makefile
==============================================================================
--- head/sysutils/Makefile Fri Oct 2 17:32:07 2015 (r398443)
+++ head/sysutils/Makefile Fri Oct 2 17:49:56 2015 (r398444)
@@ -774,6 +774,7 @@
SUBDIR += py-honcho
SUBDIR += py-iowait
SUBDIR += py-nagiosplugin
+ SUBDIR += py-pkginfo
SUBDIR += py-ploy
SUBDIR += py-ploy_ansible
SUBDIR += py-ploy_ec2
Added: head/sysutils/py-pkginfo/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/sysutils/py-pkginfo/Makefile Fri Oct 2 17:49:56 2015 (r398444)
@@ -0,0 +1,17 @@
+# $FreeBSD$
+
+PORTNAME= pkginfo
+PORTVERSION= 1.2.1
+CATEGORIES= sysutils python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= che at bein.link
+COMMENT= Query metadatdata from sdists / bdists / installed packages
+
+LICENSE= MIT
+
+USES= python
+USE_PYTHON= autoplist distutils
+
+.include <bsd.port.mk>
Added: head/sysutils/py-pkginfo/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/sysutils/py-pkginfo/distinfo Fri Oct 2 17:49:56 2015 (r398444)
@@ -0,0 +1,2 @@
+SHA256 (pkginfo-1.2.1.tar.gz) = ad3f6dfe8a831f96a7b56a588ca874137ca102cc6b79fc9b0a1c3b7ab7320f3c
+SIZE (pkginfo-1.2.1.tar.gz) = 31072
Added: head/sysutils/py-pkginfo/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/sysutils/py-pkginfo/pkg-descr Fri Oct 2 17:49:56 2015 (r398444)
@@ -0,0 +1,7 @@
+This package provides an API for querying the distutils metadata written in
+the PKG-INFO file inside a source distribution (an sdist) or a binary
+distribution (e.g., created by running bdist_egg). It can also query the
+EGG-INFO directory of an installed distribution, and the *.egg-info stored in
+a "development checkout" (e.g, created by running setup.py develop).
+
+WWW: http://pypi.python.org/pypi/pkginfo/
More information about the svn-ports-all
mailing list