From owner-svn-ports-head@freebsd.org Sat Jan 23 15:12:56 2016 Return-Path: Delivered-To: svn-ports-head@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 7CA62A8E4F8; Sat, 23 Jan 2016 15:12:56 +0000 (UTC) (envelope-from sunpoet@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 3E0BF199A; Sat, 23 Jan 2016 15:12:56 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u0NFCtfv048930; Sat, 23 Jan 2016 15:12:55 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0NFCspg048925; Sat, 23 Jan 2016 15:12:54 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201601231512.u0NFCspg048925@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 23 Jan 2016 15:12:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r406998 - in head/security: . p5-Dancer2-Plugin-Auth-Extensible-Provider-DBIC 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.20 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, 23 Jan 2016 15:12:56 -0000 Author: sunpoet Date: Sat Jan 23 15:12:54 2016 New Revision: 406998 URL: https://svnweb.freebsd.org/changeset/ports/406998 Log: - Add p5-Dancer2-Plugin-Auth-Extensible-Provider-DBIC 0.501 - While I'm here, fix *_DEPENDS This class is an authentication provider designed to authenticate users against a database, using Dancer2::Plugin::DBIC to access a database. See Dancer2::Plugin::Auth::Extensible for details on how to use the authentication framework. WWW: http://search.cpan.org/dist/Dancer2-Plugin-Auth-Extensible-Provider-DBIC/ PR: 206439 Submitted by: Henk van Oers Added: head/security/p5-Dancer2-Plugin-Auth-Extensible-Provider-DBIC/ head/security/p5-Dancer2-Plugin-Auth-Extensible-Provider-DBIC/Makefile (contents, props changed) head/security/p5-Dancer2-Plugin-Auth-Extensible-Provider-DBIC/distinfo (contents, props changed) head/security/p5-Dancer2-Plugin-Auth-Extensible-Provider-DBIC/pkg-descr (contents, props changed) head/security/p5-Dancer2-Plugin-Auth-Extensible-Provider-DBIC/pkg-plist (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sat Jan 23 15:11:26 2016 (r406997) +++ head/security/Makefile Sat Jan 23 15:12:54 2016 (r406998) @@ -573,6 +573,7 @@ SUBDIR += p5-Dancer-Plugin-Auth-Extensible-Provider-Usergroup SUBDIR += p5-Dancer-Plugin-Passphrase SUBDIR += p5-Dancer2-Plugin-Auth-Extensible + SUBDIR += p5-Dancer2-Plugin-Auth-Extensible-Provider-DBIC SUBDIR += p5-Dancer2-Plugin-Auth-Extensible-Provider-Usergroup SUBDIR += p5-Dancer2-Plugin-Passphrase SUBDIR += p5-Data-Entropy Added: head/security/p5-Dancer2-Plugin-Auth-Extensible-Provider-DBIC/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/p5-Dancer2-Plugin-Auth-Extensible-Provider-DBIC/Makefile Sat Jan 23 15:12:54 2016 (r406998) @@ -0,0 +1,28 @@ +# Created by: Henk van Oers +# $FreeBSD$ + +PORTNAME= Dancer2-Plugin-Auth-Extensible-Provider-DBIC +PORTVERSION= 0.501 +CATEGORIES= security perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= hvo.pm@xs4all.nl +COMMENT= Extensible authentication framework for Dancer2 apps using DBIC + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +BUILD_DEPENDS= p5-DBIx-Class>=0:${PORTSDIR}/databases/p5-DBIx-Class \ + p5-Dancer2-Plugin-Auth-Extensible>=0.501:${PORTSDIR}/security/p5-Dancer2-Plugin-Auth-Extensible \ + p5-Dancer2-Plugin-DBIC>=0:${PORTSDIR}/databases/p5-Dancer2-Plugin-DBIC \ + p5-String-CamelCase>=0:${PORTSDIR}/textproc/p5-String-CamelCase +RUN_DEPENDS:= ${BUILD_DEPENDS} +TEST_DEPENDS= p5-Class-Load>=0:${PORTSDIR}/devel/p5-Class-Load \ + p5-DateTime-Format-SQLite>=0:${PORTSDIR}/devel/p5-DateTime-Format-SQLite \ + p5-Path-Tiny>=0:${PORTSDIR}/devel/p5-Path-Tiny + +USES= perl5 +USE_PERL5= configure + +.include Added: head/security/p5-Dancer2-Plugin-Auth-Extensible-Provider-DBIC/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/p5-Dancer2-Plugin-Auth-Extensible-Provider-DBIC/distinfo Sat Jan 23 15:12:54 2016 (r406998) @@ -0,0 +1,2 @@ +SHA256 (Dancer2-Plugin-Auth-Extensible-Provider-DBIC-0.501.tar.gz) = 146c480f170c46f5bafed85047d01a9f2af9218d5a8569e4370722418611c4b0 +SIZE (Dancer2-Plugin-Auth-Extensible-Provider-DBIC-0.501.tar.gz) = 9874 Added: head/security/p5-Dancer2-Plugin-Auth-Extensible-Provider-DBIC/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/p5-Dancer2-Plugin-Auth-Extensible-Provider-DBIC/pkg-descr Sat Jan 23 15:12:54 2016 (r406998) @@ -0,0 +1,7 @@ +This class is an authentication provider designed to authenticate users +against a database, using Dancer2::Plugin::DBIC to access a database. + +See Dancer2::Plugin::Auth::Extensible for details on how to use +the authentication framework. + +WWW: http://search.cpan.org/dist/Dancer2-Plugin-Auth-Extensible-Provider-DBIC/ Added: head/security/p5-Dancer2-Plugin-Auth-Extensible-Provider-DBIC/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/p5-Dancer2-Plugin-Auth-Extensible-Provider-DBIC/pkg-plist Sat Jan 23 15:12:54 2016 (r406998) @@ -0,0 +1,4 @@ +%%SITE_PERL%%/Dancer2/Plugin/Auth/Extensible/Provider/DBIC.pm +%%SITE_PERL%%/Dancer2/Plugin/Auth/Extensible/Provider/README.pod +%%PERL5_MAN3%%/Dancer2::Plugin::Auth::Extensible::Provider::DBIC.3.gz +%%PERL5_MAN3%%/Dancer2::Plugin::Auth::Extensible::Provider::README.3.gz