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/jsondiff/
Date: Sun, 06 Nov 2022 07:59:31
Message-Id: 1667721554.6c3b8d2cc057780791baefccf6ae0260986d3269.mgorny@gentoo
1 commit: 6c3b8d2cc057780791baefccf6ae0260986d3269
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 6 07:12:28 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 6 07:59:14 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c3b8d2c
7
8 dev-python/jsondiff: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/jsondiff/jsondiff-2.0.0.ebuild | 37 -------------------------------
13 1 file changed, 37 deletions(-)
14
15 diff --git a/dev-python/jsondiff/jsondiff-2.0.0.ebuild b/dev-python/jsondiff/jsondiff-2.0.0.ebuild
16 deleted file mode 100644
17 index 831c1a974609..000000000000
18 --- a/dev-python/jsondiff/jsondiff-2.0.0.ebuild
19 +++ /dev/null
20 @@ -1,37 +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_PEP517=setuptools
27 -PYTHON_COMPAT=( python3_{8..10} )
28 -
29 -inherit distutils-r1
30 -
31 -DESCRIPTION="Diff JSON and JSON-like structures in Python"
32 -HOMEPAGE="
33 - https://github.com/xlwings/jsondiff/
34 - https://pypi.org/project/jsondiff/
35 -"
36 -SRC_URI="
37 - https://github.com/xlwings/${PN}/archive/${PV}.tar.gz
38 - -> ${P}.gh.tar.gz
39 -"
40 -
41 -LICENSE="MIT"
42 -SLOT="0"
43 -KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
44 -
45 -BDEPEND="
46 - test? (
47 - dev-python/nose-random[${PYTHON_USEDEP}]
48 - )
49 -"
50 -
51 -distutils_enable_tests nose
52 -
53 -python_prepare_all() {
54 - # Avoid file collision with jsonpatch's jsondiff cli.
55 - sed -e "/'jsondiff=jsondiff.cli/ d" -i setup.py || die
56 - distutils-r1_python_prepare_all
57 -}