diff options
author | Michał Górny <mgorny@gentoo.org> | 2023-08-21 09:48:31 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-08-21 10:59:22 +0200 |
commit | 6d0c48857a0b15e124bb818e1daa3701211e6029 (patch) | |
tree | 69ec2bd11fa66a2b822b1d060bf836ffa22cf553 /dev-python/mistletoe | |
parent | net-im/skypeforlinux: add 8.102.0.211 (diff) | |
download | gentoo-6d0c48857a0b15e124bb818e1daa3701211e6029.tar.gz gentoo-6d0c48857a0b15e124bb818e1daa3701211e6029.tar.bz2 gentoo-6d0c48857a0b15e124bb818e1daa3701211e6029.zip |
dev-python/mistletoe: Bump to 1.2.0
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/mistletoe')
-rw-r--r-- | dev-python/mistletoe/Manifest | 1 | ||||
-rw-r--r-- | dev-python/mistletoe/mistletoe-1.2.0.ebuild | 36 |
2 files changed, 37 insertions, 0 deletions
diff --git a/dev-python/mistletoe/Manifest b/dev-python/mistletoe/Manifest index d17c4b4fefaa..02c865e2600a 100644 --- a/dev-python/mistletoe/Manifest +++ b/dev-python/mistletoe/Manifest @@ -1 +1,2 @@ DIST mistletoe-1.1.0.gh.tar.gz 116246 BLAKE2B 52761841380f28e490f1d675ab95bf0f31be44c909c5221dadca37eaeb3bc909c4d9091d52bd3a99f9b4b371fa102cf0f02225a1aa0732ccda4dca2ab85214e2 SHA512 3b1d8b6a9e3fc1fa67a212977a1c26cedafdf2bd2cc53113b8bb583433e69af0b4fd47b575f9a1ba4bda50b1c55a0d27faf9877b6300982eee2f6b8fcb621b7c +DIST mistletoe-1.2.0.gh.tar.gz 118346 BLAKE2B fd81792bd86bb21ef57004f2987bba8a01cbc63b4ccbda062d20bc5b73090c83f7fcd5c9a8c36a55d0178f33decd9850b6d38c176b1cf2b90c619a81b6055d6c SHA512 4ba40292174350d1b747092ed57b62955c10e69542f2592dfdcceabcedb67c7645f14cd554c22b91554abea0511e0e47433a4fa90de8f0a08fce3e7a77fdad92 diff --git a/dev-python/mistletoe/mistletoe-1.2.0.ebuild b/dev-python/mistletoe/mistletoe-1.2.0.ebuild new file mode 100644 index 000000000000..7aef7cc9a0be --- /dev/null +++ b/dev-python/mistletoe/mistletoe-1.2.0.ebuild @@ -0,0 +1,36 @@ +# Copyright 2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( pypy3 python3_{10..12} ) + +inherit distutils-r1 + +DESCRIPTION="A fast, extensible Markdown parser in pure Python" +HOMEPAGE=" + https://github.com/miyuchina/mistletoe/ + https://pypi.org/project/mistletoe/ +" +# pypi has incomplete test suite +SRC_URI=" + https://github.com/miyuchina/mistletoe/archive/v${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +# NB: pygments is technically optional but we like syntax highlighting +RDEPEND=" + dev-python/pygments[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/parameterized[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest |