logo

overlay

My own overlay for experimentations, use with caution, no support is provided git clone https://hacktivis.me/git/overlay.git
commit: af416dd8377eca03302803f445ddbce43fff1a9b
parent 5546ab6c9fa3444f13831737d145a28c5479af84
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Fri, 14 Jul 2023 08:18:35 +0200

net-misc/cve-client: Add missing test dependency

Diffstat:

Mnet-misc/cve-client/cve-client-9999.ebuild13++++++++++---
1 file changed, 10 insertions(+), 3 deletions(-)

diff --git a/net-misc/cve-client/cve-client-9999.ebuild b/net-misc/cve-client/cve-client-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 2021 Haelwenn (lanodan) Monnier <contact@hacktivis.me> +# Copyright 2021-2023 Haelwenn (lanodan) Monnier <contact@hacktivis.me> # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -12,8 +12,15 @@ LICENSE="AGPL-3" SLOT="0" KEYWORDS="" -DEPEND=" +IUSE="test" + +RESTRICT="!test? ( test )" + +RDEPEND=" dev-perl/JSON-MaybeXS dev-perl/LWP-Protocol-https " -RDEPEND="${DEPEND}" +DEPEND=" + ${RDEPEND} + test? ( dev-perl/Test-Output ) +"