svn commit: r350060 - in head/devel: . rubygem-fast_gettext
Steve Wills
swills at FreeBSD.org
Fri Apr 4 06:44:56 UTC 2014
Author: swills
Date: Fri Apr 4 06:44:55 2014
New Revision: 350060
URL: http://svnweb.freebsd.org/changeset/ports/350060
QAT: https://qat.redports.org/buildarchive/r350060/
Log:
A simple, fast, memory-efficient and threadsafe implementation of GetText
for Ruby that supports multiple backends and can easily be extended.
WWW: https://github.com/grosser/fast_gettext
PR: ports/188200
Submitted by: Michael Moll <kvedulv at kvedulv.de>
Added:
head/devel/rubygem-fast_gettext/
head/devel/rubygem-fast_gettext/Makefile (contents, props changed)
head/devel/rubygem-fast_gettext/distinfo (contents, props changed)
head/devel/rubygem-fast_gettext/pkg-descr (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Fri Apr 4 06:09:52 2014 (r350059)
+++ head/devel/Makefile Fri Apr 4 06:44:55 2014 (r350060)
@@ -4205,6 +4205,7 @@
SUBDIR += rubygem-extlib
SUBDIR += rubygem-facets
SUBDIR += rubygem-fast-stemmer
+ SUBDIR += rubygem-fast_gettext
SUBDIR += rubygem-fastercsv
SUBDIR += rubygem-fastri
SUBDIR += rubygem-fastthread
Added: head/devel/rubygem-fast_gettext/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/rubygem-fast_gettext/Makefile Fri Apr 4 06:44:55 2014 (r350060)
@@ -0,0 +1,18 @@
+# Created by: Michael Moll <kvedulv at kvedulv.de>
+# $FreeBSD$
+
+PORTNAME= fast_gettext
+PORTVERSION= 0.8.1
+CATEGORIES= devel rubygems
+MASTER_SITES= RG
+
+MAINTAINER= ruby at FreeBSD.org
+COMMENT= Fast, memory-efficient and threadsafe GetText for Ruby
+
+LICENSE= MIT
+
+USE_RUBY= yes
+USE_RUBYGEMS= yes
+RUBYGEM_AUTOPLIST= yes
+
+.include <bsd.port.mk>
Added: head/devel/rubygem-fast_gettext/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/rubygem-fast_gettext/distinfo Fri Apr 4 06:44:55 2014 (r350060)
@@ -0,0 +1,2 @@
+SHA256 (rubygem/fast_gettext-0.8.1.gem) = 85b78738c05af23cdfc75c64e3dcf2a1a6966536723aad5c8619f05cd8ba15e5
+SIZE (rubygem/fast_gettext-0.8.1.gem) = 89600
Added: head/devel/rubygem-fast_gettext/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/rubygem-fast_gettext/pkg-descr Fri Apr 4 06:44:55 2014 (r350060)
@@ -0,0 +1,4 @@
+A simple, fast, memory-efficient and threadsafe implementation of GetText
+for Ruby that supports multiple backends and can easily be extended.
+
+WWW: https://github.com/grosser/fast_gettext
More information about the svn-ports-all
mailing list