From owner-svn-ports-all@freebsd.org Fri Apr 14 12:18:19 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D7DE4D3D46F; Fri, 14 Apr 2017 12:18:19 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 98EE47A8; Fri, 14 Apr 2017 12:18:19 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v3ECIIRY011470; Fri, 14 Apr 2017 12:18:18 GMT (envelope-from jrm@FreeBSD.org) Received: (from jrm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v3ECII2R011466; Fri, 14 Apr 2017 12:18:18 GMT (envelope-from jrm@FreeBSD.org) Message-Id: <201704141218.v3ECII2R011466@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jrm set sender to jrm@FreeBSD.org using -f From: Joseph Mingrone Date: Fri, 14 Apr 2017 12:18:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r438505 - in head/www: . rubygem-rack-timeout X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Apr 2017 12:18:19 -0000 Author: jrm Date: Fri Apr 14 12:18:18 2017 New Revision: 438505 URL: https://svnweb.freebsd.org/changeset/ports/438505 Log: New port, www/rubygem-rack-timeout: Abort requests that are taking too long Adding www/rubygem-rack-timeout, because it is a dependency of the upcoming www/mastodon port. WWW: http://github.com/heroku/rack-timeout/ Approved by: swills (mentor, implicit) Added: head/www/rubygem-rack-timeout/ head/www/rubygem-rack-timeout/Makefile (contents, props changed) head/www/rubygem-rack-timeout/distinfo (contents, props changed) head/www/rubygem-rack-timeout/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Fri Apr 14 12:04:08 2017 (r438504) +++ head/www/Makefile Fri Apr 14 12:18:18 2017 (r438505) @@ -2060,6 +2060,7 @@ SUBDIR += rubygem-rack-proxy SUBDIR += rubygem-rack-ssl SUBDIR += rubygem-rack-test + SUBDIR += rubygem-rack-timeout SUBDIR += rubygem-rack15 SUBDIR += rubygem-rack16 SUBDIR += rubygem-rails4 Added: head/www/rubygem-rack-timeout/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-rack-timeout/Makefile Fri Apr 14 12:18:18 2017 (r438505) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= rack-timeout +PORTVERSION= 0.4.2 +CATEGORIES= www rubygems +MASTER_SITES= RG + +MAINTAINER= jrm@FreeBSD.org +COMMENT= Abort requests that are taking too long + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/MIT-LICENSE + +NO_ARCH= yes + +USE_RUBY= yes +USES= gem + +.include Added: head/www/rubygem-rack-timeout/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-rack-timeout/distinfo Fri Apr 14 12:18:18 2017 (r438505) @@ -0,0 +1,3 @@ +TIMESTAMP = 1492171633 +SHA256 (rubygem/rack-timeout-0.4.2.gem) = b6268bba8794c702b024f835a0e1854a67d7e75cbd5323d982185fdd3fa2a153 +SIZE (rubygem/rack-timeout-0.4.2.gem) = 22016 Added: head/www/rubygem-rack-timeout/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-rack-timeout/pkg-descr Fri Apr 14 12:18:18 2017 (r438505) @@ -0,0 +1,9 @@ +Rack::Timeout is middleware, which aborts requests that have been running for +longer than a specified timeout. + +Rack::Timeout is not a solution to the problem of long-running requests, it is a +debug and remediation tool. Developers should track rack-timeout's data and +address recurring instances of particular timeouts, for example, by refactoring +code so it runs faster or offsetting lengthy work to happen asynchronously. + +WWW: http://github.com/heroku/rack-timeout/