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/abydos/
Date: Tue, 08 Nov 2022 05:17:28
Message-Id: 1667883986.861922bcc45caf273ca1f0f992fbc2aa12914500.mgorny@gentoo
1 commit: 861922bcc45caf273ca1f0f992fbc2aa12914500
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 8 05:06:26 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 8 05:06:26 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=861922bc
7
8 dev-python/abydos: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/abydos/Manifest | 1 -
13 dev-python/abydos/abydos-0.5.0-r1.ebuild | 44 --------------------------------
14 2 files changed, 45 deletions(-)
15
16 diff --git a/dev-python/abydos/Manifest b/dev-python/abydos/Manifest
17 index d9c244d155a7..08bbab06bd8c 100644
18 --- a/dev-python/abydos/Manifest
19 +++ b/dev-python/abydos/Manifest
20 @@ -1,2 +1 @@
21 DIST abydos-0.5.0.gh.tar.gz 21321759 BLAKE2B 1f14675f42e849e5e1563dd858bfb2bf040e25b0f90cb3da9986492378892bedd0f23eea990cd65d804aececb350b0e90fb27921382a8df8b91e55d7f820c27e SHA512 28aeea4ba16ea88b077e8b9902f5d8b3a650eeced489687daf9af0e4aa437eaee6c8eeb0747dd5a8f95291594064a1221cc1da2dfa989978bcc870045fee3531
22 -DIST abydos-0.5.0.tar.gz 21321759 BLAKE2B 1f14675f42e849e5e1563dd858bfb2bf040e25b0f90cb3da9986492378892bedd0f23eea990cd65d804aececb350b0e90fb27921382a8df8b91e55d7f820c27e SHA512 28aeea4ba16ea88b077e8b9902f5d8b3a650eeced489687daf9af0e4aa437eaee6c8eeb0747dd5a8f95291594064a1221cc1da2dfa989978bcc870045fee3531
23
24 diff --git a/dev-python/abydos/abydos-0.5.0-r1.ebuild b/dev-python/abydos/abydos-0.5.0-r1.ebuild
25 deleted file mode 100644
26 index dac00c9b4154..000000000000
27 --- a/dev-python/abydos/abydos-0.5.0-r1.ebuild
28 +++ /dev/null
29 @@ -1,44 +0,0 @@
30 -# Copyright 1999-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_{8..10} )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Abydos NLP/IR library"
40 -HOMEPAGE="https://github.com/chrislit/abydos"
41 -SRC_URI="https://github.com/chrislit/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
42 -
43 -LICENSE="GPL-3+"
44 -SLOT="0"
45 -KEYWORDS="amd64 ~riscv x86"
46 -
47 -# Requires access to the internet
48 -RESTRICT="test"
49 -PROPERTIES="test_network"
50 -
51 -RDEPEND="
52 - dev-python/deprecation[${PYTHON_USEDEP}]
53 - dev-python/numpy[${PYTHON_USEDEP}]
54 -"
55 -
56 -BDEPEND="test? (
57 - dev-python/nltk[${PYTHON_USEDEP}]
58 -)"
59 -
60 -PATCHES=(
61 - "${FILESDIR}/${P}-fix-py3.10.patch"
62 -)
63 -
64 -distutils_enable_tests pytest
65 -# Extension error: You must configure the bibtex_bibfiles setting
66 -#distutils_enable_sphinx docs dev-python/sphinx_rtd_theme dev-python/sphinxcontrib-bibtex
67 -
68 -python_prepare_all() {
69 - # do not depend on pytest-cov
70 - sed -i -e '/addopts/d' setup.cfg || die
71 -
72 - distutils-r1_python_prepare_all
73 -}