Gentoo Archives: gentoo-commits

From: Richard Farina <zerochaos@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/lorax/
Date: Wed, 12 Oct 2016 19:46:19
Message-Id: 1476301556.109515b16d90259f7d46969912828c1b4edf03ac.zerochaos@gentoo
1 commit: 109515b16d90259f7d46969912828c1b4edf03ac
2 Author: Zero_Chaos <zerochaos <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 12 19:45:40 2016 +0000
4 Commit: Richard Farina <zerochaos <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 12 19:45:56 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=109515b1
7
8 dev-util/lorax: add a stub for the non-working tests
9
10 Package-Manager: portage-2.3.1
11
12 dev-util/lorax/lorax-26.0.ebuild | 12 ++++++++++--
13 1 file changed, 10 insertions(+), 2 deletions(-)
14
15 diff --git a/dev-util/lorax/lorax-26.0.ebuild b/dev-util/lorax/lorax-26.0.ebuild
16 index bbda821..0671c1a 100644
17 --- a/dev-util/lorax/lorax-26.0.ebuild
18 +++ b/dev-util/lorax/lorax-26.0.ebuild
19 @@ -14,8 +14,16 @@ SRC_URI="https://github.com/rhinstaller/lorax/archive/${P}-1.tar.gz -> ${P}-1.ta
20 LICENSE="GPL-2"
21 SLOT="0"
22 KEYWORDS="~amd64 ~x86"
23 +IUSE=test
24 +
25 +#ImportError: No module named 'pocketlint'
26 +RESTRICT=test
27
28 S="${WORKDIR}"/"${PN}-${P}-1"
29
30 -DEPEND=""
31 -RDEPEND="${DEPEND}"
32 +DEPEND="test? ( dev-python/pylint )"
33 +RDEPEND=""
34 +
35 +src_test() {
36 + emake check
37 +}