Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pylatex/
Date: Tue, 22 Dec 2020 20:06:18
Message-Id: 1608667561.12cc4ac14c13369eb1374139df8f077742f74e0d.mgorny@gentoo
1 commit: 12cc4ac14c13369eb1374139df8f077742f74e0d
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 22 19:29:31 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 22 20:06:01 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12cc4ac1
7
8 dev-python/pylatex: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pylatex/Manifest | 1 -
13 dev-python/pylatex/pylatex-1.4.0.ebuild | 53 ---------------------------------
14 2 files changed, 54 deletions(-)
15
16 diff --git a/dev-python/pylatex/Manifest b/dev-python/pylatex/Manifest
17 index 772b2cf8d0a..a532a7052bb 100644
18 --- a/dev-python/pylatex/Manifest
19 +++ b/dev-python/pylatex/Manifest
20 @@ -1,2 +1 @@
21 -DIST pylatex-1.4.0.tar.gz 301148 BLAKE2B 4d1fa6add43556b7b2c1ff13b3bc2130d06018499197c3d1f40c9180f4346e774d69c2a356d5eab6c8686957ebafac71a78506553cf7cd3cd57d03c0e0ffffd1 SHA512 0d9ab3e733c50b5a4dd7a6758193645c5532c9153972bbed244e3f7e2d6a946bd36af428197f9cdd1a3256f4cc0db5dc78248973f9b330684ce8651c4a59ad91
22 DIST pylatex-1.4.1.tar.gz 301482 BLAKE2B c68c8bbf70c5099b3c3146922afe94dcf4f90bfc8644fa165ee27835f4a24642645f9849f2f9fd69656dc07dcc4807869275aacf33a1e5b9c59e539801f8e821 SHA512 55a5734e4d239cef4bcaafa0ba64eea013ba3e86d137de5a5f8311d70c949d783e2e7aad24d39d16a6febbe4bddc34e47248068e1328fe3f95f39a7c7019a3a9
23
24 diff --git a/dev-python/pylatex/pylatex-1.4.0.ebuild b/dev-python/pylatex/pylatex-1.4.0.ebuild
25 deleted file mode 100644
26 index 310d24af93f..00000000000
27 --- a/dev-python/pylatex/pylatex-1.4.0.ebuild
28 +++ /dev/null
29 @@ -1,53 +0,0 @@
30 -# Copyright 2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -MY_PN="PyLaTeX"
36 -MY_P="${MY_PN}-${PV}"
37 -
38 -PYTHON_COMPAT=( python3_{6,7,8,9} )
39 -
40 -inherit distutils-r1 optfeature
41 -
42 -DESCRIPTION="A Python library for creating LaTeX files and snippets"
43 -HOMEPAGE="https://github.com/JelteF/PyLaTeX"
44 -SRC_URI="https://github.com/JelteF/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
45 -S="${WORKDIR}/${MY_P}"
46 -
47 -LICENSE="MIT"
48 -SLOT="0"
49 -KEYWORDS="amd64 x86"
50 -IUSE="examples"
51 -
52 -RDEPEND="
53 - dev-python/ordered-set[${PYTHON_USEDEP}]
54 -"
55 -
56 -distutils_enable_tests pytest
57 -
58 -BDEPEND+="
59 - test? (
60 - dev-python/quantities[${PYTHON_USEDEP}]
61 - dev-python/matplotlib[${PYTHON_USEDEP}]
62 - dev-python/numpy[${PYTHON_USEDEP}]
63 - app-text/texlive
64 - dev-texlive/texlive-latexextra
65 - )"
66 -
67 -python_install_all() {
68 - if use examples ; then
69 - dodoc -r examples
70 - docompress -x /usr/share/doc/"${PF}"/examples
71 - fi
72 -
73 - distutils-r1_python_install_all
74 -}
75 -
76 -pkg_postinst() {
77 - elog "Optional dependencies:"
78 - optfeature "compiling generated files" "app-text/texlive dev-texlive/texlive-latexextra dev-texlive/texlive-mathscience"
79 - optfeature "matplotlib support" dev-python/matplotlib
80 - optfeature "numpy support" dev-python/numpy
81 - optfeature "quantities support" dev-python/quantities
82 -}