1
0

Accepting request 859040 from devel:languages:perl

OBS-URL: https://build.opensuse.org/request/show/859040
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Text-CSV_XS?expand=0&rev=44
This commit is contained in:
Dominique Leuenberger 2020-12-30 16:11:41 +00:00 committed by Git OBS Bridge
commit 371d3f652c
4 changed files with 27 additions and 12 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c4812ddca8e2654736c44bc2ce60b27a428a1bc4d5364b0ed1fad3609c8f9bc4
size 212377

3
Text-CSV_XS-1.45.tgz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:128a66c946a0d9d439cbb74212b3dced8dcdb5bd0e1b78d98cfb87059f4a416f
size 255592

View File

@ -1,3 +1,21 @@
-------------------------------------------------------------------
Fri Dec 25 03:07:37 UTC 2020 - Tina Müller <timueller+perl@suse.de>
- updated to 1.45
see /usr/share/doc/packages/perl-Text-CSV_XS/ChangeLog
1.45 - 2020-12-24, H.Merijn Brand
* Update to Devel::PPPort-3.60 (3.59 was b0rked)
* Allow adding to existing data in csv (out => $ref)
* examples/csv2xlsx : -L # to limit records to export
* examples/csv2xlsx : --de # for possible double-encoding fix
* Update to Devel::PPPort-3.61
* Update to Devel::PPPort-3.62
* Add examples/csv-split
* examples/csv2xlsx : Check if .xlsx is creatable before conversion
* Small doc additions
* Fix META issue for bugtracker
-------------------------------------------------------------------
Wed Jul 29 03:15:14 UTC 2020 - Tina Müller <timueller+perl@suse.de>

View File

@ -16,20 +16,18 @@
#
Name: perl-Text-CSV_XS
Version: 1.44
Release: 0
%define cpan_name Text-CSV_XS
Name: perl-Text-CSV_XS
Version: 1.45
Release: 0
Summary: Comma-separated values manipulation routines
License: Artistic-1.0 OR GPL-1.0-or-later
Group: Development/Libraries/Perl
URL: https://metacpan.org/release/%{cpan_name}
Source0: https://cpan.metacpan.org/authors/id/H/HM/HMBRAND/%{cpan_name}-%{version}.tgz
Source1: cpanspec.yml
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
BuildRequires: perl-macros
Recommends: perl(Encode) >= 3.06
Recommends: perl(Encode) >= 3.08
%{perl_requires}
%description
@ -41,7 +39,7 @@ The module accepts either strings or files as input and support the use of
user-specified characters for delimiters, separators, and escapes.
%prep
%setup -q -n %{cpan_name}-%{version}
%autosetup -n %{cpan_name}-%{version}
find . -type f ! -path "*/t/*" ! -name "*.pl" ! -path "*/bin/*" ! -path "*/script/*" ! -name "configure" -print0 | xargs -0 chmod 644
# MANUAL BEGIN
sed -i -e 's,/pro/bin/perl,/usr/bin/perl,' examples/*
@ -49,7 +47,7 @@ sed -i -e 's,/pro/bin/perl,/usr/bin/perl,' examples/*
%build
perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
make %{?_smp_mflags}
%make_build
%check
make test
@ -60,7 +58,6 @@ make test
%perl_gen_filelist
%files -f %{name}.files
%defattr(-,root,root,755)
%doc ChangeLog CONTRIBUTING.md examples README
%changelog