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 B8812138334 for ; Sat, 28 Jul 2018 22:27:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 91108E084E; Sat, 28 Jul 2018 22:27:05 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 5A12DE084E for ; Sat, 28 Jul 2018 22:27:05 +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 8E65E335C9B for ; Sat, 28 Jul 2018 22:27:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5D97A386 for ; Sat, 28 Jul 2018 22:27:01 +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: <1532816775.729d25ac2e2a7c935d339ee750352d54d6974f28.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: 729d25ac2e2a7c935d339ee750352d54d6974f28 X-VCS-Branch: master Date: Sat, 28 Jul 2018 22:27:01 +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-Archives-Salt: 88688b6b-d6b7-4b8e-bd90-e1d7fce1b3a4 X-Archives-Hash: 19ad3c76aed11a4556c78e640ab5bdf1 commit: 729d25ac2e2a7c935d339ee750352d54d6974f28 Author: Louis Sautier gentoo org> AuthorDate: Sat Jul 28 22:21:56 2018 +0000 Commit: Louis Sautier gentoo org> CommitDate: Sat Jul 28 22:26:15 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=729d25ac dev-python/httpauth: add Python 3.7, EAPI=7, make tests verbose Package-Manager: Portage-2.3.43, Repoman-2.3.10 dev-python/httpauth/httpauth-0.3.ebuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dev-python/httpauth/httpauth-0.3.ebuild b/dev-python/httpauth/httpauth-0.3.ebuild index 49c87f86fbe..5d6c2a75af2 100644 --- a/dev-python/httpauth/httpauth-0.3.ebuild +++ b/dev-python/httpauth/httpauth-0.3.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 -PYTHON_COMPAT=( python{2_7,3_{4,5,6}} pypy{,3} ) +PYTHON_COMPAT=( pypy{,3} python{2_7,3_{4,5,6,7}} ) inherit distutils-r1 @@ -16,11 +16,11 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="test" -DEPEND=" +BDEPEND=" dev-python/setuptools[${PYTHON_USEDEP}] test? ( dev-python/nose[${PYTHON_USEDEP}] ) " python_test() { - nosetests tests.py || die "tests failed with ${EPYTHON}" + nosetests -v tests.py || die "tests failed with ${EPYTHON}" }