From 66592309e518e52997862d1aba1399dfdcf2ffbc Mon Sep 17 00:00:00 2001 From: taca Date: Sun, 4 Oct 2015 13:49:30 +0000 Subject: Update ruby-http to 0.9.8. ## 0.9.8 (2015-09-29) * [#260](https://github.com/httprb/http/pull/258): Fixed global timeout persisting time left across requests when reusing connections. ([@zanker][]) ## 0.9.7 (2015-09-19) * [#258](https://github.com/httprb/http/pull/258): Unified strategy for handling exception-based and exceptionless non-blocking I/O. Fixes SSL support on JRuby 9000. ([@tarcieri][]) ## 0.9.6 (2015-09-06) * [#254](https://github.com/httprb/http/pull/254): Removed use of an ActiveSupport specific method #present? ([@tarcieri][]) ## 0.9.5 (2015-09-06) * [#252](https://github.com/httprb/http/pull/252): Fixed infinite hang/timeout when a request contained more than ~16,363 bytes. ([@zanker][]) ## 0.9.4 (2015-08-26) * Fixes regression when body streaming was failing on some URIs. See #246. (@zanker) * Fixes require timeout statements. See #243. (@ixti) ## 0.9.3 (2015-08-19) * Fixed request URI normalization. See #246. (@ixti) - Avoids query component normalization - Omits fragment component in headline ## 0.9.2 (2015-08-18) * Fixed exceptionless NIO EOF handling. (@zanker) ## 0.9.1 (2015-08-14) * Fix params special-chars escaping. See #246. (@ixti) ## 0.9.0 (2015-07-23) * Support for caching removed. See #240. (@tarcieri) * JRuby 9000 compatibility --- www/ruby-http/Makefile | 4 ++-- www/ruby-http/PLIST | 16 ++-------------- www/ruby-http/distinfo | 8 ++++---- 3 files changed, 8 insertions(+), 20 deletions(-) (limited to 'www/ruby-http') diff --git a/www/ruby-http/Makefile b/www/ruby-http/Makefile index ac2c79cca36..cba4bd8fd2a 100644 --- a/www/ruby-http/Makefile +++ b/www/ruby-http/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.6 2015/06/11 16:51:04 taca Exp $ +# $NetBSD: Makefile,v 1.7 2015/10/04 13:49:30 taca Exp $ # -DISTNAME= http-0.8.12 +DISTNAME= http-0.9.8 CATEGORIES= www MAINTAINER= tsutsui@NetBSD.org diff --git a/www/ruby-http/PLIST b/www/ruby-http/PLIST index 70da3b3675a..273e84c0a33 100644 --- a/www/ruby-http/PLIST +++ b/www/ruby-http/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.6 2015/06/11 16:51:04 taca Exp $ +@comment $NetBSD: PLIST,v 1.7 2015/10/04 13:49:30 taca Exp $ ${GEM_HOME}/cache/${GEM_NAME}.gem ${GEM_LIBDIR}/.coveralls.yml ${GEM_LIBDIR}/.gitignore @@ -16,9 +16,6 @@ ${GEM_LIBDIR}/Rakefile ${GEM_LIBDIR}/examples/parallel_requests_with_celluloid.rb ${GEM_LIBDIR}/http.gemspec ${GEM_LIBDIR}/lib/http.rb -${GEM_LIBDIR}/lib/http/cache.rb -${GEM_LIBDIR}/lib/http/cache/headers.rb -${GEM_LIBDIR}/lib/http/cache/null_cache.rb ${GEM_LIBDIR}/lib/http/chainable.rb ${GEM_LIBDIR}/lib/http/client.rb ${GEM_LIBDIR}/lib/http/connection.rb @@ -33,24 +30,18 @@ ${GEM_LIBDIR}/lib/http/mime_type/json.rb ${GEM_LIBDIR}/lib/http/options.rb ${GEM_LIBDIR}/lib/http/redirector.rb ${GEM_LIBDIR}/lib/http/request.rb -${GEM_LIBDIR}/lib/http/request/caching.rb ${GEM_LIBDIR}/lib/http/request/writer.rb ${GEM_LIBDIR}/lib/http/response.rb ${GEM_LIBDIR}/lib/http/response/body.rb -${GEM_LIBDIR}/lib/http/response/caching.rb -${GEM_LIBDIR}/lib/http/response/io_body.rb ${GEM_LIBDIR}/lib/http/response/parser.rb ${GEM_LIBDIR}/lib/http/response/status.rb ${GEM_LIBDIR}/lib/http/response/status/reasons.rb -${GEM_LIBDIR}/lib/http/response/string_body.rb ${GEM_LIBDIR}/lib/http/timeout/global.rb ${GEM_LIBDIR}/lib/http/timeout/null.rb ${GEM_LIBDIR}/lib/http/timeout/per_operation.rb ${GEM_LIBDIR}/lib/http/uri.rb ${GEM_LIBDIR}/lib/http/version.rb ${GEM_LIBDIR}/logo.png -${GEM_LIBDIR}/spec/lib/http/cache/headers_spec.rb -${GEM_LIBDIR}/spec/lib/http/cache_spec.rb ${GEM_LIBDIR}/spec/lib/http/client_spec.rb ${GEM_LIBDIR}/spec/lib/http/content_type_spec.rb ${GEM_LIBDIR}/spec/lib/http/headers/mixin_spec.rb @@ -64,16 +55,13 @@ ${GEM_LIBDIR}/spec/lib/http/options/new_spec.rb ${GEM_LIBDIR}/spec/lib/http/options/proxy_spec.rb ${GEM_LIBDIR}/spec/lib/http/options_spec.rb ${GEM_LIBDIR}/spec/lib/http/redirector_spec.rb -${GEM_LIBDIR}/spec/lib/http/request/caching_spec.rb ${GEM_LIBDIR}/spec/lib/http/request/writer_spec.rb ${GEM_LIBDIR}/spec/lib/http/request_spec.rb ${GEM_LIBDIR}/spec/lib/http/response/body_spec.rb -${GEM_LIBDIR}/spec/lib/http/response/caching_spec.rb -${GEM_LIBDIR}/spec/lib/http/response/io_body_spec.rb ${GEM_LIBDIR}/spec/lib/http/response/status_spec.rb -${GEM_LIBDIR}/spec/lib/http/response/string_body_spec.rb ${GEM_LIBDIR}/spec/lib/http/response_spec.rb ${GEM_LIBDIR}/spec/lib/http_spec.rb +${GEM_LIBDIR}/spec/regression_specs.rb ${GEM_LIBDIR}/spec/spec_helper.rb ${GEM_LIBDIR}/spec/support/black_hole.rb ${GEM_LIBDIR}/spec/support/capture_warning.rb diff --git a/www/ruby-http/distinfo b/www/ruby-http/distinfo index 93b5e6f5f6a..2513dc580d4 100644 --- a/www/ruby-http/distinfo +++ b/www/ruby-http/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.6 2015/06/11 16:51:04 taca Exp $ +$NetBSD: distinfo,v 1.7 2015/10/04 13:49:30 taca Exp $ -SHA1 (http-0.8.12.gem) = 6b8b3776c1810af96ce390335fbdeffa48e9e607 -RMD160 (http-0.8.12.gem) = ce779fd49826f43725d5a5481e0a282ccf35f3ea -Size (http-0.8.12.gem) = 71168 bytes +SHA1 (http-0.9.8.gem) = a0de8b20e9801926dc25f40dffe5108be322c3e8 +RMD160 (http-0.9.8.gem) = 5b6b7ebe1a168c2402112c2ed6d62b1996dded41 +Size (http-0.9.8.gem) = 66560 bytes -- cgit v1.2.3