From owner-svn-ports-all@FreeBSD.ORG Tue Mar 10 06:21:02 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 80BF12AC; Tue, 10 Mar 2015 06:21:02 +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 6BC4A386; Tue, 10 Mar 2015 06:21:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2A6L2nh020509; Tue, 10 Mar 2015 06:21:02 GMT (envelope-from vanilla@FreeBSD.org) Received: (from vanilla@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2A6L1vg020279; Tue, 10 Mar 2015 06:21:01 GMT (envelope-from vanilla@FreeBSD.org) Message-Id: <201503100621.t2A6L1vg020279@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: vanilla set sender to vanilla@FreeBSD.org using -f From: "Vanilla I. Shu" Date: Tue, 10 Mar 2015 06:21:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r380897 - in head/www: . p5-URL-Encode X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Mar 2015 06:21:02 -0000 Author: vanilla Date: Tue Mar 10 06:21:00 2015 New Revision: 380897 URL: https://svnweb.freebsd.org/changeset/ports/380897 QAT: https://qat.redports.org/buildarchive/r380897/ Log: Add p5-URL-Encode 0.03, encoding and decoding of application/x-www-form-urlencoded encoding. PR: 198308 Submitted by: Geoffroy Desvernay Added: head/www/p5-URL-Encode/ head/www/p5-URL-Encode/Makefile (contents, props changed) head/www/p5-URL-Encode/distinfo (contents, props changed) head/www/p5-URL-Encode/pkg-descr (contents, props changed) head/www/p5-URL-Encode/pkg-plist (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Tue Mar 10 06:16:46 2015 (r380896) +++ head/www/Makefile Tue Mar 10 06:21:00 2015 (r380897) @@ -1216,6 +1216,7 @@ SUBDIR += p5-URI-Sequin SUBDIR += p5-URI-Title SUBDIR += p5-URI-ToDisk + SUBDIR += p5-URL-Encode SUBDIR += p5-URL-Encode-XS SUBDIR += p5-VUser-Google-ProvisioningAPI SUBDIR += p5-W3C-LinkChecker Added: head/www/p5-URL-Encode/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-URL-Encode/Makefile Tue Mar 10 06:21:00 2015 (r380897) @@ -0,0 +1,20 @@ +# Created by: Geoffroy Desvernay +# $FreeBSD$ + +PORTNAME= URL-Encode +PORTVERSION= 0.03 +CATEGORIES= www perl5 +MASTER_SITES= CPAN +MASTER_SITE_SUBDIR= CPAN:CHANSEN +PKGNAMEPREFIX= p5- + +MAINTAINER= dgeo@centrale-marseille.fr +COMMENT= Encoding and decoding of application/x-www-form-urlencoded encoding + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +USES= perl5 +USE_PERL5= configure + +.include Added: head/www/p5-URL-Encode/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-URL-Encode/distinfo Tue Mar 10 06:21:00 2015 (r380897) @@ -0,0 +1,2 @@ +SHA256 (URL-Encode-0.03.tar.gz) = 7295d7f07796b179131d9c0f230a6effa56d204de2f8dc72f2e09c61458c8ee6 +SIZE (URL-Encode-0.03.tar.gz) = 24012 Added: head/www/p5-URL-Encode/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-URL-Encode/pkg-descr Tue Mar 10 06:21:00 2015 (r380897) @@ -0,0 +1,13 @@ +encode and decode strings into and from application/x-www-form-urlencoded + +The application/x-www-form-urlencoded format encodes a ordered data sets of +pairs consisting of a name and a value, with pairs seperated by ampersand or +semicolon and names and values seperated by the equal sign. Space characters +are replaced with plus sign and any characters not in the unreserved character +set is encoded using the percent-encoding scheme also used for resource +identifiers. +A percent-encoded octet is encoded as a character triplet, consisting of the +percent character "%" followed by the two hexadecimal digits representing that +octet's numeric value. + +WWW: https://metacpan.org/pod/URL::Encode Added: head/www/p5-URL-Encode/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-URL-Encode/pkg-plist Tue Mar 10 06:21:00 2015 (r380897) @@ -0,0 +1,4 @@ +%%PERL5_MAN3%%/URL::Encode.3.gz +%%SITE_PERL%%/URL/Encode.pm +%%SITE_PERL%%/URL/Encode.pod +%%SITE_PERL%%/URL/Encode/PP.pm