1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-29 05:38:00 +00:00

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
This commit is contained in:
Antoine Brodin 2017-07-13 18:55:27 +00:00
parent e5d343cca8
commit 404db73b01
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=445710
4 changed files with 31 additions and 0 deletions

View File

@ -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

View File

@ -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>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1499950538
SHA256 (rubygem/xdr-2.0.0.gem) = d5a43e9effa071d49bde1caee351f0bc985576370e2c6770c07dc84866b8ac30
SIZE (rubygem/xdr-2.0.0.gem) = 24064

View File

@ -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