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/tikzplotlib/
Date: Sun, 17 Oct 2021 09:41:25
Message-Id: 1634463357.1e112a117d038a1d903ce4056d0cbc5938725280.mgorny@gentoo
1 commit: 1e112a117d038a1d903ce4056d0cbc5938725280
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 17 09:35:57 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 17 09:35:57 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e112a11
7
8 dev-python/tikzplotlib: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/tikzplotlib/Manifest | 3 --
13 dev-python/tikzplotlib/tikzplotlib-0.9.11.ebuild | 48 ------------------------
14 dev-python/tikzplotlib/tikzplotlib-0.9.12.ebuild | 48 ------------------------
15 dev-python/tikzplotlib/tikzplotlib-0.9.9.ebuild | 40 --------------------
16 4 files changed, 139 deletions(-)
17
18 diff --git a/dev-python/tikzplotlib/Manifest b/dev-python/tikzplotlib/Manifest
19 index fc0bbfecb85..ed6dab90899 100644
20 --- a/dev-python/tikzplotlib/Manifest
21 +++ b/dev-python/tikzplotlib/Manifest
22 @@ -1,4 +1 @@
23 -DIST tikzplotlib-0.9.11.gh.tar.gz 97761 BLAKE2B 95454a9181b219e99970d06a0e40d518284ff62c7b06d9cbf5b3125b11a711e67f9df1676dc1bd73a9ec632fa01786890e3eef030f8a52ffe809835e3890359c SHA512 05fa8285f4912f2593a00ec5961f4ca94964c2ff8271158c6c1e0447f1f2b54088a76192bcda4f893adc2ad78b9240742962eee1e56043777b0df145808f42ba
24 -DIST tikzplotlib-0.9.12.gh.tar.gz 97773 BLAKE2B 85d85445e313a41ede8c2d61d8db0d92a8f4fbb0722f716845f0fff3204e603e8b21998a588137eb67bdbc4d8f31bc5bfc82e29fc803b3c54c416191b6e5310b SHA512 4754707727eda29796a49809473b840c07b2cb7de606089d79aeb05daa6ded95a3f110deffb13ca2640e44d91c43b53520d6f29b175e200862492cb986b6c574
25 DIST tikzplotlib-0.9.13.gh.tar.gz 97787 BLAKE2B ef767737b8d222773f2d5e02dbf80ac8a48ea8a00077eb245e5817337805deb5b9be27e7ed76354808647ea1ed6b17d3bbca9b33799d294bd924c18b224e3621 SHA512 f9b4c46b3179626222713dd771dccfa6b0c34ff55658838aba74867c7cd5b91dddfaefdcd2c41824c9f13a795cadd6720240beaf3d504a7f735a2169c441b449
26 -DIST tikzplotlib-0.9.9.tar.gz 591659 BLAKE2B c8ed8069387aedc154ea1541c7e4f97cd43a74c384be4810029acf2dd1de348d732c004850b3248ba6a892451afec56fc4de0c6b05c3f4edc7b72b741e46b558 SHA512 3b6bc8b23693b1817b7f8969352bfe45f81762f86d30b9329c3c57fb1897ee5965f5759e357bbe68d21b84ac3e53e5ce80ffafccfac22d9a4a36ce104d5a2966
27
28 diff --git a/dev-python/tikzplotlib/tikzplotlib-0.9.11.ebuild b/dev-python/tikzplotlib/tikzplotlib-0.9.11.ebuild
29 deleted file mode 100644
30 index be7409c6cc0..00000000000
31 --- a/dev-python/tikzplotlib/tikzplotlib-0.9.11.ebuild
32 +++ /dev/null
33 @@ -1,48 +0,0 @@
34 -# Copyright 2019-2021 Gentoo Authors
35 -# Distributed under the terms of the GNU General Public License v2
36 -
37 -EAPI=7
38 -
39 -DISTUTILS_USE_SETUPTOOLS=pyproject.toml
40 -PYTHON_COMPAT=( python3_{8..10} )
41 -
42 -inherit distutils-r1 virtualx
43 -
44 -DESCRIPTION="Convert matplotlib figures into TikZ/PGFPlots"
45 -HOMEPAGE="https://github.com/nschloe/tikzplotlib"
46 -SRC_URI="
47 - https://github.com/nschloe/${PN}/archive/${PV}.tar.gz
48 - -> ${P}.gh.tar.gz"
49 -
50 -LICENSE="MIT"
51 -SLOT="0"
52 -KEYWORDS="~amd64 ~x86"
53 -
54 -RDEPEND="
55 - app-text/texlive[extra]
56 - dev-python/matplotlib[latex,${PYTHON_USEDEP}]
57 - dev-python/numpy[${PYTHON_USEDEP}]
58 - dev-python/pillow[${PYTHON_USEDEP}]
59 -"
60 -
61 -BDEPEND="
62 - dev-python/wheel[${PYTHON_USEDEP}]
63 - test? (
64 - dev-python/exdown[${PYTHON_USEDEP}]
65 - dev-python/pandas[${PYTHON_USEDEP}]
66 - dev-python/scipy[${PYTHON_USEDEP}]
67 -)"
68 -
69 -distutils_enable_tests pytest
70 -distutils_enable_sphinx doc dev-python/mock
71 -
72 -python_test() {
73 - local -x MPLBACKEND=Agg
74 - local deselect=(
75 - tests/test_barchart_errorbars.py::test
76 - tests/test_colorbars.py::test
77 - tests/test_fillstyle.py::test
78 - )
79 -
80 - virtx epytest ${deselect[@]/#/--deselect }
81 -}
82
83 diff --git a/dev-python/tikzplotlib/tikzplotlib-0.9.12.ebuild b/dev-python/tikzplotlib/tikzplotlib-0.9.12.ebuild
84 deleted file mode 100644
85 index be7409c6cc0..00000000000
86 --- a/dev-python/tikzplotlib/tikzplotlib-0.9.12.ebuild
87 +++ /dev/null
88 @@ -1,48 +0,0 @@
89 -# Copyright 2019-2021 Gentoo Authors
90 -# Distributed under the terms of the GNU General Public License v2
91 -
92 -EAPI=7
93 -
94 -DISTUTILS_USE_SETUPTOOLS=pyproject.toml
95 -PYTHON_COMPAT=( python3_{8..10} )
96 -
97 -inherit distutils-r1 virtualx
98 -
99 -DESCRIPTION="Convert matplotlib figures into TikZ/PGFPlots"
100 -HOMEPAGE="https://github.com/nschloe/tikzplotlib"
101 -SRC_URI="
102 - https://github.com/nschloe/${PN}/archive/${PV}.tar.gz
103 - -> ${P}.gh.tar.gz"
104 -
105 -LICENSE="MIT"
106 -SLOT="0"
107 -KEYWORDS="~amd64 ~x86"
108 -
109 -RDEPEND="
110 - app-text/texlive[extra]
111 - dev-python/matplotlib[latex,${PYTHON_USEDEP}]
112 - dev-python/numpy[${PYTHON_USEDEP}]
113 - dev-python/pillow[${PYTHON_USEDEP}]
114 -"
115 -
116 -BDEPEND="
117 - dev-python/wheel[${PYTHON_USEDEP}]
118 - test? (
119 - dev-python/exdown[${PYTHON_USEDEP}]
120 - dev-python/pandas[${PYTHON_USEDEP}]
121 - dev-python/scipy[${PYTHON_USEDEP}]
122 -)"
123 -
124 -distutils_enable_tests pytest
125 -distutils_enable_sphinx doc dev-python/mock
126 -
127 -python_test() {
128 - local -x MPLBACKEND=Agg
129 - local deselect=(
130 - tests/test_barchart_errorbars.py::test
131 - tests/test_colorbars.py::test
132 - tests/test_fillstyle.py::test
133 - )
134 -
135 - virtx epytest ${deselect[@]/#/--deselect }
136 -}
137
138 diff --git a/dev-python/tikzplotlib/tikzplotlib-0.9.9.ebuild b/dev-python/tikzplotlib/tikzplotlib-0.9.9.ebuild
139 deleted file mode 100644
140 index 7a307bf1c63..00000000000
141 --- a/dev-python/tikzplotlib/tikzplotlib-0.9.9.ebuild
142 +++ /dev/null
143 @@ -1,40 +0,0 @@
144 -# Copyright 2019-2021 Gentoo Authors
145 -# Distributed under the terms of the GNU General Public License v2
146 -
147 -EAPI=7
148 -
149 -DISTUTILS_USE_SETUPTOOLS=pyproject.toml
150 -PYTHON_COMPAT=( python3_{8..9} )
151 -
152 -inherit distutils-r1 virtualx
153 -
154 -DESCRIPTION="Convert matplotlib figures into TikZ/PGFPlots"
155 -HOMEPAGE="https://github.com/nschloe/tikzplotlib"
156 -SRC_URI="https://github.com/nschloe/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
157 -
158 -LICENSE="MIT"
159 -SLOT="0"
160 -KEYWORDS="~amd64 ~x86"
161 -
162 -RDEPEND="
163 - app-text/texlive[extra]
164 - dev-python/matplotlib[latex,${PYTHON_USEDEP}]
165 - dev-python/numpy[${PYTHON_USEDEP}]
166 - dev-python/pillow[${PYTHON_USEDEP}]
167 -"
168 -
169 -BDEPEND="
170 - dev-python/wheel[${PYTHON_USEDEP}]
171 - test? (
172 - dev-python/exdown[${PYTHON_USEDEP}]
173 - dev-python/pandas[${PYTHON_USEDEP}]
174 - dev-python/scipy[${PYTHON_USEDEP}]
175 -)"
176 -
177 -distutils_enable_tests pytest
178 -distutils_enable_sphinx doc dev-python/mock
179 -
180 -python_test() {
181 - local -x MPLBACKEND=Agg
182 - virtx pytest -vv
183 -}