d2cee00338
Upstream changes: version 3.38: Tue Feb 9 02:48:21 UTC 2016 - rt.cpan.org#107592: redact credentials via debug if !Showcredentials [Gilles Lamiral] - rt.cpan.org#110273: failure to quote password values (regression introduced in 3.36 via fix for rt.cpan.org#100601) [Gilles Lamiral] - rt.cpan.org#107593: allow getquota("") - *Quote() now returns qq("") for defined but empty values - rt.cpan.org#107011: fix folders_hash() docs and usage in is_parent() [Gilles Lamiral] - rt.cpan.org#106500: split UID EXPUNGE with a large sequence set - added t/quota.t and t/lib/MyTest.pm for testing - updated copyright for 2016 version 3.37: Fri Aug 14 11:04:53 EDT 2015 - regex fix in rt.cpan.org#96575 required Perl 5.10 updated regex to be backwards compatible with Perl 5.8 [Paul Howarth] version 3.36: Fri Aug 14 01:40:50 UTC 2015 - rt.cpan.org#96575: parsing fixes for fetch_hash and bodystructure + better handling of data containing escaped characters [Ken Neighbors] - rt.cpan.org#97718: hang waiting for tag if DONE sent outside of IDLE [Laurence Darby] - rt.cpan.org#100683: failed literal commands hang waiting for '+' [Matthias Pitzl] - rt.cpan.org#100601: login() fails if username requires use of literals [Andy Lyttle] - *rt.cpan.org#103823: is_parent() should return undef on \NoInferiors [Gilles Lamiral] - rt.cpan.org#105456: fetch_hash fails if sequence number contains '*' + *no longer removing unrequested data (except UID) in returned hashes [Gilles Lamiral] - rt.cpan.org#91912: selectable broke in 3.29 due to \b around \NoSelect [Justin Vallon, Gilles Lamiral] - some documentation, test cleanup and new tests version 3.35: Fri, Nov 22, 2013 2:18:41 PM - *use Quote() over Massage() to avoid stripping double quotes from arg + removed constant NonFolderArg + may deprecate Massage() in a future release - _list_or_lsub failed to handle folder names with double quotes + cleanup Escaped_results() + new methods: Escaped_history() _escaped_trans_data() + removed method: _list_response_preprocess() [Gilles Lamiral, Victor L閉 - rt.cpan.org#90315: getacl on a folder returned as literal failed + _read_line could remove extra space when literal data was received [Carl Karcher] - rt.cpan.org#89040: typo fixes [David Steinbrunner] version 3.34: Fri, Sep 27, 2013 12:50:17 AM - make Makefile.PL use non-interactive and document test.txt usage - new attribute: Socketargs => [ (IO::Socket::.. args) ] + cleanup connect() to more flexible with IO::Socket::* args - untagged server data during send literal may cause client to hang [Arthur Wolfe, Josh Hillman] + _send_line() needs '+' only to know it is OK to send LITERAL data + created _response_code_sub() to simplify _get_response() - remove internal "Folders" cache - Allow for RFC 6154 "IMAP LIST Extension for Special-Use Mailboxes" [Mathias Reitinger] + new method: folders_hash() + deprecate: xlist_folders(), xlist()
30 lines
1.1 KiB
Makefile
30 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.43 2016/06/13 07:39:40 wen Exp $
|
|
|
|
DISTNAME= Mail-IMAPClient-3.38
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= mail perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Mail/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://search.cpan.org/dist/Mail-IMAPClient/
|
|
COMMENT= Perl5 module for talking to RFC-2060 IMAP servers
|
|
LICENSE= gnu-gpl-v2 # OR artistic
|
|
|
|
#DEPENDS+= {perl>=5.6.1,p5-File-Temp-[0-9]*}:../../devel/p5-File-Temp
|
|
#DEPENDS+= {perl>=5.7.3,p5-MIME-Base64-[0-9]*}:../../converters/p5-MIME-Base64
|
|
DEPENDS+= p5-Parse-RecDescent>=1.94:../../devel/p5-Parse-RecDescent
|
|
DEPENDS+= p5-Scalar-List-Utils>=0:../../devel/p5-Scalar-List-Utils
|
|
|
|
# Recommended
|
|
DEPENDS+= p5-Authen-SASL-[0-9]*:../../security/p5-Authen-SASL
|
|
DEPENDS+= p5-Digest-HMAC-[0-9]*:../../security/p5-Digest-HMAC
|
|
DEPENDS+= p5-Test-Pod-[0-9]*:../../devel/p5-Test-Pod
|
|
DEPENDS+= p5-IO-Socket-SSL-[0-9]*:../../security/p5-IO-Socket-SSL
|
|
|
|
PERL5_PACKLIST= auto/Mail/IMAPClient/.packlist
|
|
|
|
pre-configure:
|
|
cd ${WRKSRC} && ${TOUCH} ${TOUCH_FLAGS} test.txt
|
|
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|