From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 1 13:40:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 378FAABC for ; Fri, 1 Feb 2013 13:40:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 195A87A9 for ; Fri, 1 Feb 2013 13:40:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r11De0BH006918 for ; Fri, 1 Feb 2013 13:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r11De06L006913; Fri, 1 Feb 2013 13:40:00 GMT (envelope-from gnats) Date: Fri, 1 Feb 2013 13:40:00 GMT Message-Id: <201302011340.r11De06L006913@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/175566: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Feb 2013 13:40:01 -0000 The following reply was made to PR ports/175566; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/175566: commit references a PR Date: Fri, 1 Feb 2013 13:30:30 +0000 (UTC) Author: vanilla Date: Fri Feb 1 13:30:16 2013 New Revision: 311374 URL: http://svnweb.freebsd.org/changeset/ports/311374 Log: Add avro 1.7.3, data serialization system. PR: ports/175566 Submitted by: Gvozdikov Veniamin Added: head/devel/avro/ head/devel/avro/Makefile (contents, props changed) head/devel/avro/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Feb 1 12:54:00 2013 (r311373) +++ head/devel/Makefile Fri Feb 1 13:30:16 2013 (r311374) @@ -104,6 +104,7 @@ SUBDIR += avr-libc SUBDIR += avra SUBDIR += avrdude + SUBDIR += avro SUBDIR += avro-c SUBDIR += avro-cpp SUBDIR += baz Added: head/devel/avro/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/avro/Makefile Fri Feb 1 13:30:16 2013 (r311374) @@ -0,0 +1,39 @@ +# Created by: Gvozdikov Veniamin +# $FreeBSD$ + +PORTNAME= avro +PORTVERSION= 1.7.3 +CATEGORIES= devel +MASTER_SITES= # none +DISTFILES= # none +EXTRACT_ONLY= # none + +MAINTAINER= g.veniamin@googlemail.com +COMMENT= Data serialization system + +NO_BUILD= yes + +OPTIONS_DEFINE= C CPP PYTHON +C_DESC= Install ANSI C library +CPP_DESC= Install C++ library +PYTHON_DESC= Install Python library + +OPTIONS_DEFAULT=C CPP PYTHON + +.include + +.if ${PORT_OPTIONS:MC} +LIB_DEPENDS+= avro:${PORTSDIR}/devel/avro-c +.endif + +.if ${PORT_OPTIONS:MCPP} +LIB_DEPENDS+= avrocpp:${PORTSDIR}/devel/avro-cpp +.endif + +.if ${PORT_OPTIONS:MPYTHON} +BUILD_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}avro:${PORTSDIR}/devel/py-avro +.endif + +do-install: # empty + +.include Added: head/devel/avro/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/avro/pkg-descr Fri Feb 1 13:30:16 2013 (r311374) @@ -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/ _______________________________________________ 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"