forked from pool/perl-Spreadsheet-ParseXLSX
Compare commits
11 Commits
13e65b27ed
...
c4306d0f0a
Author | SHA256 | Date | |
---|---|---|---|
c4306d0f0a | |||
e940cab52a | |||
5e5e9fe350 | |||
28c9ddc385 | |||
5f8ef2648f | |||
46ae1daa02 | |||
b4a3302ec7 | |||
964d5d7f30 | |||
f392d058fa | |||
|
c157482001 | ||
51f65cffb4 |
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:24990911b45be1c73fff9acda2c053deadd185aba8c03305cb2ec7e90322aa35
|
||||
size 1178846
|
3
Spreadsheet-ParseXLSX-0.36.tar.gz
Normal file
3
Spreadsheet-ParseXLSX-0.36.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:079530629d7cf0e65d7f098b6298236d05ceebf8bf4f4755246e01d5e708a210
|
||||
size 1747774
|
@@ -1,8 +1,47 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 15 13:40:06 UTC 2024 - chris@computersalat.de
|
||||
Sat Jan 25 05:29:51 UTC 2025 - Tina Müller <timueller+perl@suse.de>
|
||||
|
||||
- update changes file
|
||||
* add missing boo#1218651 (CVE-2024-22368) Information
|
||||
- updated to 0.360.0 (0.36)
|
||||
see /usr/share/doc/packages/perl-Spreadsheet-ParseXLSX/Changes
|
||||
|
||||
0.36 2025-01-24
|
||||
|
||||
- removed tests from distro illustrationg memory bomb fixed in 0.28 (issue #21)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 22 16:38:21 UTC 2024 - Tina Müller <timueller+perl@suse.de>
|
||||
|
||||
- updated to 0.35
|
||||
see /usr/share/doc/packages/perl-Spreadsheet-ParseXLSX/Changes
|
||||
|
||||
0.35 2024-03-19
|
||||
- don't rely on use mro (#14)
|
||||
0.34 2024-03-13
|
||||
- Merge pull request #13 from nrdvana/master
|
||||
- Fix memory leak between Sheet and Cell, and related to XML::Twig
|
||||
- Unit test to verify workbook garbage collection
|
||||
0.33 2024-03-08
|
||||
- performance fix computing merged cells
|
||||
0.32 2024-03-08
|
||||
- Require minimum version of Archive::Zip
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 8 23:04:21 UTC 2024 - Tina Müller <tina.mueller@suse.com>
|
||||
|
||||
- Fix disabling of __perllib_provides
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 19 03:08:17 UTC 2024 - Tina Müller <timueller+perl@suse.de>
|
||||
|
||||
- updated to 0.31
|
||||
see /usr/share/doc/packages/perl-Spreadsheet-ParseXLSX/Changes
|
||||
|
||||
0.31 2024-01-18
|
||||
- CVE-2024-23525: fixed in previous release
|
||||
0.30 2024-01-17
|
||||
- Fix xml external entity (XEE) injection bug
|
||||
- added unit test for support of purl.oclc.org namespace ... see issue #7
|
||||
- removed tidyness tests again as it fails on weaver'ed code
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 3 03:10:46 UTC 2024 - Tina Müller <timueller+perl@suse.de>
|
||||
|
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package perl-Spreadsheet-ParseXLSX
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -18,9 +18,10 @@
|
||||
|
||||
%define cpan_name Spreadsheet-ParseXLSX
|
||||
Name: perl-Spreadsheet-ParseXLSX
|
||||
Version: 0.290.0
|
||||
Version: 0.360.0
|
||||
Release: 0
|
||||
%define cpan_version 0.29
|
||||
# 0.36 -> normalize -> 0.360.0
|
||||
%define cpan_version 0.36
|
||||
License: MIT
|
||||
Summary: Parse XLSX files
|
||||
URL: https://metacpan.org/release/%{cpan_name}
|
||||
@@ -28,29 +29,35 @@ Source0: https://cpan.metacpan.org/authors/id/N/NU/NUDDLEGG/%{cpan_name}-
|
||||
BuildArch: noarch
|
||||
BuildRequires: perl
|
||||
BuildRequires: perl-macros
|
||||
BuildRequires: perl(Archive::Zip)
|
||||
BuildRequires: perl(Archive::Zip) >= 1.34
|
||||
BuildRequires: perl(Crypt::Mode::CBC)
|
||||
BuildRequires: perl(Crypt::Mode::ECB)
|
||||
BuildRequires: perl(Digest::SHA)
|
||||
BuildRequires: perl(Graphics::ColorUtils)
|
||||
BuildRequires: perl(OLE::Storage_Lite)
|
||||
BuildRequires: perl(Spreadsheet::ParseExcel)
|
||||
BuildRequires: perl(Spreadsheet::ParseExcel::Cell)
|
||||
BuildRequires: perl(Spreadsheet::ParseExcel::Utility)
|
||||
BuildRequires: perl(Spreadsheet::ParseExcel::Worksheet)
|
||||
BuildRequires: perl(Test::More) >= 0.88
|
||||
BuildRequires: perl(XML::Twig)
|
||||
Requires: perl(Archive::Zip)
|
||||
Requires: perl(Archive::Zip) >= 1.34
|
||||
Requires: perl(Crypt::Mode::CBC)
|
||||
Requires: perl(Crypt::Mode::ECB)
|
||||
Requires: perl(Digest::SHA)
|
||||
Requires: perl(Graphics::ColorUtils)
|
||||
Requires: perl(OLE::Storage_Lite)
|
||||
Requires: perl(Spreadsheet::ParseExcel)
|
||||
Requires: perl(Spreadsheet::ParseExcel::Cell)
|
||||
Requires: perl(Spreadsheet::ParseExcel::Worksheet)
|
||||
Requires: perl(XML::Twig)
|
||||
Provides: perl(Spreadsheet::ParseXLSX) = %{version}
|
||||
Provides: perl(Spreadsheet::ParseXLSX::Cell) = %{version}
|
||||
Provides: perl(Spreadsheet::ParseXLSX::Decryptor) = %{version}
|
||||
Provides: perl(Spreadsheet::ParseXLSX::Decryptor::Agile) = %{version}
|
||||
Provides: perl(Spreadsheet::ParseXLSX::Decryptor::Standard) = %{version}
|
||||
%define __perllib_provides /bin/true
|
||||
Provides: perl(Spreadsheet::ParseXLSX::Worksheet) = %{version}
|
||||
%undefine __perllib_provides
|
||||
%{perl_requires}
|
||||
|
||||
%description
|
||||
@@ -61,7 +68,7 @@ Spreadsheet::ParseExcel::Workbook, Spreadsheet::ParseExcel::Worksheet, and
|
||||
Spreadsheet::ParseExcel::Cell.
|
||||
|
||||
%prep
|
||||
%autosetup -n %{cpan_name}-%{cpan_version}
|
||||
%autosetup -n %{cpan_name}-%{cpan_version} -p1
|
||||
|
||||
%build
|
||||
perl Makefile.PL INSTALLDIRS=vendor
|
||||
|
Reference in New Issue
Block a user