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/dictdiffer/
Date: Mon, 30 Aug 2021 05:54:22
Message-Id: 1630302507.ddedd8859f81c56f5675cb6f6a9ae0c90724e3a8.mgorny@gentoo
1 commit: ddedd8859f81c56f5675cb6f6a9ae0c90724e3a8
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 30 05:48:27 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 30 05:48:27 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ddedd885
7
8 dev-python/dictdiffer: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/dictdiffer/Manifest | 1 -
13 dev-python/dictdiffer/dictdiffer-0.8.1.ebuild | 45 ---------------------------
14 2 files changed, 46 deletions(-)
15
16 diff --git a/dev-python/dictdiffer/Manifest b/dev-python/dictdiffer/Manifest
17 index 50b50f11bdd..eb6bc8a7147 100644
18 --- a/dev-python/dictdiffer/Manifest
19 +++ b/dev-python/dictdiffer/Manifest
20 @@ -1,2 +1 @@
21 -DIST dictdiffer-0.8.1.tar.gz 28555 BLAKE2B 0a6d330134c368e11e07b23d7fe592e72b64b02ede99eb2d52c2d7452b4d2505e7e3afa75ba76c30cbbd663d9cc4c073d8f236200fdfa2866c8beadd097d63b7 SHA512 e221bb0e25a35380519bf775a63fc0d692112dab15a46c8878ef2c9a6780932c8550a4486c4eab7803619a79c2f794a590a5c9ae0fbbccac04b5b11feaf38bbb
22 DIST dictdiffer-0.9.0.tar.gz 31513 BLAKE2B 7f1a980b71978b49c6e41eb4b806aef8aa12e858889622d6b55741e7793e2e812a91ce6089156a080d198a9f9c8e9369e55b6e712fd5476864b2876094ea0d4f SHA512 7985b4d69d3cb08b7cf0fc8f878ac594b72c1f1e3482157c204027fff90afd9b19041e85fced12a47d5624e0b8cc1b2d6643a88295a6d212aeead76c09c24f86
23
24 diff --git a/dev-python/dictdiffer/dictdiffer-0.8.1.ebuild b/dev-python/dictdiffer/dictdiffer-0.8.1.ebuild
25 deleted file mode 100644
26 index 21a62b24858..00000000000
27 --- a/dev-python/dictdiffer/dictdiffer-0.8.1.ebuild
28 +++ /dev/null
29 @@ -1,45 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_{7..9} )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Dictdiffer is a library that helps you to diff and patch dictionaries"
40 -HOMEPAGE="
41 - https://github.com/inveniosoftware/dictdiffer/
42 - https://pypi.org/project/dictdiffer/
43 -"
44 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
45 -
46 -LICENSE="MIT"
47 -KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc"
48 -SLOT="0"
49 -
50 -BDEPEND="
51 - dev-python/setuptools_scm[${PYTHON_USEDEP}]
52 - test? (
53 - dev-python/isort[${PYTHON_USEDEP}]
54 - dev-python/mock[${PYTHON_USEDEP}]
55 - )
56 -"
57 -
58 -RDEPEND="
59 - dev-python/numpy[${PYTHON_USEDEP}]
60 -"
61 -
62 -distutils_enable_tests pytest
63 -# Requires self to be already installed
64 -#distutils_enable_sphinx docs dev-python/sphinx_rtd_theme
65 -
66 -python_prepare_all() {
67 - # remove dep on pytest-runner
68 - sed -i -e '/pytest-runner/d' setup.py || die
69 -
70 - # remove dep on pytest-pep8 and pytest-cov
71 - sed -i -e '/addopts/d' pytest.ini || die
72 -
73 - distutils-r1_python_prepare_all
74 -}