From owner-svn-ports-head@freebsd.org Thu Jul 30 09:48:36 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 671A937EC31; Thu, 30 Jul 2020 09:48:36 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BHQb825Mvz43vV; Thu, 30 Jul 2020 09:48:36 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2B866EFAB; Thu, 30 Jul 2020 09:48:36 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 06U9mZPf073374; Thu, 30 Jul 2020 09:48:35 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 06U9mZ4Y073371; Thu, 30 Jul 2020 09:48:35 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <202007300948.06U9mZ4Y073371@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 30 Jul 2020 09:48:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r543738 - in head/www: . rubygem-cgi X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/www: . rubygem-cgi X-SVN-Commit-Revision: 543738 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 30 Jul 2020 09:48:36 -0000 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 +# $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 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