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 37202138350 for ; Wed, 11 Mar 2020 17:12:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4E5F8E08A2; Wed, 11 Mar 2020 17:12:56 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 2F6ACE08A2 for ; Wed, 11 Mar 2020 17:12:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 2AADD34F22D for ; Wed, 11 Mar 2020 17:12:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A4B5F171 for ; Wed, 11 Mar 2020 17:12:52 +0000 (UTC) From: "Louis Sautier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Louis Sautier" Message-ID: <1583946765.8ff930d979fecf14b7fbae5c8cff16f354d1dd4c.sbraz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/httpauth/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/httpauth/httpauth-0.3.ebuild X-VCS-Directories: dev-python/httpauth/ X-VCS-Committer: sbraz X-VCS-Committer-Name: Louis Sautier X-VCS-Revision: 8ff930d979fecf14b7fbae5c8cff16f354d1dd4c X-VCS-Branch: master Date: Wed, 11 Mar 2020 17:12:52 +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: b7641915-b9ad-4647-b4ca-139a7aadfef0 X-Archives-Hash: 616ae8d4d3bbe491e1fd5d83136e5ffa commit: 8ff930d979fecf14b7fbae5c8cff16f354d1dd4c Author: Louis Sautier gentoo org> AuthorDate: Wed Mar 11 13:13:32 2020 +0000 Commit: Louis Sautier gentoo org> CommitDate: Wed Mar 11 17:12:45 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ff930d9 dev-python/httpauth: add Py3.8 support, fix deps Package-Manager: Portage-2.3.93, Repoman-2.3.20 Signed-off-by: Louis Sautier gentoo.org> dev-python/httpauth/httpauth-0.3.ebuild | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/dev-python/httpauth/httpauth-0.3.ebuild b/dev-python/httpauth/httpauth-0.3.ebuild index ec763d1968c..5bff2d38252 100644 --- a/dev-python/httpauth/httpauth-0.3.ebuild +++ b/dev-python/httpauth/httpauth-0.3.ebuild @@ -3,7 +3,8 @@ EAPI=7 -PYTHON_COMPAT=( pypy3 python3_{6,7} ) +PYTHON_COMPAT=( pypy3 python3_{6,7,8} ) +DISTUTILS_USE_SETUPTOOLS=no inherit distutils-r1 @@ -14,14 +15,5 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="ISC" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="test" -RESTRICT="!test? ( test )" -BDEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( dev-python/nose[${PYTHON_USEDEP}] ) -" - -python_test() { - nosetests -v tests.py || die "tests failed with ${EPYTHON}" -} +distutils_enable_tests nose