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: Wed, 26 May 2021 08:36:26
Message-Id: 1622018168.bf585b37f0ed54faaf40ca0b6c3738619824d349.mgorny@gentoo
1 commit: bf585b37f0ed54faaf40ca0b6c3738619824d349
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 26 08:33:21 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed May 26 08:36:08 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf585b37
7
8 dev-python/jsondiff: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/jsondiff/Manifest | 1 -
13 dev-python/jsondiff/jsondiff-1.2.0.ebuild | 29 -----------------------------
14 2 files changed, 30 deletions(-)
15
16 diff --git a/dev-python/jsondiff/Manifest b/dev-python/jsondiff/Manifest
17 index 2311d358b58..2fc30e8ea08 100644
18 --- a/dev-python/jsondiff/Manifest
19 +++ b/dev-python/jsondiff/Manifest
20 @@ -1,2 +1 @@
21 -DIST jsondiff-1.2.0.tar.gz 15076 BLAKE2B 2d659598e6c647c8ea6622fc982808381e570c6ced23b5e77431b52e9fa746a5dbc743c739506362497d1f45dd2c290f23f459713ef31e927c05816e56659762 SHA512 5aa391ccc42d07330dfcf272b78aeb130f6f9033ca8b00cbea93549e32f07b98ea84cd6a1e61ab331da3de92838c69a501f95a9adb5f48e2eec46eb653264d55
22 DIST jsondiff-1.3.0.tar.gz 15283 BLAKE2B 408070816a4b21a3f11f5b039464ba276fb253f712f29930454167d3aff22f78b4d828aba5e28cf05587c8a296b908fd1945a65958244a1093279bff5e3a555c SHA512 512e34d1a0673ed785f066c284c09412a3590ad916913ae1885ac567795cc73e2adf30596b60b64b6b379954e6cb82d5174e80dd9cf40ed53f6968bec8a3d8f2
23
24 diff --git a/dev-python/jsondiff/jsondiff-1.2.0.ebuild b/dev-python/jsondiff/jsondiff-1.2.0.ebuild
25 deleted file mode 100644
26 index 42d878ac2ae..00000000000
27 --- a/dev-python/jsondiff/jsondiff-1.2.0.ebuild
28 +++ /dev/null
29 @@ -1,29 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -PYTHON_COMPAT=( python3_{7..9} )
35 -DISTUTILS_USE_SETUPTOOLS=rdepend
36 -inherit distutils-r1
37 -
38 -DESCRIPTION="Diff JSON and JSON-like structures in Python"
39 -HOMEPAGE="https://github.com/xlwings/jsondiff https://pypi.org/project/jsondiff/"
40 -SRC_URI="https://github.com/fzumstein/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
41 -
42 -LICENSE="MIT"
43 -SLOT="0"
44 -KEYWORDS="amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux"
45 -
46 -BDEPEND="
47 - test? (
48 - dev-python/nose-random[${PYTHON_USEDEP}]
49 - )
50 -"
51 -
52 -distutils_enable_tests nose
53 -
54 -python_prepare_all() {
55 - # Avoid file collision with jsonpatch's jsondiff cli.
56 - sed -e "/'jsondiff=jsondiff.cli/ d" -i setup.py || die
57 - distutils-r1_python_prepare_all
58 -}