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 6EDFA158087 for ; Sat, 9 Oct 2021 02:50:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 100D9E081A; Sat, 9 Oct 2021 02:50:11 +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-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EE8CFE081A for ; Sat, 9 Oct 2021 02:50:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B5C6C342EBA for ; Sat, 9 Oct 2021 02:50:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D9B1E13F for ; Sat, 9 Oct 2021 02:50:07 +0000 (UTC) From: "Alessandro Barbieri" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alessandro Barbieri" Message-ID: <1633747805.25da7e4ab76164a88032a10d42570e14a08e7aa4.Alessandro-Barbieri@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: www-apps/twint/ X-VCS-Repository: repo/proj/guru X-VCS-Files: www-apps/twint/twint-2.1.20-r1.ebuild www-apps/twint/twint-2.1.20-r2.ebuild X-VCS-Directories: www-apps/twint/ X-VCS-Committer: Alessandro-Barbieri X-VCS-Committer-Name: Alessandro Barbieri X-VCS-Revision: 25da7e4ab76164a88032a10d42570e14a08e7aa4 X-VCS-Branch: dev Date: Sat, 9 Oct 2021 02:50:07 +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: 8c9bbf9a-6c40-440b-b5d1-cb7952971d07 X-Archives-Hash: 0effd6e45985bb75a1b829eff2f0b279 commit: 25da7e4ab76164a88032a10d42570e14a08e7aa4 Author: Alessandro Barbieri gmail com> AuthorDate: Sat Oct 9 02:38:02 2021 +0000 Commit: Alessandro Barbieri gmail com> CommitDate: Sat Oct 9 02:50:05 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=25da7e4a www-apps/twint: EAPI 8 Signed-off-by: Alessandro Barbieri gmail.com> .../twint/{twint-2.1.20-r1.ebuild => twint-2.1.20-r2.ebuild} | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/www-apps/twint/twint-2.1.20-r1.ebuild b/www-apps/twint/twint-2.1.20-r2.ebuild similarity index 94% rename from www-apps/twint/twint-2.1.20-r1.ebuild rename to www-apps/twint/twint-2.1.20-r2.ebuild index 323956274..e059ada66 100644 --- a/www-apps/twint/twint-2.1.20-r1.ebuild +++ b/www-apps/twint/twint-2.1.20-r2.ebuild @@ -1,10 +1,10 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="7" +EAPI=8 -PYTHON_COMPAT=( python3_{7,8} ) DISTUTILS_USE_SETUPTOOLS=rdepend +PYTHON_COMPAT=( python3_{8..9} ) inherit distutils-r1 @@ -19,8 +19,6 @@ LICENSE="MIT" SLOT="0" KEYWORDS="~amd64" IUSE="test" -#tests require network -RESTRICT="test" RDEPEND=" dev-python/aiohttp[${PYTHON_USEDEP}] @@ -38,6 +36,9 @@ RDEPEND=" " DEPEND="${RDEPEND}" +RESTRICT="test" +PROPERTIES="test_network" + python_test() { "${EPYTHON}" test.py -v || die }