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 406A1138350 for ; Sun, 26 Jan 2020 22:43:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 844F2E080E; Sun, 26 Jan 2020 22:43:05 +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 58926E087C for ; Sun, 26 Jan 2020 22:43: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 1F29634E076 for ; Sun, 26 Jan 2020 22:43:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CDFD08F for ; Sun, 26 Jan 2020 22:43:02 +0000 (UTC) From: "Sebastian Pipping" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Pipping" Message-ID: <1580078570.ec6bbbcd2e357c495f3def3910a519d7b5ea6da4.sping@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/gevent/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/gevent/gevent-1.4.0.ebuild X-VCS-Directories: dev-python/gevent/ X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: ec6bbbcd2e357c495f3def3910a519d7b5ea6da4 X-VCS-Branch: master Date: Sun, 26 Jan 2020 22:43:02 +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: 78b6fe30-de70-4ef4-ba0c-d9a36308d5f5 X-Archives-Hash: 30be0febc7e261225ac41417fb17e8f8 commit: ec6bbbcd2e357c495f3def3910a519d7b5ea6da4 Author: Sebastian Pipping gentoo org> AuthorDate: Sun Jan 26 22:37:12 2020 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Sun Jan 26 22:42:50 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec6bbbcd dev-python/gevent: EAPI 7 + Python 3.8 Signed-off-by: Sebastian Pipping gentoo.org> Package-Manager: Portage-2.3.84, Repoman-2.3.20 dev-python/gevent/gevent-1.4.0.ebuild | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/dev-python/gevent/gevent-1.4.0.ebuild b/dev-python/gevent/gevent-1.4.0.ebuild index 4e9650bf6fc..0a8fede4aa8 100644 --- a/dev-python/gevent/gevent-1.4.0.ebuild +++ b/dev-python/gevent/gevent-1.4.0.ebuild @@ -1,19 +1,16 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 -PYTHON_COMPAT=( python2_7 python3_{6,7} ) +PYTHON_COMPAT=( python2_7 python3_{6,7,8} ) PYTHON_REQ_USE="ssl(+),threads(+)" inherit distutils-r1 flag-o-matic -MY_PV=${PV/_beta/b} -MY_P=${PN}-${MY_PV} - DESCRIPTION="Coroutine-based network library" HOMEPAGE="http://gevent.org/ https://pypi.org/project/gevent/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" @@ -26,15 +23,12 @@ RDEPEND=" >=dev-python/greenlet-0.4.14 virtual/python-greenlet[${PYTHON_USEDEP}]" DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}] doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )" # Tests take long and fail terribly a few times. # It also seems that they require network access. RESTRICT="test" -S=${WORKDIR}/${MY_P} - python_prepare_all() { export LIBEV_EMBED="false" export CARES_EMBED="false"