diff options
author | taca <taca> | 2012-04-29 16:05:42 +0000 |
---|---|---|
committer | taca <taca> | 2012-04-29 16:05:42 +0000 |
commit | 3416160129118b7378b63fc152ab54d46f0a5727 (patch) | |
tree | 7376f759dfdf4c9c82f624f89015f8d904fba311 /www/ruby-unicorn/Makefile | |
parent | 188b9db9819dbd9990b08738a8d009e192e62e01 (diff) | |
download | pkgsrc-3416160129118b7378b63fc152ab54d46f0a5727.tar.gz |
Update ruby-unicorn to 4.3.1.
=== unicorn 4.3.1 - shutdown() fixes / 2012-04-29 07:04 UTC
* Call shutdown(2) if a client EOFs on us during upload.
We can avoid holding a socket open if the Rack app forked a
process during uploads.
* ignore potential Errno::ENOTCONN errors (from shutdown(2)).
Even on LANs, connections can occasionally be accept()-ed but
be unusable afterwards.
Thanks to Joel Nimety <jnimety@continuity.net>,
Matt Smith <matt@nearapogee.com> and George <lists@southernohio.net>
on the mongrel-unicorn@rubyforge.org mailing list for their
feedback and testing for this release.
=== unicorn 4.3.0 - minor fixes and updates / 2012-04-17 21:51 UTC
* PATH_INFO (aka REQUEST_PATH) increased to 4096 (from 1024).
This allows requests with longer path components and matches
the system PATH_MAX value common to GNU/Linux systems for
serving filesystem components with long names.
* Apps that fork() (but do not exec()) internally for background
tasks now indicate the end-of-request immediately after
writing the Rack response.
Thanks to Hongli Lai, Lawrence Pit, Patrick Wenger and Nuo Yan
for their valuable feedback for this release.
=== unicorn 4.2.1 - minor fix and doc updates / 2012-03-26 21:39 UTC
* Stale pid files are detected if a pid is recycled by processes
belonging to another user, thanks to Graham Bleach.
* nginx example config updates thanks to to Eike Herzbach.
* KNOWN_ISSUES now documents issues with apps/libs that install
conflicting signal handlers.
Diffstat (limited to 'www/ruby-unicorn/Makefile')
-rw-r--r-- | www/ruby-unicorn/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/www/ruby-unicorn/Makefile b/www/ruby-unicorn/Makefile index 80e15541cb5..f83ed7a03c0 100644 --- a/www/ruby-unicorn/Makefile +++ b/www/ruby-unicorn/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.1.1.1 2012/02/06 12:40:36 fhajny Exp $ +# $NetBSD: Makefile,v 1.2 2012/04/29 16:05:42 taca Exp $ -DISTNAME= unicorn-4.2.0 +DISTNAME= unicorn-4.3.1 CATEGORIES= www MAINTAINER= pkgsrc@NetBSD.org @@ -9,9 +9,10 @@ COMMENT= Rack HTTP server for fast clients and Unix LICENSE= ruby-license OR gnu-gpl-v2 OR gnu-gpl-v3 CONFLICTS= ruby[1-9][0-9]-unicorn-[0-9]* -DEPENDS+= ${RUBY_PKGPREFIX}-kgio>=2.6:../../devel/ruby-kgio + +DEPENDS+= ${RUBY_PKGPREFIX}-kgio>=2.6<3:../../devel/ruby-kgio DEPENDS+= ${RUBY_PKGPREFIX}-rack-[0-9]*:../../www/ruby-rack -DEPENDS+= ${RUBY_PKGPREFIX}-raindrops>=0.7:../../www/ruby-raindrops +DEPENDS+= ${RUBY_PKGPREFIX}-raindrops>=0.7<1:../../www/ruby-raindrops .include "../../lang/ruby/gem.mk" .include "../../mk/bsd.pkg.mk" |