diff options
author | Sam James <sam@gentoo.org> | 2021-06-02 23:54:38 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-06-03 19:14:49 +0000 |
commit | 665dba2382688d435ac651c9563ac43172afafe8 (patch) | |
tree | 94a9f6daf311dd0fd2c99e59bc48b0e653677bfc | |
parent | dev-python/pip: fix BadDefaultUseFlags (diff) | |
download | gentoo-665dba2382688d435ac651c9563ac43172afafe8.tar.gz gentoo-665dba2382688d435ac651c9563ac43172afafe8.tar.bz2 gentoo-665dba2382688d435ac651c9563ac43172afafe8.zip |
dev-python/zeep: fix BadDefaultUseFlags
-foo in IUSE is discouraged. It is equivalent (in every meaningful case) to 'foo' but confuses parsing
tools like e.g. packages.gentoo.org.
Dropping '-' from these flags has no impact on the actual default behaviour.
See: https://devmanual.gentoo.org/general-concepts/use-flags/index.html#iuse-defaults
Package-Manager: Portage-3.0.19, Repoman-3.0.3
Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r-- | dev-python/zeep/zeep-3.4.0.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dev-python/zeep/zeep-3.4.0.ebuild b/dev-python/zeep/zeep-3.4.0.ebuild index f688e7d10a23..2bc63cbeff40 100644 --- a/dev-python/zeep/zeep-3.4.0.ebuild +++ b/dev-python/zeep/zeep-3.4.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="amd64 x86" -IUSE="async -tornado" +IUSE="async tornado" RDEPEND=" >=dev-python/appdirs-1.4.0[${PYTHON_USEDEP}] |