svn commit: r418251 - in head/devel: . rubygem-hamster

TAKATSU Tomonari tota at FreeBSD.org
Sat Jul 9 00:10:56 UTC 2016


Author: tota
Date: Sat Jul  9 00:10:54 2016
New Revision: 418251
URL: https://svnweb.freebsd.org/changeset/ports/418251

Log:
  - Add new port: devel/rubygem-hamster
  
    Efficient, immutable, and thread-safe collection classes for Ruby.
  
    Hamster provides 6 Persistent Data Structures: Hash, Vector, Set,
    SortedSet, List, and Deque (which works as an immutable queue or
    stack).
  
    WWW: http://rubygems.org/gems/hamster

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sat Jul  9 00:00:18 2016	(r418250)
+++ head/devel/Makefile	Sat Jul  9 00:10:54 2016	(r418251)
@@ -4948,6 +4948,7 @@
     SUBDIR += rubygem-grit
     SUBDIR += rubygem-guess_html_encoding
     SUBDIR += rubygem-gyoku
+    SUBDIR += rubygem-hamster
     SUBDIR += rubygem-hashdiff
     SUBDIR += rubygem-hashery
     SUBDIR += rubygem-hashie

Added: head/devel/rubygem-hamster/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-hamster/Makefile	Sat Jul  9 00:10:54 2016	(r418251)
@@ -0,0 +1,20 @@
+# Created by: TAKATSU Tomonari <tota at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	hamster
+PORTVERSION=	3.0.0
+CATEGORIES=	devel rubygems
+MASTER_SITES=	RG
+
+MAINTAINER=	ruby at FreeBSD.org
+COMMENT=	Efficient, immutable, thread-safe collection classes for Ruby
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+RUN_DEPENDS=	rubygem-concurrent-ruby>=1.0:devel/rubygem-concurrent-ruby
+
+USE_RUBY=	yes
+USES=		gem
+
+.include <bsd.port.mk>

Added: head/devel/rubygem-hamster/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-hamster/distinfo	Sat Jul  9 00:10:54 2016	(r418251)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1467976660
+SHA256 (rubygem/hamster-3.0.0.gem) = 5951e3a3ffd15ba854a976ac36ebae9469966f726034ffed0dccdb6d12d434d8
+SIZE (rubygem/hamster-3.0.0.gem) = 129024

Added: head/devel/rubygem-hamster/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-hamster/pkg-descr	Sat Jul  9 00:10:54 2016	(r418251)
@@ -0,0 +1,7 @@
+Efficient, immutable, and thread-safe collection classes for Ruby.
+
+Hamster provides 6 Persistent Data Structures: Hash, Vector, Set,
+SortedSet, List, and Deque (which works as an immutable queue or
+stack).
+
+WWW: http://rubygems.org/gems/hamster


More information about the svn-ports-all mailing list