diff options
author | Sam James <sam@gentoo.org> | 2023-06-18 04:07:32 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-06-18 04:12:10 +0100 |
commit | 7af9b93c6f1825865dab99512ef2b4a91e64ddd0 (patch) | |
tree | 10a5bb7c5f7c262d7e30a959c69f5c40be6e17d4 /dev-perl/Text-CSV | |
parent | dev-perl/Text-CSV_XS: add 1.500.0 (diff) | |
download | gentoo-7af9b93c6f1825865dab99512ef2b4a91e64ddd0.tar.gz gentoo-7af9b93c6f1825865dab99512ef2b4a91e64ddd0.tar.bz2 gentoo-7af9b93c6f1825865dab99512ef2b4a91e64ddd0.zip |
dev-perl/Text-CSV: add 2.20.0
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-perl/Text-CSV')
-rw-r--r-- | dev-perl/Text-CSV/Manifest | 1 | ||||
-rw-r--r-- | dev-perl/Text-CSV/Text-CSV-2.20.0.ebuild | 30 |
2 files changed, 31 insertions, 0 deletions
diff --git a/dev-perl/Text-CSV/Manifest b/dev-perl/Text-CSV/Manifest index 8eb03fb73f25..1a4a0379feca 100644 --- a/dev-perl/Text-CSV/Manifest +++ b/dev-perl/Text-CSV/Manifest @@ -1 +1,2 @@ DIST Text-CSV-2.01.tar.gz 134279 BLAKE2B ee9bb832b000ca4d977869d360bf4e5367c54d248ce2eb169eb2a75df37c0ccf8042cc0114d360039282f3f3f9fcb97070046a91257486c12826a32b93bc3c7e SHA512 45c215686437e111fcd8d6c0adc9c6e0bac9df37fcd47e7bd9fcf4872859e59a296caae3573b77955cdaf42284b4c88fcc6774bd6ac11d701ae54f6a3741991a +DIST Text-CSV-2.02.tar.gz 136346 BLAKE2B 004577e2b3400d4f4073fbd6e674f72907c763296526a68147568501765ccb9d9446d0fbddaa599f6354e005751644b3b23405b1f783ddaaa86f610dc28cf548 SHA512 0efb9396f5f02c3fc478f5d88a13bdfd1c615dde4ff3b671bc95e380e107b497634dc17e282dbfe3956a98a0d28f8156fe5d851483595c21d29674d535fcdaf6 diff --git a/dev-perl/Text-CSV/Text-CSV-2.20.0.ebuild b/dev-perl/Text-CSV/Text-CSV-2.20.0.ebuild new file mode 100644 index 000000000000..a2422cfd3ff6 --- /dev/null +++ b/dev-perl/Text-CSV/Text-CSV-2.20.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DIST_AUTHOR=ISHIGAKI +DIST_VERSION=2.02 +inherit perl-module + +DESCRIPTION="Manipulate comma-separated value strings" + +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris" +IUSE="+xs" + +RDEPEND=" + xs? ( >=dev-perl/Text-CSV_XS-1.480.0 ) + virtual/perl-IO +" +BDEPEND=" + virtual/perl-ExtUtils-MakeMaker + test? ( + virtual/perl-Test-Simple + ) +" + +src_test() { + perl_rm_files t/00_pod.t + perl-module_src_test +} |