Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 4 Apr 2014 06:44:55 +0000 (UTC)
From:      Steve Wills <swills@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r350060 - in head/devel: . rubygem-fast_gettext
Message-ID:  <201404040644.s346itO5033165@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201404040644.s346itO5033165>