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 20DD513835A for ; Sun, 11 Oct 2020 21:33:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4A0E1E0BB1; Sun, 11 Oct 2020 21:33:24 +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 326F9E0BB1 for ; Sun, 11 Oct 2020 21:33:24 +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 CEFC234069A for ; Sun, 11 Oct 2020 21:33:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 453AB39F for ; Sun, 11 Oct 2020 21:33:21 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1602451971.83be90c183467135e1ae4fe81a2c8761b9b2b1a1.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-levenshtein/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/python-levenshtein/python-levenshtein-0.12.0.ebuild X-VCS-Directories: dev-python/python-levenshtein/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 83be90c183467135e1ae4fe81a2c8761b9b2b1a1 X-VCS-Branch: master Date: Sun, 11 Oct 2020 21:33:21 +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: 7cfea9c1-69d8-4b4e-8173-f4fede5cc5fa X-Archives-Hash: a5d627eefa04ba2a393d26a89fb9443b commit: 83be90c183467135e1ae4fe81a2c8761b9b2b1a1 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Oct 11 11:45:47 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Oct 11 21:32:51 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83be90c1 dev-python/python-levenshtein: EAPI-7 bump, python3_9 If Fedora can, so do we. Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Andreas Sturmlechner gentoo.org> .../python-levenshtein/python-levenshtein-0.12.0.ebuild | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/dev-python/python-levenshtein/python-levenshtein-0.12.0.ebuild b/dev-python/python-levenshtein/python-levenshtein-0.12.0.ebuild index 1fc1b7dce52..b6a9406fe17 100644 --- a/dev-python/python-levenshtein/python-levenshtein-0.12.0.ebuild +++ b/dev-python/python-levenshtein/python-levenshtein-0.12.0.ebuild @@ -1,20 +1,18 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 -PYTHON_COMPAT=( python3_{6,7,8} ) +PYTHON_COMPAT=( python3_{6,7,8,9} ) DISTUTILS_USE_SETUPTOOLS=rdepend -inherit distutils-r1 - MY_PN="python-Levenshtein" MY_P="${MY_PN}-${PV}" +inherit distutils-r1 DESCRIPTION="Functions for fast computation of Levenshtein distance, and edit operations" -HOMEPAGE=" - https://github.com/ztane/python-Levenshtein/ - https://pypi.org/project/python-Levenshtein/" +HOMEPAGE="https://pypi.org/project/python-Levenshtein/ + https://github.com/ztane/python-Levenshtein/" SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_P}.tar.gz" LICENSE="GPL-2"