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/jsonpatch/
Date: Thu, 30 Jul 2020 20:41:16
Message-Id: 1596141647.826c94a7a126386331fb22e3e48029d7e3fce8bc.mgorny@gentoo
1 commit: 826c94a7a126386331fb22e3e48029d7e3fce8bc
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 30 20:35:45 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 30 20:40:47 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=826c94a7
7
8 dev-python/jsonpatch: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/jsonpatch/Manifest | 1 -
13 dev-python/jsonpatch/jsonpatch-1.25.ebuild | 28 ----------------------------
14 2 files changed, 29 deletions(-)
15
16 diff --git a/dev-python/jsonpatch/Manifest b/dev-python/jsonpatch/Manifest
17 index b531445381d..2bb42a4ccf6 100644
18 --- a/dev-python/jsonpatch/Manifest
19 +++ b/dev-python/jsonpatch/Manifest
20 @@ -1,2 +1 @@
21 -DIST jsonpatch-1.25.tar.gz 24340 BLAKE2B 0022b4b0b3a0487958b86f14c1738a32593b8056510e3836e15385874b64f5d243d757c99a146a48da6563f0d9330eb38cb91ad6cde3e0a1b4cb8cbd3b15f9dd SHA512 5e1d5b6dcb6ee847ddd561400fe2d00e07aa1827a63ab98a38cd5e91fa0e52d8635eba1192edbccf9c7b9ce9c7ce0a414d580665c427c87a820e533d26092ad6
22 DIST jsonpatch-1.26.tar.gz 24440 BLAKE2B 345831bd9a9fc1902d0959685ed2dbbc0bf04d191bbc78567d27283e9ae52f7e22f50e9f400461300d1c3388712afa51d4d6a2ddd0a06dbc0a1b576b02bfe807 SHA512 1ab25c8e091cd0b772062a8c448fee4772081d8bd715489b2f7a76e4c0bdff8b26dd38b26c3037cf9bdf8780b97e62a20b6a5bdc43f43af16fdae51d1291bf52
23
24 diff --git a/dev-python/jsonpatch/jsonpatch-1.25.ebuild b/dev-python/jsonpatch/jsonpatch-1.25.ebuild
25 deleted file mode 100644
26 index e8cf3b1d745..00000000000
27 --- a/dev-python/jsonpatch/jsonpatch-1.25.ebuild
28 +++ /dev/null
29 @@ -1,28 +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_{6..9} )
35 -
36 -inherit distutils-r1
37 -
38 -DESCRIPTION="Apply JSON-Patches like http://tools.ietf.org/html/draft-pbryan-json-patch-04"
39 -HOMEPAGE="https://github.com/stefankoegl/python-json-patch"
40 -SRC_URI="https://github.com/stefankoegl/python-json-patch/archive/v${PV}.tar.gz -> ${P}.tar.gz"
41 -S="${WORKDIR}/python-json-patch-${PV}"
42 -
43 -LICENSE="BSD"
44 -SLOT="0"
45 -KEYWORDS="amd64 arm64 ppc64 x86 ~amd64-linux ~x86-linux"
46 -IUSE="test"
47 -RESTRICT="!test? ( test )"
48 -
49 -RDEPEND=">=dev-python/jsonpointer-1.9[${PYTHON_USEDEP}]"
50 -BDEPEND="
51 - test? ( ${RDEPEND} )
52 -"
53 -
54 -python_test() {
55 - "${EPYTHON}" tests.py || die "Tests of tests.py fail with ${EPYTHON}"
56 - "${EPYTHON}" ext_tests.py || die "Tests of ext_tests.py fail with ${EPYTHON}"
57 -}