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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 913D2158021 for ; Thu, 22 Dec 2022 15:45:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C9737E0866; Thu, 22 Dec 2022 15:45:42 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AC17AE0866 for ; Thu, 22 Dec 2022 15:45:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E22D1335CE9 for ; Thu, 22 Dec 2022 15:45:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AB8127EB for ; Thu, 22 Dec 2022 15:45:38 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1671723934.5b18cd06af19e44c206b36f11834ac1e202d2851.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/textdistance/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/textdistance/textdistance-4.5.0.ebuild X-VCS-Directories: dev-python/textdistance/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 5b18cd06af19e44c206b36f11834ac1e202d2851 X-VCS-Branch: master Date: Thu, 22 Dec 2022 15:45:38 +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: f14ab53d-3a82-4b4b-81df-007bd86113f4 X-Archives-Hash: fe31adb4ca462f25d34a507726fe13bb commit: 5b18cd06af19e44c206b36f11834ac1e202d2851 Author: Michał Górny gentoo org> AuthorDate: Thu Dec 22 15:22:26 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Dec 22 15:45:34 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b18cd06 dev-python/textdistance: Remove unused test dependencies Signed-off-by: Michał Górny gentoo.org> dev-python/textdistance/textdistance-4.5.0.ebuild | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/dev-python/textdistance/textdistance-4.5.0.ebuild b/dev-python/textdistance/textdistance-4.5.0.ebuild index 5f557cf3b372..4af20c362ea5 100644 --- a/dev-python/textdistance/textdistance-4.5.0.ebuild +++ b/dev-python/textdistance/textdistance-4.5.0.ebuild @@ -5,13 +5,18 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools PYTHON_COMPAT=( python3_{8..11} ) + inherit distutils-r1 DESCRIPTION="Compute distance between the two texts" -HOMEPAGE="https://github.com/life4/textdistance" +HOMEPAGE=" + https://github.com/life4/textdistance/ + https://pypi.org/project/textdistance/ +" SRC_URI=" https://github.com/life4/textdistance/archive/${PV}.tar.gz - -> ${P}.gh.tar.gz" + -> ${P}.gh.tar.gz +" LICENSE="MIT" SLOT="0" @@ -19,17 +24,13 @@ KEYWORDS="amd64 ~ppc64 ~riscv x86" BDEPEND=" test? ( - dev-python/abydos[${PYTHON_USEDEP}] dev-python/hypothesis[${PYTHON_USEDEP}] - dev-python/isort[${PYTHON_USEDEP}] - dev-python/jellyfish[${PYTHON_USEDEP}] - dev-python/Levenshtein[${PYTHON_USEDEP}] dev-python/numpy[${PYTHON_USEDEP}] - dev-python/pyxDamerauLevenshtein[${PYTHON_USEDEP}] - )" + ) +" distutils_enable_tests pytest -EPYTEST_DESELECT=( +EPYTEST_IGNORE=( tests/test_external.py )