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/commentjson/
Date: Thu, 18 Aug 2022 10:17:12
Message-Id: 1660816677.f050de4b2bb8bf2bd05faddae25f24fbd68705d0.mgorny@gentoo
1 commit: f050de4b2bb8bf2bd05faddae25f24fbd68705d0
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 18 09:57:57 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 18 09:57:57 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f050de4b
7
8 dev-python/commentjson: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/commentjson/commentjson-0.9.0-r1.ebuild | 39 ----------------------
13 1 file changed, 39 deletions(-)
14
15 diff --git a/dev-python/commentjson/commentjson-0.9.0-r1.ebuild b/dev-python/commentjson/commentjson-0.9.0-r1.ebuild
16 deleted file mode 100644
17 index c90432d94b96..000000000000
18 --- a/dev-python/commentjson/commentjson-0.9.0-r1.ebuild
19 +++ /dev/null
20 @@ -1,39 +0,0 @@
21 -# Copyright 2021-2022 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=7
25 -
26 -PYTHON_COMPAT=( python3_{8..10} pypy3 )
27 -
28 -inherit distutils-r1
29 -
30 -DESCRIPTION="Add Python and JavaScript style comments in your JSON files"
31 -HOMEPAGE="
32 - https://pypi.org/project/commentjson/
33 - https://github.com/vaidik/commentjson/
34 -"
35 -SRC_URI="
36 - https://github.com/vaidik/commentjson/archive/v${PV}.tar.gz
37 - -> ${P}.gh.tar.gz
38 -"
39 -
40 -LICENSE="MIT"
41 -SLOT="0"
42 -KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
43 -
44 -RDEPEND="
45 - dev-python/lark[${PYTHON_USEDEP}]
46 -"
47 -BDEPEND="
48 - test? (
49 - dev-python/six[${PYTHON_USEDEP}]
50 - )
51 -"
52 -
53 -distutils_enable_tests unittest
54 -
55 -src_prepare() {
56 - # remove lark-parser dependency to allow painless upgrade to lark
57 - sed -i -e '/lark-parser/d' setup.py || die
58 - distutils-r1_src_prepare
59 -}