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 D6C02138334 for ; Sat, 9 Feb 2019 08:48:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5727FE097B; Sat, 9 Feb 2019 08:48:15 +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 2FE8DE097B for ; Sat, 9 Feb 2019 08:48:15 +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 06FD5335D93 for ; Sat, 9 Feb 2019 08:48:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C846953E for ; Sat, 9 Feb 2019 08:48:10 +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: <1549702083.0c0021e2eb8f763e69a12477ee2696a231875142.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/setuptools/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/setuptools/setuptools-9999.ebuild X-VCS-Directories: dev-python/setuptools/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 0c0021e2eb8f763e69a12477ee2696a231875142 X-VCS-Branch: master Date: Sat, 9 Feb 2019 08:48:10 +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: 90f0e53b-34c6-4516-a82e-d36f488e0afe X-Archives-Hash: 1be153ac2fa93b6457de9f49e8bbca54 commit: 0c0021e2eb8f763e69a12477ee2696a231875142 Author: Michał Górny gentoo org> AuthorDate: Sat Feb 9 07:39:14 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Feb 9 08:48:03 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c0021e2 dev-python/setuptools: Sync the live ebuild (nobody cares about) Signed-off-by: Michał Górny gentoo.org> dev-python/setuptools/setuptools-9999.ebuild | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/dev-python/setuptools/setuptools-9999.ebuild b/dev-python/setuptools/setuptools-9999.ebuild index ffd12471470..d67bd927712 100644 --- a/dev-python/setuptools/setuptools-9999.ebuild +++ b/dev-python/setuptools/setuptools-9999.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} pypy{,3} ) PYTHON_REQ_USE="xml(+)" @@ -12,7 +12,7 @@ if [[ ${PV} == "9999" ]]; then inherit git-r3 else SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip" - KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~x86" + KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x64-cygwin ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" fi DESCRIPTION="Collection of extensions to Distutils" @@ -27,12 +27,13 @@ RDEPEND=" DEPEND="${RDEPEND} app-arch/unzip test? ( + dev-python/mock[${PYTHON_USEDEP}] dev-python/pip[${PYTHON_USEDEP}] - >=dev-python/pytest-2.8[${PYTHON_USEDEP}] - dev-python/pytest-fixture-config[${PYTHON_USEDEP}] + >=dev-python/pytest-3.7.0[${PYTHON_USEDEP}] + =dev-python/backports-unittest-mock-1.2[${PYTHON_USEDEP}] dev-python/wheel[${PYTHON_USEDEP}] + virtual/python-futures[${PYTHON_USEDEP}] ) " PDEPEND=" @@ -61,7 +62,7 @@ python_prepare_all() { python_test() { # test_easy_install raises a SandboxViolation due to ${HOME}/.pydistutils.cfg # It tries to sandbox the test in a tempdir - HOME="${PWD}" py.test --verbose ${PN} || die "Tests failed under ${EPYTHON}" + HOME="${PWD}" pytest -vv ${PN} || die "Tests failed under ${EPYTHON}" } python_install() {