summaryrefslogtreecommitdiff
path: root/dev-python/pylatex
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-python/pylatex
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'dev-python/pylatex')
-rw-r--r--dev-python/pylatex/Manifest1
-rw-r--r--dev-python/pylatex/metadata.xml15
-rw-r--r--dev-python/pylatex/pylatex-1.4.2.ebuild69
3 files changed, 0 insertions, 85 deletions
diff --git a/dev-python/pylatex/Manifest b/dev-python/pylatex/Manifest
deleted file mode 100644
index de252896d2ec..000000000000
--- a/dev-python/pylatex/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST PyLaTeX-1.4.2.gh.tar.gz 307158 BLAKE2B bc20478759fc8315fd7fa2161d1638035c0dad4731c4cb254c78dfc45da2b361b3864d2ec04d6eb8fd7947e9908610eb0104444edff95666abba6a9f6da4cb4b SHA512 dcbe58de0ab715d6fbb571a7ad3981c875eacd08d06244b8715fa240df6f8f072417ae076a5caee204e000bf7eb55097b9ba49eddb5ce666470e494c15aa88ed
diff --git a/dev-python/pylatex/metadata.xml b/dev-python/pylatex/metadata.xml
deleted file mode 100644
index 9bc788aec45a..000000000000
--- a/dev-python/pylatex/metadata.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <!-- maintainer-needed -->
- <stabilize-allarches/>
- <longdescription lang="en">
- PyLaTeX is a Python library for creating and compiling LaTeX
- files or snippets. The goal of this library is being an easy,
- but extensible interface between Python and LaTeX.
- </longdescription>
- <upstream>
- <remote-id type="github">JelteF/PyLaTeX</remote-id>
- <remote-id type="pypi">PyLaTeX</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-python/pylatex/pylatex-1.4.2.ebuild b/dev-python/pylatex/pylatex-1.4.2.ebuild
deleted file mode 100644
index 162dd792a932..000000000000
--- a/dev-python/pylatex/pylatex-1.4.2.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 2020-2026 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{13..14} )
-DISTUTILS_USE_PEP517=setuptools
-
-inherit distutils-r1 optfeature
-
-MY_P="PyLaTeX-${PV}"
-DESCRIPTION="A Python library for creating LaTeX files and snippets"
-HOMEPAGE="
- https://github.com/JelteF/PyLaTeX/
- https://pypi.org/project/PyLaTeX/
-"
-SRC_URI="
- https://github.com/JelteF/PyLaTeX/archive/v${PV}.tar.gz
- -> ${MY_P}.gh.tar.gz
-"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="examples"
-
-RDEPEND="
- dev-python/ordered-set[${PYTHON_USEDEP}]
-"
-
-BDEPEND="
- test? (
- dev-python/matplotlib[${PYTHON_USEDEP}]
- dev-python/numpy[${PYTHON_USEDEP}]
- dev-python/quantities[${PYTHON_USEDEP}]
- app-text/texlive
- dev-texlive/texlive-latexextra
- )
-"
-
-distutils_enable_tests pytest
-
-python_prepare_all() {
- # bug 798381
- sed -i -e 's:description-file:description_file:' setup.cfg || die
-
- distutils-r1_python_prepare_all
-}
-
-python_install_all() {
- if use examples ; then
- dodoc -r examples
- docompress -x /usr/share/doc/"${PF}"/examples
- fi
-
- distutils-r1_python_install_all
-}
-
-pkg_postinst() {
- optfeature "compiling generated files" "
- app-text/texlive
- dev-texlive/texlive-latexextra
- dev-texlive/texlive-mathscience
- "
- optfeature "matplotlib support" dev-python/matplotlib
- optfeature "numpy support" dev-python/numpy
- optfeature "quantities support" dev-python/quantities
-}