Avro is a data serialization system. Avro provides: * Rich data structures. * A compact, fast, binary data format. * A container file, to store persistent data. * Remote procedure call (RPC). * Simple integration with dynamic languages. Code generation is not required to read or write data files nor to use or implement RPC protocols. Code generation as an optional optimization, only worth implementing for statically typed languages.
Responsible Changed From-To: freebsd-ports-bugs->freebsd-python freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool)
Author: vanilla Date: Fri Feb 1 12:54:00 2013 New Revision: 311373 URL: http://svnweb.freebsd.org/changeset/ports/311373 Log: Add py-avro 1.7.3, data serialization system for python. PR: ports/175565 Submitted by: Gvozdikov Veniamin <g.veniamin@googlemail.com> Added: head/devel/py-avro/ head/devel/py-avro/Makefile (contents, props changed) head/devel/py-avro/distinfo (contents, props changed) head/devel/py-avro/pkg-descr (contents, props changed) head/devel/py-avro/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Feb 1 12:33:49 2013 (r311372) +++ head/devel/Makefile Fri Feb 1 12:54:00 2013 (r311373) @@ -3365,6 +3365,7 @@ SUBDIR += py-aspyct SUBDIR += py-astng SUBDIR += py-async + SUBDIR += py-avro SUBDIR += py-babel SUBDIR += py-bison SUBDIR += py-bitarray Added: head/devel/py-avro/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-avro/Makefile Fri Feb 1 12:54:00 2013 (r311373) @@ -0,0 +1,29 @@ +# Created by: Gvozdikov Veniamin <g.veniamin@googlemail.com> +# $FreeBSD$ + +PORTNAME= avro +PORTVERSION= 1.7.3 +CATEGORIES= devel +MASTER_SITES= APACHE +MASTER_SITE_SUBDIR= ${PORTNAME}/stable +PKGNAMEPREFIX= py- +DISTNAME= ${PORTNAME}-src-${PORTVERSION} + +MAINTAINER= g.veniamin@googlemail.com +COMMENT= Data serialization system for python + +BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/simplejson/__init__.py:${PORTSDIR}/devel/py-simplejson +RUN_DEPENDS= ${PYTHON_SITELIBDIR}/simplejson/__init__.py:${PORTSDIR}/devel/py-simplejson + +USE_PYDISTUTILS= easy_install +USE_PYTHON= yes + +WRKSRC= ${WRKDIR}/${DISTNAME}/lang/py + +.include <bsd.port.pre.mk> + +pre-configure: + ${REINPLACE_CMD} 's|@AVRO_VERSION@|${PORTVERSION}|g' \ + ${WRKSRC}/setup.py + +.include <bsd.port.post.mk> Added: head/devel/py-avro/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-avro/distinfo Fri Feb 1 12:54:00 2013 (r311373) @@ -0,0 +1,2 @@ +SHA256 (avro-src-1.7.3.tar.gz) = edf23ba0626cf648008357c7f9fb2d1e0b0eaeacce76ecd001eaa198484e9833 +SIZE (avro-src-1.7.3.tar.gz) = 1924413 Added: head/devel/py-avro/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-avro/pkg-descr Fri Feb 1 12:54:00 2013 (r311373) @@ -0,0 +1,13 @@ +Avro is a data serialization system. + +Avro provides: +* Rich data structures. +* A compact, fast, binary data format. +* A container file, to store persistent data. +* Remote procedure call (RPC). +* Simple integration with dynamic languages. Code generation is not +required to read or write data files nor to use or implement RPC +protocols. Code generation as an optional optimization, only worth +implementing for statically typed languages. + +WWW: http://avro.apache.org/ Added: head/devel/py-avro/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-avro/pkg-plist Fri Feb 1 12:54:00 2013 (r311373) @@ -0,0 +1,2 @@ +bin/avro +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Committed, thanks.