Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyphen/
Date: Tue, 29 Nov 2022 20:18:28
Message-Id: 1669753097.796a28a717caa681164ade6545d0261ed3823eec.arthurzam@gentoo
1 commit: 796a28a717caa681164ade6545d0261ed3823eec
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 29 20:08:53 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 29 20:18:17 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=796a28a7
7
8 dev-python/pyphen: add 0.13.2
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/pyphen/Manifest | 1 +
13 dev-python/pyphen/pyphen-0.13.2.ebuild | 30 ++++++++++++++++++++++++++++++
14 2 files changed, 31 insertions(+)
15
16 diff --git a/dev-python/pyphen/Manifest b/dev-python/pyphen/Manifest
17 index 11bb7cf15e97..3ce298dd754e 100644
18 --- a/dev-python/pyphen/Manifest
19 +++ b/dev-python/pyphen/Manifest
20 @@ -1,2 +1,3 @@
21 DIST pyphen-0.13.0.gh.tar.gz 1976723 BLAKE2B 2a2934cabf13f1b77477d131622cd2f03c342557bdfe3b2f7cfbbf31c4538850e021e074798d80300f87b2557f87cbf3bbeafd01da03b38a7036609e61e140ec SHA512 67897cec0b213a755af53ac21c61ddc1ac573a724658543174c3f88adb5f3db367fecf3afb1e7035c0d5b87e624daa2fe7650cb6e44c63d3b9ef6962bbc5d9e2
22 DIST pyphen-0.13.1.gh.tar.gz 1976786 BLAKE2B f836467ab8d75f48ed17bccf629193a0c3009a8fc6af114ef86606d468d70aa68f3af5d9dc77318282825cf3d21f661b2a4a93cbf305913ead5cb11de74f474e SHA512 230aec57f0a2db11f30b15115e5ed59ce19aed60120de24783f58ef831854ad7e236ae1da086bca01f9a41cef24f8402d9e0bf9251f6d55c38aa624fd55d4a3b
23 +DIST pyphen-0.13.2.gh.tar.gz 1998017 BLAKE2B 7290cf7902a3dcfc9355d39de40a13b7aea20252636bdcdcd70436f59ca493dd287f96f365323c3e2d45dfc989e5418db4e3fb676602d123182c33b715ac7d26 SHA512 63bd3411c3120e73cd484eef3c3a280e9f8fee40f9aaf3fdca46c3ddf545aeb462eb4214fb239bd6a1fb6c065d5a34290f39763985e85447f413fc0af0afdae8
24
25 diff --git a/dev-python/pyphen/pyphen-0.13.2.ebuild b/dev-python/pyphen/pyphen-0.13.2.ebuild
26 new file mode 100644
27 index 000000000000..8e9142ded36e
28 --- /dev/null
29 +++ b/dev-python/pyphen/pyphen-0.13.2.ebuild
30 @@ -0,0 +1,30 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +DISTUTILS_USE_PEP517=flit
37 +PYTHON_COMPAT=( python3_{8..11} )
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="Python module for hyphenation using hunspell dictionaries"
42 +HOMEPAGE="
43 + https://github.com/Kozea/Pyphen/
44 + https://pypi.org/project/pyphen/
45 +"
46 +SRC_URI="
47 + https://github.com/Kozea/Pyphen/archive/${PV}.tar.gz
48 + -> ${P}.gh.tar.gz
49 +"
50 +S=${WORKDIR}/${P^}
51 +
52 +LICENSE="GPL-2+ LGPL-2+ MPL-1.1"
53 +SLOT="0"
54 +KEYWORDS="~amd64 ~riscv ~x86"
55 +
56 +distutils_enable_tests pytest
57 +
58 +python_test() {
59 + epytest -o addopts=
60 +}