svn commit: r365389 - in head/devel: . rubygem-memoize
Steve Wills
swills at FreeBSD.org
Tue Aug 19 15:08:04 UTC 2014
Author: swills
Date: Tue Aug 19 15:08:03 2014
New Revision: 365389
URL: http://svnweb.freebsd.org/changeset/ports/365389
QAT: https://qat.redports.org/buildarchive/r365389/
Log:
devel/rubygem-memoize: add port for rubygem-memoize
The memoize library allows you to cache methods for faster lookup. Cached
results can either be stored in memory (the default) or to a file.
WWW: http://github.com/djberg96/memoize
Added:
head/devel/rubygem-memoize/
head/devel/rubygem-memoize/Makefile (contents, props changed)
head/devel/rubygem-memoize/distinfo (contents, props changed)
head/devel/rubygem-memoize/pkg-descr (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Tue Aug 19 15:07:19 2014 (r365388)
+++ head/devel/Makefile Tue Aug 19 15:08:03 2014 (r365389)
@@ -4388,6 +4388,7 @@
SUBDIR += rubygem-map
SUBDIR += rubygem-mash
SUBDIR += rubygem-memoizable
+ SUBDIR += rubygem-memoize
SUBDIR += rubygem-mercenary
SUBDIR += rubygem-metaclass
SUBDIR += rubygem-metaid
Added: head/devel/rubygem-memoize/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/rubygem-memoize/Makefile Tue Aug 19 15:08:03 2014 (r365389)
@@ -0,0 +1,18 @@
+# Created by: Steve Wills <swills at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME= memoize
+PORTVERSION= 1.3.1
+CATEGORIES= devel rubygems
+MASTER_SITES= RG
+
+MAINTAINER= ruby at FreeBSD.org
+COMMENT= Speeds up methods at the cost of memory (or disk space)
+
+RUN_DEPENDS= rubygem-test-unit>=2.0.2:${PORTSDIR}/devel/rubygem-test-unit
+
+USE_RUBY= yes
+USE_RUBYGEMS= yes
+RUBYGEM_AUTOPLIST=yes
+
+.include <bsd.port.mk>
Added: head/devel/rubygem-memoize/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/rubygem-memoize/distinfo Tue Aug 19 15:08:03 2014 (r365389)
@@ -0,0 +1,2 @@
+SHA256 (rubygem/memoize-1.3.1.gem) = 4ab7f06f3b5b106509d2150b0948d06fd0c92962bc74a385b9627ef22bc2b21f
+SIZE (rubygem/memoize-1.3.1.gem) = 7680
Added: head/devel/rubygem-memoize/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/rubygem-memoize/pkg-descr Tue Aug 19 15:08:03 2014 (r365389)
@@ -0,0 +1,4 @@
+The memoize library allows you to cache methods for faster lookup. Cached
+results can either be stored in memory (the default) or to a file.
+
+WWW: http://github.com/djberg96/memoize
More information about the svn-ports-head
mailing list