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 58DD0139335 for ; Fri, 25 Jun 2021 20:06:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6D122E08F4; Fri, 25 Jun 2021 20:06:22 +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 5205BE08F4 for ; Fri, 25 Jun 2021 20:06:22 +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 27FDE342A1B for ; Fri, 25 Jun 2021 20:06:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 654DF581 for ; Fri, 25 Jun 2021 20:06:19 +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: <1624651396.4b88b8f86399d43200a2d5a7a1d76f8db85d4fdf.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/abydos/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/abydos/abydos-0.5.0.ebuild X-VCS-Directories: dev-python/abydos/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 4b88b8f86399d43200a2d5a7a1d76f8db85d4fdf X-VCS-Branch: master Date: Fri, 25 Jun 2021 20:06:19 +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: 95031689-c254-4485-9055-de11c55765b9 X-Archives-Hash: d33a8244b0a590a7ae16485bd17121fd commit: 4b88b8f86399d43200a2d5a7a1d76f8db85d4fdf Author: Michał Górny gentoo org> AuthorDate: Fri Jun 25 20:03:16 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Jun 25 20:03:16 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b88b8f8 dev-python/abydos: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/abydos/abydos-0.5.0.ebuild | 39 ----------------------------------- 1 file changed, 39 deletions(-) diff --git a/dev-python/abydos/abydos-0.5.0.ebuild b/dev-python/abydos/abydos-0.5.0.ebuild deleted file mode 100644 index d4e625cdbb2..00000000000 --- a/dev-python/abydos/abydos-0.5.0.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7,8} ) - -inherit distutils-r1 - -DESCRIPTION="Abydos NLP/IR library" -HOMEPAGE="https://github.com/chrislit/abydos" -SRC_URI="https://github.com/chrislit/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="amd64 x86" - -# Requires access to the internet -RESTRICT="test" - -RDEPEND=" - dev-python/deprecation[${PYTHON_USEDEP}] - dev-python/numpy[${PYTHON_USEDEP}] -" - -BDEPEND="test? ( - dev-python/nltk[${PYTHON_USEDEP}] -)" - -distutils_enable_tests pytest -# Extension error: You must configure the bibtex_bibfiles setting -#distutils_enable_sphinx docs dev-python/sphinx_rtd_theme dev-python/sphinxcontrib-bibtex - -python_prepare_all() { - # do not depend on pytest-cov - sed -i -e '/addopts/d' setup.cfg || die - - distutils-r1_python_prepare_all -}