commit: ac352fb41377f11162c5ec953ad9992b33a74272
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 16 18:48:37 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Dec 16 19:00:18 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac352fb4
dev-python/chameleon: add 3.10.2
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-python/chameleon/Manifest | 1 +
dev-python/chameleon/chameleon-3.10.2.ebuild | 30 ++++++++++++++++++++++++++++
2 files changed, 31 insertions(+)
diff --git a/dev-python/chameleon/Manifest b/dev-python/chameleon/Manifest
index ddece4c080ad..56258a1c2c22 100644
--- a/dev-python/chameleon/Manifest
+++ b/dev-python/chameleon/Manifest
@@ -1 +1,2 @@
DIST chameleon-3.10.1.gh.tar.gz 137135 BLAKE2B
c11520792a833bccc0997ea82e7876e309905ac0cdfd8701c4d83eee7befe1d152787f27b076df15c4ba299d2702ac6a262dc193d1ee7f6d44398e57af73772e
SHA512
e79b261ce6f480358191ff3d23af325c0559e9c0b6be8b2c44d4bb3869fb7e09fa759906933d9b4d6f7107779f19bb225170add73ec3205ddf73b9bdb1bcfb9a
+DIST chameleon-3.10.2.gh.tar.gz 137228 BLAKE2B
a25aa7fc4b9b77afb5f108d515f06c24a01cc52da1630b7db7bc86571ca5635b276ddf5ec800cb9f9ed26f88c1e5bcae89a3b92c391d61814bd104e24ec3f6c9
SHA512
a00de545812d25fbaab86a0252b81d47a7e6a6460c6874ab536e6e65a4b56301cd54a31c390c4503453bd4e04863f83e3eec381f69e87b8bb7046943e0a24493
diff --git a/dev-python/chameleon/chameleon-3.10.2.ebuild
b/dev-python/chameleon/chameleon-3.10.2.ebuild
new file mode 100644
index 000000000000..a1fbea14a9ed
--- /dev/null
+++ b/dev-python/chameleon/chameleon-3.10.2.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="Fast HTML/XML template compiler for Python"
+HOMEPAGE="
+ https://github.com/malthe/chameleon/
+ https://pypi.org/project/Chameleon/
+"
+SRC_URI="
+ https://github.com/malthe/chameleon/archive/${PV}.tar.gz
+ -> ${P}.gh.tar.gz
+"
+
+LICENSE="repoze"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+distutils_enable_tests unittest
+
+src_test() {
+ cd src || die
+ distutils-r1_src_test
+}