From owner-svn-ports-head@freebsd.org Mon Feb 26 22:32:55 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2FF10F29010; Mon, 26 Feb 2018 22:32:55 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2787B6FA9C; Mon, 26 Feb 2018 22:32:54 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id DE95B219B9; Mon, 26 Feb 2018 22:32:53 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w1QMWrtq029420; Mon, 26 Feb 2018 22:32:53 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w1QMWrr2029418; Mon, 26 Feb 2018 22:32:53 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201802262232.w1QMWrr2029418@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 26 Feb 2018 22:32:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r463090 - head/devel/avro X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/avro X-SVN-Commit-Revision: 463090 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Feb 2018 22:32:55 -0000 Author: sunpoet Date: Mon Feb 26 22:32:53 2018 New Revision: 463090 URL: https://svnweb.freebsd.org/changeset/ports/463090 Log: Update to 1.8.2 - Fix PYTHON option: - Add missing USES=python - Change from BUILD_DEPENDS to RUN_DEPENDS - Add flavors - Update pkg-descr - Update WWW - Add GitHub repository to WWW - Take maintainership Changes: https://github.com/apache/avro/blob/branch-1.8/CHANGES.txt Modified: head/devel/avro/Makefile head/devel/avro/pkg-descr Modified: head/devel/avro/Makefile ============================================================================== --- head/devel/avro/Makefile Mon Feb 26 22:32:48 2018 (r463089) +++ head/devel/avro/Makefile Mon Feb 26 22:32:53 2018 (r463090) @@ -2,10 +2,10 @@ # $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 @@ -13,14 +13,14 @@ 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 Modified: head/devel/avro/pkg-descr ============================================================================== --- head/devel/avro/pkg-descr Mon Feb 26 22:32:48 2018 (r463089) +++ head/devel/avro/pkg-descr Mon Feb 26 22:32:53 2018 (r463090) @@ -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