From owner-svn-ports-all@FreeBSD.ORG Sun Jun 30 14:51:13 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 0331FC45; Sun, 30 Jun 2013 14:51:13 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id CF81C10C2; Sun, 30 Jun 2013 14:51:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r5UEpCD7023158; Sun, 30 Jun 2013 14:51:12 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r5UEpCSc023151; Sun, 30 Jun 2013 14:51:12 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201306301451.r5UEpCSc023151@svn.freebsd.org> From: Antoine Brodin Date: Sun, 30 Jun 2013 14:51:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r322089 - in head/devel: . py-binplist X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Jun 2013 14:51:13 -0000 Author: antoine Date: Sun Jun 30 14:51:11 2013 New Revision: 322089 URL: http://svnweb.freebsd.org/changeset/ports/322089 Log: New port: py-binplist A binary property list parser module written in python Added: head/devel/py-binplist/ head/devel/py-binplist/Makefile (contents, props changed) head/devel/py-binplist/distinfo (contents, props changed) head/devel/py-binplist/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Jun 30 14:49:55 2013 (r322088) +++ head/devel/Makefile Sun Jun 30 14:51:11 2013 (r322089) @@ -3452,6 +3452,7 @@ SUBDIR += py-avro SUBDIR += py-babel SUBDIR += py-billiard + SUBDIR += py-binplist SUBDIR += py-bison SUBDIR += py-bitarray SUBDIR += py-bitstring Added: head/devel/py-binplist/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-binplist/Makefile Sun Jun 30 14:51:11 2013 (r322089) @@ -0,0 +1,23 @@ +# Created by: Antoine Brodin +# $FreeBSD$ + +PORTNAME= binplist +PORTVERSION= 0.1.1 +CATEGORIES= devel python +MASTER_SITES= GOOGLE_CODE +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= antoine@FreeBSD.org +COMMENT= Binary plist parser + +LICENSE= AL2 + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytz>=0:${PORTSDIR}/devel/py-pytz + +USE_PYTHON= yes +USE_PYDISTUTILS=easy_install + +PLIST_FILES= bin/binplist \ + %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% + +.include Added: head/devel/py-binplist/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-binplist/distinfo Sun Jun 30 14:51:11 2013 (r322089) @@ -0,0 +1,2 @@ +SHA256 (binplist-0.1.1.tar.gz) = 244a269ca686195d461f3ccf33bca1ba7e3c3f840818f69e7a20b1f7e7d7d1b9 +SIZE (binplist-0.1.1.tar.gz) = 14796 Added: head/devel/py-binplist/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-binplist/pkg-descr Sun Jun 30 14:51:11 2013 (r322089) @@ -0,0 +1,3 @@ +Binary property list (plist) parser module written in python. + +WWW: http://code.google.com/p/binplist/