Gentoo Archives: gentoo-commits

From: Michael Orlitzky <mjo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/XML-Schema-learner/
Date: Sun, 28 Feb 2021 20:42:27
Message-Id: 1614544935.15bacd65d54f695e25f2b3c333611b3da19be025.mjo@gentoo
1 commit: 15bacd65d54f695e25f2b3c333611b3da19be025
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 28 20:38:08 2021 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 28 20:42:15 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15bacd65
7
8 app-text/XML-Schema-learner: disable test suite.
9
10 The test suite for this package no longer passes with modern versions
11 of PHPUnit. Add RESTRICT=test until the package can be updated.
12
13 Closes: https://bugs.gentoo.org/772977
14 Package-Manager: Portage-3.0.13, Repoman-3.0.2
15 Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
16
17 app-text/XML-Schema-learner/XML-Schema-learner-1.0.1.ebuild | 7 +++++--
18 1 file changed, 5 insertions(+), 2 deletions(-)
19
20 diff --git a/app-text/XML-Schema-learner/XML-Schema-learner-1.0.1.ebuild b/app-text/XML-Schema-learner/XML-Schema-learner-1.0.1.ebuild
21 index 8da9a7b4ee6..c876bebfd7d 100644
22 --- a/app-text/XML-Schema-learner/XML-Schema-learner-1.0.1.ebuild
23 +++ b/app-text/XML-Schema-learner/XML-Schema-learner-1.0.1.ebuild
24 @@ -1,4 +1,4 @@
25 -# Copyright 1999-2019 Gentoo Authors
26 +# Copyright 1999-2021 Gentoo Authors
27 # Distributed under the terms of the GNU General Public License v2
28
29 EAPI=5
30 @@ -11,7 +11,10 @@ LICENSE="GPL-3"
31 SLOT="0"
32 KEYWORDS="amd64 x86"
33 IUSE="test"
34 -RESTRICT="!test? ( test )"
35 +
36 +# This test suite used to work but needs an update for modern versions
37 +# of PHPUnit. See https://github.com/kore/XML-Schema-learner/issues/6
38 +RESTRICT="test"
39
40 # PHP dependency can be inferred from .travis.yml in the repository.
41 # The necessary USE flags on the other hand were found the hard way.