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/Gearman-Client-Async/
Date: Tue, 24 Oct 2017 02:43:17
Message-Id: 1508809720.f757b5934bb8779c65529eb0ffdf0f39d31db825.kentnl@gentoo
1 commit: f757b5934bb8779c65529eb0ffdf0f39d31db825
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 24 00:00:56 2017 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 24 01:48:40 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f757b593
7
8 dev-perl/Gearman-Client-Async: Enable tests
9
10 - EAPI6
11 - Enable tests
12 - Disable broken tests
13
14 Package-Manager: Portage-2.3.8, Repoman-2.3.3
15
16 .../Gearman-Client-Async-0.940.0-r2.ebuild | 32 ++++++++++++++++++++++
17 1 file changed, 32 insertions(+)
18
19 diff --git a/dev-perl/Gearman-Client-Async/Gearman-Client-Async-0.940.0-r2.ebuild b/dev-perl/Gearman-Client-Async/Gearman-Client-Async-0.940.0-r2.ebuild
20 new file mode 100644
21 index 00000000000..642aa1a6bff
22 --- /dev/null
23 +++ b/dev-perl/Gearman-Client-Async/Gearman-Client-Async-0.940.0-r2.ebuild
24 @@ -0,0 +1,32 @@
25 +# Copyright 1999-2017 Gentoo Foundation
26 +# Distributed under the terms of the GNU General Public License v2
27 +
28 +EAPI=6
29 +
30 +DIST_AUTHOR=BRADFITZ
31 +DIST_VERSION=0.94
32 +inherit perl-module
33 +
34 +DESCRIPTION="Asynchronous client module for Gearman for Danga::Socket applications"
35 +
36 +SLOT="0"
37 +KEYWORDS="~amd64 ~ppc ~x86"
38 +IUSE="test"
39 +
40 +RDEPEND=">=dev-perl/Gearman-1.07
41 + >=dev-perl/Danga-Socket-1.57"
42 +DEPEND="${RDEPEND}
43 + test? ( dev-perl/Gearman-Server )
44 +"
45 +
46 +DIST_TEST="do"
47 +src_test() {
48 + local BADTESTS=(
49 + # blocks forever
50 + t/err1.t
51 + # https://rt.cpan.org/Public/Bug/Display.html?id=87063
52 + t/err3.t
53 + )
54 + perl_rm_files "${BADTESTS[@]}"
55 + perl-module_src_test
56 +}