From owner-svn-ports-all@FreeBSD.ORG Thu Aug 29 15:39:50 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id A901477D; Thu, 29 Aug 2013 15:39:50 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8A90721AB; Thu, 29 Aug 2013 15:39:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r7TFdo5h009499; Thu, 29 Aug 2013 15:39:50 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r7TFdnUL009494; Thu, 29 Aug 2013 15:39:49 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201308291539.r7TFdnUL009494@svn.freebsd.org> From: Ruslan Makhmatkhanov Date: Thu, 29 Aug 2013 15:39:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r325607 - in head/devel: . py-serpent 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: Thu, 29 Aug 2013 15:39:50 -0000 Author: rm Date: Thu Aug 29 15:39:49 2013 New Revision: 325607 URL: http://svnweb.freebsd.org/changeset/ports/325607 Log: Serpent is a simple serialization library based on ast.literal_eval. Because it only serializes literals and recreates the objects using ast.literal_eval(), the serialized data is safe to transport to other machines (over the network for instance) and de-serialize it there. WWW: http://pypi.python.org/pypi/serpent Added: head/devel/py-serpent/ head/devel/py-serpent/Makefile (contents, props changed) head/devel/py-serpent/distinfo (contents, props changed) head/devel/py-serpent/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Aug 29 15:37:14 2013 (r325606) +++ head/devel/Makefile Thu Aug 29 15:39:49 2013 (r325607) @@ -3715,6 +3715,7 @@ SUBDIR += py-rtree SUBDIR += py-ruledispatch SUBDIR += py-sanetime + SUBDIR += py-serpent SUBDIR += py-setproctitle SUBDIR += py-setuptools-git SUBDIR += py-setuptools_darcs Added: head/devel/py-serpent/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-serpent/Makefile Thu Aug 29 15:39:49 2013 (r325607) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= serpent +PORTVERSION= 1.3 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= rm@FreeBSD.org +COMMENT= Simple serialization library based on ast.literal_eval + +LICENSE= MIT + +USE_PYTHON= yes +USE_PYDISTUTILS= yes + +PLIST_FILES= %%PYTHON_SITELIBDIR%%/serpent.py \ + %%PYTHON_SITELIBDIR%%/serpent.pyc \ + %%PYTHON_SITELIBDIR%%/serpent.pyo + +.include + +.if ${PYTHON_REL} >= 320 +.include "${PORTSDIR}/devel/py-virtualenv/files/py3k-fix-pkg-plist.inc" +.endif + +.include Added: head/devel/py-serpent/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-serpent/distinfo Thu Aug 29 15:39:49 2013 (r325607) @@ -0,0 +1,2 @@ +SHA256 (serpent-1.3.tar.gz) = 45560ada9e07e1400304870210c64c2de14ab414e23ec7a1271d673fa92104e2 +SIZE (serpent-1.3.tar.gz) = 7896 Added: head/devel/py-serpent/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-serpent/pkg-descr Thu Aug 29 15:39:49 2013 (r325607) @@ -0,0 +1,7 @@ +Serpent is a simple serialization library based on ast.literal_eval. + +Because it only serializes literals and recreates the objects using +ast.literal_eval(), the serialized data is safe to transport to other +machines (over the network for instance) and de-serialize it there. + +WWW: http://pypi.python.org/pypi/serpent