You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
perl-Spreadsheet-ParseExcel/perl-Spreadsheet-ParseExcel...

94 lines
2.9 KiB

# the debuginfo package is empty
%define debug_package %{nil}
# Avoid Epoch inflation
%define module_version 0.30
Name: perl-Spreadsheet-ParseExcel
Version: 0.3000
Release: 1%{?dist}
Summary: Get information from an Excel file
License: GPL or Artistic
Group: Development/Libraries
URL: http://search.cpan.org/dist/Spreadsheet-ParseExcel/
Source0: http://www.cpan.org/authors/id/S/SZ/SZABGAB/Spreadsheet-ParseExcel-%{module_version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: perl(IO::Scalar)
BuildRequires: perl(Module::Build)
BuildRequires: perl(OLE::Storage_Lite) >= 0.08
BuildRequires: perl(Proc::ProcessTable)
BuildRequires: perl(Unicode::Map)
BuildRequires: perl(Jcode)
BuildRequires: perl(Spreadsheet::WriteExcel)
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
%description
This module allows you to get information from an Excel file.
The module can handle files of Excel95, 97, 2000, and Excel4.
%prep
%setup -q -n Spreadsheet-ParseExcel-%{module_version}
%build
%{__perl} Build.PL installdirs=vendor
./Build
%install
rm -rf $RPM_BUILD_ROOT
./Build install destdir=$RPM_BUILD_ROOT create_packlist=0
find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
install -d $RPM_BUILD_ROOT%{perl_vendorarch}/Unicode/Map/MS/WIN
install -m644 CP932Excel.map $RPM_BUILD_ROOT%{perl_vendorarch}/Unicode/Map/MS/WIN/
%{_fixperms} $RPM_BUILD_ROOT/*
%check
./Build test
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%doc Changes README README_Japan.htm sample/
%{perl_vendorarch}/Unicode/Map/MS/WIN/CP932Excel.map
%{perl_vendorlib}/*
%{_mandir}/man3/*
%changelog
* Fri Apr 06 2007 Steven Pritchard <steve@kspei.com> 0.3000-1
- Update to 0.30.
- BR Proc::ProcessTable for better test coverage.
* Wed Jan 17 2007 Steven Pritchard <steve@kspei.com> 0.2800-1
- Update to 0.28.
- Drop typo fix.
- BR: Spreadsheet::WriteExcel (for tests).
* Wed Jan 17 2007 Steven Pritchard <steve@kspei.com> 0.2700-2
- Fix typo in Spreadsheet::ParseExcel::FmtUnicode.
* Tue Jan 16 2007 Steven Pritchard <steve@kspei.com> 0.2700-1
- Update to 0.27.
- Cleanup to more closely match cpanspec output.
- Switch to Module::Build-based build.
- BR: IO::Scalar, Unicode::Map, and Jcode.
* Thu Oct 05 2006 Christian Iseli <Christian.Iseli@licr.org> 0.2603-3
- rebuilt for unwind info generation, broken in gcc-4.1.1-21
* Tue Sep 26 2006 Steven Pritchard <steve@kspei.com> 0.2603-2
- Fix find option order.
* Sun May 14 2006 Michael A. Peters <mpeters@mac.com> - 0.2603-1
- Install the CP932Excel.map file
- makes package arch dependent
* Wed May 10 2006 Michael A. Peters <mpeters@mac.com> - 0.2603-0.2
- Changed license to GPL or Artistic per the ParseExcel.pm file
* Wed May 10 2006 Michael A. Peters <mpeters@mac.com> - 0.2603-0.1
- Initial packaging