[perl-MailTools] Update to 2.08 (#709697)

Paul Howarth pghmcfc at fedoraproject.org
Wed Jun 1 14:18:59 UTC 2011


commit e1381314bc5a4ffb7f3d438655ce602a08284f13
Author: Paul Howarth <paul at city-fan.org>
Date:   Wed Jun 1 15:12:50 2011 +0100

    Update to 2.08 (#709697)
    
    - New upstream release 2.08:
      - Respect errors on closing a Mail::Mailer::smtp/::smtps connection
      - Mail::Internet should accept Net::SMTP::SSL as well (CPAN RT#68590)
      - Document that Mail::Mailer::smtps needs Authen::SASL
    - Use patch rather than iconv to convert docs to UTF8 encoding

 .gitignore                |    2 +-
 MailTools-2.08-UTF8.patch |   65 +++++++++++++++++++++++++++++++++++++++++++++
 perl-MailTools.spec       |   15 +++++++---
 sources                   |    2 +-
 4 files changed, 78 insertions(+), 6 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index eae87af..c5156d1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1 @@
-/MailTools-2.07.tar.gz
+/MailTools-[0-9.]*.tar.gz
diff --git a/MailTools-2.08-UTF8.patch b/MailTools-2.08-UTF8.patch
new file mode 100644
index 0000000..a41cbf8
--- /dev/null
+++ b/MailTools-2.08-UTF8.patch
@@ -0,0 +1,65 @@
+--- MailTools-2.08/ChangeLog	2011-06-01 12:55:38.000000000 +0100
++++ MailTools-2.08/ChangeLog	2011-06-01 14:41:45.004502111 +0100
+@@ -33,7 +33,7 @@
+ 	- express more clearly that Authen::SASL needs to be installed
+ 	  manually if you need the functionality
+ 
+-	- support for smtps via Net::SMTP::SSL, by [Maciej Żenczykowski]
++	- support for smtps via Net::SMTP::SSL, by [Maciej Żenczykowski]
+ 
+ version 2.05: Fri Dec 18 22:39:21 CET 2009
+ 
+@@ -61,7 +61,7 @@
+ 	- Mail::Field::_require_dir complained on 5.10 about a closed
+ 	  dirhandle.  rt.cpan.org#37114 [Manuel Hecht]
+ 
+-	- Bcc line removed before collecting addresses. [Jørgen Thomsen]
++	- Bcc line removed before collecting addresses. [Jørgen Thomsen]
+ 
+ 	Improvements:
+ 
+@@ -72,7 +72,7 @@
+ 
+ 	Fixes:
+ 
+-	- Netware needs to use smtp as well [Günter Knauf]
++	- Netware needs to use smtp as well [Günter Knauf]
+ 
+ 	- Mail::Field::extract() fixed.  Reported by [Andrea Venturol]
+ 
+@@ -237,7 +237,7 @@
+ 
+ 	- Extended explanation that Mail::Address is limited.
+ 
+-	- Added examples/mail-mailer.pl, contributed by [Bruno Negrão]
++	- Added examples/mail-mailer.pl, contributed by [Bruno Negrão]
+ 
+ 	- use Mail::Mailer qw(mail) sets default mailer.  Doc update by
+ 	  [Slavan Rezic]
+@@ -288,7 +288,7 @@
+ 
+ 	- [Erik Van Roode] Mail::Mailer::test.pm -> Mail::Mailer::testfile.pm
+ 
+-	- [Jérôme Dion] corrected the folding of lines: folds start only
++	- [Jérôme Dion] corrected the folding of lines: folds start only
+ 	  with one blank according to rfc2822.
+ 
+ 	- Added a big warning against automatic sender email address
+@@ -414,7 +414,7 @@
+ 	  time ago, broke the parser.  As example
+ 	   "Mark Overmeer <mailtools at overmeer.net> (mailtools maintainer)"
+ 	  was parsed into two separate objects.... wrong.
+-          [Nicholas Oxhøj] reversed the patch.
++          [Nicholas Oxhøj] reversed the patch.
+ 
+ version 1.47: Fri Jul  5 12:02:55 CEST 2002
+ 
+@@ -708,7 +708,7 @@
+ 	- check in $ENV{HOME} is defined
+ 	
+ 	Mail::Address
+-	- Fix capitalization problems with names like "Ließegang"
++	- Fix capitalization problems with names like "Ließegang"
+ 
+ Change 290 on 1999/03/31 by <gbarr at pobox.com> (Graham Barr)
+ 
diff --git a/perl-MailTools.spec b/perl-MailTools.spec
index 03caeb1..e265585 100644
--- a/perl-MailTools.spec
+++ b/perl-MailTools.spec
@@ -1,11 +1,12 @@
 Summary:	Various mail-related perl modules
 Name:		perl-MailTools
-Version:	2.07
-Release:	2%{?dist}
+Version:	2.08
+Release:	1%{?dist}
 License:	GPL+ or Artistic
 Group:		Development/Libraries
 URL:		http://search.cpan.org/dist/MailTools/
 Source0:	http://search.cpan.org/CPAN/authors/id/M/MA/MARKOV/MailTools-%{version}.tar.gz
+Patch0:		MailTools-2.08-UTF8.patch
 BuildRoot:	%{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch:	noarch
 Requires:	perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
@@ -30,8 +31,7 @@ done
 cd -
 
 # Fix character encodings
-/usr/bin/iconv -f iso-8859-1 -t utf8 < ChangeLog > ChangeLog.utf8
-%{__mv} ChangeLog.utf8 ChangeLog
+%patch0 -p1
 
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor
@@ -100,6 +100,13 @@ cd -
 %{_mandir}/man3/Mail::Util.3pm*
 
 %changelog
+* Wed Jun  1 2011 Paul Howarth <paul at city-fan.org> - 2.08-1
+- Update to 2.08 (#709697)
+  - Respect errors on closing a Mail::Mailer::smtp/::smtps connection
+  - Mail::Internet should accept Net::SMTP::SSL as well (CPAN RT#68590)
+  - Document that Mail::Mailer::smtps needs Authen::SASL
+- Use patch rather than iconv to convert docs to UTF8 encoding
+
 * Tue Feb 08 2011 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 2.07-2
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
 
diff --git a/sources b/sources
index 32a206d..eb8cabf 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-df861e05cbcf3a336ecebfb2c42529d0  MailTools-2.07.tar.gz
+0245bf7985c6661e0cf31a59657a18f0  MailTools-2.08.tar.gz



More information about the perl-devel mailing list