Date: Tue, 26 Nov 2013 23:56:58 +0000 (UTC) From: Matthew Seaman <matthew@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r334981 - in head/mail: . p5-Email-Address-List Message-ID: <201311262356.rAQNuwo8097762@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: matthew Date: Tue Nov 26 23:56:58 2013 New Revision: 334981 URL: http://svnweb.freebsd.org/changeset/ports/334981 Log: Parser for From, To, Cc, Bcc, Reply-To, Sender and previous prefixed with Resent- (eg Resent-From) headers. Mentioned headers are structured and contain lists of addresses. Most of the time you want to parse such field from start to end keeping everything even if it's an invalid input. WWW: http://search.cpan.org/dist/Email-Address-List/ Added: head/mail/p5-Email-Address-List/ head/mail/p5-Email-Address-List/Makefile (contents, props changed) head/mail/p5-Email-Address-List/distinfo (contents, props changed) head/mail/p5-Email-Address-List/pkg-descr (contents, props changed) head/mail/p5-Email-Address-List/pkg-plist (contents, props changed) Modified: head/mail/Makefile Modified: head/mail/Makefile ============================================================================== --- head/mail/Makefile Tue Nov 26 23:49:20 2013 (r334980) +++ head/mail/Makefile Tue Nov 26 23:56:58 2013 (r334981) @@ -327,6 +327,7 @@ SUBDIR += p5-Data-Validate-Email SUBDIR += p5-Email-Abstract SUBDIR += p5-Email-Address + SUBDIR += p5-Email-Address-List SUBDIR += p5-Email-Address-Loose SUBDIR += p5-Email-AddressParser SUBDIR += p5-Email-Date Added: head/mail/p5-Email-Address-List/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/p5-Email-Address-List/Makefile Tue Nov 26 23:56:58 2013 (r334981) @@ -0,0 +1,22 @@ +# Created by: Matthew Seaman <matthew@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= Email-Address-List +PORTVERSION= 0.01 +CATEGORIES= mail perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= matthew@FreeBSD.org +COMMENT= RFC-close address list parsing + +BUILD_DEPENDS= p5-Email-Address>0:${PORTSDIR}/mail/p5-Email-Address +RUN_DEPENDS:= ${BUILD_DEPENDS} + +USES= perl5 +USE_PERL5= configure + +regression-test: build + @cd ${WRKSRC} && ${MAKE} test + +.include <bsd.port.mk> Added: head/mail/p5-Email-Address-List/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/p5-Email-Address-List/distinfo Tue Nov 26 23:56:58 2013 (r334981) @@ -0,0 +1,2 @@ +SHA256 (Email-Address-List-0.01.tar.gz) = 8ff17fc06ff6d67d378e30f16e2e1930f2a1d5db2f7f59973b4166d38cac4a3e +SIZE (Email-Address-List-0.01.tar.gz) = 26082 Added: head/mail/p5-Email-Address-List/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/p5-Email-Address-List/pkg-descr Tue Nov 26 23:56:58 2013 (r334981) @@ -0,0 +1,8 @@ +Parser for From, To, Cc, Bcc, Reply-To, Sender and previous prefixed +with Resent- (eg Resent-From) headers. + +Mentioned headers are structured and contain lists of addresses. Most +of the time you want to parse such field from start to end keeping +everything even if it's an invalid input. + +WWW: http://search.cpan.org/dist/Email-Address-List/ Added: head/mail/p5-Email-Address-List/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/p5-Email-Address-List/pkg-plist Tue Nov 26 23:56:58 2013 (r334981) @@ -0,0 +1,9 @@ +%%PERL5_MAN3%%/Email::Address::List.3.gz +%%SITE_PERL%%/Email/Address/List.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Email/Address/List/.packlist +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Email/Address/List +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Email/Address +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Email +@dirrmtry %%SITE_PERL%%/Email/Address +@dirrmtry %%SITE_PERL%%/Email +
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201311262356.rAQNuwo8097762>