Gentoo Archives: gentoo-commits

From: "Andreas K. Hüttel" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Text-CSV/
Date: Thu, 23 Sep 2021 20:22:28
Message-Id: 1632428512.6b3ed3a05e2c646f44baf4cd1dbd18c109a18ac4.dilfridge@gentoo
1 commit: 6b3ed3a05e2c646f44baf4cd1dbd18c109a18ac4
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 23 20:12:01 2021 +0000
4 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 23 20:21:52 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b3ed3a0
7
8 dev-perl/Text-CSV: Version bump 2.01
9
10 Package-Manager: Portage-3.0.23, Repoman-3.0.3
11 Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
12
13 dev-perl/Text-CSV/Manifest | 1 +
14 dev-perl/Text-CSV/Text-CSV-2.10.0.ebuild | 30 ++++++++++++++++++++++++++++++
15 2 files changed, 31 insertions(+)
16
17 diff --git a/dev-perl/Text-CSV/Manifest b/dev-perl/Text-CSV/Manifest
18 index 96e3d037355..8984abf571e 100644
19 --- a/dev-perl/Text-CSV/Manifest
20 +++ b/dev-perl/Text-CSV/Manifest
21 @@ -1 +1,2 @@
22 DIST Text-CSV-1.95.tar.gz 114054 BLAKE2B 79a9e6dbd0f06a0116e6bf7c0100fa0da483c47b7117882f7d0a7554deea5b9c30245b03cf94a9f521d9d8bd652a92d4a11c0ff3e8c8cbfd188284fdb5930108 SHA512 447d38c9f6058251b9c3b1e42bffdec80ffe9ea7f232552921477d3c0dc1e913fe2a1cf1d4cec1410fab92a7e4e59601f429e11a005051710cd2b8d3b77201f9
23 +DIST Text-CSV-2.01.tar.gz 134279 BLAKE2B ee9bb832b000ca4d977869d360bf4e5367c54d248ce2eb169eb2a75df37c0ccf8042cc0114d360039282f3f3f9fcb97070046a91257486c12826a32b93bc3c7e SHA512 45c215686437e111fcd8d6c0adc9c6e0bac9df37fcd47e7bd9fcf4872859e59a296caae3573b77955cdaf42284b4c88fcc6774bd6ac11d701ae54f6a3741991a
24
25 diff --git a/dev-perl/Text-CSV/Text-CSV-2.10.0.ebuild b/dev-perl/Text-CSV/Text-CSV-2.10.0.ebuild
26 new file mode 100644
27 index 00000000000..95e3094d8c0
28 --- /dev/null
29 +++ b/dev-perl/Text-CSV/Text-CSV-2.10.0.ebuild
30 @@ -0,0 +1,30 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +DIST_AUTHOR=ISHIGAKI
37 +DIST_VERSION=2.01
38 +inherit perl-module
39 +
40 +DESCRIPTION="Manipulate comma-separated value strings"
41 +
42 +SLOT="0"
43 +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"
44 +IUSE="+xs"
45 +
46 +RDEPEND="
47 + xs? ( >=dev-perl/Text-CSV_XS-1.460.0 )
48 + virtual/perl-IO
49 +"
50 +BDEPEND="
51 + virtual/perl-ExtUtils-MakeMaker
52 + test? (
53 + virtual/perl-Test-Simple
54 + )
55 +"
56 +
57 +src_test() {
58 + perl_rm_files t/00_pod.t
59 + perl-module_src_test
60 +}