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 CF03C158091 for ; Thu, 26 May 2022 08:07:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D514AE0886; Thu, 26 May 2022 08:07:22 +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 B7501E0886 for ; Thu, 26 May 2022 08:07:22 +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 C76FB341714 for ; Thu, 26 May 2022 08:07:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 97B224D7 for ; Thu, 26 May 2022 08:07:18 +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: <1653552432.d5e1ed6d991621d85f335d1286f72edcdcd0c78c.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-3.2.2-r1.ebuild X-VCS-Directories: dev-python/pyenchant/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: d5e1ed6d991621d85f335d1286f72edcdcd0c78c X-VCS-Branch: master Date: Thu, 26 May 2022 08:07:18 +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: 451fe47d-0ed7-4882-8176-7592931c0d21 X-Archives-Hash: ad6fa2eec0131b6585c764585fd28414 commit: d5e1ed6d991621d85f335d1286f72edcdcd0c78c Author: Michał Górny gentoo org> AuthorDate: Thu May 26 07:14:10 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu May 26 08:07:12 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5e1ed6d dev-python/pyenchant: Use PEP517 build Signed-off-by: Michał Górny gentoo.org> dev-python/pyenchant/pyenchant-3.2.2-r1.ebuild | 34 ++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/dev-python/pyenchant/pyenchant-3.2.2-r1.ebuild b/dev-python/pyenchant/pyenchant-3.2.2-r1.ebuild new file mode 100644 index 000000000000..63112539edb8 --- /dev/null +++ b/dev-python/pyenchant/pyenchant-3.2.2-r1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( pypy3 python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="Python bindings for the Enchant spellchecking system" +HOMEPAGE=" + https://github.com/pyenchant/pyenchant/ + https://pypi.org/project/pyenchant/ +" +SRC_URI=" + https://github.com/pyenchant/pyenchant/archive/v${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" + +RDEPEND=" + app-text/enchant:* +" +BDEPEND=" + test? ( + app-dicts/myspell-en + ) +" + +distutils_enable_tests pytest