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 71C571580B9 for ; Sat, 21 Aug 2021 09:02:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C8D86E086B; Sat, 21 Aug 2021 09:02:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 A8F3DE0867 for ; Sat, 21 Aug 2021 09:02:21 +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 AE1BB340CCD for ; Sat, 21 Aug 2021 09:02:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 005887B2 for ; Sat, 21 Aug 2021 09:02:18 +0000 (UTC) From: "Anna Vyalkova" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anna Vyalkova" Message-ID: <1629536229.d4ec6cd9ecc65b6e650200f4823ffcdb697aef58.cybertailor@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/aiounittest/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/aiounittest/aiounittest-1.4.0.ebuild X-VCS-Directories: dev-python/aiounittest/ X-VCS-Committer: cybertailor X-VCS-Committer-Name: Anna Vyalkova X-VCS-Revision: d4ec6cd9ecc65b6e650200f4823ffcdb697aef58 X-VCS-Branch: dev Date: Sat, 21 Aug 2021 09:02:18 +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: e0c3e5ee-089e-4d8c-a2c0-7aa966116794 X-Archives-Hash: 63b3a585122aa9877b114bea0d10242f commit: d4ec6cd9ecc65b6e650200f4823ffcdb697aef58 Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Tue Aug 17 22:08:44 2021 +0000 Commit: Anna Vyalkova sysrq in> CommitDate: Sat Aug 21 08:57:09 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d4ec6cd9 dev-python/aiounittest: update EAPI, enable py3.10 Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> dev-python/aiounittest/aiounittest-1.4.0.ebuild | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/dev-python/aiounittest/aiounittest-1.4.0.ebuild b/dev-python/aiounittest/aiounittest-1.4.0.ebuild index 3b45c2166..a2165b483 100644 --- a/dev-python/aiounittest/aiounittest-1.4.0.ebuild +++ b/dev-python/aiounittest/aiounittest-1.4.0.ebuild @@ -1,10 +1,9 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 - -PYTHON_COMPAT=( python3_{7,8,9} ) +EAPI=8 +PYTHON_COMPAT=( python3_{8..10} pypy3 ) inherit distutils-r1 DESCRIPTION="Test python asyncio-based code with ease" @@ -13,7 +12,7 @@ SRC_URI="https://github.com/kwarunek/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" RDEPEND="dev-python/wrapt[${PYTHON_USEDEP}]"