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, 26 Jun 2021 21:35:29
Message-Id: 1624743323.3c8e44df146d500e305e7dcbea58f3340f35851d.mgorny@gentoo
1 commit: 3c8e44df146d500e305e7dcbea58f3340f35851d
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 26 21:11:49 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 26 21:35:23 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c8e44df
7
8 dev-python/pyphen: Bump to 0.11.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.11.0.ebuild | 29 +++++++++++++++++++++++++++++
14 2 files changed, 30 insertions(+)
15
16 diff --git a/dev-python/pyphen/Manifest b/dev-python/pyphen/Manifest
17 index 78b4df97eef..c02ce58deb5 100644
18 --- a/dev-python/pyphen/Manifest
19 +++ b/dev-python/pyphen/Manifest
20 @@ -1 +1,2 @@
21 DIST Pyphen-0.10.0.tar.gz 1894118 BLAKE2B c33283d6eb3dd7affb52b91826fa0f8fab8ec8f858158e905e8487dc2ad8c77a88e4b25699ed6272d246bcf8a926560e18ec224f59703452ea1ad5c921e4fb4b SHA512 b6d789ca6eb010c1c79b28a9a0e68620ea5600adc43111bed5dbda3cb8b3a4c8c05caa3fb44ea60b0ef4a20272f17cf5e6fe61f0d1e48038395407ff53da7a92
22 +DIST Pyphen-0.11.0.tar.gz 1967507 BLAKE2B 0bea108e78894082f59693a4ffa6c7f9f6aaec5fc10d0ecf4dc9b6c12fbcfde2cdd835e813b1041797cbc30d5e6e33f5626a517e8cc0535a7a001c8ac779fa4c SHA512 cdb4ee065698e27a4662984b76ee5c494c0d8e7d6b377667399f40d0dffc2b1d730956f3fa1fe73a08c17601152c99321b6fd5dd4d48361c54e9a6b635f02f0d
23
24 diff --git a/dev-python/pyphen/pyphen-0.11.0.ebuild b/dev-python/pyphen/pyphen-0.11.0.ebuild
25 new file mode 100644
26 index 00000000000..9fd945456c9
27 --- /dev/null
28 +++ b/dev-python/pyphen/pyphen-0.11.0.ebuild
29 @@ -0,0 +1,29 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI="7"
34 +
35 +DISTUTILS_USE_SETUPTOOLS=pyproject.toml
36 +PYTHON_COMPAT=( python3_{8..10} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Python module for hyphenation using hunspell dictionaries"
41 +HOMEPAGE="https://github.com/Kozea/Pyphen"
42 +SRC_URI="https://github.com/Kozea/Pyphen/archive/${PV}.tar.gz -> ${P^}.tar.gz"
43 +S=${WORKDIR}/${P^}
44 +
45 +LICENSE="GPL-2+ LGPL-2+ MPL-1.1"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~x86"
48 +
49 +BDEPEND="
50 + >=dev-python/pyproject2setuppy-17[${PYTHON_USEDEP}]"
51 +
52 +distutils_enable_tests pytest
53 +
54 +src_prepare() {
55 + # avoid dep on extra plugins
56 + sed -i -e '/addopts/d' pyproject.toml || die
57 + distutils-r1_src_prepare
58 +}