Bug 175566 - [new port]: devel/avro Data serialization system
Summary: [new port]: devel/avro Data serialization system
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: freebsd-ports-bugs (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-01-25 20:00 UTC by Veniamin
Modified: 2013-02-01 13:40 UTC (History)
0 users

See Also:


Attachments
file.shar (1.84 KB, text/plain)
2013-01-25 20:00 UTC, Veniamin
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Veniamin 2013-01-25 20:00:00 UTC
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.
Comment 1 dfilter service freebsd_committer freebsd_triage 2013-02-01 13:30:30 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 <g.veniamin@googlemail.com>

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 <g.veniamin@googlemail.com>
+# $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 <bsd.port.options.mk>
+
+.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 <bsd.port.mk>

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"
Comment 2 Vanilla I. Shu freebsd_committer freebsd_triage 2013-02-01 13:34:36 UTC
State Changed
From-To: open->closed

Committed, thanks.