summaryrefslogtreecommitdiff
path: root/dev-python
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/sphinxemoji/Manifest1
-rw-r--r--dev-python/sphinxemoji/sphinxemoji-0.3.2.ebuild35
2 files changed, 36 insertions, 0 deletions
diff --git a/dev-python/sphinxemoji/Manifest b/dev-python/sphinxemoji/Manifest
index d866a2c9eb53..5fb0b262cd6b 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 emojicodes-0.3.2.gh.tar.gz 47088 BLAKE2B f2c54726a53b167466b44205c4461253666c61f9b97b4882c39ceffabd4f546e8ccc85c8539c9f129d22534a5aa450850a2ceabf90b44db17a05848f63ee8f5f SHA512 a140ee49ddb80c83d25fc3b1e741f0b97c3f9d0c24db5aa5b9721557642e62c833aa3f6155455fd68323225d7a1f25d4a0abe8c413b66fa2e6d5a95ceacfbca9
diff --git a/dev-python/sphinxemoji/sphinxemoji-0.3.2.ebuild b/dev-python/sphinxemoji/sphinxemoji-0.3.2.ebuild
new file mode 100644
index 000000000000..dd8ce1499e85
--- /dev/null
+++ b/dev-python/sphinxemoji/sphinxemoji-0.3.2.ebuild
@@ -0,0 +1,35 @@
+# Copyright 2022-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{11..14} )
+
+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 ~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
+}