From owner-svn-ports-all@freebsd.org Thu Jul 13 18:55:28 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D6897DAB8AF; Thu, 13 Jul 2017 18:55:28 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AACAC85558; Thu, 13 Jul 2017 18:55:28 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v6DItRRc024020; Thu, 13 Jul 2017 18:55:27 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v6DItRhg024016; Thu, 13 Jul 2017 18:55:27 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201707131855.v6DItRhg024016@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Thu, 13 Jul 2017 18:55:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r445710 - in head/converters: . rubygem-xdr X-SVN-Group: ports-head X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: in head/converters: . rubygem-xdr X-SVN-Commit-Revision: 445710 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Jul 2017 18:55:28 -0000 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 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