Author: pghmcfc Update of /cvs/pkgs/rpms/perl-MIME-tools/F-13 In directory cvs01.phx2.fedoraproject.org:/tmp/cvs-serv29895 Modified Files: .cvsignore perl-MIME-tools.spec sources Log Message: * Thu Apr 22 2010 Paul Howarth <paul@xxxxxxxxxxxx> - 5.428-1 - Update to 5.428 - RT#56764: build release with a newer Module::Install - RT#52924: ensure we add <> around Content-id data - RT#48036: make mimesend example script a bit more useful - RT#43439: fix for parsing of doubled ; in multipart headers - RT#41632: if RFC-2231 and non-RFC-2231 params present, use only RFC-2231 - RT#40715: reference Encode::MIME::Header in docs - RT#39985: correct POD typos - Only bind to localhost in smtpsend test, not all interfaces - Specify --skipdeps in Makefile.PL invocation to prevent use of CPAN module - Buildreq perl(Test::Kwalitee) for additional test coverage - Tidy up %description and other largely cosmetic spec changes Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-MIME-tools/F-13/.cvsignore,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- .cvsignore 1 Jul 2008 08:39:42 -0000 1.9 +++ .cvsignore 23 Apr 2010 08:41:10 -0000 1.10 @@ -1 +1 @@ -MIME-tools-5.427.tar.gz +MIME-tools-5.428.tar.gz Index: perl-MIME-tools.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-MIME-tools/F-13/perl-MIME-tools.spec,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- perl-MIME-tools.spec 7 Dec 2009 02:27:12 -0000 1.25 +++ perl-MIME-tools.spec 23 Apr 2010 08:41:10 -0000 1.26 @@ -1,16 +1,14 @@ # Note: MIME::tools > 5.420 require File::Temp >= 0.17, which is not available # in Fedora prior to Fedora 9 (it's a core module) -Name: perl-MIME-tools -Version: 5.427 -Release: 4%{?dist} Summary: Modules for parsing and creating MIME entities in Perl +Name: perl-MIME-tools +Version: 5.428 +Release: 1%{?dist} Group: Development/Libraries License: GPL+ or Artistic URL: http://search.cpan.org/dist/MIME-tools/ Source0: http://search.cpan.org/CPAN/authors/id/D/DO/DONEILL/MIME-tools-%{version}.tar.gz -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildArch: noarch BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(File::Path) >= 1 BuildRequires: perl(File::Spec) >= 0.6 @@ -18,16 +16,19 @@ BuildRequires: perl(File::Temp) >= 0.18 BuildRequires: perl(IO::File) >= 1.13 BuildRequires: perl(IO::Stringy) >= 2.110 BuildRequires: perl(MIME::Base64) >= 3.03 -BuildRequires: perl-MailTools >= 1.50 BuildRequires: perl(MIME::QuotedPrint) -BuildRequires: perl(Test::More), perl(Test::Pod), perl(Test::Pod::Coverage) +BuildRequires: perl-MailTools >= 1.50 +BuildRequires: perl(Test::More), perl(Test::Pod), perl(Test::Pod::Coverage), perl(Test::Kwalitee) +BuildArch: noarch +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) %description -MIME-tools is a collection of Perl5 MIME:: modules for parsing, decoding, and -generating single- or multipart (even nested multipart) MIME messages. - -Yes, kids, that means you can send messages with attached GIF files. +MIME-tools - modules for parsing (and creating!) MIME entities. Modules in this +toolkit: Abstract message holder (file, scalar, etc.), OO interface for +decoding MIME messages, an extracted and decoded MIME entity, Mail::Field +subclasses for parsing fields, a parsed MIME header (Mail::Header subclass), +parser and tool for building your own MIME parser, and utilities. %prep %setup -q -n MIME-tools-%{version} @@ -41,15 +42,18 @@ Yes, kids, that means you can send messa %{__mv} examples/mime{dump,encode,explode,postcard,send} useful-examples %build -%{__perl} Makefile.PL INSTALLDIRS=vendor +%{__perl} Makefile.PL INSTALLDIRS=vendor --skipdeps %{__make} %{?_smp_mflags} +%clean +%{__rm} -rf %{buildroot} + %install %{__rm} -rf %{buildroot} %{__make} pure_install PERL_INSTALL_ROOT=%{buildroot} /usr/bin/find %{buildroot} -type f -name .packlist -exec %{__rm} -f {} ';' -/usr/bin/find %{buildroot} -depth -type d -exec /bin/rmdir {} 2>/dev/null ';' -%{__chmod} -R u+w %{buildroot}/* +/usr/bin/find %{buildroot} -depth -type d -exec /bin/rmdir {} ';' 2>/dev/null +%{__chmod} -R u+w %{buildroot} # Put the more useful examples in %{_bindir} %{__install} -d -m 755 %{buildroot}%{_bindir} @@ -63,11 +67,9 @@ done cd - %check +# POD Coverage test fails due to lots of undocumented routines TEST_POD_COVERAGE=0 %{__make} test -%clean -%{__rm} -rf %{buildroot} - %files %defattr(-,root,root,-) %doc README COPYING ChangeLog @@ -75,13 +77,35 @@ TEST_POD_COVERAGE=0 %{__make} test # perl, perl-MIME-tools, and perl-MailTools, which are all deps anyway. %doc examples %{perl_vendorlib}/MIME/ -%{_bindir}/mime* -%{_mandir}/man1/mime*.1* +%{_bindir}/mimedump +%{_bindir}/mimeencode +%{_bindir}/mimeexplode +%{_bindir}/mimepostcard +%{_bindir}/mimesend +%{_mandir}/man1/mimedump.1* +%{_mandir}/man1/mimeencode.1* +%{_mandir}/man1/mimeexplode.1* +%{_mandir}/man1/mimepostcard.1* +%{_mandir}/man1/mimesend* %{_mandir}/man3/MIME::*.3pm* %changelog +* Thu Apr 22 2010 Paul Howarth <paul@xxxxxxxxxxxx> - 5.428-1 +- Update to 5.428 + - RT#56764: build release with a newer Module::Install + - RT#52924: ensure we add <> around Content-id data + - RT#48036: make mimesend example script a bit more useful + - RT#43439: fix for parsing of doubled ; in multipart headers + - RT#41632: if RFC-2231 and non-RFC-2231 params present, use only RFC-2231 + - RT#40715: reference Encode::MIME::Header in docs + - RT#39985: correct POD typos + - Only bind to localhost in smtpsend test, not all interfaces +- Specify --skipdeps in Makefile.PL invocation to prevent use of CPAN module +- Buildreq perl(Test::Kwalitee) for additional test coverage +- Tidy up %%description and other largely cosmetic spec changes + * Mon Dec 7 2009 Stepan Kasal <skasal@xxxxxxxxxx> - 5.427-4 -- rebuild against perl 5.10.1 +- Rebuild against perl 5.10.1 * Sun Jul 26 2009 Fedora Release Engineering <rel-eng@xxxxxxxxxxxxxxxxxxxxxxx> - 5.427-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-MIME-tools/F-13/sources,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- sources 1 Jul 2008 08:39:42 -0000 1.9 +++ sources 23 Apr 2010 08:41:10 -0000 1.10 @@ -1 +1 @@ -4333caa7238cb9eafb5f7fb39fcbd8e7 MIME-tools-5.427.tar.gz +dc9bef4af5ca86b729f5277fa52879f4 MIME-tools-5.428.tar.gz -- Fedora Extras Perl SIG http://www.fedoraproject.org/wiki/Extras/SIGs/Perl perl-devel mailing list perl-devel@xxxxxxxxxxxxxxxxxxxxxxx https://admin.fedoraproject.org/mailman/listinfo/perl-devel