From owner-svn-ports-all@FreeBSD.ORG Sat Mar 29 14:46:09 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8AD14BC; Sat, 29 Mar 2014 14:46:09 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 6BADC9A3; Sat, 29 Mar 2014 14:46:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s2TEk9We022191; Sat, 29 Mar 2014 14:46:09 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s2TEk8q4022187; Sat, 29 Mar 2014 14:46:08 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201403291446.s2TEk8q4022187@svn.freebsd.org> From: Steve Wills Date: Sat, 29 Mar 2014 14:46:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r349525 - in head/devel: . rubygem-bindata X-SVN-Group: ports-head 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.17 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: Sat, 29 Mar 2014 14:46:09 -0000 Author: swills Date: Sat Mar 29 14:46:08 2014 New Revision: 349525 URL: http://svnweb.freebsd.org/changeset/ports/349525 QAT: https://qat.redports.org/buildarchive/r349525/ Log: BinData is a declarative way to read and write binary file formats. This means the programmer specifies *what* the format of the binary data is, and BinData works out *how* to read and write data in this format. It is an easier (and more readable) alternative to Ruby's #pack and #unpack methods. WWW: https://github.com/dmendel/bindata PR: ports/187950 Submitted by: Michael Moll Added: head/devel/rubygem-bindata/ head/devel/rubygem-bindata/Makefile (contents, props changed) head/devel/rubygem-bindata/distinfo (contents, props changed) head/devel/rubygem-bindata/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Mar 29 14:43:30 2014 (r349524) +++ head/devel/Makefile Sat Mar 29 14:46:08 2014 (r349525) @@ -4139,6 +4139,7 @@ SUBDIR += rubygem-bacon SUBDIR += rubygem-benelux SUBDIR += rubygem-bin_utils + SUBDIR += rubygem-bindata SUBDIR += rubygem-bioruby SUBDIR += rubygem-blockenspiel SUBDIR += rubygem-bson Added: head/devel/rubygem-bindata/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-bindata/Makefile Sat Mar 29 14:46:08 2014 (r349525) @@ -0,0 +1,20 @@ +# Created by: Michael Moll +# $FreeBSD$ + +PORTNAME= bindata +PORTVERSION= 2.0.0 +CATEGORIES= devel ruby +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Ruby library to read and write binary file formats + +LICENSE= BSD2CLAUSE + +RUN_DEPENDS= rubygem-minitest>=5.0.6:${PORTSDIR}/devel/rubygem-minitest + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/devel/rubygem-bindata/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-bindata/distinfo Sat Mar 29 14:46:08 2014 (r349525) @@ -0,0 +1,2 @@ +SHA256 (rubygem/bindata-2.0.0.gem) = 414e7fc359c5b5d1453d8ff2ffe58915e7ea46ae95d1e36ece6f28b2287bc609 +SIZE (rubygem/bindata-2.0.0.gem) = 68608 Added: head/devel/rubygem-bindata/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-bindata/pkg-descr Sat Mar 29 14:46:08 2014 (r349525) @@ -0,0 +1,8 @@ +BinData is a declarative way to read and write binary file formats. + +This means the programmer specifies *what* the format of the binary +data is, and BinData works out *how* to read and write data in this +format. It is an easier (and more readable) alternative to Ruby's +#pack and #unpack methods. + +WWW: https://github.com/dmendel/bindata