summaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authortaca <taca@pkgsrc.org>2015-02-05 15:36:01 +0000
committertaca <taca@pkgsrc.org>2015-02-05 15:36:01 +0000
commit582b418140eccf980052a55343da7d3a8b8949c7 (patch)
treeb3818b4eca76fb3b34d9e3c9e21580a340216ca3 /www
parent4a672b18bde00b60abc72ea8630f381e3dadf56f (diff)
downloadpkgsrc-582b418140eccf980052a55343da7d3a8b8949c7.tar.gz
Update ruby-http to 0.7.1.
## 0.7.1 (2015-01-03) * Gemspec fixups * Remove superfluous space in HTTP::Response inspection ## 0.7.0 (2015-01-02) * Fix handling of EOF which caused infinite loop. See #163, #166 and #152. (@mickm, @ixti) * Drop Ruby 1.8.7 support. (@ixti) * Fix default Host header value. See #150. (@ixti) * Remove BearerToken authorization header. (@ixti) * `#auth` sugar now accepts only string value of Authorization header. Calling `#auth(:basic, opts)` is deprecated, use `#basic_auth(opts)` instead. (@ixti) * Fix handling of chunked responses without Content-Length header. (@ixti) * Remove `HTTP::Request#method` and deprecate `HTTP::Request#__method__` (@sferik) * Deprecate `HTTP::Response::STATUS_CODES`, use `HTTP::Response::Status::REASONS` instead (@ixti) * Deprecate `HTTP::Response::SYMBOL_TO_STATUS_CODE` (@ixti) * Deprecate `HTTP::Response#status_code` (@ixti) * `HTTP::Response#status` now returns `HTTP::Response::Status`. (@ixti) * `HTTP::Response#reason` and `HTTP::Response#code` are proxies them to corresponding methods of `HTTP::Response#status` (@ixti) * Rename `HTTP.with_follow` to `HTTP.follow` and mark former one as being deprecated (@ixti) * Delegate `HTTP::Response#readpartial` to `HTTP::Response::Body` (@ixti) ## 0.6.3 (2014-11-14) * Backported EOF fix from master branch. See #166. (@ixti) ## 0.6.2 (2014-08-06) * Fix default Host header value. See #150. (@ixti) * Deprecate BearerToken authorization header. (@ixti) * Fix handling of chunked responses without Content-Length header. (@ixti) * Rename `HTTP.with_follow` to `HTTP.follow` and mark former one as being deprecated (@ixti)
Diffstat (limited to 'www')
-rw-r--r--www/ruby-http/Makefile5
-rw-r--r--www/ruby-http/PLIST55
-rw-r--r--www/ruby-http/distinfo8
3 files changed, 32 insertions, 36 deletions
diff --git a/www/ruby-http/Makefile b/www/ruby-http/Makefile
index ec5374302c1..4ed48c220a9 100644
--- a/www/ruby-http/Makefile
+++ b/www/ruby-http/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.2 2014/06/01 16:36:48 tsutsui Exp $
+# $NetBSD: Makefile,v 1.3 2015/02/05 15:36:01 taca Exp $
#
-DISTNAME= http-0.6.1
+DISTNAME= http-0.7.1
CATEGORIES= www
MAINTAINER= tsutsui@NetBSD.org
@@ -11,6 +11,7 @@ LICENSE= mit
DEPENDS+= ${RUBY_PKGPREFIX}-http_parser.rb>=0.6.0:../../www/ruby-http_parser.rb
+RUBY_VERSION_SUPPORTED= 200 193 21
USE_LANGUAGES= # none
.include "../../lang/ruby/gem.mk"
diff --git a/www/ruby-http/PLIST b/www/ruby-http/PLIST
index 8b800b40f5c..04d4ba8840f 100644
--- a/www/ruby-http/PLIST
+++ b/www/ruby-http/PLIST
@@ -1,10 +1,11 @@
-@comment $NetBSD: PLIST,v 1.3 2014/06/01 16:43:37 tsutsui Exp $
+@comment $NetBSD: PLIST,v 1.4 2015/02/05 15:36:01 taca Exp $
${GEM_HOME}/cache/${GEM_NAME}.gem
${GEM_LIBDIR}/.coveralls.yml
${GEM_LIBDIR}/.gitignore
${GEM_LIBDIR}/.rspec
${GEM_LIBDIR}/.rubocop.yml
${GEM_LIBDIR}/.travis.yml
+${GEM_LIBDIR}/.yardopts
${GEM_LIBDIR}/CHANGES.md
${GEM_LIBDIR}/Gemfile
${GEM_LIBDIR}/Guardfile
@@ -14,12 +15,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/authorization_header.rb
-${GEM_LIBDIR}/lib/http/authorization_header/basic_auth.rb
-${GEM_LIBDIR}/lib/http/authorization_header/bearer_token.rb
-${GEM_LIBDIR}/lib/http/backports.rb
-${GEM_LIBDIR}/lib/http/backports/base64.rb
-${GEM_LIBDIR}/lib/http/backports/uri.rb
${GEM_LIBDIR}/lib/http/chainable.rb
${GEM_LIBDIR}/lib/http/client.rb
${GEM_LIBDIR}/lib/http/content_type.rb
@@ -36,32 +31,32 @@ ${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/parser.rb
+${GEM_LIBDIR}/lib/http/response/status.rb
+${GEM_LIBDIR}/lib/http/response/status/reasons.rb
${GEM_LIBDIR}/lib/http/version.rb
${GEM_LIBDIR}/logo.png
-${GEM_LIBDIR}/spec/http/authorization_header/basic_auth_spec.rb
-${GEM_LIBDIR}/spec/http/authorization_header/bearer_token_spec.rb
-${GEM_LIBDIR}/spec/http/authorization_header_spec.rb
-${GEM_LIBDIR}/spec/http/backports/base64_spec.rb
-${GEM_LIBDIR}/spec/http/backports/uri_spec.rb
-${GEM_LIBDIR}/spec/http/client_spec.rb
-${GEM_LIBDIR}/spec/http/content_type_spec.rb
-${GEM_LIBDIR}/spec/http/headers/mixin_spec.rb
-${GEM_LIBDIR}/spec/http/headers_spec.rb
-${GEM_LIBDIR}/spec/http/options/body_spec.rb
-${GEM_LIBDIR}/spec/http/options/form_spec.rb
-${GEM_LIBDIR}/spec/http/options/headers_spec.rb
-${GEM_LIBDIR}/spec/http/options/json_spec.rb
-${GEM_LIBDIR}/spec/http/options/merge_spec.rb
-${GEM_LIBDIR}/spec/http/options/new_spec.rb
-${GEM_LIBDIR}/spec/http/options/proxy_spec.rb
-${GEM_LIBDIR}/spec/http/options_spec.rb
-${GEM_LIBDIR}/spec/http/redirector_spec.rb
-${GEM_LIBDIR}/spec/http/request/writer_spec.rb
-${GEM_LIBDIR}/spec/http/request_spec.rb
-${GEM_LIBDIR}/spec/http/response/body_spec.rb
-${GEM_LIBDIR}/spec/http/response_spec.rb
-${GEM_LIBDIR}/spec/http_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
+${GEM_LIBDIR}/spec/lib/http/headers_spec.rb
+${GEM_LIBDIR}/spec/lib/http/options/body_spec.rb
+${GEM_LIBDIR}/spec/lib/http/options/form_spec.rb
+${GEM_LIBDIR}/spec/lib/http/options/headers_spec.rb
+${GEM_LIBDIR}/spec/lib/http/options/json_spec.rb
+${GEM_LIBDIR}/spec/lib/http/options/merge_spec.rb
+${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/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/status_spec.rb
+${GEM_LIBDIR}/spec/lib/http/response_spec.rb
+${GEM_LIBDIR}/spec/lib/http_spec.rb
${GEM_LIBDIR}/spec/spec_helper.rb
+${GEM_LIBDIR}/spec/support/capture_warning.rb
${GEM_LIBDIR}/spec/support/example_server.rb
+${GEM_LIBDIR}/spec/support/example_server/servlet.rb
${GEM_LIBDIR}/spec/support/proxy_server.rb
${GEM_HOME}/specifications/${GEM_NAME}.gemspec
diff --git a/www/ruby-http/distinfo b/www/ruby-http/distinfo
index 129f6bdc8d8..f321e9926ff 100644
--- a/www/ruby-http/distinfo
+++ b/www/ruby-http/distinfo
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.2 2014/06/01 16:36:48 tsutsui Exp $
+$NetBSD: distinfo,v 1.3 2015/02/05 15:36:01 taca Exp $
-SHA1 (http-0.6.1.gem) = 44aa4d484afbe59d7fd02447a38f800d35740b33
-RMD160 (http-0.6.1.gem) = 32fd1ded4b00d661ab0a742d0e723e8d9dbd4708
-Size (http-0.6.1.gem) = 66048 bytes
+SHA1 (http-0.7.1.gem) = 70807546b262f5b94cec8afb0b55ef54e5ce034e
+RMD160 (http-0.7.1.gem) = 7fd781db854edf943d06dd481c3527f376a29a4b
+Size (http-0.7.1.gem) = 52736 bytes