From owner-svn-ports-head@FreeBSD.ORG Thu Dec 25 13:35:25 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 51A84C1B; Thu, 25 Dec 2014 13:35:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 3D57A6437F; Thu, 25 Dec 2014 13:35:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sBPDZPaC012271; Thu, 25 Dec 2014 13:35:25 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sBPDZN8x012266; Thu, 25 Dec 2014 13:35:23 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201412251335.sBPDZN8x012266@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Thu, 25 Dec 2014 13:35:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r375550 - in head/mail: . p5-Dancer2-Plugin-Email 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.18-1 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: Thu, 25 Dec 2014 13:35:25 -0000 Author: wen Date: Thu Dec 25 13:35:23 2014 New Revision: 375550 URL: https://svnweb.freebsd.org/changeset/ports/375550 QAT: https://qat.redports.org/buildarchive/r375550/ Log: Dancer2::Plugin::Email provides an easy way of handling text or html email messages with or without attachments. Simply define how you wish to send the email in your application's YAML configuration file, then call the email keyword passing the necessary parameters. WWW: http://search.cpan.org/dist/Dancer2-Plugin-Email/ PR: 196190 Submitted by: hvo.pm@xs4all.nl Added: head/mail/p5-Dancer2-Plugin-Email/ head/mail/p5-Dancer2-Plugin-Email/Makefile (contents, props changed) head/mail/p5-Dancer2-Plugin-Email/distinfo (contents, props changed) head/mail/p5-Dancer2-Plugin-Email/pkg-descr (contents, props changed) head/mail/p5-Dancer2-Plugin-Email/pkg-plist (contents, props changed) Modified: head/mail/Makefile Modified: head/mail/Makefile ============================================================================== --- head/mail/Makefile Thu Dec 25 13:29:28 2014 (r375549) +++ head/mail/Makefile Thu Dec 25 13:35:23 2014 (r375550) @@ -289,6 +289,7 @@ SUBDIR += p5-CGP-CLI SUBDIR += p5-Clamd SUBDIR += p5-Dancer-Plugin-Email + SUBDIR += p5-Dancer2-Plugin-Email SUBDIR += p5-Data-Validate-Email SUBDIR += p5-Email-Abstract SUBDIR += p5-Email-Address Added: head/mail/p5-Dancer2-Plugin-Email/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/p5-Dancer2-Plugin-Email/Makefile Thu Dec 25 13:35:23 2014 (r375550) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= Dancer2-Plugin-Email +PORTVERSION= 0.0001 +CATEGORIES= mail perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= perl@FreeBSD.org +COMMENT= Simple email handling for Dancer2 applications + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +RUN_DEPENDS= p5-Dancer2>=0.156001:${PORTSDIR}/www/p5-Dancer2 \ + p5-Email-Sender>=0:${PORTSDIR}/mail/p5-Email-Sender \ + p5-File-Type>=0:${PORTSDIR}/devel/p5-File-Type \ + p5-MIME-Tools>=0:${PORTSDIR}/mail/p5-MIME-Tools +BUILD_DEPENDS:= ${RUN_DEPENDS} + +USES= perl5 +USE_PERL5= configure + +.include Added: head/mail/p5-Dancer2-Plugin-Email/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/p5-Dancer2-Plugin-Email/distinfo Thu Dec 25 13:35:23 2014 (r375550) @@ -0,0 +1,2 @@ +SHA256 (Dancer2-Plugin-Email-0.0001.tar.gz) = cf9c37e9ddb61ca66704a32670c93f8b6f8c1a8c9e0566ebc688f6ed1ad8ba62 +SIZE (Dancer2-Plugin-Email-0.0001.tar.gz) = 13983 Added: head/mail/p5-Dancer2-Plugin-Email/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/p5-Dancer2-Plugin-Email/pkg-descr Thu Dec 25 13:35:23 2014 (r375550) @@ -0,0 +1,7 @@ +Dancer2::Plugin::Email provides an easy way of handling text or +html email messages with or without attachments. Simply define +how you wish to send the email in your application's YAML +configuration file, then call the email keyword passing the +necessary parameters. + +WWW: http://search.cpan.org/dist/Dancer2-Plugin-Email/ Added: head/mail/p5-Dancer2-Plugin-Email/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/p5-Dancer2-Plugin-Email/pkg-plist Thu Dec 25 13:35:23 2014 (r375550) @@ -0,0 +1,2 @@ +%%SITE_PERL%%/Dancer2/Plugin/Email.pm +%%PERL5_MAN3%%/Dancer2::Plugin::Email.3.gz