On 04/08/2011 06:37 AM, Ken McDonell wrote:
On Thu, 2011-04-07 at 21:10 +1000, Mark Goodwin wrote:
me, with help from anyone. I want to get all this into F15, which may
or may not be possible at this late stage. But I'll try.
Lemme know if I can help.
looks like you've already done the cherry picking, so I guess
I might as well just pull everything from that branch (assuming
it's 3.x based) ..?
There's also a perl spreadsheet broken dependency in F15 that needs
to be resolved: pcp-import-sheet2pcp needs perl(Spreadsheet::Read)
but the latter isn't in Fedora yet, though a similar perl package
is available. So I'm not sure on the best resolution yet.
What is the "similar" perl package?
perl-Spreadsheet-ParseExcel-Simple.noarch
(though I loath introducing a dependency on anything to do
with a microsoft product). Usage goes something like this:
my $xls = Spreadsheet::ParseExcel::Simple->read('spreadsheet.xls');
foreach my $sheet ($xls->sheets) {
while ($sheet->has_data) {
my @data = $sheet->next_row;
}
}
Cheers
-- Mark
|