diff options
author | Andreas K. Hüttel <dilfridge@gentoo.org> | 2021-09-23 22:12:01 +0200 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2021-09-23 22:21:52 +0200 |
commit | 6b3ed3a05e2c646f44baf4cd1dbd18c109a18ac4 (patch) | |
tree | 00641d04df964569411105c8536f8319fa56c5cc /dev-perl/Text-CSV | |
parent | dev-perl/Text-CSV_XS: Version bump 1.46 (diff) | |
download | gentoo-6b3ed3a05e2c646f44baf4cd1dbd18c109a18ac4.tar.gz gentoo-6b3ed3a05e2c646f44baf4cd1dbd18c109a18ac4.tar.bz2 gentoo-6b3ed3a05e2c646f44baf4cd1dbd18c109a18ac4.zip |
dev-perl/Text-CSV: Version bump 2.01
Package-Manager: Portage-3.0.23, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel <dilfridge@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.10.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 96e3d0373551..8984abf571e9 100644 --- a/dev-perl/Text-CSV/Manifest +++ b/dev-perl/Text-CSV/Manifest @@ -1 +1,2 @@ DIST Text-CSV-1.95.tar.gz 114054 BLAKE2B 79a9e6dbd0f06a0116e6bf7c0100fa0da483c47b7117882f7d0a7554deea5b9c30245b03cf94a9f521d9d8bd652a92d4a11c0ff3e8c8cbfd188284fdb5930108 SHA512 447d38c9f6058251b9c3b1e42bffdec80ffe9ea7f232552921477d3c0dc1e913fe2a1cf1d4cec1410fab92a7e4e59601f429e11a005051710cd2b8d3b77201f9 +DIST Text-CSV-2.01.tar.gz 134279 BLAKE2B ee9bb832b000ca4d977869d360bf4e5367c54d248ce2eb169eb2a75df37c0ccf8042cc0114d360039282f3f3f9fcb97070046a91257486c12826a32b93bc3c7e SHA512 45c215686437e111fcd8d6c0adc9c6e0bac9df37fcd47e7bd9fcf4872859e59a296caae3573b77955cdaf42284b4c88fcc6774bd6ac11d701ae54f6a3741991a diff --git a/dev-perl/Text-CSV/Text-CSV-2.10.0.ebuild b/dev-perl/Text-CSV/Text-CSV-2.10.0.ebuild new file mode 100644 index 000000000000..95e3094d8c0f --- /dev/null +++ b/dev-perl/Text-CSV/Text-CSV-2.10.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DIST_AUTHOR=ISHIGAKI +DIST_VERSION=2.01 +inherit perl-module + +DESCRIPTION="Manipulate comma-separated value strings" + +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="+xs" + +RDEPEND=" + xs? ( >=dev-perl/Text-CSV_XS-1.460.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 +} |