Fix: Patch attached with submission follows:
Responsible Changed From-To: freebsd-ports-bugs->swills swills@ wants this submitter's PRs (via the GNATS Auto Assign Tool)
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@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 _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed New port added. Thanks!