Bug 187950 - [NEW PORT] devel/rubygem-bindata
Summary: [NEW PORT] devel/rubygem-bindata
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Steve Wills
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-03-26 02:20 UTC by Michael Moll
Modified: 2014-03-29 14:50 UTC (History)
0 users

See Also:


Attachments
file.shar (1.75 KB, text/plain)
2014-03-26 02:20 UTC, Michael Moll
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Michael Moll freebsd_committer freebsd_triage 2014-03-26 02:20:01 UTC
depends on ports/187944

Fix: Patch attached with submission follows:
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2014-03-26 02:20:15 UTC
Responsible Changed
From-To: freebsd-ports-bugs->swills

swills@ wants this submitter's PRs (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2014-03-29 14:46:11 UTC
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@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
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 3 Steve Wills freebsd_committer freebsd_triage 2014-03-29 14:47:01 UTC
State Changed
From-To: open->closed

New port added. Thanks!