summaryrefslogtreecommitdiff
path: root/textproc/p5-Text-CSV
AgeCommit message (Collapse)AuthorFilesLines
2015-06-12Recursive PKGREVISION bump for all packages mentioning 'perl',wiz1-1/+2
having a PKGNAME of p5-*, or depending such a package, for perl-5.22.0.
2015-04-29Update to 1.33mef2-7/+6
-------------- 1.33 Tue Mar 3 14:13:41 2015 - Fix some reported bugs with handling fields with zeros. https://rt.cpan.org/Public/Bug/Display.html?id=93518 https://rt.cpan.org/Public/Bug/Display.html?id=92509 patched by shlomif - catch up Text::CSV_XS 1.02 * add decode_utf8 attribute by ktat - fix warnings: $. is undefined by ktat - typo fixes in doc by anirvan, dsteinbrunner and pdl. - parse() supports bind_columns() * TODO: Updating documents and adding diag_verbose in the next version. Catching up CSV_XS 1.04.
2014-05-29Bump for perl-5.20.0.wiz1-1/+2
Do it for all packages that * mention perl, or * have a directory name starting with p5-*, or * depend on a package starting with p5- like last time, for 5.18, where this didn't lead to complaints. Let me know if you have any this time.
2013-07-14Update to 1.32wen2-6/+6
Upstream changes: 1.32 - fix t/rt71_pp.t 1.31 Thu Jun 13 14:06:49 2013 - fix handling UTF8 in parse method. - fix getline with allow_loose_quotes (rt#83705) - add allow_unquoted_escape - fix parsing escapted sep char (found in Text::CSV_XS rt#81295) * TODO: Updating documents and adding diag_verbose in the next version
2013-06-11Update to 1.30wen2-8/+7
Update DEPENDS Upstream changes: 1.30 Tue Jun 11 00:06:02 2013 - catch up Text::CSV_XS 0.99 (except for diag_verbose and allow_unquoted_escape) * TODO: Documents and tests in the next version
2013-05-31Bump all packages for perl-5.18, thatwiz1-2/+2
a) refer 'perl' in their Makefile, or b) have a directory name of p5-*, or c) have any dependency on any p5-* package Like last time, where this caused no complaints.
2012-10-25Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.asau1-3/+1
2012-10-03Bump all packages that use perl, or depend on a p5-* package, orwiz1-1/+2
are called p5-*. I hope that's all of them.
2011-10-04Update p5-Text-CSV to 1.21.hiramatsu2-7/+6
Changes from previous: 1.21 Mon Dec 27 12:35:35 2010 - updated the compatibility for Text::CSV_XS version 0.80 * added getline_all() and getaline_hr_all() * added missing test file 1.20 Wed Oct 20 13:53:59 2010 - couldn't parse the csv containing the column starting with '0'. (hiratara) * patched by hiratara * enhanced getline regexp (makamaka) * resolved a bug in bleadperl-fb85c04 - added tests into t/71_pp.t (hiratara) 1.19 Sat Oct 2 14:15:59 2010 - getline didn't work correctly with 0 or null containing lines (pointed by Bernhard Prott) - updated the compatibility for Text::CSV_XS version 0.74 * real eol support for parsing streams (beyond \n, \r and \r\n) * clarify doc for always_quote to not quote undef fields and XS and PP incompatibility of UTF8 process for print and combine
2011-08-14Revision bump after updating perl5 to 5.14.1.obache1-2/+2
2010-08-21Bump the PKGREVISION for all packages which depend directly on perl,seb1-1/+2
to trigger/signal a rebuild for the transition 5.10.1 -> 5.12.1. The list of packages is computed by finding all packages which end up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl, or PERL5_PACKLIST defined in their make setup (tested via "make show-vars VARNAMES=..."), minus the packages updated after the perl package update. sno@ was right after all, obache@ kindly asked and he@ led the way. Thanks!
2010-07-17Updating textproc/p5-Text-CSV from 1.16 to 1.18sno2-7/+7
pkgsrc changes: - bump p5-Text-CSV_XS requirement to 0.73 Upstream changes: 1.18 Sat Jun 19 10:34:07 2010 - fixed a combine bug with quote_space reported and patched by rt#58356 - updated test files compatible to CSV_XS 0.73 1.17 Tue Mar 16 15:20:34 2010 - fixed parse working when setting quote_char undef. - made Text::CSV_XS compat 0.71 * Text::CSV->error_diag() in void context warns instead of doing nothing * auto_diag also used for new () itself - added quote_null (introduced in Text::CSV_XS 0.72)
2010-01-17Updating textproc/p5-Text-CSV from 1.15 to 1.16sno2-7/+7
Upstream changes: 1.16 Tue Dec 8 19:02:58 2009 - updated the compatibility for Text::CSV_XS version 0.70 * Added quote_space attribute * Forbad \r and \n in sep_char, quote_char, and escape_char
2009-10-17Updating textproc/p5-Text-CSV from 1.14 to 1.15sno2-7/+7
pkgsrc changes: - Adjusting dependency to newly released Text::CSV_XS Upstream changes: 1.15 Thu Oct 15 17:23:39 2009 - updated the compatibility for Text::CSV_XS version 0.69 * Auto detection of eol => "\r" in streams (but incomplete correspondence. I will rewrite CSV_PP in the future)
2009-10-11Updating textproc/p5-Text-CSV from 1.13 to 1.14sno2-7/+7
pkgsrc changes: - Adjust dependencies Upstream changes: 1.14 Thu Oct 8 15:02:24 2009 - updated the compatibility for Text::CSV_XS version 0.68 * fail if first arg to new () is not a hash ref * added empty_is_undef * error_diag () uses warn () in void context instead of STDERR * added auto_diag attribute (not yet implemented localization feature for autodie) * updated documents same as Text::CSV_XS
2009-08-08Updating package for p5 module Text::CSV from 1.12 to 1.13sno2-7/+7
pkgsrc changes: - Correcting license to ${PERL5_LICENSE} Upstream changes: 1.13 Fri Jul 31 12:02:53 2009 - getline() didn't handle '0' starting multi line data (pointed by Diego Santa Cruz).
2009-06-01Importing package for module Text::CSV 1.12 - as dependency of scheduledsno3-0/+28
update for LaTeX::Table 0.9.15. Text::CSV provides facilities for the composition and decomposition of comma-separated values using Text::CSV_XS or its pure Perl version.