Gentoo Archives: gentoo-commits

From: Kent Fredric <kentnl@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/MooseX-Types-JSON/
Date: Tue, 31 Oct 2017 08:35:57
Message-Id: 1509438921.9ccd4c34c5893922cc1b60f0a796a3c8d4e873a9.kentnl@gentoo
1 commit: 9ccd4c34c5893922cc1b60f0a796a3c8d4e873a9
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 31 08:35:21 2017 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 31 08:35:21 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ccd4c34
7
8 dev-perl/MooseX-Types-JSON: Fix missing JSON RDEP re bug #625534
9
10 - r1 bump for rdep propagation
11 - add USE=examples
12 - cleanup other annoying tests
13
14 Closes: https://bugs.gentoo.org/625534
15 Package-Manager: Portage-2.3.8, Repoman-2.3.3
16
17 ...Types-JSON-1.0.0.ebuild => MooseX-Types-JSON-1.0.0-r1.ebuild} | 9 ++++++++-
18 1 file changed, 8 insertions(+), 1 deletion(-)
19
20 diff --git a/dev-perl/MooseX-Types-JSON/MooseX-Types-JSON-1.0.0.ebuild b/dev-perl/MooseX-Types-JSON/MooseX-Types-JSON-1.0.0-r1.ebuild
21 similarity index 65%
22 rename from dev-perl/MooseX-Types-JSON/MooseX-Types-JSON-1.0.0.ebuild
23 rename to dev-perl/MooseX-Types-JSON/MooseX-Types-JSON-1.0.0-r1.ebuild
24 index 6c9c97efd97..14f2a8df7c5 100644
25 --- a/dev-perl/MooseX-Types-JSON/MooseX-Types-JSON-1.0.0.ebuild
26 +++ b/dev-perl/MooseX-Types-JSON/MooseX-Types-JSON-1.0.0-r1.ebuild
27 @@ -1,10 +1,11 @@
28 -# Copyright 1999-2015 Gentoo Foundation
29 +# Copyright 1999-2017 Gentoo Foundation
30 # Distributed under the terms of the GNU General Public License v2
31
32 EAPI=6
33
34 DIST_AUTHOR=MILA
35 DIST_VERSION=1.00
36 +DIST_EXAMPLES=("examples/*")
37 inherit perl-module
38
39 DESCRIPTION="JSON datatype for Moose"
40 @@ -14,8 +15,14 @@ KEYWORDS="~amd64 ~x86"
41 IUSE=""
42
43 RDEPEND="
44 + dev-perl/JSON
45 >=dev-perl/JSON-XS-2.00
46 dev-perl/Moose
47 dev-perl/MooseX-Types
48 "
49 DEPEND="${RDEPEND}"
50 +
51 +src_test() {
52 + perl_rm_files t/00-pod.t t/release-*.t
53 + perl-module_src_test
54 +}