svn commit: r501944 - in head/devel: . rubygem-avro

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Sat May 18 09:48:22 UTC 2019


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 at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	avro
+PORTVERSION=	1.8.2
+CATEGORIES=	devel rubygems
+MASTER_SITES=	RG
+
+MAINTAINER=	sunpoet at 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/


More information about the svn-ports-all mailing list