Bug 188200 - [NEW PORT] devel/rubygem-fast_gettext
Summary: [NEW PORT] devel/rubygem-fast_gettext
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Steve Wills
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-04-02 19:00 UTC by Michael Moll
Modified: 2014-04-04 07:50 UTC (History)
0 users

See Also:


Attachments
file.shar (1.60 KB, text/plain)
2014-04-02 19:00 UTC, Michael Moll
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Michael Moll freebsd_committer freebsd_triage 2014-04-02 19:00:01 UTC

Fix: Patch attached with submission follows:
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2014-04-02 19:00:06 UTC
Responsible Changed
From-To: freebsd-ports-bugs->swills

swills@ wants this submitter's PRs (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2014-04-04 07:44:58 UTC
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"
Comment 3 Steve Wills freebsd_committer freebsd_triage 2014-04-04 07:45:17 UTC
State Changed
From-To: open->closed

New port added. Thanks!