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 B0BD115808B for ; Wed, 30 Mar 2022 22:27:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C9CF6E088F; Wed, 30 Mar 2022 22:27:05 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 02B5EE088F for ; Wed, 30 Mar 2022 22:27:05 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 27265341382 for ; Wed, 30 Mar 2022 22:27:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 65037177 for ; Wed, 30 Mar 2022 22:27:02 +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: <1648679219.89f79886d90ccb5628b511b4e309b007072473de.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jellyfish/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/jellyfish/jellyfish-0.9.0.ebuild X-VCS-Directories: dev-python/jellyfish/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 89f79886d90ccb5628b511b4e309b007072473de X-VCS-Branch: master Date: Wed, 30 Mar 2022 22:27:02 +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: 635b1ca9-b6e4-4791-badc-31b42b87a95a X-Archives-Hash: b74e1522766578f41d87e3fc0493cd50 commit: 89f79886d90ccb5628b511b4e309b007072473de Author: Michał Górny gentoo org> AuthorDate: Wed Mar 30 21:09:42 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Mar 30 22:26:59 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89f79886 dev-python/jellyfish: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/jellyfish/jellyfish-0.9.0.ebuild | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/dev-python/jellyfish/jellyfish-0.9.0.ebuild b/dev-python/jellyfish/jellyfish-0.9.0.ebuild deleted file mode 100644 index 8f92bc86d14a..000000000000 --- a/dev-python/jellyfish/jellyfish-0.9.0.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..10} ) -inherit distutils-r1 - -DESCRIPTION="Python module for doing approximate and phonetic matching of strings" -HOMEPAGE="https://github.com/jamesturk/jellyfish https://pypi.org/project/jellyfish/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="amd64 x86" - -BDEPEND=" - test? ( - dev-python/unicodecsv[${PYTHON_USEDEP}] - ) -" - -distutils_enable_tests pytest - -python_test() { - cp -r testdata "${BUILD_DIR}" || die - cd "${BUILD_DIR}" || die - epytest lib/jellyfish/test.py -}