diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-06-01 07:43:03 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-06-01 07:56:18 +0200 |
commit | 397b231b399b88a2d4688c57844706249ca7ca87 (patch) | |
tree | 865e653264e52e9a1f3f474774269534b8a3c5fd /eclass | |
parent | dev-python/stevedore: Bump to 1.32.0 (diff) | |
download | gentoo-397b231b399b88a2d4688c57844706249ca7ca87.tar.gz gentoo-397b231b399b88a2d4688c57844706249ca7ca87.tar.bz2 gentoo-397b231b399b88a2d4688c57844706249ca7ca87.zip |
distutils-r1.eclass: Cover plain '[entry_points]' in setup.cfg
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/distutils-r1.eclass | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index 254a25fd3a6e..8fa343ae75f7 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.eclass @@ -476,6 +476,8 @@ _distutils_verify_use_setuptools() { expected=rdepend elif grep -F -q -s '[options.entry_points]' setup.cfg; then expected=rdepend + elif grep -F -q -s '[entry_points]' setup.cfg; then # pbr + expected=rdepend else expected=bdepend fi |