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/pyphen/
Date: Sat, 18 Mar 2023 06:57:05
Message-Id: 1679122319.cfe7568ff4d057342cdf919724adac484e5a8e14.mgorny@gentoo
1 commit: cfe7568ff4d057342cdf919724adac484e5a8e14
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 18 06:26:53 2023 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 18 06:51:59 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfe7568f
7
8 dev-python/pyphen: Bump to 0.14.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pyphen/Manifest | 1 +
13 dev-python/pyphen/pyphen-0.14.0.ebuild | 25 +++++++++++++++++++++++++
14 2 files changed, 26 insertions(+)
15
16 diff --git a/dev-python/pyphen/Manifest b/dev-python/pyphen/Manifest
17 index 8ecaa5b7812f..1033d7676f89 100644
18 --- a/dev-python/pyphen/Manifest
19 +++ b/dev-python/pyphen/Manifest
20 @@ -1 +1,2 @@
21 DIST pyphen-0.13.2.gh.tar.gz 1998017 BLAKE2B 7290cf7902a3dcfc9355d39de40a13b7aea20252636bdcdcd70436f59ca493dd287f96f365323c3e2d45dfc989e5418db4e3fb676602d123182c33b715ac7d26 SHA512 63bd3411c3120e73cd484eef3c3a280e9f8fee40f9aaf3fdca46c3ddf545aeb462eb4214fb239bd6a1fb6c065d5a34290f39763985e85447f413fc0af0afdae8
22 +DIST pyphen-0.14.0.tar.gz 1986988 BLAKE2B 3513ad1c9fbcc05318764f862a01bc4bbd6ad6a86f120ad93f8ff1d2a979984c35554db85943b5b7423f97e44ea933c64a3bf9c90aeb18629d215292466581b6 SHA512 5e242de2ecd5e951b2e1925df724013c14cea14729e8e0c132ab233c82406b37cc8d1d21cbd1edd748811fa6826a79da7a5ff9dfa859315840560cacae523e13
23
24 diff --git a/dev-python/pyphen/pyphen-0.14.0.ebuild b/dev-python/pyphen/pyphen-0.14.0.ebuild
25 new file mode 100644
26 index 000000000000..0aa510692c18
27 --- /dev/null
28 +++ b/dev-python/pyphen/pyphen-0.14.0.ebuild
29 @@ -0,0 +1,25 @@
30 +# Copyright 1999-2023 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +DISTUTILS_USE_PEP517=flit
36 +PYTHON_COMPAT=( python3_{9..11} )
37 +
38 +inherit distutils-r1 pypi
39 +
40 +DESCRIPTION="Python module for hyphenation using hunspell dictionaries"
41 +HOMEPAGE="
42 + https://github.com/Kozea/Pyphen/
43 + https://pypi.org/project/pyphen/
44 +"
45 +
46 +LICENSE="GPL-2+ LGPL-2+ MPL-1.1"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~riscv ~x86"
49 +
50 +distutils_enable_tests pytest
51 +
52 +python_test() {
53 + epytest -o addopts=
54 +}