Date: Thu, 29 Aug 2013 15:39:49 +0000 (UTC) From: Ruslan Makhmatkhanov <rm@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r325607 - in head/devel: . py-serpent Message-ID: <201308291539.r7TFdnUL009494@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.port.pre.mk> + +.if ${PYTHON_REL} >= 320 +.include "${PORTSDIR}/devel/py-virtualenv/files/py3k-fix-pkg-plist.inc" +.endif + +.include <bsd.port.post.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201308291539.r7TFdnUL009494>