Update to 1.31

- New upstream release 1.31
  - Fix already decoded BOM in headers
  - New options in csv-check
  - Some perlcritic
  - "escape" is alias for "escape_char" for consistency
  - Code cleanup and more tests (Devel::Cover)
  - Improve csv-check auto-sep-detection
epel9
Paul Howarth 8 years ago
parent 4daf19a1d6
commit b085ec1f8f

@ -1,5 +1,5 @@
Name: perl-Text-CSV_XS
Version: 1.30
Version: 1.31
Release: 1%{?dist}
Summary: Comma-separated values manipulation routines
License: GPL+ or Artistic
@ -33,6 +33,7 @@ BuildRequires: perl(Tie::Scalar)
# Optional tests:
BuildRequires: perl(Test::Pod) >= 1.00
BuildRequires: perl(Test::Pod::Coverage)
# Dependencies
Requires: perl(:MODULE_COMPAT_%(eval "$(perl -V:version)"; echo $version))
# IO::Handle is loaded by XS code
Requires: perl(IO::Handle)
@ -56,7 +57,11 @@ chmod -c a-x examples/*
#find . -type f -exec sed -i '1s/pro/usr/' {} \;
%build
perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}" NO_PACKLIST=true NO_PERLLOCAL=true
perl Makefile.PL \
INSTALLDIRS=vendor \
OPTIMIZE="%{optflags}" \
NO_PACKLIST=true \
NO_PERLLOCAL=true
make %{?_smp_mflags}
%install
@ -74,6 +79,15 @@ make %{?_smp_mflags} test
%{_mandir}/man3/Text::CSV_XS.3*
%changelog
* Thu Jun 15 2017 Paul Howarth <paul@city-fan.org> - 1.31-1
- Update to 1.31
- Fix already decoded BOM in headers
- New options in csv-check
- Some perlcritic
- "escape" is alias for "escape_char" for consistency
- Code cleanup and more tests (Devel::Cover)
- Improve csv-check auto-sep-detection
* Sat Jun 10 2017 Paul Howarth <paul@city-fan.org> - 1.30-1
- Update to 1.30
- Add csv (..., out => ...) syntax examples (GH#7)

Loading…
Cancel
Save