From owner-svn-ports-head@freebsd.org Sat Jan 5 16:52:56 2019 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B590514A0AD2; Sat, 5 Jan 2019 16:52:56 +0000 (UTC) (envelope-from swills@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) server-signature RSA-PSS (4096 bits) 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 5C9A98A1D0; Sat, 5 Jan 2019 16:52:56 +0000 (UTC) (envelope-from swills@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 4DEDE1B660; Sat, 5 Jan 2019 16:52:56 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x05Gquje080281; Sat, 5 Jan 2019 16:52:56 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x05GqtLA080277; Sat, 5 Jan 2019 16:52:55 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201901051652.x05GqtLA080277@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sat, 5 Jan 2019 16:52:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r489355 - in head/www: . p5-Dancer-Plugin-CORS X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/www: . p5-Dancer-Plugin-CORS X-SVN-Commit-Revision: 489355 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 5C9A98A1D0 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.91 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.92)[-0.916,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-0.999,0] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 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: Sat, 05 Jan 2019 16:52:56 -0000 Author: swills Date: Sat Jan 5 16:52:54 2019 New Revision: 489355 URL: https://svnweb.freebsd.org/changeset/ports/489355 Log: www/p5-Dancer-Plugin-CORS: create port Cross origin resource sharing is a feature used by modern web browser to bypass cross site scripting restrictions. A webservice can provide those rules from which origin a client is allowed to make cross-site requests. This module helps you to setup such rules. WWW: http://search.cpan.org/dist/Dancer-Plugin-CORS/ PR: 222897 Submitted by: n_hibma Added: head/www/p5-Dancer-Plugin-CORS/ head/www/p5-Dancer-Plugin-CORS/Makefile (contents, props changed) head/www/p5-Dancer-Plugin-CORS/distinfo (contents, props changed) head/www/p5-Dancer-Plugin-CORS/pkg-descr (contents, props changed) head/www/p5-Dancer-Plugin-CORS/pkg-plist (contents, props changed) Modified: head/www/Makefile (contents, props changed) Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Sat Jan 5 16:43:40 2019 (r489354) +++ head/www/Makefile Sat Jan 5 16:52:54 2019 (r489355) @@ -805,6 +805,7 @@ SUBDIR += p5-Corona SUBDIR += p5-Dancer SUBDIR += p5-Dancer-Logger-Log4perl + SUBDIR += p5-Dancer-Plugin-CORS SUBDIR += p5-Dancer-Plugin-ExtDirect SUBDIR += p5-Dancer-Plugin-Feed SUBDIR += p5-Dancer-Plugin-FlashMessage Added: head/www/p5-Dancer-Plugin-CORS/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-Dancer-Plugin-CORS/Makefile Sat Jan 5 16:52:54 2019 (r489355) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= Dancer-Plugin-CORS +PORTVERSION= 0.11 +CATEGORIES= www perl5 +MASTER_SITES= CPAN +MASTER_SITE_SUBDIR= CPAN:ZURBORG +PKGNAMEPREFIX= p5- + +MAINTAINER= perl@FreeBSD.org +COMMENT= Dancer plugin for using cross origin resource sharing + +RUN_DEPENDS= p5-Dancer>0:www/p5-Dancer \ + p5-Modern-Perl>=0:lang/p5-Modern-Perl \ + p5-Sub-Name>=0:devel/p5-Sub-Name +BUILD_DEPENDS:= ${RUN_DEPENDS} + +USES= perl5 +USE_PERL5= configure + +.include Added: head/www/p5-Dancer-Plugin-CORS/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-Dancer-Plugin-CORS/distinfo Sat Jan 5 16:52:54 2019 (r489355) @@ -0,0 +1,3 @@ +TIMESTAMP = 1471639437 +SHA256 (Dancer-Plugin-CORS-0.11.tar.gz) = 023bc81601983a0a73260cb21b3e6de6f2f8d14f0a9789ba4116e2540fb4942d +SIZE (Dancer-Plugin-CORS-0.11.tar.gz) = 9534 Added: head/www/p5-Dancer-Plugin-CORS/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-Dancer-Plugin-CORS/pkg-descr Sat Jan 5 16:52:54 2019 (r489355) @@ -0,0 +1,6 @@ +Cross origin resource sharing is a feature used by modern web browser to bypass +cross site scripting restrictions. A webservice can provide those rules from +which origin a client is allowed to make cross-site requests. This module helps +you to setup such rules. + +WWW: http://search.cpan.org/dist/Dancer-Plugin-CORS/ Added: head/www/p5-Dancer-Plugin-CORS/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-Dancer-Plugin-CORS/pkg-plist Sat Jan 5 16:52:54 2019 (r489355) @@ -0,0 +1,4 @@ +%%PERL5_MAN3%%/Dancer::Plugin::CORS.3.gz +%%PERL5_MAN3%%/Dancer::Plugin::CORS::Sharing.3.gz +%%SITE_PERL%%/Dancer/Plugin/CORS.pm +%%SITE_PERL%%/Dancer/Plugin/CORS/Sharing.pm