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 E70A4139360 for ; Mon, 9 Aug 2021 09:20:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 341E2E08BB; Mon, 9 Aug 2021 09:20:30 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 1DB01E08BB for ; Mon, 9 Aug 2021 09:20:30 +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 7EF40342C7A for ; Mon, 9 Aug 2021 09:20:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D4FA986D for ; Mon, 9 Aug 2021 09:20:16 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1628500802.80a91d5e06d922d0d1c341dc69abda7cf87ae512.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/treq/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/treq/treq-21.5.0.ebuild X-VCS-Directories: dev-python/treq/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 80a91d5e06d922d0d1c341dc69abda7cf87ae512 X-VCS-Branch: master Date: Mon, 9 Aug 2021 09:20:16 +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: 9f28bae7-697f-4f72-9d0f-10b108cd8a8a X-Archives-Hash: 462743ee6c8d44e00b99e3f9ed1226da commit: 80a91d5e06d922d0d1c341dc69abda7cf87ae512 Author: Arthur Zamarin gmail com> AuthorDate: Mon Aug 9 08:33:41 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Aug 9 09:20:02 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80a91d5e dev-python/treq: cleanup dependencies Signed-off-by: Arthur Zamarin gmail.com> Signed-off-by: Michał Górny gentoo.org> dev-python/treq/treq-21.5.0.ebuild | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/dev-python/treq/treq-21.5.0.ebuild b/dev-python/treq/treq-21.5.0.ebuild index f81142924b6..74917bd68d0 100644 --- a/dev-python/treq/treq-21.5.0.ebuild +++ b/dev-python/treq/treq-21.5.0.ebuild @@ -17,23 +17,17 @@ KEYWORDS="~amd64 ~arm64 ~x86" IUSE="doc test" RESTRICT="!test? ( test )" -COMMON_DEPEND=" - dev-python/incremental[${PYTHON_USEDEP}] +RDEPEND=" + dev-python/attrs[${PYTHON_USEDEP}] >=dev-python/hyperlink-21.0.0[${PYTHON_USEDEP}] -" - -RDEPEND="${COMMON_DEPEND} - dev-python/six[${PYTHON_USEDEP}] - >=dev-python/twisted-18.7.0[crypt,${PYTHON_USEDEP}] + dev-python/incremental[${PYTHON_USEDEP}] >=dev-python/requests-2.1.0[${PYTHON_USEDEP}] - dev-python/attrs[${PYTHON_USEDEP}] + >=dev-python/twisted-18.7.0[crypt,${PYTHON_USEDEP}] " - -DEPEND="${COMMON_DEPEND} +BDEPEND=" doc? ( dev-python/sphinx ${RDEPEND} ) test? ( - dev-python/mock[${PYTHON_USEDEP}] dev-python/httpbin[${PYTHON_USEDEP}] )" @@ -49,5 +43,5 @@ python_install_all() { python_test() { distutils_install_for_testing - "${EPYTHON}" trial treq || die "Tests failed with ${EPYTHON}" + "${EPYTHON}" -m twisted.trial treq || die "Tests failed with ${EPYTHON}" }