diff options
author | 2024-01-22 04:26:10 +0100 | |
---|---|---|
committer | 2024-01-22 04:32:13 +0100 | |
commit | 3873f7f76442cd77a930e8e94530c7e0f0afe098 (patch) | |
tree | 203538846048154f55ce5d6ebab2fd3179692ffc /dev-python/mistletoe | |
parent | dev-python/python-lsp-server: Bump to 1.10.0 (diff) | |
download | gentoo-3873f7f76442cd77a930e8e94530c7e0f0afe098.tar.gz gentoo-3873f7f76442cd77a930e8e94530c7e0f0afe098.tar.bz2 gentoo-3873f7f76442cd77a930e8e94530c7e0f0afe098.zip |
dev-python/mistletoe: Bump to 1.3.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.3.0.ebuild | 36 |
2 files changed, 37 insertions, 0 deletions
diff --git a/dev-python/mistletoe/Manifest b/dev-python/mistletoe/Manifest index fd28c59376eb..0183ed37f738 100644 --- a/dev-python/mistletoe/Manifest +++ b/dev-python/mistletoe/Manifest @@ -1 +1,2 @@ DIST mistletoe-1.2.1.gh.tar.gz 118396 BLAKE2B 0b8d442b9dce20f8b5f7619969761693a5c2a04cf99d35a9771ce7b4e073d993705ba4ddedd929c0535b526ef0dea64824fac82403e7b1743b3b80d4292c1772 SHA512 a6dc5dc021d001a0b34a4d6cb5007ef55958b93d143937ecde07602aaf25e3a9c3116be2ed8f8cd90353524cf8d4058239f4018b726bec007b13d917e6deefac +DIST mistletoe-1.3.0.gh.tar.gz 121653 BLAKE2B 32c106e349cbbb4f9f197df30bb42b108228fecb021d8482a18e4e859936bce250960a39ec02c98aac53dc75b9315dac1db052647417a3fdaa99f7cefafa49de SHA512 44094989ee95445c8330223bf095808e755eb2f59ce6984362f0b6c293a72397f7d340430aac618f635f1042466b6d48171a406ecc3ea17c69435f4b254d77ab diff --git a/dev-python/mistletoe/mistletoe-1.3.0.ebuild b/dev-python/mistletoe/mistletoe-1.3.0.ebuild new file mode 100644 index 000000000000..3de81eef371c --- /dev/null +++ b/dev-python/mistletoe/mistletoe-1.3.0.ebuild @@ -0,0 +1,36 @@ +# Copyright 2023-2024 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 ~arm64 ~x86" + +# 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 |