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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E2C8B158088 for ; Tue, 1 Feb 2022 19:02:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E4F972BC042; Tue, 1 Feb 2022 19:02:39 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D10852BC042 for ; Tue, 1 Feb 2022 19:02:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D211F342FAB for ; Tue, 1 Feb 2022 19:02:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6BDF3166 for ; Tue, 1 Feb 2022 19:02:37 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1643741865.fcb863ac9e62fad4d197b0bc3ac01dedb2ff42c5.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/jpipe/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/jpipe/jpipe-0.2.0.ebuild X-VCS-Directories: app-misc/jpipe/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: fcb863ac9e62fad4d197b0bc3ac01dedb2ff42c5 X-VCS-Branch: master Date: Tue, 1 Feb 2022 19:02: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: 11e97a32-0408-458c-a515-ab5810909b03 X-Archives-Hash: cb1d72a313af8138dc556435698040fc commit: fcb863ac9e62fad4d197b0bc3ac01dedb2ff42c5 Author: Michał Górny gentoo org> AuthorDate: Tue Feb 1 18:54:50 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Feb 1 18:57:45 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fcb863ac app-misc/jpipe: Fix Python dependencies DISTUTILS_USE_SETUPTOOLS is not used with DISTUTILS_OPTIONAL, the dep on setuptools needs to be declared explicitly. Signed-off-by: Michał Górny gentoo.org> app-misc/jpipe/jpipe-0.2.0.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/app-misc/jpipe/jpipe-0.2.0.ebuild b/app-misc/jpipe/jpipe-0.2.0.ebuild index bbab903965e1..8988122f3364 100644 --- a/app-misc/jpipe/jpipe-0.2.0.ebuild +++ b/app-misc/jpipe/jpipe-0.2.0.ebuild @@ -1,10 +1,9 @@ -# Copyright 2021 Gentoo Authors +# Copyright 2021-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 GO_OPTIONAL=1 DISTUTILS_OPTIONAL=1 -DISTUTILS_USE_SETUPTOOLS=bdepend PYTHON_COMPAT=( python3_{7,8,9,10} ) inherit go-module distutils-r1 @@ -384,6 +383,10 @@ BDEPEND=" app-arch/unzip >=dev-lang/go-1.12 ) + python? ( + ${PYTHON_DEPS} + dev-python/setuptools[${PYTHON_USEDEP}] + ) " RDEPEND=" jpp-symlink? ( !app-misc/jp[jpp(-)] )