From owner-svn-ports-head@freebsd.org Fri Oct 2 17:49:58 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 45D02A0DE4A; Fri, 2 Oct 2015 17:49:58 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2980019CC; Fri, 2 Oct 2015 17:49:58 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t92Hnwk5016840; Fri, 2 Oct 2015 17:49:58 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t92HnvMw016832; Fri, 2 Oct 2015 17:49:57 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201510021749.t92HnvMw016832@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Fri, 2 Oct 2015 17:49:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398444 - in head/sysutils: . py-pkginfo X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Oct 2015 17:49:58 -0000 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 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 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/