From owner-svn-ports-head@FreeBSD.ORG Mon Mar 2 20:07:33 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A447D830; Mon, 2 Mar 2015 20:07:33 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 84855DFB; Mon, 2 Mar 2015 20:07:33 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t22K7XrP063535; Mon, 2 Mar 2015 20:07:33 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t22K7WOq063530; Mon, 2 Mar 2015 20:07:32 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201503022007.t22K7WOq063530@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 2 Mar 2015 20:07:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r380293 - in head/www: . rubygem-http-form_data X-SVN-Group: ports-head 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.18-1 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: Mon, 02 Mar 2015 20:07:33 -0000 Author: sunpoet Date: Mon Mar 2 20:07:31 2015 New Revision: 380293 URL: https://svnweb.freebsd.org/changeset/ports/380293 QAT: https://qat.redports.org/buildarchive/r380293/ Log: - Add rubygem-http-form_data 1.0.0 HTTP::FormData is utility-belt to build form data request bodies. It provides support for 'application/x-www-form-urlencoded' and 'multipart/form-data' types. WWW: https://github.com/httprb/form_data.rb RG: https://rubygems.org/gems/http-form_data Added: head/www/rubygem-http-form_data/ head/www/rubygem-http-form_data/Makefile (contents, props changed) head/www/rubygem-http-form_data/distinfo (contents, props changed) head/www/rubygem-http-form_data/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Mon Mar 2 20:03:35 2015 (r380292) +++ head/www/Makefile Mon Mar 2 20:07:31 2015 (r380293) @@ -1829,6 +1829,7 @@ SUBDIR += rubygem-html2haml SUBDIR += rubygem-http SUBDIR += rubygem-http-cookie + SUBDIR += rubygem-http-form_data SUBDIR += rubygem-http_router SUBDIR += rubygem-httparty SUBDIR += rubygem-httpclient Added: head/www/rubygem-http-form_data/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-http-form_data/Makefile Mon Mar 2 20:07:31 2015 (r380293) @@ -0,0 +1,18 @@ +# Created by: Sunpoet Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= http-form_data +PORTVERSION= 1.0.0 +CATEGORIES= www rubygems +MASTER_SITES= RG + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Build form data request bodies + +LICENSE= MIT + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/www/rubygem-http-form_data/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-http-form_data/distinfo Mon Mar 2 20:07:31 2015 (r380293) @@ -0,0 +1,2 @@ +SHA256 (rubygem/http-form_data-1.0.0.gem) = 162988c19ae156541561889d064c7d7db15adc4190d4ddd31471f2741e3da7b0 +SIZE (rubygem/http-form_data-1.0.0.gem) = 13824 Added: head/www/rubygem-http-form_data/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-http-form_data/pkg-descr Mon Mar 2 20:07:31 2015 (r380293) @@ -0,0 +1,5 @@ +HTTP::FormData is utility-belt to build form data request bodies. It provides +support for 'application/x-www-form-urlencoded' and 'multipart/form-data' types. + +WWW: https://github.com/httprb/form_data.rb +RG: https://rubygems.org/gems/http-form_data