From owner-svn-ports-all@freebsd.org Sat May 21 16:39:36 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1C111B45848; Sat, 21 May 2016 16:39:36 +0000 (UTC) (envelope-from woodsb02@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 mx1.freebsd.org (Postfix) with ESMTPS id EC9D71828; Sat, 21 May 2016 16:39:35 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u4LGdZjI007288; Sat, 21 May 2016 16:39:35 GMT (envelope-from woodsb02@FreeBSD.org) Received: (from woodsb02@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4LGdYrw007283; Sat, 21 May 2016 16:39:34 GMT (envelope-from woodsb02@FreeBSD.org) Message-Id: <201605211639.u4LGdYrw007283@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: woodsb02 set sender to woodsb02@FreeBSD.org using -f From: Ben Woods Date: Sat, 21 May 2016 16:39:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r415603 - in head/devel: . p5-Data-URIEncode 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.22 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: Sat, 21 May 2016 16:39:36 -0000 Author: woodsb02 Date: Sat May 21 16:39:34 2016 New Revision: 415603 URL: https://svnweb.freebsd.org/changeset/ports/415603 Log: Add devel/p5-Data-URIEncode, a Perl module that allows complex data structures to be encoded using flat URIs. Approved by: adamw (mentor) Differential Revision: https://reviews.freebsd.org/D6484 Added: head/devel/p5-Data-URIEncode/ head/devel/p5-Data-URIEncode/Makefile (contents, props changed) head/devel/p5-Data-URIEncode/distinfo (contents, props changed) head/devel/p5-Data-URIEncode/pkg-descr (contents, props changed) head/devel/p5-Data-URIEncode/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat May 21 16:10:19 2016 (r415602) +++ head/devel/Makefile Sat May 21 16:39:34 2016 (r415603) @@ -2050,6 +2050,7 @@ SUBDIR += p5-Data-TreeDumper SUBDIR += p5-Data-TreeDumper-Renderer-GTK SUBDIR += p5-Data-Types + SUBDIR += p5-Data-URIEncode SUBDIR += p5-Data-UUID SUBDIR += p5-Data-Uniqid SUBDIR += p5-Data-Util Added: head/devel/p5-Data-URIEncode/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Data-URIEncode/Makefile Sat May 21 16:39:34 2016 (r415603) @@ -0,0 +1,21 @@ +# Created by: Ben Woods +# $FreeBSD$ + +PORTNAME= Data-URIEncode +PORTVERSION= 0.11 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= woodsb02@FreeBSD.org +COMMENT= Allow complex data structures to be encoded using flat URIs + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +USES= perl5 +USE_PERL5= configure + +NO_ARCH= yes + +.include Added: head/devel/p5-Data-URIEncode/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Data-URIEncode/distinfo Sat May 21 16:39:34 2016 (r415603) @@ -0,0 +1,3 @@ +TIMESTAMP = 1463844556 +SHA256 (Data-URIEncode-0.11.tar.gz) = 51c9efbf8423853616eaa24841e4d1996b2db0036900617fb1dbc76c75a1f360 +SIZE (Data-URIEncode-0.11.tar.gz) = 8867 Added: head/devel/p5-Data-URIEncode/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Data-URIEncode/pkg-descr Sat May 21 16:39:34 2016 (r415603) @@ -0,0 +1,7 @@ +Data::URIEncode allows for encoding and decoding complex (multi level +datastructures) using native Query String manipulators (such as CGI.pm). +It takes complex data and turns it into a flat hashref which can then be turned +into a URI query string using URL encoding. It also takes a flat hashref of +data passed in and translates it back to a complex structure. + +WWW: https://metacpan.org/pod/Data::URIEncode Added: head/devel/p5-Data-URIEncode/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Data-URIEncode/pkg-plist Sat May 21 16:39:34 2016 (r415603) @@ -0,0 +1,2 @@ +%%SITE_PERL%%/Data/URIEncode.pm +%%PERL5_MAN3%%/Data::URIEncode.3.gz