summaryrefslogtreecommitdiff
path: root/dev-python/sphinxemoji
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-12 19:09:37 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-12 19:09:37 -0500
commitb590c8d7572b727d565cc0b8ff660d43569845de (patch)
tree06f7a4102ea4e845df8b66660f252920d52952f9 /dev-python/sphinxemoji
parent24f9cbfc4c34fdb6a6e03311674414e881ceab47 (diff)
downloadbaldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.tar.gz
baldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.tar.xz
baldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.zip
Adding metadata
Diffstat (limited to 'dev-python/sphinxemoji')
-rw-r--r--dev-python/sphinxemoji/Manifest1
-rw-r--r--dev-python/sphinxemoji/metadata.xml10
-rw-r--r--dev-python/sphinxemoji/sphinxemoji-0.3.2.ebuild35
3 files changed, 46 insertions, 0 deletions
diff --git a/dev-python/sphinxemoji/Manifest b/dev-python/sphinxemoji/Manifest
new file mode 100644
index 000000000000..4964dedfbdfb
--- /dev/null
+++ b/dev-python/sphinxemoji/Manifest
@@ -0,0 +1 @@
+DIST emojicodes-0.3.2.gh.tar.gz 47088 BLAKE2B f2c54726a53b167466b44205c4461253666c61f9b97b4882c39ceffabd4f546e8ccc85c8539c9f129d22534a5aa450850a2ceabf90b44db17a05848f63ee8f5f SHA512 a140ee49ddb80c83d25fc3b1e741f0b97c3f9d0c24db5aa5b9721557642e62c833aa3f6155455fd68323225d7a1f25d4a0abe8c413b66fa2e6d5a95ceacfbca9
diff --git a/dev-python/sphinxemoji/metadata.xml b/dev-python/sphinxemoji/metadata.xml
new file mode 100644
index 000000000000..5e95859f915a
--- /dev/null
+++ b/dev-python/sphinxemoji/metadata.xml
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="project">
+ <email>python@gentoo.org</email>
+ <name>Python</name>
+ </maintainer>
+ <stabilize-allarches />
+ <origin>baldeagleos-repo</origin>
+</pkgmetadata>
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..2560c5f60e73
--- /dev/null
+++ b/dev-python/sphinxemoji/sphinxemoji-0.3.2.ebuild
@@ -0,0 +1,35 @@
+# Copyright 2022-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{13..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
+}