svn commit: r313313 - in head/devel: . rubygem-blockenspiel

Steve Wills swills at FreeBSD.org
Sun Mar 3 01:27:26 UTC 2013


Author: swills
Date: Sun Mar  3 01:27:25 2013
New Revision: 313313
URL: http://svnweb.freebsd.org/changeset/ports/313313

Log:
  Blockenspiel is a helper library designed to make it easy to implement DSL
  blocks. It is designed to be comprehensive and robust, supporting most common
  usage patterns, and working correctly in the presence of nested blocks and
  multithreading.
  
  WWW: http://dazuma.github.com/blockenspiel/

Added:
  head/devel/rubygem-blockenspiel/
  head/devel/rubygem-blockenspiel/Makefile   (contents, props changed)
  head/devel/rubygem-blockenspiel/distinfo   (contents, props changed)
  head/devel/rubygem-blockenspiel/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sun Mar  3 01:12:04 2013	(r313312)
+++ head/devel/Makefile	Sun Mar  3 01:27:25 2013	(r313313)
@@ -3947,6 +3947,7 @@
     SUBDIR += rubygem-bacon
     SUBDIR += rubygem-benelux
     SUBDIR += rubygem-bioruby
+    SUBDIR += rubygem-blockenspiel
     SUBDIR += rubygem-bson
     SUBDIR += rubygem-bugspots
     SUBDIR += rubygem-builder

Added: head/devel/rubygem-blockenspiel/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-blockenspiel/Makefile	Sun Mar  3 01:27:25 2013	(r313313)
@@ -0,0 +1,16 @@
+# Created by: Steve Wills <swills at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	blockenspiel
+PORTVERSION=	0.4.5
+CATEGORIES=	devel rubygems
+MASTER_SITES=	RG
+
+MAINTAINER=	ruby at FreeBSD.org
+COMMENT=	Library designed to make it easy to implement DSL blocks in Ruby
+
+USE_RUBY=		yes
+USE_RUBYGEMS=		yes
+RUBYGEM_AUTOPLIST=	yes
+
+.include <bsd.port.mk>

Added: head/devel/rubygem-blockenspiel/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-blockenspiel/distinfo	Sun Mar  3 01:27:25 2013	(r313313)
@@ -0,0 +1,2 @@
+SHA256 (rubygem/blockenspiel-0.4.5.gem) = 321f1fc89fbf2e7efb840bbb662a1ade5245c08ec07f066fc7e31a9ae56aa53f
+SIZE (rubygem/blockenspiel-0.4.5.gem) = 50688

Added: head/devel/rubygem-blockenspiel/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-blockenspiel/pkg-descr	Sun Mar  3 01:27:25 2013	(r313313)
@@ -0,0 +1,6 @@
+Blockenspiel is a helper library designed to make it easy to implement DSL
+blocks. It is designed to be comprehensive and robust, supporting most common
+usage patterns, and working correctly in the presence of nested blocks and
+multithreading.
+
+WWW: http://dazuma.github.com/blockenspiel/


More information about the svn-ports-all mailing list