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/dictdiffer/
Date: Sat, 02 Jul 2022 11:59:38
Message-Id: 1656763104.eaaebdc9ddf443c907c734ab91130c9fb498fd30.arthurzam@gentoo
1 commit: eaaebdc9ddf443c907c734ab91130c9fb498fd30
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 2 11:58:24 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 2 11:58:24 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eaaebdc9
7
8 dev-python/dictdiffer: drop 0.9.0
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/dictdiffer/dictdiffer-0.9.0.ebuild | 39 ---------------------------
13 1 file changed, 39 deletions(-)
14
15 diff --git a/dev-python/dictdiffer/dictdiffer-0.9.0.ebuild b/dev-python/dictdiffer/dictdiffer-0.9.0.ebuild
16 deleted file mode 100644
17 index 811c5f8ca379..000000000000
18 --- a/dev-python/dictdiffer/dictdiffer-0.9.0.ebuild
19 +++ /dev/null
20 @@ -1,39 +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 -PYTHON_COMPAT=( python3_{8..10} )
27 -inherit distutils-r1
28 -
29 -DESCRIPTION="Dictdiffer is a library that helps you to diff and patch dictionaries"
30 -HOMEPAGE="
31 - https://github.com/inveniosoftware/dictdiffer/
32 - https://pypi.org/project/dictdiffer/
33 -"
34 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
35 -
36 -LICENSE="MIT"
37 -KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86"
38 -SLOT="0"
39 -
40 -BDEPEND="
41 - dev-python/setuptools_scm[${PYTHON_USEDEP}]
42 - test? (
43 - dev-python/numpy[${PYTHON_USEDEP}]
44 - )
45 -"
46 -
47 -distutils_enable_tests pytest
48 -# Requires self to be already installed
49 -#distutils_enable_sphinx docs dev-python/sphinx_rtd_theme
50 -
51 -python_prepare_all() {
52 - # remove dep on pytest-runner
53 - sed -i -e '/pytest-runner/d' setup.py || die
54 -
55 - # remove dep on pytest-pep8 and pytest-cov
56 - sed -i -e '/addopts/d' pytest.ini || die
57 -
58 - distutils-r1_python_prepare_all
59 -}