svn commit: r349525 - in head/devel: . rubygem-bindata

Steve Wills swills at FreeBSD.org
Sat Mar 29 14:46:09 UTC 2014


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 <kvedulv at kvedulv.de>

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 <kvedulv at kvedulv.de>
+# $FreeBSD$
+
+PORTNAME=	bindata
+PORTVERSION=	2.0.0
+CATEGORIES=	devel ruby
+MASTER_SITES=	RG
+
+MAINTAINER=	ruby at 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 <bsd.port.mk>

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


More information about the svn-ports-head mailing list