From owner-svn-ports-all@freebsd.org Mon Dec 21 15:08:47 2015 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 6FE24A4E726; Mon, 21 Dec 2015 15:08:47 +0000 (UTC) (envelope-from miwi@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 48A771FDD; Mon, 21 Dec 2015 15:08:47 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tBLF8kAS090236; Mon, 21 Dec 2015 15:08:46 GMT (envelope-from miwi@FreeBSD.org) Received: (from miwi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tBLF8kAg090231; Mon, 21 Dec 2015 15:08:46 GMT (envelope-from miwi@FreeBSD.org) Message-Id: <201512211508.tBLF8kAg090231@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: miwi set sender to miwi@FreeBSD.org using -f From: Martin Wilke Date: Mon, 21 Dec 2015 15:08:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r404114 - in head/www: . p5-Role-REST-Client 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.20 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: Mon, 21 Dec 2015 15:08:47 -0000 Author: miwi Date: Mon Dec 21 15:08:45 2015 New Revision: 404114 URL: https://svnweb.freebsd.org/changeset/ports/404114 Log: Perl extension for Rest Client Role. Role::REST::Client will handle encoding and decoding when using the HTTP verbs. GET, PUT, POST, DELETE, OPTIONS, HEAD. WWW: http://search.cpan.org/dist/Role-REST-Client/ PR: 205363 Submitted by: amontalban@gmail.com Approved by: mat (mentor) Differential Revision: D4640 Added: head/www/p5-Role-REST-Client/ head/www/p5-Role-REST-Client/Makefile (contents, props changed) head/www/p5-Role-REST-Client/distinfo (contents, props changed) head/www/p5-Role-REST-Client/pkg-descr (contents, props changed) head/www/p5-Role-REST-Client/pkg-plist (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Mon Dec 21 14:55:55 2015 (r404113) +++ head/www/Makefile Mon Dec 21 15:08:45 2015 (r404114) @@ -1189,6 +1189,7 @@ SUBDIR += p5-Reaction SUBDIR += p5-Reddit SUBDIR += p5-Reddit-Client + SUBDIR += p5-Role-REST-Client SUBDIR += p5-Rose-HTML-Objects SUBDIR += p5-Router-Boom SUBDIR += p5-Router-Simple Added: head/www/p5-Role-REST-Client/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-Role-REST-Client/Makefile Mon Dec 21 15:08:45 2015 (r404114) @@ -0,0 +1,29 @@ +# $FreeBSD$ + +PORTNAME= Role-REST-Client +PORTVERSION= 0.18 +CATEGORIES= www perl5 +MASTER_SITES= CPAN +MASTER_SITE_SUBDIR= CPAN:KAARE +PKGNAMEPREFIX= p5- + +MAINTAINER= amontalban@gmail.com +COMMENT= Perl extension for Rest Client Role + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +RUN_DEPENDS= p5-Data-Serializer>=0.60:${PORTSDIR}/devel/p5-Data-Serializer \ + p5-HTTP-Tiny>=0.056:${PORTSDIR}/www/p5-HTTP-Tiny \ + p5-Moo>=1.003000:${PORTSDIR}/devel/p5-Moo \ + p5-MooX-HandlesVia>=0.001004:${PORTSDIR}/devel/p5-MooX-HandlesVia \ + p5-Type-Tiny>=0.024:${PORTSDIR}/devel/p5-Type-Tiny \ + p5-URI-Escape-XS>0.11:${PORTSDIR}/www/p5-URI-Escape-XS \ + p5-HTTP-Thin>0:${PORTSDIR}/www/p5-HTTP-Thin +BUILD_DEPENDS:= ${RUN_DEPENDS} + +USES= perl5 +USE_PERL5= configure +NO_ARCH= YES + +.include Added: head/www/p5-Role-REST-Client/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-Role-REST-Client/distinfo Mon Dec 21 15:08:45 2015 (r404114) @@ -0,0 +1,2 @@ +SHA256 (Role-REST-Client-0.18.tar.gz) = 315ab1e6d8730a301029d20f97b30c0c6fa27bdd140991cb26e6c85796ec8a56 +SIZE (Role-REST-Client-0.18.tar.gz) = 18057 Added: head/www/p5-Role-REST-Client/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-Role-REST-Client/pkg-descr Mon Dec 21 15:08:45 2015 (r404114) @@ -0,0 +1,6 @@ +Perl extension for Rest Client Role. + +Role::REST::Client will handle encoding and decoding when using the HTTP verbs. +GET, PUT, POST, DELETE, OPTIONS, HEAD. + +WWW: http://search.cpan.org/dist/Role-REST-Client/ Added: head/www/p5-Role-REST-Client/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-Role-REST-Client/pkg-plist Mon Dec 21 15:08:45 2015 (r404114) @@ -0,0 +1,6 @@ +%%SITE_PERL%%/Role/REST/Client.pm +%%SITE_PERL%%/Role/REST/Client/Response.pm +%%SITE_PERL%%/Role/REST/Client/Serializer.pm +%%PERL5_MAN3%%/Role::REST::Client.3.gz +%%PERL5_MAN3%%/Role::REST::Client::Response.3.gz +%%PERL5_MAN3%%/Role::REST::Client::Serializer.3.gz