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 726611382C5 for ; Tue, 8 Dec 2020 00:37:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C4289E0A04; Tue, 8 Dec 2020 00:37:47 +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 AC36DE0A04 for ; Tue, 8 Dec 2020 00:37:47 +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 C1F74340C59 for ; Tue, 8 Dec 2020 00:37:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 536F7478 for ; Tue, 8 Dec 2020 00:37:45 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <1607387860.46265eeb4f36cca8039241dc1a9a2d41d2f6caa7.robbat2@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/gevent/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/gevent/gevent-20.9.0.ebuild X-VCS-Directories: dev-python/gevent/ X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: 46265eeb4f36cca8039241dc1a9a2d41d2f6caa7 X-VCS-Branch: master Date: Tue, 8 Dec 2020 00:37:45 +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: 10649b46-afda-4125-8664-e636850ad0a4 X-Archives-Hash: 22b49916d32722b8a09bed4ce873d068 commit: 46265eeb4f36cca8039241dc1a9a2d41d2f6caa7 Author: Robin H. Johnson gentoo org> AuthorDate: Tue Dec 8 00:31:03 2020 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Tue Dec 8 00:37:40 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46265eeb dev-python/gevent: bump libev dep EVBACKEND_LINUXAIO was added to libev-4.24 EVBACKEND_IOURING was added in libev-4.31 ``` src/gevent/libev/corecext.c: In function '__pyx_pymod_exec_corecext': src/gevent/libev/corecext.c:24279:36: error: 'EVBACKEND_LINUXAIO' undeclared (first use in this function) 24279 | __pyx_t_1 = __Pyx_PyInt_From_int(EVBACKEND_LINUXAIO); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 113, __pyx_L1_error) | ^~~~~~~~~~~~~~~~~~ src/gevent/libev/corecext.c:24279:36: note: each undeclared identifier is reported only once for each function it appears in src/gevent/libev/corecext.c:24284:36: error: 'EVBACKEND_IOURING' undeclared (first use in this function); did you mean 'EVBACKEND_PORT'? 24284 | __pyx_t_1 = __Pyx_PyInt_From_int(EVBACKEND_IOURING); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 114, __pyx_L1_error) | ^~~~~~~~~~~~~~~~~ ``` Signed-off-by: Robin H. Johnson gentoo.org> dev-python/gevent/gevent-20.9.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-python/gevent/gevent-20.9.0.ebuild b/dev-python/gevent/gevent-20.9.0.ebuild index 0e56fd67180..b51407611f0 100644 --- a/dev-python/gevent/gevent-20.9.0.ebuild +++ b/dev-python/gevent/gevent-20.9.0.ebuild @@ -20,7 +20,7 @@ IUSE="doc examples test" RESTRICT="!test? ( test )" RDEPEND=" - >=dev-libs/libev-4.23:= + >=dev-libs/libev-4.31:= dev-libs/libuv:= >=net-dns/c-ares-1.12:= >=dev-python/greenlet-0.4.17