diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2023-08-29 20:58:37 +0300 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2023-08-29 20:58:37 +0300 |
commit | 1776f9280e3e03571c8d82588b4450791297f56e (patch) | |
tree | 8499f69aa15d05d7610470f62a971d7d7c1e32d4 /dev-python/chameleon | |
parent | virtual/libudev: Stabilize 251-r1 hppa, #913218 (diff) | |
download | gentoo-1776f9280e3e03571c8d82588b4450791297f56e.tar.gz gentoo-1776f9280e3e03571c8d82588b4450791297f56e.tar.bz2 gentoo-1776f9280e3e03571c8d82588b4450791297f56e.zip |
dev-python/chameleon: add 4.1.0
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'dev-python/chameleon')
-rw-r--r-- | dev-python/chameleon/Manifest | 1 | ||||
-rw-r--r-- | dev-python/chameleon/chameleon-4.1.0.ebuild | 28 |
2 files changed, 29 insertions, 0 deletions
diff --git a/dev-python/chameleon/Manifest b/dev-python/chameleon/Manifest index d32936ab4b1a..6b6f7cc22f41 100644 --- a/dev-python/chameleon/Manifest +++ b/dev-python/chameleon/Manifest @@ -1 +1,2 @@ DIST Chameleon-4.0.1.tar.gz 173650 BLAKE2B f5457ad7749ec98a0d80fd54b5b867d47f74bbf672abc1b4ad0e8c1bed5eaac93ea135801565a1a3fc72a8b930e67fa23d81c32bf866516bf9a16d1ef3b76ad7 SHA512 1cad12e13e5b90150c0d801951398fb68c2c05b9c7264697629fb21b0bb16325bfbf23f911c320c1464e78d6d275a565f0555474ac6d8e36b706b0eb7248d731 +DIST Chameleon-4.1.0.tar.gz 174877 BLAKE2B 00f0d6964f01ec375a18954a8f8f1f5f11da3a4af75b3d575a81d0458b25f98b1e8a399203147da90e60fad85d2a9df8da4123a86f0fda0e63a1c106a720bfc0 SHA512 7dc83ebf838ce9cc38093a08750145135e768352f74afd57f16e6f1c5dc5d24b482e56d40d088a204d72d8689aa978196fa2dd6e4cf89c872597286d85dc7594 diff --git a/dev-python/chameleon/chameleon-4.1.0.ebuild b/dev-python/chameleon/chameleon-4.1.0.ebuild new file mode 100644 index 000000000000..aef73bc7e9f2 --- /dev/null +++ b/dev-python/chameleon/chameleon-4.1.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYPI_NO_NORMALIZE=1 +PYPI_PN=${PN^} +PYTHON_COMPAT=( python3_{10..12} pypy3 ) + +inherit distutils-r1 pypi + +DESCRIPTION="Fast HTML/XML template compiler for Python" +HOMEPAGE=" + https://github.com/malthe/chameleon/ + https://pypi.org/project/Chameleon/ +" + +LICENSE="repoze" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +distutils_enable_tests unittest + +src_test() { + cd src || die + distutils-r1_src_test +} |