From owner-svn-ports-head@FreeBSD.ORG Wed Jan 21 02:47:54 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 17E5C5C5; Wed, 21 Jan 2015 02:47:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 EEA6434D; Wed, 21 Jan 2015 02:47:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t0L2lrFO097396; Wed, 21 Jan 2015 02:47:53 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t0L2lqC2097392; Wed, 21 Jan 2015 02:47:52 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201501210247.t0L2lqC2097392@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 21 Jan 2015 02:47:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r377567 - in head/www: . rubygem-net-http-pipeline X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2015 02:47:54 -0000 Author: amdmi3 Date: Wed Jan 21 02:47:52 2015 New Revision: 377567 URL: https://svnweb.freebsd.org/changeset/ports/377567 QAT: https://qat.redports.org/buildarchive/r377567/ Log: - Add www/rubygem-net-http-pipeline An HTTP/1.1 pipelining implementation atop Net::HTTP. A pipelined connection sends multiple requests to the HTTP server without waiting for the responses. The server will respond in-order. WWW: http://docs.seattlerb.org/net-http-pipeline/ Added: head/www/rubygem-net-http-pipeline/ head/www/rubygem-net-http-pipeline/Makefile (contents, props changed) head/www/rubygem-net-http-pipeline/distinfo (contents, props changed) head/www/rubygem-net-http-pipeline/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Wed Jan 21 02:42:41 2015 (r377566) +++ head/www/Makefile Wed Jan 21 02:47:52 2015 (r377567) @@ -1859,6 +1859,7 @@ SUBDIR += rubygem-net-http-digest_auth11 SUBDIR += rubygem-net-http-persistent SUBDIR += rubygem-net-http-persistent25 + SUBDIR += rubygem-net-http-pipeline SUBDIR += rubygem-nicovideo SUBDIR += rubygem-ntlm-http SUBDIR += rubygem-pagerduty Added: head/www/rubygem-net-http-pipeline/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-net-http-pipeline/Makefile Wed Jan 21 02:47:52 2015 (r377567) @@ -0,0 +1,18 @@ +# Created by: Dmitry Marakasov +# $FreeBSD$ + +PORTNAME= net-http-pipeline +PORTVERSION= 1.0.1 +CATEGORIES= www net rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= HTTP/1.1 pipelining implementation atop Net::HTTP + +LICENSE= MIT + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/www/rubygem-net-http-pipeline/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-net-http-pipeline/distinfo Wed Jan 21 02:47:52 2015 (r377567) @@ -0,0 +1,2 @@ +SHA256 (rubygem/net-http-pipeline-1.0.1.gem) = 6923ce2f28bfde589a9f385e999395eead48ccfe4376d4a85d9a77e8c7f0b22f +SIZE (rubygem/net-http-pipeline-1.0.1.gem) = 12800 Added: head/www/rubygem-net-http-pipeline/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-net-http-pipeline/pkg-descr Wed Jan 21 02:47:52 2015 (r377567) @@ -0,0 +1,5 @@ +An HTTP/1.1 pipelining implementation atop Net::HTTP. A pipelined +connection sends multiple requests to the HTTP server without waiting +for the responses. The server will respond in-order. + +WWW: http://docs.seattlerb.org/net-http-pipeline/