From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 61E21138359 for ; Mon, 14 Sep 2020 01:35:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 80F2BE0C58; Mon, 14 Sep 2020 01:35:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 687A4E0C58 for ; Mon, 14 Sep 2020 01:35:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1BEBB335DC4 for ; Mon, 14 Sep 2020 01:35:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9D6CC35A for ; Mon, 14 Sep 2020 01:35:37 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1600047334.472a836c3edc53b9327a040407644dd4892d106f.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/zziplib/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/zziplib/zziplib-0.13.71_p20200419.ebuild X-VCS-Directories: dev-libs/zziplib/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 472a836c3edc53b9327a040407644dd4892d106f X-VCS-Branch: master Date: Mon, 14 Sep 2020 01:35:37 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a4dc9388-69dc-4847-a883-0e28a2d596d3 X-Archives-Hash: e76ee26976de67dcf6be68f84d72c6d9 commit: 472a836c3edc53b9327a040407644dd4892d106f Author: Sam James gentoo org> AuthorDate: Mon Sep 14 01:35:26 2020 +0000 Commit: Sam James gentoo org> CommitDate: Mon Sep 14 01:35:34 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=472a836c dev-libs/zziplib: call python-any-r1_pkg_setup for tests Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Sam James gentoo.org> dev-libs/zziplib/zziplib-0.13.71_p20200419.ebuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dev-libs/zziplib/zziplib-0.13.71_p20200419.ebuild b/dev-libs/zziplib/zziplib-0.13.71_p20200419.ebuild index 7928de22d9e..5f9863b9c3a 100644 --- a/dev-libs/zziplib/zziplib-0.13.71_p20200419.ebuild +++ b/dev-libs/zziplib/zziplib-0.13.71_p20200419.ebuild @@ -20,12 +20,10 @@ IUSE="doc sdl static-libs test" RESTRICT="!test? ( test )" BDEPEND=" - doc? ( - ${PYTHON_DEPS} - ) + doc? ( ${PYTHON_DEPS} ) test? ( - ${PYTHON_DEPS} app-arch/zip + ${PYTHON_DEPS} ) " DEPEND=" @@ -42,7 +40,9 @@ PATCHES=( ) pkg_setup() { - use test && python-any-r1_pkg_setup + if use doc || use test; then + python-any-r1_pkg_setup + fi } src_configure() {