Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyenchant/
Date: Thu, 26 May 2022 08:07:23
Message-Id: 1653552432.d5e1ed6d991621d85f335d1286f72edcdcd0c78c.mgorny@gentoo
1 commit: d5e1ed6d991621d85f335d1286f72edcdcd0c78c
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 26 07:14:10 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu May 26 08:07:12 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5e1ed6d
7
8 dev-python/pyenchant: Use PEP517 build
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pyenchant/pyenchant-3.2.2-r1.ebuild | 34 ++++++++++++++++++++++++++
13 1 file changed, 34 insertions(+)
14
15 diff --git a/dev-python/pyenchant/pyenchant-3.2.2-r1.ebuild b/dev-python/pyenchant/pyenchant-3.2.2-r1.ebuild
16 new file mode 100644
17 index 000000000000..63112539edb8
18 --- /dev/null
19 +++ b/dev-python/pyenchant/pyenchant-3.2.2-r1.ebuild
20 @@ -0,0 +1,34 @@
21 +# Copyright 1999-2022 Gentoo Authors
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=8
25 +
26 +DISTUTILS_USE_PEP517=setuptools
27 +PYTHON_COMPAT=( pypy3 python3_{8..10} )
28 +
29 +inherit distutils-r1
30 +
31 +DESCRIPTION="Python bindings for the Enchant spellchecking system"
32 +HOMEPAGE="
33 + https://github.com/pyenchant/pyenchant/
34 + https://pypi.org/project/pyenchant/
35 +"
36 +SRC_URI="
37 + https://github.com/pyenchant/pyenchant/archive/v${PV}.tar.gz
38 + -> ${P}.gh.tar.gz
39 +"
40 +
41 +LICENSE="LGPL-2.1"
42 +SLOT="0"
43 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
44 +
45 +RDEPEND="
46 + app-text/enchant:*
47 +"
48 +BDEPEND="
49 + test? (
50 + app-dicts/myspell-en
51 + )
52 +"
53 +
54 +distutils_enable_tests pytest