Date: Thu, 20 Nov 2008 04:17:09 GMT From: George Hartzell <hartzell@alerce.com> To: freebsd-gnats-submit@FreeBSD.org Subject: ports/129005: New port: devel/p5-CGI-Application-Plugin-Authentication -- Authen. plugin for CGI::Application Message-ID: <200811200417.mAK4H9AS042633@www.freebsd.org> Resent-Message-ID: <200811200420.mAK4K2SE093820@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 129005 >Category: ports >Synopsis: New port: devel/p5-CGI-Application-Plugin-Authentication -- Authen. plugin for CGI::Application >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Nov 20 04:20:02 UTC 2008 >Closed-Date: >Last-Modified: >Originator: George Hartzell >Release: 7.1-Prerelease >Organization: >Environment: FreeBSD delicious.alerce.com 7.1-PRERELEASE FreeBSD 7.1-PRERELEASE #14: Mon Sep 8 20:17:13 PDT 2008 root@delicious.alerce.com:/usr/obj/usr/src/sys/PRO amd64 >Description: >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-CGI-Application-Plugin-Authentication # p5-CGI-Application-Plugin-Authentication/pkg-plist # p5-CGI-Application-Plugin-Authentication/Makefile # p5-CGI-Application-Plugin-Authentication/distinfo # p5-CGI-Application-Plugin-Authentication/pkg-descr # echo c - p5-CGI-Application-Plugin-Authentication mkdir -p p5-CGI-Application-Plugin-Authentication > /dev/null 2>&1 echo x - p5-CGI-Application-Plugin-Authentication/pkg-plist sed 's/^X//' >p5-CGI-Application-Plugin-Authentication/pkg-plist << '9803089cbf8f208ee8d762805120812e' X%%SITE_PERL%%/CGI/Application/Plugin/Authentication.pm X%%SITE_PERL%%/CGI/Application/Plugin/Authentication/Store.pm X%%SITE_PERL%%/CGI/Application/Plugin/Authentication/Driver.pm X%%SITE_PERL%%/CGI/Application/Plugin/Authentication/Driver/DBI.pm X%%SITE_PERL%%/CGI/Application/Plugin/Authentication/Driver/Dummy.pm X%%SITE_PERL%%/CGI/Application/Plugin/Authentication/Driver/HTPasswd.pm X%%SITE_PERL%%/CGI/Application/Plugin/Authentication/Driver/Generic.pm X%%SITE_PERL%%/CGI/Application/Plugin/Authentication/Driver/Authen/Simple.pm X%%SITE_PERL%%/CGI/Application/Plugin/Authentication/Driver/Filter/crypt.pm X%%SITE_PERL%%/CGI/Application/Plugin/Authentication/Driver/Filter/strip.pm X%%SITE_PERL%%/CGI/Application/Plugin/Authentication/Driver/Filter/uc.pm X%%SITE_PERL%%/CGI/Application/Plugin/Authentication/Driver/Filter/md5.pm X%%SITE_PERL%%/CGI/Application/Plugin/Authentication/Driver/Filter/sha1.pm X%%SITE_PERL%%/CGI/Application/Plugin/Authentication/Driver/Filter/lc.pm X%%SITE_PERL%%/CGI/Application/Plugin/Authentication/Store/Cookie.pm X%%SITE_PERL%%/CGI/Application/Plugin/Authentication/Store/Session.pm X@dirrmtry %%SITE_PERL%%/CGI/Application/Plugin/Authentication X@dirrmtry %%SITE_PERL%%/CGI/Application/Plugin X@dirrmtry %%SITE_PERL%%/CGI/Application X@dirrmtry %%SITE_PERL%%/CGI 9803089cbf8f208ee8d762805120812e echo x - p5-CGI-Application-Plugin-Authentication/Makefile sed 's/^X//' >p5-CGI-Application-Plugin-Authentication/Makefile << '3aeab4a3a972aa77f59f6777076c95be' X# New ports collection makefile for: www/p5-CGI-Application-Plugin-Authentication X# Date created: 01 September 2008 X# Whom: George Hartzell <hartzell@alerce.com> X# X# $FreeBSD$ X# X XPORTNAME= CGI-Application-Plugin-Authentication XPORTVERSION= 0.12 XCATEGORIES= www perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= CGI XPKGNAMEPREFIX= p5- X XMAINTAINER= hartzell@alerce.com XCOMMENT= Support for authenticating requests in CGI::Application X XBUILD_DEPENDS= ${SITE_PERL}/CGI/Application.pm:${PORTSDIR}/www/p5-CGI-Application \ X ${SITE_PERL}/CGI/Application/Plugin/Session.pm:${PORTSDIR}/www/p5-CGI-Application-Plugin-Session \ X ${SITE_PERL}/${PERL_ARCH}/Scalar/Util.pm:${PORTSDIR}/lang/p5-Scalar-List-Utils \ X ${SITE_PERL}/Class/ISA.pm:${PORTSDIR}/devel/p5-Class-ISA \ X ${SITE_PERL}/Attribute/Handlers.pm:${PORTSDIR}/devel/p5-Attribute-Handlers \ X ${SITE_PERL}/UNIVERSAL/require.pm:${PORTSDIR}/devel/p5-UNIVERSAL-require \ X ${SITE_PERL}/Test/More.pm:${PORTSDIR}/devel/p5-Test-Simple \ X ${SITE_PERL}/Test/Exception.pm:${PORTSDIR}/devel/p5-Test-Exception \ X ${SITE_PERL}/Test/Warn.pm:${PORTSDIR}/devel/p5-Test-Warn \ X ${SITE_PERL}/${PERL_ARCH}/Digest/SHA1.pm:${PORTSDIR}/security/p5-Digest-SHA1 \ X ${SITE_PERL}/${PERL_ARCH}/Digest/MD5.pm:${PORTSDIR}/security/p5-Digest-MD5 XRUN_DEPENDS= ${BUILD_DEPENDS} X XPERL_MODBUILD= yes X XMAN3= CGI::Application::Plugin::Authentication::Driver.3 \ X CGI::Application::Plugin::Authentication::Driver::Filter::strip.3 \ X CGI::Application::Plugin::Authentication::Driver::DBI.3 \ X CGI::Application::Plugin::Authentication::Driver::Filter::sha1.3 \ X CGI::Application::Plugin::Authentication::Driver::Filter::lc.3 \ X CGI::Application::Plugin::Authentication::Store::Session.3 \ X CGI::Application::Plugin::Authentication.3 \ X CGI::Application::Plugin::Authentication::Driver::Filter::uc.3 \ X CGI::Application::Plugin::Authentication::Driver::Filter::crypt.3 \ X CGI::Application::Plugin::Authentication::Store.3 \ X CGI::Application::Plugin::Authentication::Driver::Generic.3 \ X CGI::Application::Plugin::Authentication::Store::Cookie.3 \ X CGI::Application::Plugin::Authentication::Driver::Authen::Simple.3 \ X CGI::Application::Plugin::Authentication::Driver::Filter::md5.3 \ X CGI::Application::Plugin::Authentication::Driver::HTPasswd.3 \ X CGI::Application::Plugin::Authentication::Driver::Dummy.3 X X.include <bsd.port.pre.mk> X.if ${PERL_LEVEL} < 500800 XIGNORE= requires Perl 5.8 or newer. Install lang/perl5.8, and try again X.endif X.include <bsd.port.post.mk> 3aeab4a3a972aa77f59f6777076c95be echo x - p5-CGI-Application-Plugin-Authentication/distinfo sed 's/^X//' >p5-CGI-Application-Plugin-Authentication/distinfo << 'efc3f216c375d5839f428b2aad8c93c8' XMD5 (CGI-Application-Plugin-Authentication-0.12.tar.gz) = a5f9dcf8752c4a705f3b6b40eb874666 XSHA256 (CGI-Application-Plugin-Authentication-0.12.tar.gz) = b99c2a3cb5ecb50bacbaacc46585379e88e5023126f2babe1e20682a5f798fcf XSIZE (CGI-Application-Plugin-Authentication-0.12.tar.gz) = 47778 efc3f216c375d5839f428b2aad8c93c8 echo x - p5-CGI-Application-Plugin-Authentication/pkg-descr sed 's/^X//' >p5-CGI-Application-Plugin-Authentication/pkg-descr << 'af3001263bb459cec5e4e3cbd2bab7d9' XThe forward method passes control to another run mode and returns its Xoutput. This is equivalent to calling $self->$other_runmode, except Xthat CGI::Application's internal value of the current run mode is Xupdated. af3001263bb459cec5e4e3cbd2bab7d9 exit >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200811200417.mAK4H9AS042633>