Index: head/devel/avro/Makefile =================================================================== --- head/devel/avro/Makefile (revision 463089) +++ head/devel/avro/Makefile (revision 463090) @@ -1,26 +1,26 @@ # Created by: Veniamin Gvozdikov # $FreeBSD$ PORTNAME= avro -PORTVERSION= 1.8.1 +PORTVERSION= 1.8.2 CATEGORIES= devel -MAINTAINER= ports@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= Data serialization system LICENSE= APACHE20 USES= metaport OPTIONS_DEFINE= C CPP PYTHON -C_DESC= Install ANSI C library +OPTIONS_DEFAULT=C CPP PYTHON +C_DESC= Install C library CPP_DESC= Install C++ library PYTHON_DESC= Install Python library -OPTIONS_DEFAULT=C CPP PYTHON - C_LIB_DEPENDS= libavro.so:devel/avro-c CPP_LIB_DEPENDS= libavrocpp.so:devel/avro-cpp -PYTHON_BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}avro:devel/py-avro +PYTHON_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}avro>=0:devel/py-avro@${PY_FLAVOR} +PYTHON_USES= python:env .include Index: head/devel/avro/pkg-descr =================================================================== --- head/devel/avro/pkg-descr (revision 463089) +++ head/devel/avro/pkg-descr (revision 463090) @@ -1,13 +1,12 @@ -Avro is a data serialization system. +Apache Avro is a data serialization system which 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. -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/ +WWW: https://avro.apache.org/ +WWW: https://github.com/apache/avro