Date: Thu, 30 Jul 2020 09:48:35 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r543738 - in head/www: . rubygem-cgi Message-ID: <202007300948.06U9mZ4Y073371@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Thu Jul 30 09:48:35 2020 New Revision: 543738 URL: https://svnweb.freebsd.org/changeset/ports/543738 Log: Add rubygem-cgi 0.1.0 CGI is a large class, providing several categories of methods, many of which are mixed in from other modules. Some of the documentation is in this class, some in the modules CGI::QueryExtension and CGI::HtmlExtension. See CGI::Cookie for specific information on handling cookies, and cgi/session.rb (CGI::Session) for information on sessions. For queries, CGI provides methods to get at environmental variables, parameters, cookies, and multipart request data. For responses, CGI provides methods for writing output and generating HTML. WWW: https://github.com/ruby/cgi Added: head/www/rubygem-cgi/ head/www/rubygem-cgi/Makefile (contents, props changed) head/www/rubygem-cgi/distinfo (contents, props changed) head/www/rubygem-cgi/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Thu Jul 30 09:48:22 2020 (r543737) +++ head/www/Makefile Thu Jul 30 09:48:35 2020 (r543738) @@ -1839,6 +1839,7 @@ SUBDIR += rubygem-cal-heatmap-rails SUBDIR += rubygem-cal-heatmap-rails-rails4 SUBDIR += rubygem-carrierwave + SUBDIR += rubygem-cgi SUBDIR += rubygem-cgi_multipart_eof_fix SUBDIR += rubygem-chosen-rails SUBDIR += rubygem-chromedriver-helper Added: head/www/rubygem-cgi/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-cgi/Makefile Thu Jul 30 09:48:35 2020 (r543738) @@ -0,0 +1,20 @@ +# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= cgi +PORTVERSION= 0.1.0 +CATEGORIES= www rubygems +MASTER_SITES= RG + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Support for the Common Gateway Interface protocol + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +USES= gem +USE_RUBY= yes + +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/www/rubygem-cgi/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-cgi/distinfo Thu Jul 30 09:48:35 2020 (r543738) @@ -0,0 +1,3 @@ +TIMESTAMP = 1595865787 +SHA256 (rubygem/cgi-0.1.0.gem) = 0f09c5085dd06683d566a645311f667f0e6eb61a8dcc20e0a1247c3fabe5c6f0 +SIZE (rubygem/cgi-0.1.0.gem) = 37376 Added: head/www/rubygem-cgi/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-cgi/pkg-descr Thu Jul 30 09:48:35 2020 (r543738) @@ -0,0 +1,11 @@ +CGI is a large class, providing several categories of methods, many of which are +mixed in from other modules. Some of the documentation is in this class, some in +the modules CGI::QueryExtension and CGI::HtmlExtension. See CGI::Cookie for +specific information on handling cookies, and cgi/session.rb (CGI::Session) for +information on sessions. + +For queries, CGI provides methods to get at environmental variables, parameters, +cookies, and multipart request data. For responses, CGI provides methods for +writing output and generating HTML. + +WWW: https://github.com/ruby/cgi
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202007300948.06U9mZ4Y073371>