forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-perl/Text-CSV: Bump to version 1.910.0
- EAPI6 - Parallel Testing - Add USE=xs on by default for speed Upstream: - Significant rewrite to be closer in behaviour to Text::CSV_XS Package-Manager: Portage-2.3.3, Repoman-2.3.1
- Loading branch information
1 parent
8647861
commit f190295
Showing
3 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST Text-CSV-1.33.tar.gz 64771 SHA256 9c5b8fb9baffd58f02ed2b3f0b6d9a6454198f18a80e7f3a049680ddbdb24115 SHA512 3b30242c71719aeb20077490b752718bb25320dc1510b5053d5e21678cf7011e16eac2b578138115399f8dbdfb5519cbb913fc42b042355e35e39491ed520b8e WHIRLPOOL 89c5ef051937a2f50868246b8c9a66216676907bfc6d8d12cadd1f0d8c7685a5ab136f1b646fd752cba9b63f23cc28a1ece3f3e022fc503dd612948ba46e3363 | ||
DIST Text-CSV-1.91.tar.gz 113028 SHA256 b16c36cc1705f9f5c5c0c190e9bf5b1dd9cb36980a6da342c8d5860f264b441f SHA512 1dfd1de9b91390df38788a36423d671d4b3aafc7b5a106b994ced944893b73a90bd0e7ad0ce88f51e81e7ff70c507a1c70fbe9a55c7139860f84f18e060d15d9 WHIRLPOOL 20c06514234de6cedfc77c41abc89a06377195d645ece79db20ee8c51467a856e859cd98d941b2e12594677ffe56611b609379ac5632dafc3d2a4153767eeddb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=6 | ||
|
||
DIST_AUTHOR=ISHIGAKI | ||
DIST_VERSION=1.91 | ||
inherit perl-module | ||
|
||
DESCRIPTION="Manipulate comma-separated value strings" | ||
|
||
SLOT="0" | ||
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86" | ||
IUSE="test +xs" | ||
|
||
RDEPEND=" | ||
xs? ( >=dev-perl/Text-CSV_XS-1.20.0 ) | ||
virtual/perl-IO | ||
" | ||
DEPEND=" | ||
virtual/perl-ExtUtils-MakeMaker | ||
test? ( | ||
virtual/perl-Test-Simple | ||
) | ||
" | ||
|
||
src_test() { | ||
perl_rm_files t/00_pod.t | ||
perl-module_src_test | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,9 @@ | |
<email>[email protected]</email> | ||
<name>Gentoo Perl Project</name> | ||
</maintainer> | ||
<use> | ||
<flag name="xs">Install <pkg>dev-perl/Text-CSV_XS</pkg> for accelerated decoding</flag> | ||
</use> | ||
<upstream> | ||
<remote-id type="cpan">Text-CSV</remote-id> | ||
<remote-id type="cpan-module">Text::CSV</remote-id> | ||
|