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/chameleon/
Date: Mon, 11 May 2020 16:49:04
Message-Id: 1589215728.8ba5bda1fcea082f7f201294c62bdd3c0fc0fded.mgorny@gentoo
1 commit: 8ba5bda1fcea082f7f201294c62bdd3c0fc0fded
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 11 16:24:44 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 11 16:48:48 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ba5bda1
7
8 dev-python/chameleon: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/chameleon/Manifest | 1 -
13 dev-python/chameleon/chameleon-2.25.ebuild | 41 ------------------------------
14 2 files changed, 42 deletions(-)
15
16 diff --git a/dev-python/chameleon/Manifest b/dev-python/chameleon/Manifest
17 index e5c10978e7b..d0401f78f58 100644
18 --- a/dev-python/chameleon/Manifest
19 +++ b/dev-python/chameleon/Manifest
20 @@ -1,2 +1 @@
21 -DIST Chameleon-2.25.tar.gz 193965 BLAKE2B a6ae7768c52807a82229d75fc044116a77df5ae3032a98e44558a1d2b3ee2f427f3291b7c2895639050ea1e9fda0e6868ca7b8299cbbf1d5e1b0714af0d835c0 SHA512 b2ffc05c6ab5268757ae6a93a0579d8031dfe7e09882f0f3f0b9a25677ecf896af99a8e7cf6bec98648e9c8526365e7e517bc174d36137734968d80f3f14a05d
22 DIST chameleon-3.7.0.gh.tar.gz 135209 BLAKE2B 14e890eca1a3c211dfb5a658457473b21948b6f252e76e5391e862850a29e9e0fe4aaa31a03da7ec1674a2b563d083ee31fb342be2dc9bf4e7b4dbccbabf8637 SHA512 9f1d2a9222b795ac139f0c06ea8169ec132c00714ec4608e58dd5781dba8380f988141f6659c47e8920ee0cd4d4bcde9070794cd0e2b5f34d0fce21d24e2dc98
23
24 diff --git a/dev-python/chameleon/chameleon-2.25.ebuild b/dev-python/chameleon/chameleon-2.25.ebuild
25 deleted file mode 100644
26 index ea608feeba1..00000000000
27 --- a/dev-python/chameleon/chameleon-2.25.ebuild
28 +++ /dev/null
29 @@ -1,41 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=5
34 -
35 -PYTHON_COMPAT=( python3_6 pypy3 )
36 -
37 -inherit distutils-r1
38 -
39 -MY_PN="Chameleon"
40 -MY_P="${MY_PN}-${PV}"
41 -
42 -DESCRIPTION="Fast HTML/XML template compiler for Python"
43 -HOMEPAGE="http://chameleon.repoze.org https://pypi.org/project/Chameleon/"
44 -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
45 -
46 -LICENSE="repoze"
47 -SLOT="0"
48 -KEYWORDS="amd64 x86"
49 -IUSE="doc test"
50 -RESTRICT="!test? ( test )"
51 -
52 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
53 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
54 -RDEPEND=""
55 -
56 -S="${WORKDIR}/${MY_P}"
57 -
58 -python_compile_all() {
59 - use doc && emake html
60 -}
61 -
62 -python_test() {
63 - esetup.py test
64 -}
65 -
66 -python_install_all() {
67 - use doc && local HTML_DOCS=( _build/html/{[a-z]*,_static} )
68 -
69 - distutils-r1_python_install_all
70 -}