diff options
author | Michał Górny <mgorny@gentoo.org> | 2024-02-06 13:50:10 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2024-02-06 14:02:20 +0100 |
commit | 7f00e4c9ed72226a0ec75d25108f2bf77b337ef0 (patch) | |
tree | 3a90568fccec4fc548e7cafa867ac31b38f64d27 /dev-python/sphinxemoji | |
parent | app-portage/pkg-testing-tools: add 0.2.1 (diff) | |
download | gentoo-7f00e4c9ed72226a0ec75d25108f2bf77b337ef0.tar.gz gentoo-7f00e4c9ed72226a0ec75d25108f2bf77b337ef0.tar.bz2 gentoo-7f00e4c9ed72226a0ec75d25108f2bf77b337ef0.zip |
dev-python/sphinxemoji: Bump to 0.3.1
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/sphinxemoji')
-rw-r--r-- | dev-python/sphinxemoji/Manifest | 1 | ||||
-rw-r--r-- | dev-python/sphinxemoji/sphinxemoji-0.3.1.ebuild | 35 |
2 files changed, 36 insertions, 0 deletions
diff --git a/dev-python/sphinxemoji/Manifest b/dev-python/sphinxemoji/Manifest index b56e6a067b7c..9985c8473562 100644 --- a/dev-python/sphinxemoji/Manifest +++ b/dev-python/sphinxemoji/Manifest @@ -1 +1,2 @@ +DIST emojicodes-0.3.1.gh.tar.gz 47298 BLAKE2B 95dc98f737d66005e101955d9da8e4a1509fbf780316a9be8050f086c4d951144de6fa016fbf7215b48e1f4f0155c11001ccc689f4537cf93bda9d4c61d3340a SHA512 1253845bd6a9ffc53a9a649a795b29fab8980f2020e86802479f886b819e8b345f94e6c1fc5f4597c5096cd3fb8bdf31389c7ba02839d7fc145d43ce914e235e DIST sphinxemoji-0.2.0.tar.gz 44431 BLAKE2B 18c9a7b4c97bc6081216cac98cecf41fef0bfc90122bd24f7d11d96f5db71437ee4e80675464fcaf9bc4c6e89c2511392600e043d4fb1904cfc57ce4efbed824 SHA512 974fcfad13f326265c679a3c97fd251b0348499fc9a72b65547b2548ddb2eb895a96f71d4b212f619287ac7c759df22fbb66f1a8cfa160287f8b25878c0f0515 diff --git a/dev-python/sphinxemoji/sphinxemoji-0.3.1.ebuild b/dev-python/sphinxemoji/sphinxemoji-0.3.1.ebuild new file mode 100644 index 000000000000..accb0a0592a8 --- /dev/null +++ b/dev-python/sphinxemoji/sphinxemoji-0.3.1.ebuild @@ -0,0 +1,35 @@ +# Copyright 2022-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..12} ) + +inherit distutils-r1 + +MY_P=emojicodes-${PV} +DESCRIPTION="Extension to use emoji codes in your Sphinx documentation" +HOMEPAGE=" + https://pypi.org/project/sphinxemoji/ + https://github.com/sphinx-contrib/emojicodes/ +" +SRC_URI=" + https://github.com/sphinx-contrib/emojicodes/archive/v${PV}.tar.gz + -> ${MY_P}.gh.tar.gz +" +S=${WORKDIR}/${MY_P} + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" + +RDEPEND=" + >=dev-python/sphinx-5.0[${PYTHON_USEDEP}] +" + +python_test() { + local HTML_DOCS=() + build_sphinx docs/source + rm -r docs/source/_build || die +} |