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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2A49A13835C for ; Thu, 3 Jun 2021 19:15:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6C500E0903; Thu, 3 Jun 2021 19:15:26 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 97656E08FB for ; Thu, 3 Jun 2021 19:15:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 13732335E2F for ; Thu, 3 Jun 2021 19:15:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 50B057A2 for ; Thu, 3 Jun 2021 19:15:21 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1622747689.665dba2382688d435ac651c9563ac43172afafe8.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/zeep/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/zeep/zeep-3.4.0.ebuild X-VCS-Directories: dev-python/zeep/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 665dba2382688d435ac651c9563ac43172afafe8 X-VCS-Branch: master Date: Thu, 3 Jun 2021 19:15:21 +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: 9fb47de7-ee00-4a97-bf1a-1b615965b129 X-Archives-Hash: c830343912bf4dfbab3cab67f49ecd72 commit: 665dba2382688d435ac651c9563ac43172afafe8 Author: Sam James gentoo org> AuthorDate: Wed Jun 2 23:54:38 2021 +0000 Commit: Sam James gentoo org> CommitDate: Thu Jun 3 19:14:49 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=665dba23 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 gentoo.org> dev-python/zeep/zeep-3.4.0.ebuild | 4 ++-- 1 file 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 f688e7d10a2..2bc63cbeff4 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}]