@ -2,10 +2,10 @@
%define debug_package %{nil}
%define debug_package %{nil}
# Avoid Epoch inflation
# Avoid Epoch inflation
%define module_version 0.55
%define module_version 0.56
Name: perl-Spreadsheet-ParseExcel
Name: perl-Spreadsheet-ParseExcel
Version: 0.55 00
Version: 0.56 00
Release: 1%{?dist}
Release: 1%{?dist}
Summary: Extract information from an Excel file
Summary: Extract information from an Excel file
License: GPL+ or Artistic
License: GPL+ or Artistic
@ -16,7 +16,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: perl(ExtUtils::MakeMaker)
BuildRequires: perl(ExtUtils::MakeMaker)
BuildRequires: perl(IO::Scalar)
BuildRequires: perl(IO::Scalar)
BuildRequires: perl(Jcode)
BuildRequires: perl(Jcode)
BuildRequires: perl(OLE::Storage_Lite) >= 0.08
BuildRequires: perl(OLE::Storage_Lite) >= 0.19
BuildRequires: perl(Proc::ProcessTable)
BuildRequires: perl(Proc::ProcessTable)
BuildRequires: perl(Spreadsheet::WriteExcel)
BuildRequires: perl(Spreadsheet::WriteExcel)
BuildRequires: perl(Test::CPAN::Meta)
BuildRequires: perl(Test::CPAN::Meta)
@ -37,7 +37,7 @@ Excel 95-2003 file.
# Fix line-endings of sample files; note that some of them are explicitly
# Fix line-endings of sample files; note that some of them are explicitly
# not UTF-8 encoded and thus rpmlint complaints about them are to be expected
# not UTF-8 encoded and thus rpmlint complaints about them are to be expected
for file in Changes README sample/* ; do
for file in README sample/* ; do
[ -f "$file" ] && %{__perl} -pi -e 's/\r\n/\n/' "$file"
[ -f "$file" ] && %{__perl} -pi -e 's/\r\n/\n/' "$file"
done
done
@ -84,6 +84,18 @@ rm -rf %{buildroot}
%{_mandir}/man3/Spreadsheet::ParseExcel::Worksheet.3pm*
%{_mandir}/man3/Spreadsheet::ParseExcel::Worksheet.3pm*
%changelog
%changelog
* Mon Aug 22 2011 Paul Howarth <paul@city-fan.org> - 0.5600-1
- Update to 0.56
- Added error() and error_code() error handling routines, which allows
encrypted files to be ignored; added t/10_error_codes.t for these methods
(CPAN RT#47978, CPAN RT#51033)
- Made version 0.19 of OLE::Storage_Lite a prerequisite to avoid issues when
writing OLE header in SaveParser
- Changed Parse() method name to parse() for consistency with the rest of the
API; the older method name is still supported but not documented
- Bump version requirement for perl(OLE::Storage_Lite) to 0.19
- No longer need to fix line-endings of Changes file
* Mon Aug 22 2011 Paul Howarth <paul@city-fan.org> - 0.5500-1
* Mon Aug 22 2011 Paul Howarth <paul@city-fan.org> - 0.5500-1
- Update to 0.55
- Update to 0.55
- Refactored Worksheet interface and documentation, adding 04_regression.t
- Refactored Worksheet interface and documentation, adding 04_regression.t