diff options
author | Michał Górny <mgorny@gentoo.org> | 2023-11-07 06:20:27 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-11-07 06:29:12 +0100 |
commit | 31342988438da1adc1b32e87feb33d4e7e0dcb2f (patch) | |
tree | d4b927206c0ff15663d19176d3f798cec5b0b645 /dev-python/pylatex | |
parent | app-admin/awscli: Bump to 1.29.79 (diff) | |
download | gentoo-31342988438da1adc1b32e87feb33d4e7e0dcb2f.tar.gz gentoo-31342988438da1adc1b32e87feb33d4e7e0dcb2f.tar.bz2 gentoo-31342988438da1adc1b32e87feb33d4e7e0dcb2f.zip |
dev-python/pylatex: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/pylatex')
-rw-r--r-- | dev-python/pylatex/Manifest | 1 | ||||
-rw-r--r-- | dev-python/pylatex/pylatex-1.4.1.ebuild | 59 |
2 files changed, 0 insertions, 60 deletions
diff --git a/dev-python/pylatex/Manifest b/dev-python/pylatex/Manifest index 1b21a4292d95..de252896d2ec 100644 --- a/dev-python/pylatex/Manifest +++ b/dev-python/pylatex/Manifest @@ -1,2 +1 @@ DIST PyLaTeX-1.4.2.gh.tar.gz 307158 BLAKE2B bc20478759fc8315fd7fa2161d1638035c0dad4731c4cb254c78dfc45da2b361b3864d2ec04d6eb8fd7947e9908610eb0104444edff95666abba6a9f6da4cb4b SHA512 dcbe58de0ab715d6fbb571a7ad3981c875eacd08d06244b8715fa240df6f8f072417ae076a5caee204e000bf7eb55097b9ba49eddb5ce666470e494c15aa88ed -DIST pylatex-1.4.1.tar.gz 301482 BLAKE2B c68c8bbf70c5099b3c3146922afe94dcf4f90bfc8644fa165ee27835f4a24642645f9849f2f9fd69656dc07dcc4807869275aacf33a1e5b9c59e539801f8e821 SHA512 55a5734e4d239cef4bcaafa0ba64eea013ba3e86d137de5a5f8311d70c949d783e2e7aad24d39d16a6febbe4bddc34e47248068e1328fe3f95f39a7c7019a3a9 diff --git a/dev-python/pylatex/pylatex-1.4.1.ebuild b/dev-python/pylatex/pylatex-1.4.1.ebuild deleted file mode 100644 index 55e919e2046a..000000000000 --- a/dev-python/pylatex/pylatex-1.4.1.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 2020-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -MY_PN="PyLaTeX" -MY_P="${MY_PN}-${PV}" - -PYTHON_COMPAT=( python3_{9..11} ) -DISTUTILS_USE_PEP517=setuptools - -inherit distutils-r1 optfeature - -DESCRIPTION="A Python library for creating LaTeX files and snippets" -HOMEPAGE="https://github.com/JelteF/PyLaTeX" -SRC_URI="https://github.com/JelteF/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/${MY_P}" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="examples" - -RDEPEND=" - dev-python/ordered-set[${PYTHON_USEDEP}] -" - -distutils_enable_tests pytest - -BDEPEND+=" - test? ( - dev-python/quantities[${PYTHON_USEDEP}] - dev-python/matplotlib[${PYTHON_USEDEP}] - dev-python/numpy[${PYTHON_USEDEP}] - app-text/texlive - dev-texlive/texlive-latexextra - )" - -python_prepare_all() { - sed -i -e 's:description-file:description_file:' setup.cfg || die # bug 798381 - - 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 -} |