Skip to content

Commit af3c086

Browse files
author
taca
committed
www/ruby-http: update to 6.0.2
6.0.0 (2026-03-16) Changes from 5.3.1 are too many to write here, please refer: <https://github.com/httprb/http/blob/main/CHANGELOG.md>. 6.0.1 (2026-03-16) Changed * Exclude test files from gem package, reducing gem size by 50% (from 175 KB to 87 KB). 6.0.2 (2026-03-20) Fixed * Fix RBS syntax error. Changed * Improve gem push workflow security and reliability.
1 parent b870a73 commit af3c086

3 files changed

Lines changed: 31 additions & 77 deletions

File tree

www/ruby-http/Makefile

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,16 @@
1-
# $NetBSD: Makefile,v 1.18 2025/08/11 11:56:55 ryoon Exp $
1+
# $NetBSD: Makefile,v 1.19 2026/03/29 13:42:24 taca Exp $
22
#
33

4-
DISTNAME= http-5.3.1
4+
DISTNAME= http-6.0.2
55
CATEGORIES= www
66

77
MAINTAINER= pkgsrc-users@NetBSD.org
88
HOMEPAGE= https://github.com/httprb/http
99
COMMENT= Simple Ruby DSL for making HTTP requests
1010
LICENSE= mit
1111

12-
DEPENDS+= ${RUBY_PKGPREFIX}-addressable>=2.8<3:../../net/ruby-addressable
1312
DEPENDS+= ${RUBY_PKGPREFIX}-http-cookie>=1.0<2:../../www/ruby-http-cookie
14-
DEPENDS+= ${RUBY_PKGPREFIX}-http-form_data>=2.2<3.0:../../www/ruby-http-form_data
15-
DEPENDS+= ${RUBY_PKGPREFIX}-llhttp-ffi>=0.5.0:../../www/ruby-llhttp-ffi
13+
DEPENDS+= ${RUBY_PKGPREFIX}-llhttp>=0.6.1<0.7:../../www/ruby-llhttp
1614

1715
USE_LANGUAGES= # none
1816

www/ruby-http/PLIST

Lines changed: 24 additions & 68 deletions
Original file line numberDiff line numberDiff line change
@@ -1,112 +1,68 @@
1-
@comment $NetBSD: PLIST,v 1.15 2025/08/11 11:56:55 ryoon Exp $
1+
@comment $NetBSD: PLIST,v 1.16 2026/03/29 13:42:24 taca Exp $
22
${GEM_HOME}/cache/${GEM_NAME}.gem
3-
${GEM_LIBDIR}/.github/workflows/ci.yml
4-
${GEM_LIBDIR}/.gitignore
5-
${GEM_LIBDIR}/.rspec
6-
${GEM_LIBDIR}/.rubocop.yml
7-
${GEM_LIBDIR}/.rubocop/layout.yml
8-
${GEM_LIBDIR}/.rubocop/metrics.yml
9-
${GEM_LIBDIR}/.rubocop/rspec.yml
10-
${GEM_LIBDIR}/.rubocop/style.yml
11-
${GEM_LIBDIR}/.rubocop_todo.yml
12-
${GEM_LIBDIR}/.yardopts
13-
${GEM_LIBDIR}/CHANGELOG.md
14-
${GEM_LIBDIR}/CHANGES_OLD.md
15-
${GEM_LIBDIR}/CONTRIBUTING.md
16-
${GEM_LIBDIR}/Gemfile
17-
${GEM_LIBDIR}/Guardfile
183
${GEM_LIBDIR}/LICENSE.txt
194
${GEM_LIBDIR}/README.md
20-
${GEM_LIBDIR}/Rakefile
21-
${GEM_LIBDIR}/SECURITY.md
225
${GEM_LIBDIR}/http.gemspec
236
${GEM_LIBDIR}/lib/http.rb
247
${GEM_LIBDIR}/lib/http/base64.rb
258
${GEM_LIBDIR}/lib/http/chainable.rb
9+
${GEM_LIBDIR}/lib/http/chainable/helpers.rb
10+
${GEM_LIBDIR}/lib/http/chainable/verbs.rb
2611
${GEM_LIBDIR}/lib/http/client.rb
2712
${GEM_LIBDIR}/lib/http/connection.rb
13+
${GEM_LIBDIR}/lib/http/connection/internals.rb
2814
${GEM_LIBDIR}/lib/http/content_type.rb
2915
${GEM_LIBDIR}/lib/http/errors.rb
3016
${GEM_LIBDIR}/lib/http/feature.rb
3117
${GEM_LIBDIR}/lib/http/features/auto_deflate.rb
3218
${GEM_LIBDIR}/lib/http/features/auto_inflate.rb
19+
${GEM_LIBDIR}/lib/http/features/caching.rb
20+
${GEM_LIBDIR}/lib/http/features/caching/entry.rb
21+
${GEM_LIBDIR}/lib/http/features/caching/in_memory_store.rb
22+
${GEM_LIBDIR}/lib/http/features/digest_auth.rb
3323
${GEM_LIBDIR}/lib/http/features/instrumentation.rb
3424
${GEM_LIBDIR}/lib/http/features/logging.rb
3525
${GEM_LIBDIR}/lib/http/features/normalize_uri.rb
3626
${GEM_LIBDIR}/lib/http/features/raise_error.rb
27+
${GEM_LIBDIR}/lib/http/form_data.rb
28+
${GEM_LIBDIR}/lib/http/form_data/composite_io.rb
29+
${GEM_LIBDIR}/lib/http/form_data/file.rb
30+
${GEM_LIBDIR}/lib/http/form_data/multipart.rb
31+
${GEM_LIBDIR}/lib/http/form_data/multipart/param.rb
32+
${GEM_LIBDIR}/lib/http/form_data/part.rb
33+
${GEM_LIBDIR}/lib/http/form_data/readable.rb
34+
${GEM_LIBDIR}/lib/http/form_data/urlencoded.rb
35+
${GEM_LIBDIR}/lib/http/form_data/version.rb
3736
${GEM_LIBDIR}/lib/http/headers.rb
3837
${GEM_LIBDIR}/lib/http/headers/known.rb
39-
${GEM_LIBDIR}/lib/http/headers/mixin.rb
4038
${GEM_LIBDIR}/lib/http/headers/normalizer.rb
4139
${GEM_LIBDIR}/lib/http/mime_type.rb
4240
${GEM_LIBDIR}/lib/http/mime_type/adapter.rb
4341
${GEM_LIBDIR}/lib/http/mime_type/json.rb
4442
${GEM_LIBDIR}/lib/http/options.rb
43+
${GEM_LIBDIR}/lib/http/options/definitions.rb
4544
${GEM_LIBDIR}/lib/http/redirector.rb
4645
${GEM_LIBDIR}/lib/http/request.rb
4746
${GEM_LIBDIR}/lib/http/request/body.rb
47+
${GEM_LIBDIR}/lib/http/request/builder.rb
48+
${GEM_LIBDIR}/lib/http/request/proxy.rb
4849
${GEM_LIBDIR}/lib/http/request/writer.rb
4950
${GEM_LIBDIR}/lib/http/response.rb
5051
${GEM_LIBDIR}/lib/http/response/body.rb
5152
${GEM_LIBDIR}/lib/http/response/inflater.rb
5253
${GEM_LIBDIR}/lib/http/response/parser.rb
5354
${GEM_LIBDIR}/lib/http/response/status.rb
5455
${GEM_LIBDIR}/lib/http/response/status/reasons.rb
55-
${GEM_LIBDIR}/lib/http/retriable/client.rb
5656
${GEM_LIBDIR}/lib/http/retriable/delay_calculator.rb
5757
${GEM_LIBDIR}/lib/http/retriable/errors.rb
5858
${GEM_LIBDIR}/lib/http/retriable/performer.rb
59+
${GEM_LIBDIR}/lib/http/session.rb
5960
${GEM_LIBDIR}/lib/http/timeout/global.rb
6061
${GEM_LIBDIR}/lib/http/timeout/null.rb
6162
${GEM_LIBDIR}/lib/http/timeout/per_operation.rb
6263
${GEM_LIBDIR}/lib/http/uri.rb
64+
${GEM_LIBDIR}/lib/http/uri/normalizer.rb
65+
${GEM_LIBDIR}/lib/http/uri/parsing.rb
6366
${GEM_LIBDIR}/lib/http/version.rb
64-
${GEM_LIBDIR}/logo.png
65-
${GEM_LIBDIR}/spec/lib/http/client_spec.rb
66-
${GEM_LIBDIR}/spec/lib/http/connection_spec.rb
67-
${GEM_LIBDIR}/spec/lib/http/content_type_spec.rb
68-
${GEM_LIBDIR}/spec/lib/http/features/auto_deflate_spec.rb
69-
${GEM_LIBDIR}/spec/lib/http/features/auto_inflate_spec.rb
70-
${GEM_LIBDIR}/spec/lib/http/features/instrumentation_spec.rb
71-
${GEM_LIBDIR}/spec/lib/http/features/logging_spec.rb
72-
${GEM_LIBDIR}/spec/lib/http/features/raise_error_spec.rb
73-
${GEM_LIBDIR}/spec/lib/http/headers/mixin_spec.rb
74-
${GEM_LIBDIR}/spec/lib/http/headers/normalizer_spec.rb
75-
${GEM_LIBDIR}/spec/lib/http/headers_spec.rb
76-
${GEM_LIBDIR}/spec/lib/http/options/body_spec.rb
77-
${GEM_LIBDIR}/spec/lib/http/options/features_spec.rb
78-
${GEM_LIBDIR}/spec/lib/http/options/form_spec.rb
79-
${GEM_LIBDIR}/spec/lib/http/options/headers_spec.rb
80-
${GEM_LIBDIR}/spec/lib/http/options/json_spec.rb
81-
${GEM_LIBDIR}/spec/lib/http/options/merge_spec.rb
82-
${GEM_LIBDIR}/spec/lib/http/options/new_spec.rb
83-
${GEM_LIBDIR}/spec/lib/http/options/proxy_spec.rb
84-
${GEM_LIBDIR}/spec/lib/http/options_spec.rb
85-
${GEM_LIBDIR}/spec/lib/http/redirector_spec.rb
86-
${GEM_LIBDIR}/spec/lib/http/request/body_spec.rb
87-
${GEM_LIBDIR}/spec/lib/http/request/writer_spec.rb
88-
${GEM_LIBDIR}/spec/lib/http/request_spec.rb
89-
${GEM_LIBDIR}/spec/lib/http/response/body_spec.rb
90-
${GEM_LIBDIR}/spec/lib/http/response/parser_spec.rb
91-
${GEM_LIBDIR}/spec/lib/http/response/status_spec.rb
92-
${GEM_LIBDIR}/spec/lib/http/response_spec.rb
93-
${GEM_LIBDIR}/spec/lib/http/retriable/delay_calculator_spec.rb
94-
${GEM_LIBDIR}/spec/lib/http/retriable/performer_spec.rb
95-
${GEM_LIBDIR}/spec/lib/http/uri/normalizer_spec.rb
96-
${GEM_LIBDIR}/spec/lib/http/uri_spec.rb
97-
${GEM_LIBDIR}/spec/lib/http_spec.rb
98-
${GEM_LIBDIR}/spec/regression_specs.rb
99-
${GEM_LIBDIR}/spec/spec_helper.rb
100-
${GEM_LIBDIR}/spec/support/black_hole.rb
101-
${GEM_LIBDIR}/spec/support/capture_warning.rb
102-
${GEM_LIBDIR}/spec/support/dummy_server.rb
103-
${GEM_LIBDIR}/spec/support/dummy_server/servlet.rb
104-
${GEM_LIBDIR}/spec/support/fakeio.rb
105-
${GEM_LIBDIR}/spec/support/fuubar.rb
106-
${GEM_LIBDIR}/spec/support/http_handling_shared.rb
107-
${GEM_LIBDIR}/spec/support/proxy_server.rb
108-
${GEM_LIBDIR}/spec/support/servers/config.rb
109-
${GEM_LIBDIR}/spec/support/servers/runner.rb
110-
${GEM_LIBDIR}/spec/support/simplecov.rb
111-
${GEM_LIBDIR}/spec/support/ssl_helper.rb
67+
${GEM_LIBDIR}/sig/http.rbs
11268
${GEM_HOME}/specifications/${GEM_NAME}.gemspec

www/ruby-http/distinfo

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
$NetBSD: distinfo,v 1.20 2025/08/11 11:56:55 ryoon Exp $
1+
$NetBSD: distinfo,v 1.21 2026/03/29 13:42:24 taca Exp $
22

3-
BLAKE2s (http-5.3.1.gem) = 0d94de27a00de7c0d2326050d7c7d1ab2950b732c8a1b677591c17db9a1f1218
4-
SHA512 (http-5.3.1.gem) = 57902d997cfa51b8cb091ce0651d12a9bffb05992b6582c7fc0260a5208539faebedbcc1e837a2ff502336a8930abf4a1b8d531bac3f5643986850735efaa658
5-
Size (http-5.3.1.gem) = 92672 bytes
3+
BLAKE2s (http-6.0.2.gem) = fc1959e8fb403cd8ff92a8d726e41595c907818274f73257ab0787557f8a0ce4
4+
SHA512 (http-6.0.2.gem) = a94f407eed64236f7ff24d0e06d2a2110eb4ae5ecf988e4643d8cb6d70679dcd5f80bf66ece5063a9b5f430689173fc498c5edf26f55eb629bede71c9e57ef79
5+
Size (http-6.0.2.gem) = 78336 bytes

0 commit comments

Comments
 (0)