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: eclass/
Date: Mon, 01 Jun 2020 05:56:26
Message-Id: 1590990978.397b231b399b88a2d4688c57844706249ca7ca87.mgorny@gentoo
1 commit: 397b231b399b88a2d4688c57844706249ca7ca87
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jun 1 05:43:03 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Jun 1 05:56:18 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=397b231b
7
8 distutils-r1.eclass: Cover plain '[entry_points]' in setup.cfg
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 eclass/distutils-r1.eclass | 2 ++
13 1 file changed, 2 insertions(+)
14
15 diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass
16 index 254a25fd3a6..8fa343ae75f 100644
17 --- a/eclass/distutils-r1.eclass
18 +++ b/eclass/distutils-r1.eclass
19 @@ -476,6 +476,8 @@ _distutils_verify_use_setuptools() {
20 expected=rdepend
21 elif grep -F -q -s '[options.entry_points]' setup.cfg; then
22 expected=rdepend
23 + elif grep -F -q -s '[entry_points]' setup.cfg; then # pbr
24 + expected=rdepend
25 else
26 expected=bdepend
27 fi