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 E83FD138359 for ; Sat, 22 Aug 2020 11:39:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 24EBDE0833; Sat, 22 Aug 2020 11:39:04 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 10050E0833 for ; Sat, 22 Aug 2020 11:39:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 28DEF340E2D for ; Sat, 22 Aug 2020 11:39:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A1DCC2D2 for ; Sat, 22 Aug 2020 11:39:01 +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: <1598096339.dd7c149aaf9ddac6aef33ff36f08e5166c94385c.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyenchant/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyenchant/pyenchant-2.0.0.ebuild X-VCS-Directories: dev-python/pyenchant/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: dd7c149aaf9ddac6aef33ff36f08e5166c94385c X-VCS-Branch: master Date: Sat, 22 Aug 2020 11:39:01 +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: db628138-3d9e-4df3-afc9-8d3ab0c3a354 X-Archives-Hash: 9863360168b734fcead6d20d62ff86c2 commit: dd7c149aaf9ddac6aef33ff36f08e5166c94385c Author: Michał Górny gentoo org> AuthorDate: Sat Aug 22 11:38:23 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Aug 22 11:38:59 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd7c149a dev-python/pyenchant: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/pyenchant/pyenchant-2.0.0.ebuild | 38 ----------------------------- 1 file changed, 38 deletions(-) diff --git a/dev-python/pyenchant/pyenchant-2.0.0.ebuild b/dev-python/pyenchant/pyenchant-2.0.0.ebuild deleted file mode 100644 index 1dde032e861..00000000000 --- a/dev-python/pyenchant/pyenchant-2.0.0.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( pypy3 python3_{6,7,8} ) - -inherit distutils-r1 - -DESCRIPTION="Python bindings for the Enchant spellchecking system" -HOMEPAGE="http://pyenchant.sourceforge.net https://pypi.org/project/pyenchant/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 sparc x86" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND="app-text/enchant:0" -DEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( - ${RDEPEND} - app-dicts/myspell-en - )" - -python_prepare_all() { - # Avoid a test failure when there is no dictionary - # matching the available locales - # https://github.com/rfk/pyenchant/issues/134 - sed -i 's/test_default_language/_&/' enchant/checker/tests.py || die - distutils-r1_python_prepare_all -} - -python_test() { - esetup.py test -}