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 Name: perl-Text-CSV_XS
Version: 1.30 Version: 1.31
Release: 1%{?dist} Release: 1%{?dist}
Summary: Comma-separated values manipulation routines Summary: Comma-separated values manipulation routines
License: GPL+ or Artistic License: GPL+ or Artistic
@ -33,6 +33,7 @@ BuildRequires: perl(Tie::Scalar)
# Optional tests: # Optional tests:
BuildRequires: perl(Test::Pod) >= 1.00 BuildRequires: perl(Test::Pod) >= 1.00
BuildRequires: perl(Test::Pod::Coverage) BuildRequires: perl(Test::Pod::Coverage)
# Dependencies
Requires: perl(:MODULE_COMPAT_%(eval "$(perl -V:version)"; echo $version)) Requires: perl(:MODULE_COMPAT_%(eval "$(perl -V:version)"; echo $version))
# IO::Handle is loaded by XS code # IO::Handle is loaded by XS code
Requires: perl(IO::Handle) Requires: perl(IO::Handle)
@ -56,7 +57,11 @@ chmod -c a-x examples/*
#find . -type f -exec sed -i '1s/pro/usr/' {} \; #find . -type f -exec sed -i '1s/pro/usr/' {} \;
%build %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} make %{?_smp_mflags}
%install %install
@ -74,6 +79,15 @@ make %{?_smp_mflags} test
%{_mandir}/man3/Text::CSV_XS.3* %{_mandir}/man3/Text::CSV_XS.3*
%changelog %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 * Sat Jun 10 2017 Paul Howarth <paul@city-fan.org> - 1.30-1
- Update to 1.30 - Update to 1.30
- Add csv (..., out => ...) syntax examples (GH#7) - Add csv (..., out => ...) syntax examples (GH#7)

Loading…
Cancel
Save