svn commit: r560092 - in head/www: . rubygem-net-http
Sunpoet Po-Chuan Hsieh
sunpoet at FreeBSD.org
Sun Jan 3 20:04:54 UTC 2021
Author: sunpoet
Date: Sun Jan 3 20:04:48 2021
New Revision: 560092
URL: https://svnweb.freebsd.org/changeset/ports/560092
Log:
Add rubygem-net-http 0.1.1
Net::HTTP provides a rich library which can be used to build HTTP user-agents.
For more details about HTTP see RFC2616.
Net::HTTP is designed to work closely with URI. URI::HTTP#host, URI::HTTP#port
and URI::HTTP#request_uri are designed to work with Net::HTTP.
If you are only performing a few GET requests you should try OpenURI.
WWW: https://github.com/ruby/net-http
Added:
head/www/rubygem-net-http/
head/www/rubygem-net-http/Makefile (contents, props changed)
head/www/rubygem-net-http/distinfo (contents, props changed)
head/www/rubygem-net-http/pkg-descr (contents, props changed)
Modified:
head/www/Makefile
Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile Sun Jan 3 20:04:43 2021 (r560091)
+++ head/www/Makefile Sun Jan 3 20:04:48 2021 (r560092)
@@ -1968,6 +1968,7 @@
SUBDIR += rubygem-multipart-post
SUBDIR += rubygem-nanoc
SUBDIR += rubygem-nested_form
+ SUBDIR += rubygem-net-http
SUBDIR += rubygem-net-http-digest_auth
SUBDIR += rubygem-net-http-persistent
SUBDIR += rubygem-net-http-persistent2
Added: head/www/rubygem-net-http/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/www/rubygem-net-http/Makefile Sun Jan 3 20:04:48 2021 (r560092)
@@ -0,0 +1,26 @@
+# Created by: Po-Chuan Hsieh <sunpoet at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME= net-http
+PORTVERSION= 0.1.1
+CATEGORIES= www rubygems
+MASTER_SITES= RG
+
+MAINTAINER= sunpoet at FreeBSD.org
+COMMENT= HTTP client api for Ruby
+
+LICENSE= BSD2CLAUSE RUBY
+LICENSE_COMB= dual
+LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt
+
+BROKEN_RUBY25= yes
+
+RUN_DEPENDS= rubygem-net-protocol>=0:net/rubygem-net-protocol \
+ rubygem-uri>=0:net/rubygem-uri
+
+USES= gem
+USE_RUBY= yes
+
+NO_ARCH= yes
+
+.include <bsd.port.mk>
Added: head/www/rubygem-net-http/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/www/rubygem-net-http/distinfo Sun Jan 3 20:04:48 2021 (r560092)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1609598835
+SHA256 (rubygem/net-http-0.1.1.gem) = 75a4e109b6f9af32fad0e98a6180c47aceb415927ca3bd70c8fc3e7dbbabbe86
+SIZE (rubygem/net-http-0.1.1.gem) = 36352
Added: head/www/rubygem-net-http/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/www/rubygem-net-http/pkg-descr Sun Jan 3 20:04:48 2021 (r560092)
@@ -0,0 +1,9 @@
+Net::HTTP provides a rich library which can be used to build HTTP user-agents.
+For more details about HTTP see RFC2616.
+
+Net::HTTP is designed to work closely with URI. URI::HTTP#host, URI::HTTP#port
+and URI::HTTP#request_uri are designed to work with Net::HTTP.
+
+If you are only performing a few GET requests you should try OpenURI.
+
+WWW: https://github.com/ruby/net-http
More information about the svn-ports-all
mailing list