Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 13 Jul 2017 18:55:27 +0000 (UTC)
From:      Antoine Brodin <antoine@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r445710 - in head/converters: . rubygem-xdr
Message-ID:  <201707131855.v6DItRhg024016@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: antoine
Date: Thu Jul 13 18:55:27 2017
New Revision: 445710
URL: https://svnweb.freebsd.org/changeset/ports/445710

Log:
  New port: converters/rubygem-xdr
  
  XDR is an open data format, specified in RFC 4506.  This library provides a way
  to read and write XDR data from ruby.  It can read/write all of the primitive
  XDR types and also provides facilities to define readers for the compound XDR
  types (enums, structs and unions)
  
  WWW: https://github.com/stellar/ruby-xdr

Added:
  head/converters/rubygem-xdr/
  head/converters/rubygem-xdr/Makefile   (contents, props changed)
  head/converters/rubygem-xdr/distinfo   (contents, props changed)
  head/converters/rubygem-xdr/pkg-descr   (contents, props changed)
Modified:
  head/converters/Makefile

Modified: head/converters/Makefile
==============================================================================
--- head/converters/Makefile	Thu Jul 13 18:50:41 2017	(r445709)
+++ head/converters/Makefile	Thu Jul 13 18:55:27 2017	(r445710)
@@ -161,6 +161,7 @@
     SUBDIR += rubygem-bsdconv
     SUBDIR += rubygem-po_to_json
     SUBDIR += rubygem-url_safe_base64
+    SUBDIR += rubygem-xdr
     SUBDIR += shftool
     SUBDIR += showkey
     SUBDIR += ta2as

Added: head/converters/rubygem-xdr/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/converters/rubygem-xdr/Makefile	Thu Jul 13 18:55:27 2017	(r445710)
@@ -0,0 +1,21 @@
+# $FreeBSD$
+
+PORTNAME=	xdr
+PORTVERSION=	2.0.0
+CATEGORIES=	converters rubygems
+MASTER_SITES=	RG
+
+MAINTAINER=	antoine@FreeBSD.org
+COMMENT=	XDR Helper Library
+
+LICENSE=	APACHE20
+LICENSE_FILE=	${WRKSRC}/LICENSE.txt
+
+RUN_DEPENDS=	rubygem-activemodel4>=4.2.7:databases/rubygem-activemodel4 \
+		rubygem-activesupport4>=4.2.7:devel/rubygem-activesupport4
+
+NO_ARCH=	yes
+USE_RUBY=	yes
+USES=		gem
+
+.include <bsd.port.mk>

Added: head/converters/rubygem-xdr/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/converters/rubygem-xdr/distinfo	Thu Jul 13 18:55:27 2017	(r445710)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1499950538
+SHA256 (rubygem/xdr-2.0.0.gem) = d5a43e9effa071d49bde1caee351f0bc985576370e2c6770c07dc84866b8ac30
+SIZE (rubygem/xdr-2.0.0.gem) = 24064

Added: head/converters/rubygem-xdr/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/converters/rubygem-xdr/pkg-descr	Thu Jul 13 18:55:27 2017	(r445710)
@@ -0,0 +1,6 @@
+XDR is an open data format, specified in RFC 4506.  This library provides a way
+to read and write XDR data from ruby.  It can read/write all of the primitive
+XDR types and also provides facilities to define readers for the compound XDR
+types (enums, structs and unions)
+
+WWW: https://github.com/stellar/ruby-xdr



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201707131855.v6DItRhg024016>