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 C284F13835B for ; Sun, 20 Jun 2021 17:51:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 75F03E085E; Sun, 20 Jun 2021 17:51:52 +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 5ED05E085E for ; Sun, 20 Jun 2021 17:51:52 +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 04D9C335CD6 for ; Sun, 20 Jun 2021 17:51:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4C39A7B3 for ; Sun, 20 Jun 2021 17:51:49 +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: <1624211507.1805b9c2f51ce2a93dc9c393c29c1c0b320da89f.Alessandro-Barbieri@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/vttlib/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/vttlib/vttlib-0.11.0.ebuild X-VCS-Directories: dev-python/vttlib/ X-VCS-Committer: Alessandro-Barbieri X-VCS-Committer-Name: Alessandro Barbieri X-VCS-Revision: 1805b9c2f51ce2a93dc9c393c29c1c0b320da89f X-VCS-Branch: dev Date: Sun, 20 Jun 2021 17:51:49 +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: c76fea62-8f68-4f88-9ac0-307e4020cfa5 X-Archives-Hash: c1b4b47b23bcd49487dab2477fdcab81 commit: 1805b9c2f51ce2a93dc9c393c29c1c0b320da89f Author: Alessandro Barbieri gmail com> AuthorDate: Sun Jun 20 17:36:04 2021 +0000 Commit: Alessandro Barbieri gmail com> CommitDate: Sun Jun 20 17:51:47 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1805b9c2 dev-python/vttlib: enable py3.9 and disable py3.7 Signed-off-by: Alessandro Barbieri gmail.com> dev-python/vttlib/vttlib-0.11.0.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dev-python/vttlib/vttlib-0.11.0.ebuild b/dev-python/vttlib/vttlib-0.11.0.ebuild index 1a5bddbf6..0712dbb23 100644 --- a/dev-python/vttlib/vttlib-0.11.0.ebuild +++ b/dev-python/vttlib/vttlib-0.11.0.ebuild @@ -2,11 +2,12 @@ # Distributed under the terms of the GNU General Public License v2 EAPI="7" + +DISTUTILS_USE_SETUPTOOLS=pyproject.toml MYPN="vttLib" MYPV="${PV/_p/.post}" MYP="${MYPN}-${MYPV}" -PYTHON_COMPAT=( python3_{7,8} ) -DISTUTILS_USE_SETUPTOOLS=pyproject.toml +PYTHON_COMPAT=( python3_{8..9} ) inherit distutils-r1