commit: 1a0385804202d533280c535f26d091009964a152
Author: Mazunki Hoksaas <rolferen <AT> gmail <DOT> com>
AuthorDate: Tue May 14 01:18:59 2024 +0000
Commit: Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Tue May 14 01:19:10 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1a038580
dev-python/latexify: new package, add 0.4.3.1
Signed-off-by: Mazunki Hoksaas <rolferen <AT> gmail.com>
dev-python/latexify/Manifest | 1 +
dev-python/latexify/latexify-0.4.3.1.ebuild | 35 +++++++++++++++++++++++++++++
2 files changed, 36 insertions(+)
diff --git a/dev-python/latexify/Manifest b/dev-python/latexify/Manifest
new file mode 100644
index 0000000000..61100004a3
--- /dev/null
+++ b/dev-python/latexify/Manifest
@@ -0,0 +1 @@
+DIST latexify-0.4.3.1.tar.gz 78199 BLAKE2B
2292131c5f9eec51c8cf16812d72823076e61ac66320688ba891dea822bcad240a69e932aa7f6f5af54508b1e770a12bf19ac01c29ccee930e1b976670500ef5
SHA512
0c534368827b9776132a6ff7e2bedd6ca70a097ff6abbb22b87399ae17b3b2f04c171e9fae8ecc00103e0f90e367b57c4e832ecbeffad44a9e82a09495ffbaaa
diff --git a/dev-python/latexify/latexify-0.4.3.1.ebuild
b/dev-python/latexify/latexify-0.4.3.1.ebuild
new file mode 100644
index 0000000000..df29aa3cd8
--- /dev/null
+++ b/dev-python/latexify/latexify-0.4.3.1.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..11} pypy3 )
+DISTUTILS_USE_PEP517=hatchling
+
+inherit distutils-r1
+
+DESCRIPTION="Package to compile a fragment of Python source code to a
corresponding LaTeX expression"
+HOMEPAGE="
+ https://pypi.org/project/latexify-py/
+ https://github.com/google/latexify_py
+"
+# not really sure how -post1 should be handled
+SRC_URI="https://github.com/google/latexify_py/archive/refs/tags/v0.4.3-post1.tar.gz
-> ${P}.tar.gz"
+S="${WORKDIR}/latexify_py-0.4.3-post1"
+
+LICENSE="Apache-2.0"
+SLOT=0
+KEYWORDS="~amd64"
+
+RDEPEND="
+ ${PYTHON_DEPS}
+ dev-python/dill[${PYTHON_USEDEP}]
+"
+DEPEND="${PYTHON_DEPS}"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+ distutils-r1_src_prepare
+}
+