Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 2 Oct 2015 17:49:57 +0000 (UTC)
From:      Pawel Pekala <pawel@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r398444 - in head/sysutils: . py-pkginfo
Message-ID:  <201510021749.t92HnvMw016832@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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@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/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201510021749.t92HnvMw016832>