From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 25 20:00:00 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 A68D4790 for ; Fri, 25 Jan 2013 20:00:00 +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 8D64C68D for ; Fri, 25 Jan 2013 20:00:00 +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 r0PK00uh062282 for ; Fri, 25 Jan 2013 20:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r0PK00lH062281; Fri, 25 Jan 2013 20:00:00 GMT (envelope-from gnats) Resent-Date: Fri, 25 Jan 2013 20:00:00 GMT Resent-Message-Id: <201301252000.r0PK00lH062281@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Veniamin Gvozdikov Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 766FC76D for ; Fri, 25 Jan 2013 19:59:50 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 502E9687 for ; Fri, 25 Jan 2013 19:59:50 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id r0PJxoab019267 for ; Fri, 25 Jan 2013 19:59:50 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id r0PJxoBE019266; Fri, 25 Jan 2013 19:59:50 GMT (envelope-from nobody) Message-Id: <201301251959.r0PJxoBE019266@red.freebsd.org> Date: Fri, 25 Jan 2013 19:59:50 GMT From: Veniamin Gvozdikov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/175566: [new port]: devel/avro Data serialization system X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Jan 2013 20:00:00 -0000 >Number: 175566 >Category: ports >Synopsis: [new port]: devel/avro Data serialization system >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Jan 25 20:00:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Veniamin Gvozdikov >Release: FreeBSD 8.3-RELEASE-p5 >Organization: >Environment: FreeBSD ololo 8.3-RELEASE-p5 FreeBSD 8.3-RELEASE-p5 #0: Thu Dec 6 16:25:28 MSK 2012 root@ololo:/usr/obj/usr/src/sys/OLOLO amd64 >Description: depended by: ports/175565 ports/175563 ports/175562 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. >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # avro # avro/Makefile # avro/pkg-descr # echo c - avro mkdir -p avro > /dev/null 2>&1 echo x - avro/Makefile sed 's/^X//' >avro/Makefile << '566ed97aa7c2472a172938fcb9687f7d' X# Created by: Gvozdikov Veniamin X# $FreeBSD$ X XPORTNAME= avro XPORTVERSION= 1.7.3 XCATEGORIES= devel XMASTER_SITES= # none XDISTFILES= # none XEXTRACT_ONLY= # none X XMAINTAINER= g.veniamin@googlemail.com XCOMMENT= Data serialization system X XNO_BUILD= yes X XOPTIONS_DEFINE= C CPP PYTHON XC_DESC= Install ANSI C library XCPP_DESC= Install C++ library XPYTHON_DESC= Install Python library X XOPTIONS_DEFAULT=C CPP PYTHON X X.include X X.if ${PORT_OPTIONS:MC} XLIB_DEPENDS+= avro:${PORTSDIR}/devel/avro-c X.endif X X.if ${PORT_OPTIONS:MCPP} XLIB_DEPENDS+= avrocpp:${PORTSDIR}/devel/avro-cpp X.endif X X.if ${PORT_OPTIONS:MPYTHON} XBUILD_DEPENDS+= ${PYTHON_SITELIBDIR}/avro/__init__.py:${PORTSDIR}/devel/py-avro X.endif X X.include 566ed97aa7c2472a172938fcb9687f7d echo x - avro/pkg-descr sed 's/^X//' >avro/pkg-descr << '34d6814736e997123f0d0a6cb5943374' XAvro is a data serialization system. X XAvro provides: X* Rich data structures. X* A compact, fast, binary data format. X* A container file, to store persistent data. X* Remote procedure call (RPC). X* Simple integration with dynamic languages. Code generation is not Xrequired to read or write data files nor to use or implement RPC Xprotocols. Code generation as an optional optimization, only worth Ximplementing for statically typed languages. X XWWW: http://avro.apache.org/ 34d6814736e997123f0d0a6cb5943374 exit >Release-Note: >Audit-Trail: >Unformatted: