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: Sun, 27 Feb 2022 18:46:48
Message-Id: 1645987551.d248f82ceb2ad8f59ab655eebd912e4d65b754a4.mgorny@gentoo
1 commit: d248f82ceb2ad8f59ab655eebd912e4d65b754a4
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 27 18:45:51 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 27 18:45:51 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d248f82c
7
8 dev-python/pyphen: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pyphen/pyphen-0.12.0.ebuild | 29 -----------------------------
13 1 file changed, 29 deletions(-)
14
15 diff --git a/dev-python/pyphen/pyphen-0.12.0.ebuild b/dev-python/pyphen/pyphen-0.12.0.ebuild
16 deleted file mode 100644
17 index 375255ad8716..000000000000
18 --- a/dev-python/pyphen/pyphen-0.12.0.ebuild
19 +++ /dev/null
20 @@ -1,29 +0,0 @@
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_SETUPTOOLS=pyproject.toml
27 -PYTHON_COMPAT=( python3_{8..10} )
28 -
29 -inherit distutils-r1
30 -
31 -DESCRIPTION="Python module for hyphenation using hunspell dictionaries"
32 -HOMEPAGE="https://github.com/Kozea/Pyphen"
33 -SRC_URI="https://github.com/Kozea/Pyphen/archive/${PV}.tar.gz -> ${P^}.tar.gz"
34 -S=${WORKDIR}/${P^}
35 -
36 -LICENSE="GPL-2+ LGPL-2+ MPL-1.1"
37 -SLOT="0"
38 -KEYWORDS="amd64 x86"
39 -
40 -BDEPEND="
41 - >=dev-python/pyproject2setuppy-18[${PYTHON_USEDEP}]"
42 -
43 -distutils_enable_tests pytest
44 -
45 -src_prepare() {
46 - # avoid dep on extra plugins
47 - sed -i -e '/addopts/d' pyproject.toml || die
48 - distutils-r1_src_prepare
49 -}