fe11c05168
5.433 2007-09-27 Dave O'Neill * VERSION 5.4.33 RELEASED * (bugfix) Fix API regression - MIME::Entity::body() should return an arrayref. Fixes RT 29643. 5.422 2007-09-25 Dave O'Neill * VERSION 5.422 RELEASED * (bugfix) Require File::Temp 0.17 or newer for IO::Seekable support. This fixes test failures seen on Darwin. * (bugfix) Clear filer's purgeable() before calling init_parse(). Fixes RT 7858. commit 005e387c42957f2a433464beaef1d2b416746963 Author: Dave O'Neill Date: Fri Sep 21 12:41:03 2007 -0400 Add LICENSE item to Makefile.PL 5.421 2007-09-21 Dave O'Neill * VERSION 5.421 RELEASED * (enhancement) Use File::Temp for tempfile generation. MIME::Parser now has a tmp_dir() method for changing the temporary directory on a per-parser basis. 5.420_02 2007-08-29 Dave O'Neill * VERSION 5.420_02 (developer release) * (bugfix) Correct 'use vars' and add a 'use strict' (fixes RT #22681) * (bugfix) Don't allow all-whitespace filenames in recommended_filename() (fixes RT #6115) * (bugfix) Require IO-stringy 2.110. Fixes RT tickets 11312, 11452, 12375, 12784, and 18791 * (docs) Updated RFC references to refer to MIME RFCs 2045-2049 (RT #14119) * (cleanup) Warn if no decoder is found for a given encoding. (RT #22682) * (cleanup) IO::Wrap no longer used, IO::ScalarArray use minimized 5.420_01 2007-06-18 Dave O'Neill * VERSION 5.420_01 (developer release) * (bugfix) Fix warning generated by a header of "Content-Type: /". Previous versions would warn about undefined variables. We now set a blank type and subtype. * (cleanup) Partial removal of dependencies on IO::Scalar and IO::ScalarArray. We now use Perl's built-in I/O on scalars as much as possible. NOTE THAT THIS REQUIRES PERL 5.8! * (cleanup) FileHandle usage removed in favour of IO::File * (cleanup) Remove broken utility methods -- shellquote() because it didn't really make anything safe, and catfile(), because File::Spec is better. * (cleanup) Multiple test cleanups, including removal of ExtUtils/TBone.pm. Tests now use Test::More. * (cleanup) Remove support for recycling tempfiles ( tmp_recycling() and its usage in new_tmpfile() ) * (cleanup) Remove nasty "eval join('',<::DATA>) unless caller()" testing code from various modules * (cleanup) Merge all changelog information from README and MIME/Tools.pm into ChangeLog
27 lines
791 B
Makefile
27 lines
791 B
Makefile
# $NetBSD: Makefile,v 1.29 2007/10/23 11:28:55 wiz Exp $
|
|
#
|
|
|
|
DISTNAME= MIME-tools-5.423
|
|
PKGNAME= p5-${DISTNAME}
|
|
SVR4_PKGNAME= p5mit
|
|
CATEGORIES= perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=MIME/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://search.cpan.org/dist/MIME-tools/
|
|
COMMENT= Perl5 modules for encoding and decoding MIME messages
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
DEPENDS+= p5-File-Temp>=0.17:../../devel/p5-File-Temp
|
|
DEPENDS+= p5-IO-stringy-[0-9]*:../../devel/p5-IO-stringy
|
|
DEPENDS+= p5-MIME-Base64>=3.03:../../converters/p5-MIME-Base64
|
|
DEPENDS+= p5-MailTools-[0-9]*:../../mail/p5-MailTools
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
USE_LANGUAGES= # empty
|
|
PERL5_PACKLIST= auto/MIME-tools/.packlist
|
|
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|