dev-perl/Text-CSV_XS: Bump to version 1.340.0

Upstream:
- Disable escape_null for undef escape_char
- Fix ->say for bound columns
- Fix already decoded BOM in headers
- new options in csv-check
- add alias "escape" for "escape_char"
- Improve csv-check auto-sep detection
- Add keep_headers attribute to csv()
- Fix on_in when used in combination with key
- Fail on invalid arguments to csv
- Fix header method on EOL = CR
- Add support for formula actions
- reset file info on ->header call
- Bad arg for formula will now die with error 1500
- Fix row report in formula being off by 1
- Make sheet label more portable
- Allow munge => \%hash
- Preserve first row in csv

Package-Manager: Portage-2.3.18, Repoman-2.3.6
This commit is contained in:
Kent Fredric
2018-03-09 21:04:53 +13:00
parent 76e8ffa273
commit f0f0ee84e7
2 changed files with 29 additions and 0 deletions

View File

@@ -1,2 +1,3 @@
DIST Text-CSV_XS-1.28.tgz 164749 BLAKE2B fafd719dad5ecb2784abc6e1a40a0162c8860b6c27bcc7aaba44bd806317cbca5d9d90e99f4e8bc7ae5d473ab75ea28e2a05b687aeed39c0602a6df8e8edddc2 SHA512 5e40f50c16e2506f60cff1a344c9e45e73398bfe863c85a527a8aaf03ec5e3eb8b94796f548ccbe9cb7c123e79e1e882daec1fe81977142a03b1fed2ba46f60a
DIST Text-CSV_XS-1.29.tgz 165220 BLAKE2B 7f768776818ab7d9065a690f1e616849f3c920d0b3cf66205f31965616b807c3729138d0e84cff27625be03771a6e132217260945e21ce8e7c8ec004e2969864 SHA512 fb71d44c8ec8420d7f80a8c7a9a0fc5db5023303f6317a6e49b06681df2ebb7b88af14a43e50f97cc328921a636453fb6a9840f6251d0a2c48205cd48b1d529d
DIST Text-CSV_XS-1.34.tgz 173425 BLAKE2B 45aff1d60521d2458687eb257ff5a90b9f9dad6595789945206402bffb8f61b17bb89ea18cf8308d01b057e162c239bda0aee014cb3054ee542bd6b250e8f0c1 SHA512 1a13dc0105f52997df87e9612d8696342e2823e4f871b4f5402ae6b48c1375c2eaf70f773bf32b2c176da1ba0deab34413c427013bcdf5e10322fc6901dd2b86

View File

@@ -0,0 +1,28 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DIST_AUTHOR=HMBRAND
DIST_A_EXT=tgz
DIST_VERSION=1.34
DIST_EXAMPLES=("examples/*")
inherit perl-module
DESCRIPTION="Comma-separated values manipulation routines"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="test"
RDEPEND="
virtual/perl-IO
virtual/perl-XSLoader
"
DEPEND="${RDEPEND}
virtual/perl-ExtUtils-MakeMaker
test? (
virtual/perl-Test-Simple
)
"
PERL_RM_FILES=("t/00_pod.t" "t/01_pod.t")