Date: Sat, 18 May 2019 09:48:20 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r501944 - in head/devel: . rubygem-avro Message-ID: <201905180948.x4I9mK9u089557@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Sat May 18 09:48:20 2019 New Revision: 501944 URL: https://svnweb.freebsd.org/changeset/ports/501944 Log: Add rubygem-avro 1.8.2 This is the Ruby library of Apache Avro (devel/avro). 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. WWW: https://avro.apache.org/ Added: head/devel/rubygem-avro/ head/devel/rubygem-avro/Makefile (contents, props changed) head/devel/rubygem-avro/distinfo (contents, props changed) head/devel/rubygem-avro/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat May 18 09:45:21 2019 (r501943) +++ head/devel/Makefile Sat May 18 09:48:20 2019 (r501944) @@ -5308,6 +5308,7 @@ SUBDIR += rubygem-attic SUBDIR += rubygem-attr_required SUBDIR += rubygem-authlogic + SUBDIR += rubygem-avro SUBDIR += rubygem-awesome_print SUBDIR += rubygem-aws-eventstream SUBDIR += rubygem-aws-sdk Added: head/devel/rubygem-avro/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-avro/Makefile Sat May 18 09:48:20 2019 (r501944) @@ -0,0 +1,22 @@ +# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= avro +PORTVERSION= 1.8.2 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Ruby library for Apache Avro + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= rubygem-multi_json>=0:devel/rubygem-multi_json + +USES= gem +USE_RUBY= yes + +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/devel/rubygem-avro/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-avro/distinfo Sat May 18 09:48:20 2019 (r501944) @@ -0,0 +1,3 @@ +TIMESTAMP = 1558163192 +SHA256 (rubygem/avro-1.8.2.gem) = 415667d9060c609b53b3bef2448915aa4a06a408ce7b39ae6959579cc9da95ff +SIZE (rubygem/avro-1.8.2.gem) = 34816 Added: head/devel/rubygem-avro/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-avro/pkg-descr Sat May 18 09:48:20 2019 (r501944) @@ -0,0 +1,13 @@ +This is the Ruby library of Apache Avro (devel/avro). + +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. + +WWW: https://avro.apache.org/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905180948.x4I9mK9u089557>