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/cheetah3/
Date: Mon, 04 May 2020 10:29:10
Message-Id: 1588588024.a1b05389fea18e52b6edd6e019733d27bc1f8a83.mgorny@gentoo
1 commit: a1b05389fea18e52b6edd6e019733d27bc1f8a83
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 4 10:27:04 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 4 10:27:04 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1b05389
7
8 dev-python/cheetah3: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/cheetah3/Manifest | 1 -
13 dev-python/cheetah3/cheetah3-3.2.3.ebuild | 45 -------------------------------
14 2 files changed, 46 deletions(-)
15
16 diff --git a/dev-python/cheetah3/Manifest b/dev-python/cheetah3/Manifest
17 index fd407552147..8f709baf0bf 100644
18 --- a/dev-python/cheetah3/Manifest
19 +++ b/dev-python/cheetah3/Manifest
20 @@ -1,2 +1 @@
21 -DIST Cheetah3-3.2.3.tar.gz 875441 BLAKE2B 0fa4a533bd66f98e982312a451f464a2c3fb645916b98aaa92d3af219cb49e252985b4c675a612c1c9265f8028577be4be78b551ad4cdbbaca7f4439624193b9 SHA512 ebc735b59d61912679405469f9d509fc73bbdde51c414320994421849f4a02266d2c286c0f618cab2a592ab47ac0a4be9ec444fab75145a0c31dd0c3c39fc1e3
22 DIST cheetah3-3.2.4.tar.gz 315044 BLAKE2B 5cb36364f424acf87593b3f18b5709d1a161dd3fb9bc1f4cfb6fe7c22d2515c852d5d7d0215692274ffe5437267e3232fcfae3d76c592cf66d8927fabdf37953 SHA512 64fbe95fe8d5f3185168ba780e106a46caa0656272235168df603eff50dd6e476eed041658a1e11ae12ee10d148a001c32a23677a1ee6da5b6d43e20e4d1e36e
23
24 diff --git a/dev-python/cheetah3/cheetah3-3.2.3.ebuild b/dev-python/cheetah3/cheetah3-3.2.3.ebuild
25 deleted file mode 100644
26 index a8d49c8a73b..00000000000
27 --- a/dev-python/cheetah3/cheetah3-3.2.3.ebuild
28 +++ /dev/null
29 @@ -1,45 +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,7} )
35 -
36 -inherit distutils-r1
37 -
38 -MY_PN="Cheetah3"
39 -MY_P="${MY_PN}-${PV/_}"
40 -
41 -DESCRIPTION="Python-powered template engine and code generator"
42 -HOMEPAGE="http://www.cheetahtemplate.org/ https://pypi.org/project/Cheetah3/"
43 -SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz"
44 -
45 -LICENSE="MIT"
46 -IUSE=""
47 -KEYWORDS="~amd64 ~x86"
48 -SLOT="0"
49 -
50 -RDEPEND="dev-python/markdown[${PYTHON_USEDEP}]
51 - !dev-python/cheetah"
52 -DEPEND="${RDEPEND}
53 - dev-python/setuptools[${PYTHON_USEDEP}]"
54 -
55 -S="${WORKDIR}/${MY_P}"
56 -
57 -DOCS=( ANNOUNCE.rst README.rst TODO )
58 -# Race in the test suite
59 -DISTUTILS_IN_SOURCE_BUILD=1
60 -
61 -python_prepare_all() {
62 - # Disable broken tests.
63 - sed \
64 - -e "/Unicode/d" \
65 - -e "s/if not sys.platform.startswith('java'):/if False:/" \
66 - -e "/results =/a\\ sys.exit(not results.wasSuccessful())" \
67 - -i Cheetah/Tests/Test.py || die "sed failed"
68 -
69 - distutils-r1_python_prepare_all
70 -}
71 -
72 -python_test() {
73 - "${PYTHON}" Cheetah/Tests/Test.py || die "Testing failed with ${EPYTHON}"
74 -}