svn commit: r331070 - in head/devel: . rubygem-ref
Steve Wills
swills at FreeBSD.org
Sun Oct 20 23:13:59 UTC 2013
Author: swills
Date: Sun Oct 20 23:13:58 2013
New Revision: 331070
URL: http://svnweb.freebsd.org/changeset/ports/331070
Log:
Library that implements weak, soft, and strong references in Ruby that
work across multiple runtimes (MRI, REE, YARV, Jruby, Rubinius, and
IronRuby). Also includes implementation of maps/hashes that use references
and a reference queue.
WWW: http://github.com/bdurand/ref
PR: ports/182695
Submitted by: Loic Blot <loic.blot at unix-experience.fr>
Added:
head/devel/rubygem-ref/
head/devel/rubygem-ref/Makefile (contents, props changed)
head/devel/rubygem-ref/distinfo (contents, props changed)
head/devel/rubygem-ref/pkg-descr (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Sun Oct 20 22:55:19 2013 (r331069)
+++ head/devel/Makefile Sun Oct 20 23:13:58 2013 (r331070)
@@ -4190,6 +4190,7 @@
SUBDIR += rubygem-rcov
SUBDIR += rubygem-rdoc
SUBDIR += rubygem-redmine_plugin_support
+ SUBDIR += rubygem-ref
SUBDIR += rubygem-require_all
SUBDIR += rubygem-rgl
SUBDIR += rubygem-ripper
Added: head/devel/rubygem-ref/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/rubygem-ref/Makefile Sun Oct 20 23:13:58 2013 (r331070)
@@ -0,0 +1,17 @@
+# $FreeBSD$
+
+PORTNAME= ref
+PORTVERSION= 1.0.5
+CATEGORIES= devel rubygems
+MASTER_SITES= RG
+
+MAINTAINER= ruby at FreeBSD.org
+COMMENT= Library with refs across runtimes (MRI, REE, YARV, ...)
+
+USE_RUBY= yes
+USE_RUBYGEMS= yes
+RUBYGEM_AUTOPLIST= yes
+
+NO_STAGE= yes
+
+.include <bsd.port.mk>
Added: head/devel/rubygem-ref/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/rubygem-ref/distinfo Sun Oct 20 23:13:58 2013 (r331070)
@@ -0,0 +1,2 @@
+SHA256 (rubygem/ref-1.0.5.gem) = 8a8ec8f40f1e622c4324055d85300e03d9a78a9faf476ea0d382f1af9dbe0fa7
+SIZE (rubygem/ref-1.0.5.gem) = 27136
Added: head/devel/rubygem-ref/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/rubygem-ref/pkg-descr Sun Oct 20 23:13:58 2013 (r331070)
@@ -0,0 +1,6 @@
+Library that implements weak, soft, and strong references in Ruby that
+work across multiple runtimes (MRI, REE, YARV, Jruby, Rubinius, and
+IronRuby). Also includes implementation of maps/hashes that use references
+and a reference queue.
+
+WWW: http://github.com/bdurand/ref
More information about the svn-ports-all
mailing list