Bug 172117 - [NEW PORT] www/rubygem-async_sinatra - Async plugin to Sinatra
Summary: [NEW PORT] www/rubygem-async_sinatra - Async plugin to Sinatra
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: freebsd-ruby (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-09-27 18:00 UTC by kimor79
Modified: 2013-01-23 02:50 UTC (History)
0 users

See Also:


Attachments
file.shar (1.87 KB, text/plain)
2012-09-27 18:00 UTC, kimor79
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description kimor79 2012-09-27 18:00:17 UTC
New port for async_sinatra ruby gem.

Fix: Patch attached with submission follows:
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2012-09-27 18:00:37 UTC
Responsible Changed
From-To: freebsd-ports-bugs->ruby

ruby@ wants this port PRs (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2013-01-23 02:43:25 UTC
Author: swills
Date: Wed Jan 23 02:43:16 2013
New Revision: 310849
URL: http://svnweb.freebsd.org/changeset/ports/310849

Log:
  Add rubygem-async_sinatra 1.0.0, a Sinatra plugin to provide async
  responses.
  
  PR:		ports/172117
  Submitted by:	Kimo <kimor79@yahoo.com>

Added:
  head/www/rubygem-async_sinatra/
  head/www/rubygem-async_sinatra/Makefile   (contents, props changed)
  head/www/rubygem-async_sinatra/distinfo   (contents, props changed)
  head/www/rubygem-async_sinatra/pkg-descr   (contents, props changed)
Modified:
  head/www/Makefile

Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile	Wed Jan 23 02:33:20 2013	(r310848)
+++ head/www/Makefile	Wed Jan 23 02:43:16 2013	(r310849)
@@ -1694,6 +1694,7 @@
     SUBDIR += rubygem-addressable
     SUBDIR += rubygem-amazon-ecs
     SUBDIR += rubygem-anemone
+    SUBDIR += rubygem-async_sinatra
     SUBDIR += rubygem-bluecloth
     SUBDIR += rubygem-cgi_multipart_eof_fix
     SUBDIR += rubygem-chef-server-api

Added: head/www/rubygem-async_sinatra/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/rubygem-async_sinatra/Makefile	Wed Jan 23 02:43:16 2013	(r310849)
@@ -0,0 +1,19 @@
+# Created by: Kimo <kimor79@yahoo.com>
+# $FreeBSD$
+
+PORTNAME=	async_sinatra
+PORTVERSION=	1.0.0
+CATEGORIES=	www rubygems
+MASTER_SITES=	RG
+
+MAINTAINER=	ruby@FreeBSD.org
+COMMENT=	A Sinatra plugin to provide async responses
+
+RUN_DEPENDS=	rubygem-rack>=1.4.1:${PORTSDIR}/www/rubygem-rack \
+		rubygem-sinatra>=1.3.2:${PORTSDIR}/www/rubygem-sinatra
+
+USE_RUBY=	yes
+USE_RUBYGEMS=	yes
+RUBYGEM_AUTOPLIST=	yes
+
+.include <bsd.port.mk>

Added: head/www/rubygem-async_sinatra/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/rubygem-async_sinatra/distinfo	Wed Jan 23 02:43:16 2013	(r310849)
@@ -0,0 +1,2 @@
+SHA256 (rubygem/async_sinatra-1.0.0.gem) = 2ae0d764f2edff215a4b8cf289422da0eaf82ee99ab070892273a2a81d4ed10b
+SIZE (rubygem/async_sinatra-1.0.0.gem) = 10752

Added: head/www/rubygem-async_sinatra/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/rubygem-async_sinatra/pkg-descr	Wed Jan 23 02:43:16 2013	(r310849)
@@ -0,0 +1,7 @@
+A Sinatra plugin to provide convenience whilst performing asynchronous
+responses inside of the Sinatra framework running under async webservers. To
+properly utilise this package, some knowledge of EventMachine and/or
+asynchronous patterns is recommended. Currently, supporting servers include
+Thin, Rainbows, Zbatery.
+
+WWW: http://github.com/raggi/async_sinatra
_______________________________________________
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 2013-01-23 02:43:45 UTC
State Changed
From-To: open->closed

New port added, with minor changes. Thanks!