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/textX/
Date: Mon, 16 May 2022 13:30:59
Message-Id: 1652707688.7f5f15ea8fe8637510d14925b5286545b1fe538f.mgorny@gentoo
1 commit: 7f5f15ea8fe8637510d14925b5286545b1fe538f
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 16 13:28:08 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 16 13:28:08 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f5f15ea
7
8 dev-python/textX: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/textX/Manifest | 1 -
13 dev-python/textX/textX-1.4.ebuild | 31 -------------------------------
14 2 files changed, 32 deletions(-)
15
16 diff --git a/dev-python/textX/Manifest b/dev-python/textX/Manifest
17 index 2010f82f0da7..eb2765dfa11d 100644
18 --- a/dev-python/textX/Manifest
19 +++ b/dev-python/textX/Manifest
20 @@ -1,2 +1 @@
21 -DIST textX-1.4.tar.gz 21967 BLAKE2B b9e5b15715e370795470be855e0425075b1f704cab0ea2f24021345d8748f9f1a36e84618207c7684cadf86dae2ee0d613af3aaf217a881ba922385a544064ba SHA512 7783f4dd1358d8e0df126f1be893c58e32f57015fd577bd20d00a17b63111d6e48222c9b78420a307fcd0833f6d9ac3a1398d55986681251f7c378cdcd68c8a4
22 DIST textX-3.0.0.gh.tar.gz 1827894 BLAKE2B 1b4dff3919838b8aa27faee9387fafd6771891b730c221e10a5f2593d138634950d6ced5a7344944913d99e591ed87adfac403add582baa50b0b94c9c6498572 SHA512 59b175a3f68b0a5b9b3522e814602c791df3fa7dffb8fabffdeed79ce746ae698ee61c748ce991d8cfee15e094c9437530912e84bdeed4531d0bd96d07477c90
23
24 diff --git a/dev-python/textX/textX-1.4.ebuild b/dev-python/textX/textX-1.4.ebuild
25 deleted file mode 100644
26 index e32c8487351d..000000000000
27 --- a/dev-python/textX/textX-1.4.ebuild
28 +++ /dev/null
29 @@ -1,31 +0,0 @@
30 -# Copyright 1999-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -PYTHON_COMPAT=( python3_{8..9} )
36 -DISTUTILS_USE_SETUPTOOLS=rdepend
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Meta-language for DSL implementation inspired by Xtext"
41 -HOMEPAGE="https://pypi.org/project/textX/ https://github.com/igordejanovic/textX"
42 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 -# pypi tarball omits tests
44 -RESTRICT="test"
45 -LICENSE="MIT"
46 -SLOT="0"
47 -KEYWORDS="~amd64 ~x86"
48 -IUSE="test"
49 -
50 -RDEPEND="dev-python/Arpeggio[${PYTHON_USEDEP}]"
51 -DEPEND="${RDEPEND}
52 - dev-python/setuptools[${PYTHON_USEDEP}]
53 - test? (
54 - dev-python/pytest[${PYTHON_USEDEP}]
55 - )
56 -"
57 -
58 -python_test() {
59 - py.test -v tests/functional || die "tests failed"
60 -}