rpms/perl-Mail-Mbox-MessageParser/devel .cvsignore, 1.7, 1.8 perl-Mail-Mbox-MessageParser.spec, 1.15, 1.16 sources, 1.7, 1.8 Mail-Mbox-MessageParser-1.5000-ANDK-01.patch, 1.1, NONE

Paul Howarth pghmcfc at fedoraproject.org
Wed Sep 2 13:58:55 UTC 2009


Author: pghmcfc

Update of /cvs/pkgs/rpms/perl-Mail-Mbox-MessageParser/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv863

Modified Files:
	.cvsignore perl-Mail-Mbox-MessageParser.spec sources 
Removed Files:
	Mail-Mbox-MessageParser-1.5000-ANDK-01.patch 
Log Message:
* Wed Sep  2 2009 Paul Howarth <paul at city-fan.org> 1.5002-1 
- Update to 1.5002 
  - perl 5.10 patch upstreamed 
  - disable the grep interface, known to be buggy 
  - fix infinite loop in emails of less than 200 characters (CPAN RT#33493) 
  - update Makefile.PL for versions of Module::Install > 0.88 
  - instead of returning an error for an empty mailbox, a valid mailbox is 
    returned that immediately fails the end_of_mailbox check (CPAN RT#43665) 
  - fix missing "m" modifier issue exposed by Perl 5.10 (CPAN RT#33004) 
  - added some debugging information for the "cache data not validated" error 
  - fix an off-by-one error that could cause warnings about undefined values 
- BuildRequire perl(Test::More) and perl(Text::Diff)



Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/perl-Mail-Mbox-MessageParser/devel/.cvsignore,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -p -r1.7 -r1.8
--- .cvsignore	27 Feb 2007 17:20:30 -0000	1.7
+++ .cvsignore	2 Sep 2009 13:58:55 -0000	1.8
@@ -1 +1 @@
-Mail-Mbox-MessageParser-1.5000.tar.gz
+Mail-Mbox-MessageParser-1.5002.tar.gz


Index: perl-Mail-Mbox-MessageParser.spec
===================================================================
RCS file: /cvs/pkgs/rpms/perl-Mail-Mbox-MessageParser/devel/perl-Mail-Mbox-MessageParser.spec,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -p -r1.15 -r1.16
--- perl-Mail-Mbox-MessageParser.spec	26 Jul 2009 09:07:56 -0000	1.15
+++ perl-Mail-Mbox-MessageParser.spec	2 Sep 2009 13:58:55 -0000	1.16
@@ -1,19 +1,18 @@
 Summary:	A fast and simple mbox folder reader
 Name:		perl-Mail-Mbox-MessageParser
-Version:	1.5000
-Release:	8%{?dist}
+Version:	1.5002
+Release:	1%{?dist}
 License:	GPL+
 Group:		Development/Libraries
 Url:		http://search.cpan.org/dist/Mail-Mbox-MessageParser/
 Source0:	http://search.cpan.org/CPAN/authors/id/D/DC/DCOPPIT/Mail-Mbox-MessageParser-%{version}.tar.gz
-# http://cpan.llarian.net/authors/id/A/AN/ANDK/patches/Mail-Mbox-MessageParser-1.5000-ANDK-01.patch.gz
-Patch0:		Mail-Mbox-MessageParser-1.5000-ANDK-01.patch
 BuildRoot:	%{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch:	noarch
 Requires:	grep, gzip, bzip2, /usr/bin/diff
 Requires:	perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
 BuildRequires:	grep, gzip, bzip2, /usr/bin/diff
 BuildRequires:	perl(ExtUtils::MakeMaker), perl(FileHandle::Unget)
+BuildRequires:	perl(Test::More), perl(Text::Diff)
 
 %description
 Mail::Mbox::MessageParser is a feature-poor but very fast mbox parser. It uses
@@ -22,7 +21,6 @@ information, GNU grep, or highly optimiz
 
 %prep
 %setup -q -n Mail-Mbox-MessageParser-%{version}
-%patch0 -p1
 
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor \
@@ -41,7 +39,7 @@ information, GNU grep, or highly optimiz
 %{__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 ';'
+/usr/bin/find %{buildroot} -depth -type d -exec /bin/rmdir {} ';' 2>/dev/null
 %{__chmod} -R u+w %{buildroot}/*
 
 %clean
@@ -51,9 +49,26 @@ information, GNU grep, or highly optimiz
 %defattr(-,root,root,-)
 %doc README CHANGES anonymize_mailbox LICENSE
 %{perl_vendorlib}/Mail/
-%{_mandir}/man3/Mail::Mbox::MessageParser*
+%{_mandir}/man3/Mail::Mbox::MessageParser.3pm*
+%{_mandir}/man3/Mail::Mbox::MessageParser::Cache.3pm*
+%{_mandir}/man3/Mail::Mbox::MessageParser::Grep.3pm*
+%{_mandir}/man3/Mail::Mbox::MessageParser::MetaInfo.3pm*
+%{_mandir}/man3/Mail::Mbox::MessageParser::Perl.3pm*
 
 %changelog
+* Wed Sep  2 2009 Paul Howarth <paul at city-fan.org> 1.5002-1 
+- Update to 1.5002 
+  - perl 5.10 patch upstreamed 
+  - disable the grep interface, known to be buggy 
+  - fix infinite loop in emails of less than 200 characters (CPAN RT#33493) 
+  - update Makefile.PL for versions of Module::Install > 0.88 
+  - instead of returning an error for an empty mailbox, a valid mailbox is 
+    returned that immediately fails the end_of_mailbox check (CPAN RT#43665) 
+  - fix missing "m" modifier issue exposed by Perl 5.10 (CPAN RT#33004) 
+  - added some debugging information for the "cache data not validated" error 
+  - fix an off-by-one error that could cause warnings about undefined values 
+- BuildRequire perl(Test::More) and perl(Text::Diff) 
+
 * Sun Jul 26 2009 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 1.5000-8
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
 


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/perl-Mail-Mbox-MessageParser/devel/sources,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -p -r1.7 -r1.8
--- sources	27 Feb 2007 17:20:30 -0000	1.7
+++ sources	2 Sep 2009 13:58:55 -0000	1.8
@@ -1 +1 @@
-8489694f8cdb77bf8f31f6582735b2f9  Mail-Mbox-MessageParser-1.5000.tar.gz
+0df054faf3a43a537636ea7ca997694c  Mail-Mbox-MessageParser-1.5002.tar.gz


--- Mail-Mbox-MessageParser-1.5000-ANDK-01.patch DELETED ---




More information about the Fedora-perl-devel-list mailing list