Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/jpipe/
Date: Tue, 01 Feb 2022 19:02:40
Message-Id: 1643741865.fcb863ac9e62fad4d197b0bc3ac01dedb2ff42c5.mgorny@gentoo
1 commit: fcb863ac9e62fad4d197b0bc3ac01dedb2ff42c5
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 1 18:54:50 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 1 18:57:45 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fcb863ac
7
8 app-misc/jpipe: Fix Python dependencies
9
10 DISTUTILS_USE_SETUPTOOLS is not used with DISTUTILS_OPTIONAL, the dep
11 on setuptools needs to be declared explicitly.
12
13 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
14
15 app-misc/jpipe/jpipe-0.2.0.ebuild | 7 +++++--
16 1 file changed, 5 insertions(+), 2 deletions(-)
17
18 diff --git a/app-misc/jpipe/jpipe-0.2.0.ebuild b/app-misc/jpipe/jpipe-0.2.0.ebuild
19 index bbab903965e1..8988122f3364 100644
20 --- a/app-misc/jpipe/jpipe-0.2.0.ebuild
21 +++ b/app-misc/jpipe/jpipe-0.2.0.ebuild
22 @@ -1,10 +1,9 @@
23 -# Copyright 2021 Gentoo Authors
24 +# Copyright 2021-2022 Gentoo Authors
25 # Distributed under the terms of the GNU General Public License v2
26
27 EAPI=7
28 GO_OPTIONAL=1
29 DISTUTILS_OPTIONAL=1
30 -DISTUTILS_USE_SETUPTOOLS=bdepend
31 PYTHON_COMPAT=( python3_{7,8,9,10} )
32
33 inherit go-module distutils-r1
34 @@ -384,6 +383,10 @@ BDEPEND="
35 app-arch/unzip
36 >=dev-lang/go-1.12
37 )
38 + python? (
39 + ${PYTHON_DEPS}
40 + dev-python/setuptools[${PYTHON_USEDEP}]
41 + )
42 "
43 RDEPEND="
44 jpp-symlink? ( !app-misc/jp[jpp(-)] )