1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-20 00:21:35 +00:00

Update to 4.2.0

- Update version requirement of RUN_DEPENDS

Changes:	https://github.com/httprb/http/blob/master/CHANGES.md
This commit is contained in:
Sunpoet Po-Chuan Hsieh 2019-10-23 17:46:20 +00:00
parent 9a38fccfcb
commit 42810ec8a9
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=515296
3 changed files with 9 additions and 9 deletions

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= http
PORTVERSION= 4.1.1
PORTVERSION= 4.2.0
CATEGORIES= www rubygems
MASTER_SITES= RG
@ -12,10 +12,10 @@ COMMENT= Simple Ruby DSL for making HTTP requests
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
RUN_DEPENDS= rubygem-addressable>=2.3:www/rubygem-addressable \
rubygem-http-cookie>=1.0:www/rubygem-http-cookie \
rubygem-http-form_data>=2.0:www/rubygem-http-form_data \
rubygem-http_parser.rb>=0.6.0:net/rubygem-http_parser.rb
RUN_DEPENDS= rubygem-addressable>=2.3<3:www/rubygem-addressable \
rubygem-http-cookie>=1.0<2:www/rubygem-http-cookie \
rubygem-http-form_data>=2.0<3:www/rubygem-http-form_data \
rubygem-http-parser>=1.2.0<1.3:net/rubygem-http-parser
USES= gem
USE_RUBY= yes

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1563013441
SHA256 (rubygem/http-4.1.1.gem) = fae822948ac22a99caff02276e3db6934d4ecb2f38f90b3596820cadc6e23c80
SIZE (rubygem/http-4.1.1.gem) = 74240
TIMESTAMP = 1571843591
SHA256 (rubygem/http-4.2.0.gem) = 94cba7e59d19fc5e81ba26b7928173ba516bb0f5eb8e7d03df8a9d98ab0456bf
SIZE (rubygem/http-4.2.0.gem) = 74752

View File

@ -1,6 +1,6 @@
The HTTP Gem is an easy-to-use client library for making requests from Ruby. It
uses a simple method chaining system for building requests, similar to Python's
Requests
Requests.
Under the hood, The HTTP Gem uses http_parser.rb, a fast HTTP parsing native
extension based on the Node.js parser and a Java port thereof.