diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2012-07-10 14:46:35 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2012-07-10 14:46:35 +0800 |
commit | c32d541cc5ac62d8de5158fe6e83385bbccb3dc9 (patch) | |
tree | 44f2c42789ad94dfeda9168349afb854a00a7846 /mail | |
parent | 489752735e5d048ec903e5b5dac15626114f9f82 (diff) | |
download | freebsd-ports-gnome-c32d541cc5ac62d8de5158fe6e83385bbccb3dc9.tar.gz freebsd-ports-gnome-c32d541cc5ac62d8de5158fe6e83385bbccb3dc9.tar.zst freebsd-ports-gnome-c32d541cc5ac62d8de5158fe6e83385bbccb3dc9.zip |
- Update to 3.01
- Add LICENSE
- Pet portlint: fit pkg-descr in 24 lines
Changes: http://search.cpan.org/dist/Mail-IMAPTalk/Changes
Diffstat (limited to 'mail')
-rw-r--r-- | mail/p5-Mail-IMAPTalk/Makefile | 10 | ||||
-rw-r--r-- | mail/p5-Mail-IMAPTalk/distinfo | 4 | ||||
-rw-r--r-- | mail/p5-Mail-IMAPTalk/pkg-descr | 46 |
3 files changed, 28 insertions, 32 deletions
diff --git a/mail/p5-Mail-IMAPTalk/Makefile b/mail/p5-Mail-IMAPTalk/Makefile index 8cd81b30579b..a6e0bc673913 100644 --- a/mail/p5-Mail-IMAPTalk/Makefile +++ b/mail/p5-Mail-IMAPTalk/Makefile @@ -6,7 +6,7 @@ # PORTNAME= Mail-IMAPTalk -PORTVERSION= 2.01 +PORTVERSION= 3.01 CATEGORIES= mail perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -14,10 +14,12 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= IMAP client interface with lots of features -MAKE_JOBS_SAFE= yes - -MAN3= Mail::IMAPTalk.3 +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual +MAKE_JOBS_SAFE= yes PERL_CONFIGURE= yes +MAN3= Mail::IMAPTalk.3 + .include <bsd.port.mk> diff --git a/mail/p5-Mail-IMAPTalk/distinfo b/mail/p5-Mail-IMAPTalk/distinfo index 13f2b76cc4f3..48288df510c7 100644 --- a/mail/p5-Mail-IMAPTalk/distinfo +++ b/mail/p5-Mail-IMAPTalk/distinfo @@ -1,2 +1,2 @@ -SHA256 (Mail-IMAPTalk-2.01.tar.gz) = dc4c95bf82709a20771b0ee3efcd802d08724586efc9dd61be397920b2efeac1 -SIZE (Mail-IMAPTalk-2.01.tar.gz) = 37448 +SHA256 (Mail-IMAPTalk-3.01.tar.gz) = 269a16bf2e699c69310eb0640222af580ff554109714006c21d688058eb1984e +SIZE (Mail-IMAPTalk-3.01.tar.gz) = 41066 diff --git a/mail/p5-Mail-IMAPTalk/pkg-descr b/mail/p5-Mail-IMAPTalk/pkg-descr index 79e70a42f057..0d56d6d84fea 100644 --- a/mail/p5-Mail-IMAPTalk/pkg-descr +++ b/mail/p5-Mail-IMAPTalk/pkg-descr @@ -1,29 +1,23 @@ -This module communicates with an IMAP server. Each IMAP server command is -mapped to a method of this object. +This module communicates with an IMAP server. Each IMAP server command is mapped +to a method of this object. Although other IMAP modules exist on CPAN, this has +several advantages over other modules: +- It parses the more complex IMAP structures like envelopes and body structures + into nice Perl data structures. +- It correctly supports atoms, quoted strings and literals at any point. Some + parsers in other modules aren't fully IMAP compatiable and may break at odd + times with certain messages on some servers. +- It allows large return values (eg. attachments on a message) to be read + directly into a file, rather than into memory. +- It includes some helper functions to find the actual text/plain or text/html + part of a message out of a complex MIME structure. It also can find a list of + attachements, and CID links for HTML messages with attached images. +- It supports decoding of MIME headers to Perl utf-8 strings automatically, so + you don't have to deal with MIME encoded headers (enabled optionally). -Although other IMAP modules exist on CPAN, this has several advantages -over other modules. +While the IMAP protocol does allow for asynchronous running of commands, this +module is designed to be used in a synchronous manner. That is, you issue a +command by calling a method, and the command will block until the appropriate +response is returned. The method will then return the parsed results from the +given command. - * It parses the more complex IMAP structures like envelopes and body -structures into nice Perl data structures. - * It correctly supports atoms, quoted strings and literals at any -point. Some parsers in other modules aren't fully IMAP compatiable and may -break at odd times with certain messages on some servers. - * It allows large return values (eg. attachments on a message) to be -read directly into a file, rather than into memory. - * It includes some helper functions to find the actual text/plain or -text/html part of a message out of a complex MIME structure. It also can -find a list of attachements, and CID links for HTML messages with attached -images. - * It supports decoding of MIME headers to Perl utf-8 strings -automatically, so you don't have to deal with MIME encoded headers -(enabled optionally). - -While the IMAP protocol does allow for asynchronous running of commands, -this module is designed to be used in a synchronous manner. That is, you -issue a command by calling a method, and the command will block until the -appropriate response is returned. The method will then return the parsed -results from the given command. - -Author: Rob Mueller <cpan@robm.fastmail.fm> WWW: http://search.cpan.org/dist/Mail-IMAPTalk/ |