[gentoo-commits] repo/gentoo:master commit in: dev-python/tikzplotlib/, dev-python/tikzplotlib/files/, profiles/

2023-09-15 Thread David Seifert
commit: afc76fe2be01f02c7823abfc437aeccbaaed74d3
Author: David Seifert  gentoo  org>
AuthorDate: Fri Sep 15 08:04:39 2023 +
Commit: David Seifert  gentoo  org>
CommitDate: Fri Sep 15 08:04:39 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afc76fe2

dev-python/tikzplotlib: treeclean

Closes: https://bugs.gentoo.org/869962
Closes: https://bugs.gentoo.org/904734
Signed-off-by: David Seifert  gentoo.org>

 dev-python/tikzplotlib/Manifest|  1 -
 .../tikzplotlib-0.10.1-matplotlib-3.6.0.patch  | 48 
 dev-python/tikzplotlib/metadata.xml| 14 --
 .../tikzplotlib/tikzplotlib-0.10.1-r1.ebuild   | 52 --
 profiles/package.mask  |  6 ---
 5 files changed, 121 deletions(-)

diff --git a/dev-python/tikzplotlib/Manifest b/dev-python/tikzplotlib/Manifest
deleted file mode 100644
index a43373fd4058..
--- a/dev-python/tikzplotlib/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST tikzplotlib-0.10.1.gh.tar.gz 98265 BLAKE2B 
7664e702afb38580af78f2b0887000215a5a0c2ef57e4f9ca5d1100bcba257365b89aee805e800e3a9b5a992487c1ee9733088dadc53941405c0055336478130
 SHA512 
13a750d9929db1d4ce4608a296523be55878c702846b0b339c6c002cbdf4e8f7b1ffea84db612d8932a379fafce9b4fe6ab6ce4325bf780f211cc0b885a15818

diff --git 
a/dev-python/tikzplotlib/files/tikzplotlib-0.10.1-matplotlib-3.6.0.patch 
b/dev-python/tikzplotlib/files/tikzplotlib-0.10.1-matplotlib-3.6.0.patch
deleted file mode 100644
index 2c3a0e506cc6..
--- a/dev-python/tikzplotlib/files/tikzplotlib-0.10.1-matplotlib-3.6.0.patch
+++ /dev/null
@@ -1,48 +0,0 @@
-https://github.com/texworld/tikzplotlib/issues/567
-https://github.com/texworld/tikzplotlib/pull/558
-
-From f9988eb6aa7cc7d55c0bb528c53e7a8408308939 Mon Sep 17 00:00:00 2001
-From: Paul Kim <44695374+thekp...@users.noreply.github.com>
-Date: Mon, 3 Oct 2022 01:15:21 +0900
-Subject: [PATCH 1/2] Legend Compatibility Issue in texworld#557
-
-.
-
-.
 a/src/tikzplotlib/_legend.py
-+++ b/src/tikzplotlib/_legend.py
-@@ -78,7 +78,7 @@ def draw_legend(data, obj):
- if alignment:
- data["current axes"].axis_options.append(f"legend cell 
align={{{alignment}}}")
- 
--if obj._ncol != 1:
-+if obj._ncols != 1:
- data["current axes"].axis_options.append(f"legend 
columns={obj._ncol}")
- 
- # Write styles to data
-
-From 61f7ea2fb2633f1c0de48f8da1f90a5f9ba078c1 Mon Sep 17 00:00:00 2001
-From: Paul Kim <44695374+thekp...@users.noreply.github.com>
-Date: Wed, 5 Oct 2022 11:30:48 +0900
-Subject: [PATCH 2/2] Backwards Compat for `ncol`
-
-Co-authored-by: st-- 
 a/src/tikzplotlib/_legend.py
-+++ b/src/tikzplotlib/_legend.py
-@@ -78,8 +78,13 @@ def draw_legend(data, obj):
- if alignment:
- data["current axes"].axis_options.append(f"legend cell 
align={{{alignment}}}")
- 
--if obj._ncols != 1:
--data["current axes"].axis_options.append(f"legend 
columns={obj._ncol}")
-+try:
-+ncols = obj._ncols
-+except AttributeError:
-+# backwards-compatibility with matplotlib < 3.6.0
-+ncols = obj._ncol
-+if ncols != 1:
-+data["current axes"].axis_options.append(f"legend columns={ncols}")
- 
- # Write styles to data
- if legend_style:
-

diff --git a/dev-python/tikzplotlib/metadata.xml 
b/dev-python/tikzplotlib/metadata.xml
deleted file mode 100644
index c432fbaf0427..
--- a/dev-python/tikzplotlib/metadata.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-
-https://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   pyt...@gentoo.org
-   Python
-   
-   tikzplotlib is a Python tool for converting matplotlib 
figures into PGFPlots (TikZ) figures like for native inclusion into LaTeX 
documents. The output of tikzplotlib is in PGFPlots, a LaTeX library that sits 
on top of TikZ and describes graphs in terms of axes, data etc. Consequently, 
the output of tikzplotlib retains more information, can be more easily 
understood, and is more easily editable than raw TikZ output.
-   
-   texworld/tikzplotlib
-   tikzplotlib
-   
-   
-

diff --git a/dev-python/tikzplotlib/tikzplotlib-0.10.1-r1.ebuild 
b/dev-python/tikzplotlib/tikzplotlib-0.10.1-r1.ebuild
deleted file mode 100644
index 7b21d67ed209..
--- a/dev-python/tikzplotlib/tikzplotlib-0.10.1-r1.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 2019-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=flit
-PYTHON_COMPAT=( python3_{9..11} )
-
-inherit distutils-r1 virtualx
-
-DESCRIPTION="Convert matplotlib figures into TikZ/PGFPlots"
-HOMEPAGE="
-   https://github.com/texworld/tikzplotlib/
-   https://pypi.org/project/tikzplotlib/
-"
-SRC_URI="https://github.com/texworld/${PN}/archive/v${PV}.tar.gz -> 
${P}.gh.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-# 

[gentoo-commits] repo/gentoo:master commit in: dev-python/tikzplotlib/files/, dev-python/tikzplotlib/

2023-02-17 Thread Sam James
commit: c81c9f363c84d88bc8221276dfa79c6f30004c19
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 17 10:33:40 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 10:38:34 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c81c9f36

dev-python/tikzplotlib: enable py3.11, fix running tests

Tests are a mess here, they've been failing for a while but the
virtx nonfatal sneaky bit meant nobody noticed (now fixed).

Applied a patch from a PR upstream to partially fix compat
w/ new matplotlib but it only brings us from 34->25 failed tests.

Signed-off-by: Sam James  gentoo.org>

 dev-python/tikzplotlib/Manifest|  2 +-
 .../tikzplotlib-0.10.1-matplotlib-3.6.0.patch  | 48 ++
 ...-0.10.1.ebuild => tikzplotlib-0.10.1-r1.ebuild} | 19 ++---
 3 files changed, 63 insertions(+), 6 deletions(-)

diff --git a/dev-python/tikzplotlib/Manifest b/dev-python/tikzplotlib/Manifest
index 3b505fe0be91..a43373fd4058 100644
--- a/dev-python/tikzplotlib/Manifest
+++ b/dev-python/tikzplotlib/Manifest
@@ -1 +1 @@
-DIST tikzplotlib-0.10.1.tar.gz 98265 BLAKE2B 
7664e702afb38580af78f2b0887000215a5a0c2ef57e4f9ca5d1100bcba257365b89aee805e800e3a9b5a992487c1ee9733088dadc53941405c0055336478130
 SHA512 
13a750d9929db1d4ce4608a296523be55878c702846b0b339c6c002cbdf4e8f7b1ffea84db612d8932a379fafce9b4fe6ab6ce4325bf780f211cc0b885a15818
+DIST tikzplotlib-0.10.1.gh.tar.gz 98265 BLAKE2B 
7664e702afb38580af78f2b0887000215a5a0c2ef57e4f9ca5d1100bcba257365b89aee805e800e3a9b5a992487c1ee9733088dadc53941405c0055336478130
 SHA512 
13a750d9929db1d4ce4608a296523be55878c702846b0b339c6c002cbdf4e8f7b1ffea84db612d8932a379fafce9b4fe6ab6ce4325bf780f211cc0b885a15818

diff --git 
a/dev-python/tikzplotlib/files/tikzplotlib-0.10.1-matplotlib-3.6.0.patch 
b/dev-python/tikzplotlib/files/tikzplotlib-0.10.1-matplotlib-3.6.0.patch
new file mode 100644
index ..2c3a0e506cc6
--- /dev/null
+++ b/dev-python/tikzplotlib/files/tikzplotlib-0.10.1-matplotlib-3.6.0.patch
@@ -0,0 +1,48 @@
+https://github.com/texworld/tikzplotlib/issues/567
+https://github.com/texworld/tikzplotlib/pull/558
+
+From f9988eb6aa7cc7d55c0bb528c53e7a8408308939 Mon Sep 17 00:00:00 2001
+From: Paul Kim <44695374+thekp...@users.noreply.github.com>
+Date: Mon, 3 Oct 2022 01:15:21 +0900
+Subject: [PATCH 1/2] Legend Compatibility Issue in texworld#557
+
+.
+
+.
+--- a/src/tikzplotlib/_legend.py
 b/src/tikzplotlib/_legend.py
+@@ -78,7 +78,7 @@ def draw_legend(data, obj):
+ if alignment:
+ data["current axes"].axis_options.append(f"legend cell 
align={{{alignment}}}")
+ 
+-if obj._ncol != 1:
++if obj._ncols != 1:
+ data["current axes"].axis_options.append(f"legend 
columns={obj._ncol}")
+ 
+ # Write styles to data
+
+From 61f7ea2fb2633f1c0de48f8da1f90a5f9ba078c1 Mon Sep 17 00:00:00 2001
+From: Paul Kim <44695374+thekp...@users.noreply.github.com>
+Date: Wed, 5 Oct 2022 11:30:48 +0900
+Subject: [PATCH 2/2] Backwards Compat for `ncol`
+
+Co-authored-by: st-- 
+--- a/src/tikzplotlib/_legend.py
 b/src/tikzplotlib/_legend.py
+@@ -78,8 +78,13 @@ def draw_legend(data, obj):
+ if alignment:
+ data["current axes"].axis_options.append(f"legend cell 
align={{{alignment}}}")
+ 
+-if obj._ncols != 1:
+-data["current axes"].axis_options.append(f"legend 
columns={obj._ncol}")
++try:
++ncols = obj._ncols
++except AttributeError:
++# backwards-compatibility with matplotlib < 3.6.0
++ncols = obj._ncol
++if ncols != 1:
++data["current axes"].axis_options.append(f"legend columns={ncols}")
+ 
+ # Write styles to data
+ if legend_style:
+

diff --git a/dev-python/tikzplotlib/tikzplotlib-0.10.1.ebuild 
b/dev-python/tikzplotlib/tikzplotlib-0.10.1-r1.ebuild
similarity index 73%
rename from dev-python/tikzplotlib/tikzplotlib-0.10.1.ebuild
rename to dev-python/tikzplotlib/tikzplotlib-0.10.1-r1.ebuild
index 67419d0063ef..7b21d67ed209 100644
--- a/dev-python/tikzplotlib/tikzplotlib-0.10.1.ebuild
+++ b/dev-python/tikzplotlib/tikzplotlib-0.10.1-r1.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=flit
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
 
 inherit distutils-r1 virtualx
 
@@ -13,26 +13,31 @@ HOMEPAGE="
https://github.com/texworld/tikzplotlib/
https://pypi.org/project/tikzplotlib/
 "
-SRC_URI="https://github.com/texworld/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+SRC_URI="https://github.com/texworld/${PN}/archive/v${PV}.tar.gz -> 
${P}.gh.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 
+# https://github.com/texworld/tikzplotlib/issues/567 for mpl-3.6.0 dep
 RDEPEND="
app-text/texlive[extra]
-   dev-python/matplotlib[latex,${PYTHON_USEDEP}]
+   

[gentoo-commits] repo/gentoo:master commit in: dev-python/tikzplotlib/

2022-05-16 Thread Michał Górny
commit: d41197999cf3f5c1ad74ae4d6742f5f5a8ca4da3
Author: Michał Górny  gentoo  org>
AuthorDate: Mon May 16 13:28:11 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon May 16 13:28:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4119799

dev-python/tikzplotlib: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/tikzplotlib/Manifest|  3 --
 dev-python/tikzplotlib/tikzplotlib-0.10.0.ebuild   | 40 --
 dev-python/tikzplotlib/tikzplotlib-0.9.16.ebuild   | 39 -
 .../tikzplotlib/tikzplotlib-0.9.17-r1.ebuild   | 39 -
 dev-python/tikzplotlib/tikzplotlib-0.9.17.ebuild   | 39 -
 5 files changed, 160 deletions(-)

diff --git a/dev-python/tikzplotlib/Manifest b/dev-python/tikzplotlib/Manifest
index 9cff890ae0f1..3b505fe0be91 100644
--- a/dev-python/tikzplotlib/Manifest
+++ b/dev-python/tikzplotlib/Manifest
@@ -1,4 +1 @@
-DIST tikzplotlib-0.10.0.tar.gz 98266 BLAKE2B 
28c49f937af5f70830218dcd3215ab5b7e56077cdd87e0e3887b48a63903314765adc872dc5c7f55e1bd5770541c8f1f3950033cf54acdf8a38be3b14bb6ac4b
 SHA512 
661291a975132ac18066dc8af310da91847f0fed289256944bba1f374c61cdb95c72a942527a92906c935b5af1131069212109eb25f531bac7ac72f6a1d9d773
 DIST tikzplotlib-0.10.1.tar.gz 98265 BLAKE2B 
7664e702afb38580af78f2b0887000215a5a0c2ef57e4f9ca5d1100bcba257365b89aee805e800e3a9b5a992487c1ee9733088dadc53941405c0055336478130
 SHA512 
13a750d9929db1d4ce4608a296523be55878c702846b0b339c6c002cbdf4e8f7b1ffea84db612d8932a379fafce9b4fe6ab6ce4325bf780f211cc0b885a15818
-DIST tikzplotlib-0.9.16.tar.gz 98162 BLAKE2B 
de32064cd8cb6f3fbd8e067c8126a86da6d9836dc42d91d42fd8ad6ba9f8fc2a1001904d370cb756e76112a0d746247f6235fe40af277a7142bdc6264b1ee531
 SHA512 
7633b7e8ee23aed8da3df249a7dbc4e36667950d2c5caef5845b5468a61f5cb0191cad3253cc7940d19be56a7981d33c70c9d45ce0d9329286266af6f36c2d94
-DIST tikzplotlib-0.9.17.tar.gz 98194 BLAKE2B 
746bd940805fa7bcef56398f974ad13c54814c7192ed8c85bdcfdf2fbeb93a0016d810a0b532120a404053e0666352c07f5f0db97b3241574fbcda3ad464664f
 SHA512 
3708eba0d77890a919c7e974569fcf4cf1c798199927bd2771e8952f6ea49a10a6b85d605c3d6c4969e16bf47eb1683557f8bbefdf986f043049aa6b0c37a8ff

diff --git a/dev-python/tikzplotlib/tikzplotlib-0.10.0.ebuild 
b/dev-python/tikzplotlib/tikzplotlib-0.10.0.ebuild
deleted file mode 100644
index 5268fc22a843..
--- a/dev-python/tikzplotlib/tikzplotlib-0.10.0.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 2019-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=flit
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1 virtualx
-
-DESCRIPTION="Convert matplotlib figures into TikZ/PGFPlots"
-HOMEPAGE="https://github.com/nschloe/tikzplotlib;
-SRC_URI="https://github.com/nschloe/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-   app-text/texlive[extra]
-   >=dev-python/matplotlib-3.5[latex,${PYTHON_USEDEP}]
-   dev-python/numpy[${PYTHON_USEDEP}]
-   dev-python/pillow[${PYTHON_USEDEP}]
-   dev-python/webcolors[${PYTHON_USEDEP}]
-"
-
-BDEPEND="
-   test? (
-   dev-python/pandas[${PYTHON_USEDEP}]
-   dev-python/pytest-codeblocks[${PYTHON_USEDEP}]
-   dev-python/scipy[${PYTHON_USEDEP}]
-   )"
-
-distutils_enable_tests pytest
-distutils_enable_sphinx doc dev-python/mock dev-python/alabaster
-
-src_test() {
-   local -x MPLBACKEND=Agg
-   virtx distutils-r1_src_test
-}

diff --git a/dev-python/tikzplotlib/tikzplotlib-0.9.16.ebuild 
b/dev-python/tikzplotlib/tikzplotlib-0.9.16.ebuild
deleted file mode 100644
index 5083ad4fc9fb..
--- a/dev-python/tikzplotlib/tikzplotlib-0.9.16.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 2019-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_SETUPTOOLS=pyproject.toml
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1 virtualx
-
-DESCRIPTION="Convert matplotlib figures into TikZ/PGFPlots"
-HOMEPAGE="https://github.com/nschloe/tikzplotlib;
-SRC_URI="https://github.com/nschloe/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-   app-text/texlive[extra]
-   https://github.com/nschloe/tikzplotlib;
-SRC_URI="https://github.com/nschloe/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-   app-text/texlive[extra]
-   https://github.com/nschloe/tikzplotlib;
-SRC_URI="https://github.com/nschloe/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-   app-text/texlive[extra]
-   

[gentoo-commits] repo/gentoo:master commit in: dev-python/tikzplotlib/

2022-05-16 Thread Michał Górny
commit: fec8858154fe358301bfb2e1df03fb0c80e09f25
Author: Michał Górny  gentoo  org>
AuthorDate: Mon May 16 13:29:47 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon May 16 13:29:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fec88581

dev-python/tikzplotlib: Update HOMEPAGE

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/tikzplotlib/metadata.xml  | 2 +-
 dev-python/tikzplotlib/tikzplotlib-0.10.1.ebuild | 7 +--
 2 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/dev-python/tikzplotlib/metadata.xml 
b/dev-python/tikzplotlib/metadata.xml
index c10a398c7be5..c432fbaf0427 100644
--- a/dev-python/tikzplotlib/metadata.xml
+++ b/dev-python/tikzplotlib/metadata.xml
@@ -7,7 +7,7 @@

tikzplotlib is a Python tool for converting matplotlib 
figures into PGFPlots (TikZ) figures like for native inclusion into LaTeX 
documents. The output of tikzplotlib is in PGFPlots, a LaTeX library that sits 
on top of TikZ and describes graphs in terms of axes, data etc. Consequently, 
the output of tikzplotlib retains more information, can be more easily 
understood, and is more easily editable than raw TikZ output.

-   nschloe/tikzplotlib
+   texworld/tikzplotlib
tikzplotlib



diff --git a/dev-python/tikzplotlib/tikzplotlib-0.10.1.ebuild 
b/dev-python/tikzplotlib/tikzplotlib-0.10.1.ebuild
index 6a3cdf0843a9..4fb1107300d0 100644
--- a/dev-python/tikzplotlib/tikzplotlib-0.10.1.ebuild
+++ b/dev-python/tikzplotlib/tikzplotlib-0.10.1.ebuild
@@ -9,8 +9,11 @@ PYTHON_COMPAT=( python3_{8..10} )
 inherit distutils-r1 virtualx
 
 DESCRIPTION="Convert matplotlib figures into TikZ/PGFPlots"
-HOMEPAGE="https://github.com/nschloe/tikzplotlib;
-SRC_URI="https://github.com/nschloe/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+HOMEPAGE="
+   https://github.com/texworld/tikzplotlib/
+   https://pypi.org/project/tikzplotlib/
+"
+SRC_URI="https://github.com/texworld/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"



[gentoo-commits] repo/gentoo:master commit in: dev-python/tikzplotlib/

2022-01-31 Thread Michał Górny
commit: 4a8ea35191fbfd66c63f487d014be5c9c34fee75
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jan 31 22:40:14 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jan 31 23:46:54 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a8ea351

dev-python/tikzplotlib: Bump to 0.10.1

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/tikzplotlib/Manifest  |  1 +
 dev-python/tikzplotlib/tikzplotlib-0.10.1.ebuild | 40 
 2 files changed, 41 insertions(+)

diff --git a/dev-python/tikzplotlib/Manifest b/dev-python/tikzplotlib/Manifest
index e4401cf58fd8..9cff890ae0f1 100644
--- a/dev-python/tikzplotlib/Manifest
+++ b/dev-python/tikzplotlib/Manifest
@@ -1,3 +1,4 @@
 DIST tikzplotlib-0.10.0.tar.gz 98266 BLAKE2B 
28c49f937af5f70830218dcd3215ab5b7e56077cdd87e0e3887b48a63903314765adc872dc5c7f55e1bd5770541c8f1f3950033cf54acdf8a38be3b14bb6ac4b
 SHA512 
661291a975132ac18066dc8af310da91847f0fed289256944bba1f374c61cdb95c72a942527a92906c935b5af1131069212109eb25f531bac7ac72f6a1d9d773
+DIST tikzplotlib-0.10.1.tar.gz 98265 BLAKE2B 
7664e702afb38580af78f2b0887000215a5a0c2ef57e4f9ca5d1100bcba257365b89aee805e800e3a9b5a992487c1ee9733088dadc53941405c0055336478130
 SHA512 
13a750d9929db1d4ce4608a296523be55878c702846b0b339c6c002cbdf4e8f7b1ffea84db612d8932a379fafce9b4fe6ab6ce4325bf780f211cc0b885a15818
 DIST tikzplotlib-0.9.16.tar.gz 98162 BLAKE2B 
de32064cd8cb6f3fbd8e067c8126a86da6d9836dc42d91d42fd8ad6ba9f8fc2a1001904d370cb756e76112a0d746247f6235fe40af277a7142bdc6264b1ee531
 SHA512 
7633b7e8ee23aed8da3df249a7dbc4e36667950d2c5caef5845b5468a61f5cb0191cad3253cc7940d19be56a7981d33c70c9d45ce0d9329286266af6f36c2d94
 DIST tikzplotlib-0.9.17.tar.gz 98194 BLAKE2B 
746bd940805fa7bcef56398f974ad13c54814c7192ed8c85bdcfdf2fbeb93a0016d810a0b532120a404053e0666352c07f5f0db97b3241574fbcda3ad464664f
 SHA512 
3708eba0d77890a919c7e974569fcf4cf1c798199927bd2771e8952f6ea49a10a6b85d605c3d6c4969e16bf47eb1683557f8bbefdf986f043049aa6b0c37a8ff

diff --git a/dev-python/tikzplotlib/tikzplotlib-0.10.1.ebuild 
b/dev-python/tikzplotlib/tikzplotlib-0.10.1.ebuild
new file mode 100644
index ..6a3cdf0843a9
--- /dev/null
+++ b/dev-python/tikzplotlib/tikzplotlib-0.10.1.ebuild
@@ -0,0 +1,40 @@
+# Copyright 2019-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1 virtualx
+
+DESCRIPTION="Convert matplotlib figures into TikZ/PGFPlots"
+HOMEPAGE="https://github.com/nschloe/tikzplotlib;
+SRC_URI="https://github.com/nschloe/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   app-text/texlive[extra]
+   dev-python/matplotlib[latex,${PYTHON_USEDEP}]
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/webcolors[${PYTHON_USEDEP}]
+"
+
+BDEPEND="
+   test? (
+   dev-python/pandas[${PYTHON_USEDEP}]
+   dev-python/pytest-codeblocks[${PYTHON_USEDEP}]
+   dev-python/scipy[${PYTHON_USEDEP}]
+   )"
+
+distutils_enable_tests pytest
+distutils_enable_sphinx doc dev-python/mock
+
+src_test() {
+   local -x MPLBACKEND=Agg
+   virtx distutils-r1_src_test
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/tikzplotlib/

2022-01-31 Thread Andrew Ammerlaan
commit: 0d3c1838bb4ebc035ae6f124baedeb52f8bd200e
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Mon Jan 31 13:46:54 2022 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Mon Jan 31 13:49:05 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d3c1838

dev-python/tikzplotlib: drop explicit maintainership

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 dev-python/tikzplotlib/metadata.xml | 4 
 1 file changed, 4 deletions(-)

diff --git a/dev-python/tikzplotlib/metadata.xml 
b/dev-python/tikzplotlib/metadata.xml
index 148990c17323..c10a398c7be5 100644
--- a/dev-python/tikzplotlib/metadata.xml
+++ b/dev-python/tikzplotlib/metadata.xml
@@ -1,10 +1,6 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   andrewammerl...@gentoo.org
-   Andrew Ammerlaan
-   

pyt...@gentoo.org
Python



[gentoo-commits] repo/gentoo:master commit in: dev-python/tikzplotlib/

2022-01-31 Thread Andrew Ammerlaan
commit: 92a24de66643e9bc911108ebc3b7d11f640ee0cb
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Mon Jan 31 13:46:06 2022 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Mon Jan 31 13:49:04 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92a24de6

dev-python/tikzplotlib: add version 0.10.0

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 dev-python/tikzplotlib/Manifest  |  1 +
 dev-python/tikzplotlib/tikzplotlib-0.10.0.ebuild | 40 
 2 files changed, 41 insertions(+)

diff --git a/dev-python/tikzplotlib/Manifest b/dev-python/tikzplotlib/Manifest
index ed97defb17f0..e4401cf58fd8 100644
--- a/dev-python/tikzplotlib/Manifest
+++ b/dev-python/tikzplotlib/Manifest
@@ -1,2 +1,3 @@
+DIST tikzplotlib-0.10.0.tar.gz 98266 BLAKE2B 
28c49f937af5f70830218dcd3215ab5b7e56077cdd87e0e3887b48a63903314765adc872dc5c7f55e1bd5770541c8f1f3950033cf54acdf8a38be3b14bb6ac4b
 SHA512 
661291a975132ac18066dc8af310da91847f0fed289256944bba1f374c61cdb95c72a942527a92906c935b5af1131069212109eb25f531bac7ac72f6a1d9d773
 DIST tikzplotlib-0.9.16.tar.gz 98162 BLAKE2B 
de32064cd8cb6f3fbd8e067c8126a86da6d9836dc42d91d42fd8ad6ba9f8fc2a1001904d370cb756e76112a0d746247f6235fe40af277a7142bdc6264b1ee531
 SHA512 
7633b7e8ee23aed8da3df249a7dbc4e36667950d2c5caef5845b5468a61f5cb0191cad3253cc7940d19be56a7981d33c70c9d45ce0d9329286266af6f36c2d94
 DIST tikzplotlib-0.9.17.tar.gz 98194 BLAKE2B 
746bd940805fa7bcef56398f974ad13c54814c7192ed8c85bdcfdf2fbeb93a0016d810a0b532120a404053e0666352c07f5f0db97b3241574fbcda3ad464664f
 SHA512 
3708eba0d77890a919c7e974569fcf4cf1c798199927bd2771e8952f6ea49a10a6b85d605c3d6c4969e16bf47eb1683557f8bbefdf986f043049aa6b0c37a8ff

diff --git a/dev-python/tikzplotlib/tikzplotlib-0.10.0.ebuild 
b/dev-python/tikzplotlib/tikzplotlib-0.10.0.ebuild
new file mode 100644
index ..5268fc22a843
--- /dev/null
+++ b/dev-python/tikzplotlib/tikzplotlib-0.10.0.ebuild
@@ -0,0 +1,40 @@
+# Copyright 2019-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1 virtualx
+
+DESCRIPTION="Convert matplotlib figures into TikZ/PGFPlots"
+HOMEPAGE="https://github.com/nschloe/tikzplotlib;
+SRC_URI="https://github.com/nschloe/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   app-text/texlive[extra]
+   >=dev-python/matplotlib-3.5[latex,${PYTHON_USEDEP}]
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/webcolors[${PYTHON_USEDEP}]
+"
+
+BDEPEND="
+   test? (
+   dev-python/pandas[${PYTHON_USEDEP}]
+   dev-python/pytest-codeblocks[${PYTHON_USEDEP}]
+   dev-python/scipy[${PYTHON_USEDEP}]
+   )"
+
+distutils_enable_tests pytest
+distutils_enable_sphinx doc dev-python/mock dev-python/alabaster
+
+src_test() {
+   local -x MPLBACKEND=Agg
+   virtx distutils-r1_src_test
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/tikzplotlib/

2022-01-30 Thread Michał Górny
commit: a23cf10d683cbaffa71fb98f14ffd994c57dba47
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Jan 30 11:51:19 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jan 31 00:23:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a23cf10d

dev-python/tikzplotlib: Run a single Xvfb

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/tikzplotlib/tikzplotlib-0.9.17-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/tikzplotlib/tikzplotlib-0.9.17-r1.ebuild 
b/dev-python/tikzplotlib/tikzplotlib-0.9.17-r1.ebuild
index dcf0697f072b..1bb7175ea0df 100644
--- a/dev-python/tikzplotlib/tikzplotlib-0.9.17-r1.ebuild
+++ b/dev-python/tikzplotlib/tikzplotlib-0.9.17-r1.ebuild
@@ -33,7 +33,7 @@ BDEPEND="
 distutils_enable_tests pytest
 distutils_enable_sphinx doc dev-python/mock
 
-python_test() {
+src_test() {
local -x MPLBACKEND=Agg
-   virtx epytest
+   virtx distutils-r1_src_test
 }



[gentoo-commits] repo/gentoo:master commit in: dev-python/tikzplotlib/

2022-01-27 Thread Michał Górny
commit: b621a0462b0ebf16cd728bff7f4e969978b32beb
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jan 27 09:46:04 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jan 27 10:02:18 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b621a046

dev-python/tikzplotlib: Switch to PEP 517 build

Signed-off-by: Michał Górny  gentoo.org>

 .../tikzplotlib/tikzplotlib-0.9.17-r1.ebuild   | 39 ++
 1 file changed, 39 insertions(+)

diff --git a/dev-python/tikzplotlib/tikzplotlib-0.9.17-r1.ebuild 
b/dev-python/tikzplotlib/tikzplotlib-0.9.17-r1.ebuild
new file mode 100644
index ..dcf0697f072b
--- /dev/null
+++ b/dev-python/tikzplotlib/tikzplotlib-0.9.17-r1.ebuild
@@ -0,0 +1,39 @@
+# Copyright 2019-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1 virtualx
+
+DESCRIPTION="Convert matplotlib figures into TikZ/PGFPlots"
+HOMEPAGE="https://github.com/nschloe/tikzplotlib;
+SRC_URI="https://github.com/nschloe/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   app-text/texlive[extra]
+   

[gentoo-commits] repo/gentoo:master commit in: dev-python/tikzplotlib/

2021-12-23 Thread Arthur Zamarin
commit: ab5683c8e84aa2568bdb29ddd18b1d7e32d956b2
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Dec 23 17:57:44 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Dec 23 18:03:54 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab5683c8

dev-python/tikzplotlib: add 0.9.17

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/tikzplotlib/Manifest  |  1 +
 dev-python/tikzplotlib/tikzplotlib-0.9.17.ebuild | 39 
 2 files changed, 40 insertions(+)

diff --git a/dev-python/tikzplotlib/Manifest b/dev-python/tikzplotlib/Manifest
index 08ee20e637d9..ed97defb17f0 100644
--- a/dev-python/tikzplotlib/Manifest
+++ b/dev-python/tikzplotlib/Manifest
@@ -1 +1,2 @@
 DIST tikzplotlib-0.9.16.tar.gz 98162 BLAKE2B 
de32064cd8cb6f3fbd8e067c8126a86da6d9836dc42d91d42fd8ad6ba9f8fc2a1001904d370cb756e76112a0d746247f6235fe40af277a7142bdc6264b1ee531
 SHA512 
7633b7e8ee23aed8da3df249a7dbc4e36667950d2c5caef5845b5468a61f5cb0191cad3253cc7940d19be56a7981d33c70c9d45ce0d9329286266af6f36c2d94
+DIST tikzplotlib-0.9.17.tar.gz 98194 BLAKE2B 
746bd940805fa7bcef56398f974ad13c54814c7192ed8c85bdcfdf2fbeb93a0016d810a0b532120a404053e0666352c07f5f0db97b3241574fbcda3ad464664f
 SHA512 
3708eba0d77890a919c7e974569fcf4cf1c798199927bd2771e8952f6ea49a10a6b85d605c3d6c4969e16bf47eb1683557f8bbefdf986f043049aa6b0c37a8ff

diff --git a/dev-python/tikzplotlib/tikzplotlib-0.9.17.ebuild 
b/dev-python/tikzplotlib/tikzplotlib-0.9.17.ebuild
new file mode 100644
index ..444f03ff1e9c
--- /dev/null
+++ b/dev-python/tikzplotlib/tikzplotlib-0.9.17.ebuild
@@ -0,0 +1,39 @@
+# Copyright 2019-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_SETUPTOOLS=pyproject.toml
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1 virtualx
+
+DESCRIPTION="Convert matplotlib figures into TikZ/PGFPlots"
+HOMEPAGE="https://github.com/nschloe/tikzplotlib;
+SRC_URI="https://github.com/nschloe/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   app-text/texlive[extra]
+   

[gentoo-commits] repo/gentoo:master commit in: dev-python/tikzplotlib/

2021-12-07 Thread Andrew Ammerlaan
commit: f6b3c69d98a9b1b1d701adb9dee30a3161620e9f
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Tue Dec  7 10:12:21 2021 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Tue Dec  7 10:12:21 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6b3c69d

dev-python/tikzplotlib: add version 0.9.16

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 dev-python/tikzplotlib/Manifest  |  1 +
 dev-python/tikzplotlib/tikzplotlib-0.9.16.ebuild | 39 
 2 files changed, 40 insertions(+)

diff --git a/dev-python/tikzplotlib/Manifest b/dev-python/tikzplotlib/Manifest
index 8ce7f83e867e..ad4050c59de3 100644
--- a/dev-python/tikzplotlib/Manifest
+++ b/dev-python/tikzplotlib/Manifest
@@ -1,2 +1,3 @@
 DIST tikzplotlib-0.9.13.gh.tar.gz 97787 BLAKE2B 
ef767737b8d222773f2d5e02dbf80ac8a48ea8a00077eb245e5817337805deb5b9be27e7ed76354808647ea1ed6b17d3bbca9b33799d294bd924c18b224e3621
 SHA512 
f9b4c46b3179626222713dd771dccfa6b0c34ff55658838aba74867c7cd5b91dddfaefdcd2c41824c9f13a795cadd6720240beaf3d504a7f735a2169c441b449
 DIST tikzplotlib-0.9.15.gh.tar.gz 97906 BLAKE2B 
6ceac71ff62eea1990ed1820c1c6b2bc7891787fb6604e2e32c4a512a6ca6ddb66800a0208145eaa36c3c8c646a84907b08e747b1d081189a49fde25649419e5
 SHA512 
cf42bca0be45e6e79e425d0e2da4ffd42868f081186d91dfbec8de20fbff9ab4a071267bb290240b080f9d86bab15e08d757e905690c37f43c0dac7e724ab609
+DIST tikzplotlib-0.9.16.tar.gz 98162 BLAKE2B 
de32064cd8cb6f3fbd8e067c8126a86da6d9836dc42d91d42fd8ad6ba9f8fc2a1001904d370cb756e76112a0d746247f6235fe40af277a7142bdc6264b1ee531
 SHA512 
7633b7e8ee23aed8da3df249a7dbc4e36667950d2c5caef5845b5468a61f5cb0191cad3253cc7940d19be56a7981d33c70c9d45ce0d9329286266af6f36c2d94

diff --git a/dev-python/tikzplotlib/tikzplotlib-0.9.16.ebuild 
b/dev-python/tikzplotlib/tikzplotlib-0.9.16.ebuild
new file mode 100644
index ..22f8a8cb1971
--- /dev/null
+++ b/dev-python/tikzplotlib/tikzplotlib-0.9.16.ebuild
@@ -0,0 +1,39 @@
+# Copyright 2019-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_SETUPTOOLS=pyproject.toml
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1 virtualx
+
+DESCRIPTION="Convert matplotlib figures into TikZ/PGFPlots"
+HOMEPAGE="https://github.com/nschloe/tikzplotlib;
+SRC_URI="https://github.com/nschloe/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   app-text/texlive[extra]
+   

[gentoo-commits] repo/gentoo:master commit in: dev-python/tikzplotlib/

2021-12-07 Thread Andrew Ammerlaan
commit: 50138b5d884652949573381a85d9faa561a4c73b
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Tue Dec  7 10:13:01 2021 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Tue Dec  7 10:13:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50138b5d

dev-python/tikzplotlib: cleanup old

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 dev-python/tikzplotlib/Manifest  |  2 -
 dev-python/tikzplotlib/tikzplotlib-0.9.13.ebuild | 47 
 dev-python/tikzplotlib/tikzplotlib-0.9.15.ebuild | 41 -
 3 files changed, 90 deletions(-)

diff --git a/dev-python/tikzplotlib/Manifest b/dev-python/tikzplotlib/Manifest
index ad4050c59de3..08ee20e637d9 100644
--- a/dev-python/tikzplotlib/Manifest
+++ b/dev-python/tikzplotlib/Manifest
@@ -1,3 +1 @@
-DIST tikzplotlib-0.9.13.gh.tar.gz 97787 BLAKE2B 
ef767737b8d222773f2d5e02dbf80ac8a48ea8a00077eb245e5817337805deb5b9be27e7ed76354808647ea1ed6b17d3bbca9b33799d294bd924c18b224e3621
 SHA512 
f9b4c46b3179626222713dd771dccfa6b0c34ff55658838aba74867c7cd5b91dddfaefdcd2c41824c9f13a795cadd6720240beaf3d504a7f735a2169c441b449
-DIST tikzplotlib-0.9.15.gh.tar.gz 97906 BLAKE2B 
6ceac71ff62eea1990ed1820c1c6b2bc7891787fb6604e2e32c4a512a6ca6ddb66800a0208145eaa36c3c8c646a84907b08e747b1d081189a49fde25649419e5
 SHA512 
cf42bca0be45e6e79e425d0e2da4ffd42868f081186d91dfbec8de20fbff9ab4a071267bb290240b080f9d86bab15e08d757e905690c37f43c0dac7e724ab609
 DIST tikzplotlib-0.9.16.tar.gz 98162 BLAKE2B 
de32064cd8cb6f3fbd8e067c8126a86da6d9836dc42d91d42fd8ad6ba9f8fc2a1001904d370cb756e76112a0d746247f6235fe40af277a7142bdc6264b1ee531
 SHA512 
7633b7e8ee23aed8da3df249a7dbc4e36667950d2c5caef5845b5468a61f5cb0191cad3253cc7940d19be56a7981d33c70c9d45ce0d9329286266af6f36c2d94

diff --git a/dev-python/tikzplotlib/tikzplotlib-0.9.13.ebuild 
b/dev-python/tikzplotlib/tikzplotlib-0.9.13.ebuild
deleted file mode 100644
index ddf06a6ca882..
--- a/dev-python/tikzplotlib/tikzplotlib-0.9.13.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 2019-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_SETUPTOOLS=pyproject.toml
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1 virtualx
-
-DESCRIPTION="Convert matplotlib figures into TikZ/PGFPlots"
-HOMEPAGE="https://github.com/nschloe/tikzplotlib;
-SRC_URI="
-   https://github.com/nschloe/${PN}/archive/v${PV}.tar.gz
-   -> ${P}.gh.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-   app-text/texlive[extra]
-   dev-python/matplotlib[latex,${PYTHON_USEDEP}]
-   dev-python/numpy[${PYTHON_USEDEP}]
-   dev-python/pillow[${PYTHON_USEDEP}]
-"
-
-BDEPEND="
-   test? (
-   dev-python/exdown[${PYTHON_USEDEP}]
-   dev-python/pandas[${PYTHON_USEDEP}]
-   dev-python/scipy[${PYTHON_USEDEP}]
-)"
-
-distutils_enable_tests pytest
-distutils_enable_sphinx doc dev-python/mock
-
-python_test() {
-   local -x MPLBACKEND=Agg
-   local EPYTEST_DESELECT=(
-   tests/test_barchart_errorbars.py::test
-   tests/test_colorbars.py::test
-   tests/test_fillstyle.py::test
-   )
-
-   virtx epytest
-}

diff --git a/dev-python/tikzplotlib/tikzplotlib-0.9.15.ebuild 
b/dev-python/tikzplotlib/tikzplotlib-0.9.15.ebuild
deleted file mode 100644
index adfccd0097b4..
--- a/dev-python/tikzplotlib/tikzplotlib-0.9.15.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 2019-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_SETUPTOOLS=pyproject.toml
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1 virtualx
-
-DESCRIPTION="Convert matplotlib figures into TikZ/PGFPlots"
-HOMEPAGE="https://github.com/nschloe/tikzplotlib;
-SRC_URI="
-   https://github.com/nschloe/${PN}/archive/v${PV}.tar.gz
-   -> ${P}.gh.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-   app-text/texlive[extra]
-   dev-python/matplotlib[latex,${PYTHON_USEDEP}]
-   dev-python/numpy[${PYTHON_USEDEP}]
-   dev-python/pillow[${PYTHON_USEDEP}]
-"
-
-BDEPEND="
-   test? (
-   dev-python/exdown[${PYTHON_USEDEP}]
-   dev-python/pandas[${PYTHON_USEDEP}]
-   dev-python/scipy[${PYTHON_USEDEP}]
-)"
-
-distutils_enable_tests pytest
-distutils_enable_sphinx doc dev-python/mock
-
-python_test() {
-   local -x MPLBACKEND=Agg
-   virtx epytest
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/tikzplotlib/

2021-10-18 Thread Michał Górny
commit: cf57ae8d9cff009830dc8623c98d53eb4901f98f
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Oct 18 20:25:51 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Oct 18 20:40:29 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf57ae8d

dev-python/tikzplotlib: Bump to 0.9.15

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/tikzplotlib/Manifest  |  1 +
 dev-python/tikzplotlib/tikzplotlib-0.9.15.ebuild | 41 
 2 files changed, 42 insertions(+)

diff --git a/dev-python/tikzplotlib/Manifest b/dev-python/tikzplotlib/Manifest
index ed6dab90899..8ce7f83e867 100644
--- a/dev-python/tikzplotlib/Manifest
+++ b/dev-python/tikzplotlib/Manifest
@@ -1 +1,2 @@
 DIST tikzplotlib-0.9.13.gh.tar.gz 97787 BLAKE2B 
ef767737b8d222773f2d5e02dbf80ac8a48ea8a00077eb245e5817337805deb5b9be27e7ed76354808647ea1ed6b17d3bbca9b33799d294bd924c18b224e3621
 SHA512 
f9b4c46b3179626222713dd771dccfa6b0c34ff55658838aba74867c7cd5b91dddfaefdcd2c41824c9f13a795cadd6720240beaf3d504a7f735a2169c441b449
+DIST tikzplotlib-0.9.15.gh.tar.gz 97906 BLAKE2B 
6ceac71ff62eea1990ed1820c1c6b2bc7891787fb6604e2e32c4a512a6ca6ddb66800a0208145eaa36c3c8c646a84907b08e747b1d081189a49fde25649419e5
 SHA512 
cf42bca0be45e6e79e425d0e2da4ffd42868f081186d91dfbec8de20fbff9ab4a071267bb290240b080f9d86bab15e08d757e905690c37f43c0dac7e724ab609

diff --git a/dev-python/tikzplotlib/tikzplotlib-0.9.15.ebuild 
b/dev-python/tikzplotlib/tikzplotlib-0.9.15.ebuild
new file mode 100644
index 000..adfccd0097b
--- /dev/null
+++ b/dev-python/tikzplotlib/tikzplotlib-0.9.15.ebuild
@@ -0,0 +1,41 @@
+# Copyright 2019-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_SETUPTOOLS=pyproject.toml
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1 virtualx
+
+DESCRIPTION="Convert matplotlib figures into TikZ/PGFPlots"
+HOMEPAGE="https://github.com/nschloe/tikzplotlib;
+SRC_URI="
+   https://github.com/nschloe/${PN}/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   app-text/texlive[extra]
+   dev-python/matplotlib[latex,${PYTHON_USEDEP}]
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+"
+
+BDEPEND="
+   test? (
+   dev-python/exdown[${PYTHON_USEDEP}]
+   dev-python/pandas[${PYTHON_USEDEP}]
+   dev-python/scipy[${PYTHON_USEDEP}]
+)"
+
+distutils_enable_tests pytest
+distutils_enable_sphinx doc dev-python/mock
+
+python_test() {
+   local -x MPLBACKEND=Agg
+   virtx epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/tikzplotlib/

2021-10-17 Thread Michał Górny
commit: 1e112a117d038a1d903ce4056d0cbc5938725280
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Oct 17 09:35:57 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Oct 17 09:35:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e112a11

dev-python/tikzplotlib: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/tikzplotlib/Manifest  |  3 --
 dev-python/tikzplotlib/tikzplotlib-0.9.11.ebuild | 48 
 dev-python/tikzplotlib/tikzplotlib-0.9.12.ebuild | 48 
 dev-python/tikzplotlib/tikzplotlib-0.9.9.ebuild  | 40 
 4 files changed, 139 deletions(-)

diff --git a/dev-python/tikzplotlib/Manifest b/dev-python/tikzplotlib/Manifest
index fc0bbfecb85..ed6dab90899 100644
--- a/dev-python/tikzplotlib/Manifest
+++ b/dev-python/tikzplotlib/Manifest
@@ -1,4 +1 @@
-DIST tikzplotlib-0.9.11.gh.tar.gz 97761 BLAKE2B 
95454a9181b219e99970d06a0e40d518284ff62c7b06d9cbf5b3125b11a711e67f9df1676dc1bd73a9ec632fa01786890e3eef030f8a52ffe809835e3890359c
 SHA512 
05fa8285f4912f2593a00ec5961f4ca94964c2ff8271158c6c1e0447f1f2b54088a76192bcda4f893adc2ad78b9240742962eee1e56043777b0df145808f42ba
-DIST tikzplotlib-0.9.12.gh.tar.gz 97773 BLAKE2B 
85d85445e313a41ede8c2d61d8db0d92a8f4fbb0722f716845f0fff3204e603e8b21998a588137eb67bdbc4d8f31bc5bfc82e29fc803b3c54c416191b6e5310b
 SHA512 
4754707727eda29796a49809473b840c07b2cb7de606089d79aeb05daa6ded95a3f110deffb13ca2640e44d91c43b53520d6f29b175e200862492cb986b6c574
 DIST tikzplotlib-0.9.13.gh.tar.gz 97787 BLAKE2B 
ef767737b8d222773f2d5e02dbf80ac8a48ea8a00077eb245e5817337805deb5b9be27e7ed76354808647ea1ed6b17d3bbca9b33799d294bd924c18b224e3621
 SHA512 
f9b4c46b3179626222713dd771dccfa6b0c34ff55658838aba74867c7cd5b91dddfaefdcd2c41824c9f13a795cadd6720240beaf3d504a7f735a2169c441b449
-DIST tikzplotlib-0.9.9.tar.gz 591659 BLAKE2B 
c8ed8069387aedc154ea1541c7e4f97cd43a74c384be4810029acf2dd1de348d732c004850b3248ba6a892451afec56fc4de0c6b05c3f4edc7b72b741e46b558
 SHA512 
3b6bc8b23693b1817b7f8969352bfe45f81762f86d30b9329c3c57fb1897ee5965f5759e357bbe68d21b84ac3e53e5ce80ffafccfac22d9a4a36ce104d5a2966

diff --git a/dev-python/tikzplotlib/tikzplotlib-0.9.11.ebuild 
b/dev-python/tikzplotlib/tikzplotlib-0.9.11.ebuild
deleted file mode 100644
index be7409c6cc0..000
--- a/dev-python/tikzplotlib/tikzplotlib-0.9.11.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 2019-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DISTUTILS_USE_SETUPTOOLS=pyproject.toml
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1 virtualx
-
-DESCRIPTION="Convert matplotlib figures into TikZ/PGFPlots"
-HOMEPAGE="https://github.com/nschloe/tikzplotlib;
-SRC_URI="
-   https://github.com/nschloe/${PN}/archive/${PV}.tar.gz
-   -> ${P}.gh.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-   app-text/texlive[extra]
-   dev-python/matplotlib[latex,${PYTHON_USEDEP}]
-   dev-python/numpy[${PYTHON_USEDEP}]
-   dev-python/pillow[${PYTHON_USEDEP}]
-"
-
-BDEPEND="
-   dev-python/wheel[${PYTHON_USEDEP}]
-   test? (
-   dev-python/exdown[${PYTHON_USEDEP}]
-   dev-python/pandas[${PYTHON_USEDEP}]
-   dev-python/scipy[${PYTHON_USEDEP}]
-)"
-
-distutils_enable_tests pytest
-distutils_enable_sphinx doc dev-python/mock
-
-python_test() {
-   local -x MPLBACKEND=Agg
-   local deselect=(
-   tests/test_barchart_errorbars.py::test
-   tests/test_colorbars.py::test
-   tests/test_fillstyle.py::test
-   )
-
-   virtx epytest ${deselect[@]/#/--deselect }
-}

diff --git a/dev-python/tikzplotlib/tikzplotlib-0.9.12.ebuild 
b/dev-python/tikzplotlib/tikzplotlib-0.9.12.ebuild
deleted file mode 100644
index be7409c6cc0..000
--- a/dev-python/tikzplotlib/tikzplotlib-0.9.12.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 2019-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DISTUTILS_USE_SETUPTOOLS=pyproject.toml
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1 virtualx
-
-DESCRIPTION="Convert matplotlib figures into TikZ/PGFPlots"
-HOMEPAGE="https://github.com/nschloe/tikzplotlib;
-SRC_URI="
-   https://github.com/nschloe/${PN}/archive/${PV}.tar.gz
-   -> ${P}.gh.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-   app-text/texlive[extra]
-   dev-python/matplotlib[latex,${PYTHON_USEDEP}]
-   dev-python/numpy[${PYTHON_USEDEP}]
-   dev-python/pillow[${PYTHON_USEDEP}]
-"
-
-BDEPEND="
-   dev-python/wheel[${PYTHON_USEDEP}]
-   test? (
-   dev-python/exdown[${PYTHON_USEDEP}]
-   dev-python/pandas[${PYTHON_USEDEP}]
-   dev-python/scipy[${PYTHON_USEDEP}]
-)"
-
-distutils_enable_tests pytest
-distutils_enable_sphinx doc dev-python/mock
-
-python_test() {
-   

[gentoo-commits] repo/gentoo:master commit in: dev-python/tikzplotlib/

2021-10-01 Thread Michał Górny
commit: 8e8a5b380fdfe234f160257c074d99a1b45ae43f
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Oct  1 06:14:09 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Oct  1 06:36:43 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e8a5b38

dev-python/tikzplotlib: Bump to 0.9.13

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/tikzplotlib/Manifest  |  1 +
 dev-python/tikzplotlib/tikzplotlib-0.9.13.ebuild | 47 
 2 files changed, 48 insertions(+)

diff --git a/dev-python/tikzplotlib/Manifest b/dev-python/tikzplotlib/Manifest
index 2f1da02baf5..fc0bbfecb85 100644
--- a/dev-python/tikzplotlib/Manifest
+++ b/dev-python/tikzplotlib/Manifest
@@ -1,3 +1,4 @@
 DIST tikzplotlib-0.9.11.gh.tar.gz 97761 BLAKE2B 
95454a9181b219e99970d06a0e40d518284ff62c7b06d9cbf5b3125b11a711e67f9df1676dc1bd73a9ec632fa01786890e3eef030f8a52ffe809835e3890359c
 SHA512 
05fa8285f4912f2593a00ec5961f4ca94964c2ff8271158c6c1e0447f1f2b54088a76192bcda4f893adc2ad78b9240742962eee1e56043777b0df145808f42ba
 DIST tikzplotlib-0.9.12.gh.tar.gz 97773 BLAKE2B 
85d85445e313a41ede8c2d61d8db0d92a8f4fbb0722f716845f0fff3204e603e8b21998a588137eb67bdbc4d8f31bc5bfc82e29fc803b3c54c416191b6e5310b
 SHA512 
4754707727eda29796a49809473b840c07b2cb7de606089d79aeb05daa6ded95a3f110deffb13ca2640e44d91c43b53520d6f29b175e200862492cb986b6c574
+DIST tikzplotlib-0.9.13.gh.tar.gz 97787 BLAKE2B 
ef767737b8d222773f2d5e02dbf80ac8a48ea8a00077eb245e5817337805deb5b9be27e7ed76354808647ea1ed6b17d3bbca9b33799d294bd924c18b224e3621
 SHA512 
f9b4c46b3179626222713dd771dccfa6b0c34ff55658838aba74867c7cd5b91dddfaefdcd2c41824c9f13a795cadd6720240beaf3d504a7f735a2169c441b449
 DIST tikzplotlib-0.9.9.tar.gz 591659 BLAKE2B 
c8ed8069387aedc154ea1541c7e4f97cd43a74c384be4810029acf2dd1de348d732c004850b3248ba6a892451afec56fc4de0c6b05c3f4edc7b72b741e46b558
 SHA512 
3b6bc8b23693b1817b7f8969352bfe45f81762f86d30b9329c3c57fb1897ee5965f5759e357bbe68d21b84ac3e53e5ce80ffafccfac22d9a4a36ce104d5a2966

diff --git a/dev-python/tikzplotlib/tikzplotlib-0.9.13.ebuild 
b/dev-python/tikzplotlib/tikzplotlib-0.9.13.ebuild
new file mode 100644
index 000..ddf06a6ca88
--- /dev/null
+++ b/dev-python/tikzplotlib/tikzplotlib-0.9.13.ebuild
@@ -0,0 +1,47 @@
+# Copyright 2019-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_SETUPTOOLS=pyproject.toml
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1 virtualx
+
+DESCRIPTION="Convert matplotlib figures into TikZ/PGFPlots"
+HOMEPAGE="https://github.com/nschloe/tikzplotlib;
+SRC_URI="
+   https://github.com/nschloe/${PN}/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   app-text/texlive[extra]
+   dev-python/matplotlib[latex,${PYTHON_USEDEP}]
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+"
+
+BDEPEND="
+   test? (
+   dev-python/exdown[${PYTHON_USEDEP}]
+   dev-python/pandas[${PYTHON_USEDEP}]
+   dev-python/scipy[${PYTHON_USEDEP}]
+)"
+
+distutils_enable_tests pytest
+distutils_enable_sphinx doc dev-python/mock
+
+python_test() {
+   local -x MPLBACKEND=Agg
+   local EPYTEST_DESELECT=(
+   tests/test_barchart_errorbars.py::test
+   tests/test_colorbars.py::test
+   tests/test_fillstyle.py::test
+   )
+
+   virtx epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/tikzplotlib/

2021-08-11 Thread Michał Górny
commit: ccade6bb6bb02d34f806215f319add3b81efcd5e
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Aug 12 05:23:27 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Aug 12 05:38:56 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccade6bb

dev-python/tikzplotlib: Bump to 0.9.12

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/tikzplotlib/Manifest  |  1 +
 dev-python/tikzplotlib/tikzplotlib-0.9.12.ebuild | 48 
 2 files changed, 49 insertions(+)

diff --git a/dev-python/tikzplotlib/Manifest b/dev-python/tikzplotlib/Manifest
index daccf94da31..2f1da02baf5 100644
--- a/dev-python/tikzplotlib/Manifest
+++ b/dev-python/tikzplotlib/Manifest
@@ -1,2 +1,3 @@
 DIST tikzplotlib-0.9.11.gh.tar.gz 97761 BLAKE2B 
95454a9181b219e99970d06a0e40d518284ff62c7b06d9cbf5b3125b11a711e67f9df1676dc1bd73a9ec632fa01786890e3eef030f8a52ffe809835e3890359c
 SHA512 
05fa8285f4912f2593a00ec5961f4ca94964c2ff8271158c6c1e0447f1f2b54088a76192bcda4f893adc2ad78b9240742962eee1e56043777b0df145808f42ba
+DIST tikzplotlib-0.9.12.gh.tar.gz 97773 BLAKE2B 
85d85445e313a41ede8c2d61d8db0d92a8f4fbb0722f716845f0fff3204e603e8b21998a588137eb67bdbc4d8f31bc5bfc82e29fc803b3c54c416191b6e5310b
 SHA512 
4754707727eda29796a49809473b840c07b2cb7de606089d79aeb05daa6ded95a3f110deffb13ca2640e44d91c43b53520d6f29b175e200862492cb986b6c574
 DIST tikzplotlib-0.9.9.tar.gz 591659 BLAKE2B 
c8ed8069387aedc154ea1541c7e4f97cd43a74c384be4810029acf2dd1de348d732c004850b3248ba6a892451afec56fc4de0c6b05c3f4edc7b72b741e46b558
 SHA512 
3b6bc8b23693b1817b7f8969352bfe45f81762f86d30b9329c3c57fb1897ee5965f5759e357bbe68d21b84ac3e53e5ce80ffafccfac22d9a4a36ce104d5a2966

diff --git a/dev-python/tikzplotlib/tikzplotlib-0.9.12.ebuild 
b/dev-python/tikzplotlib/tikzplotlib-0.9.12.ebuild
new file mode 100644
index 000..be7409c6cc0
--- /dev/null
+++ b/dev-python/tikzplotlib/tikzplotlib-0.9.12.ebuild
@@ -0,0 +1,48 @@
+# Copyright 2019-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DISTUTILS_USE_SETUPTOOLS=pyproject.toml
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1 virtualx
+
+DESCRIPTION="Convert matplotlib figures into TikZ/PGFPlots"
+HOMEPAGE="https://github.com/nschloe/tikzplotlib;
+SRC_URI="
+   https://github.com/nschloe/${PN}/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   app-text/texlive[extra]
+   dev-python/matplotlib[latex,${PYTHON_USEDEP}]
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+"
+
+BDEPEND="
+   dev-python/wheel[${PYTHON_USEDEP}]
+   test? (
+   dev-python/exdown[${PYTHON_USEDEP}]
+   dev-python/pandas[${PYTHON_USEDEP}]
+   dev-python/scipy[${PYTHON_USEDEP}]
+)"
+
+distutils_enable_tests pytest
+distutils_enable_sphinx doc dev-python/mock
+
+python_test() {
+   local -x MPLBACKEND=Agg
+   local deselect=(
+   tests/test_barchart_errorbars.py::test
+   tests/test_colorbars.py::test
+   tests/test_fillstyle.py::test
+   )
+
+   virtx epytest ${deselect[@]/#/--deselect }
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/tikzplotlib/

2021-08-11 Thread Michał Górny
commit: 0c9b4f74a87439ef141f8618cb1dee089ee0eb98
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Aug 11 06:01:21 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Aug 11 06:46:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c9b4f74

dev-python/tikzplotlib: Bump to 0.9.11

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/tikzplotlib/Manifest  |  1 +
 dev-python/tikzplotlib/tikzplotlib-0.9.11.ebuild | 48 
 2 files changed, 49 insertions(+)

diff --git a/dev-python/tikzplotlib/Manifest b/dev-python/tikzplotlib/Manifest
index fb76450cc22..daccf94da31 100644
--- a/dev-python/tikzplotlib/Manifest
+++ b/dev-python/tikzplotlib/Manifest
@@ -1 +1,2 @@
+DIST tikzplotlib-0.9.11.gh.tar.gz 97761 BLAKE2B 
95454a9181b219e99970d06a0e40d518284ff62c7b06d9cbf5b3125b11a711e67f9df1676dc1bd73a9ec632fa01786890e3eef030f8a52ffe809835e3890359c
 SHA512 
05fa8285f4912f2593a00ec5961f4ca94964c2ff8271158c6c1e0447f1f2b54088a76192bcda4f893adc2ad78b9240742962eee1e56043777b0df145808f42ba
 DIST tikzplotlib-0.9.9.tar.gz 591659 BLAKE2B 
c8ed8069387aedc154ea1541c7e4f97cd43a74c384be4810029acf2dd1de348d732c004850b3248ba6a892451afec56fc4de0c6b05c3f4edc7b72b741e46b558
 SHA512 
3b6bc8b23693b1817b7f8969352bfe45f81762f86d30b9329c3c57fb1897ee5965f5759e357bbe68d21b84ac3e53e5ce80ffafccfac22d9a4a36ce104d5a2966

diff --git a/dev-python/tikzplotlib/tikzplotlib-0.9.11.ebuild 
b/dev-python/tikzplotlib/tikzplotlib-0.9.11.ebuild
new file mode 100644
index 000..be7409c6cc0
--- /dev/null
+++ b/dev-python/tikzplotlib/tikzplotlib-0.9.11.ebuild
@@ -0,0 +1,48 @@
+# Copyright 2019-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DISTUTILS_USE_SETUPTOOLS=pyproject.toml
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1 virtualx
+
+DESCRIPTION="Convert matplotlib figures into TikZ/PGFPlots"
+HOMEPAGE="https://github.com/nschloe/tikzplotlib;
+SRC_URI="
+   https://github.com/nschloe/${PN}/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   app-text/texlive[extra]
+   dev-python/matplotlib[latex,${PYTHON_USEDEP}]
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+"
+
+BDEPEND="
+   dev-python/wheel[${PYTHON_USEDEP}]
+   test? (
+   dev-python/exdown[${PYTHON_USEDEP}]
+   dev-python/pandas[${PYTHON_USEDEP}]
+   dev-python/scipy[${PYTHON_USEDEP}]
+)"
+
+distutils_enable_tests pytest
+distutils_enable_sphinx doc dev-python/mock
+
+python_test() {
+   local -x MPLBACKEND=Agg
+   local deselect=(
+   tests/test_barchart_errorbars.py::test
+   tests/test_colorbars.py::test
+   tests/test_fillstyle.py::test
+   )
+
+   virtx epytest ${deselect[@]/#/--deselect }
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/tikzplotlib/

2021-06-26 Thread Andrew Ammerlaan
commit: 2394d292b38b6e4d3da491360b69c953e0c0
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Sat Jun 26 20:14:02 2021 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Sat Jun 26 20:14:53 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2394d292

dev-python/tikzplotlib: drop version 0.9.8

Closes: https://bugs.gentoo.org/770169
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 dev-python/tikzplotlib/Manifest |  1 -
 dev-python/tikzplotlib/tikzplotlib-0.9.8.ebuild | 42 -
 2 files changed, 43 deletions(-)

diff --git a/dev-python/tikzplotlib/Manifest b/dev-python/tikzplotlib/Manifest
index babedf63436..fb76450cc22 100644
--- a/dev-python/tikzplotlib/Manifest
+++ b/dev-python/tikzplotlib/Manifest
@@ -1,2 +1 @@
-DIST tikzplotlib-0.9.8.tar.gz 589858 BLAKE2B 
81bb2ece7d3f5976d928095caa3d8d51b619c97a4b36eea14f4b4477d31e78a978c2eeab81e9829bb9113e70f0035a572a82a229fea61ee08530d57334fda986
 SHA512 
a2b25d9820fd8185d4e7a03fb0669fa4c9b35aac9b371b0a873174d615bd40615f1fafa4208d2019af0b7ffe80a8eec6b56ad6075104f6c3a4f8f237ad5b4466
 DIST tikzplotlib-0.9.9.tar.gz 591659 BLAKE2B 
c8ed8069387aedc154ea1541c7e4f97cd43a74c384be4810029acf2dd1de348d732c004850b3248ba6a892451afec56fc4de0c6b05c3f4edc7b72b741e46b558
 SHA512 
3b6bc8b23693b1817b7f8969352bfe45f81762f86d30b9329c3c57fb1897ee5965f5759e357bbe68d21b84ac3e53e5ce80ffafccfac22d9a4a36ce104d5a2966

diff --git a/dev-python/tikzplotlib/tikzplotlib-0.9.8.ebuild 
b/dev-python/tikzplotlib/tikzplotlib-0.9.8.ebuild
deleted file mode 100644
index eec9580243f..000
--- a/dev-python/tikzplotlib/tikzplotlib-0.9.8.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 2019-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DISTUTILS_USE_SETUPTOOLS=pyproject.toml
-PYTHON_COMPAT=( python3_{7..9} )
-
-inherit distutils-r1 virtualx
-
-DESCRIPTION="Convert matplotlib figures into TikZ/PGFPlots"
-HOMEPAGE="https://github.com/nschloe/tikzplotlib;
-SRC_URI="https://github.com/nschloe/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-   app-text/texlive[extra]
-   $( python_gen_cond_dep \
-   'dev-python/importlib_metadata[${PYTHON_USEDEP}]' python3_7 )
-   dev-python/matplotlib[latex,${PYTHON_USEDEP}]
-   dev-python/numpy[${PYTHON_USEDEP}]
-   dev-python/pillow[${PYTHON_USEDEP}]
-"
-
-BDEPEND="
-   dev-python/wheel[${PYTHON_USEDEP}]
-   test? (
-   dev-python/exdown[${PYTHON_USEDEP}]
-   dev-python/pandas[${PYTHON_USEDEP}]
-   dev-python/scipy[${PYTHON_USEDEP}]
-)"
-
-distutils_enable_tests pytest
-distutils_enable_sphinx doc dev-python/mock
-
-python_test() {
-   local -x MPLBACKEND=Agg
-   virtx pytest -vv
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/tikzplotlib/

2021-06-26 Thread Andrew Ammerlaan
commit: 0d4169fa343bfc44dd299eb2eb9ff791ecf0adc1
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Sat Jun 26 20:13:18 2021 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Sat Jun 26 20:14:53 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d4169fa

dev-python/tikzplotlib: add version 0.9.9

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 dev-python/tikzplotlib/Manifest |  1 +
 dev-python/tikzplotlib/tikzplotlib-0.9.9.ebuild | 40 +
 2 files changed, 41 insertions(+)

diff --git a/dev-python/tikzplotlib/Manifest b/dev-python/tikzplotlib/Manifest
index 9579a28104a..babedf63436 100644
--- a/dev-python/tikzplotlib/Manifest
+++ b/dev-python/tikzplotlib/Manifest
@@ -1 +1,2 @@
 DIST tikzplotlib-0.9.8.tar.gz 589858 BLAKE2B 
81bb2ece7d3f5976d928095caa3d8d51b619c97a4b36eea14f4b4477d31e78a978c2eeab81e9829bb9113e70f0035a572a82a229fea61ee08530d57334fda986
 SHA512 
a2b25d9820fd8185d4e7a03fb0669fa4c9b35aac9b371b0a873174d615bd40615f1fafa4208d2019af0b7ffe80a8eec6b56ad6075104f6c3a4f8f237ad5b4466
+DIST tikzplotlib-0.9.9.tar.gz 591659 BLAKE2B 
c8ed8069387aedc154ea1541c7e4f97cd43a74c384be4810029acf2dd1de348d732c004850b3248ba6a892451afec56fc4de0c6b05c3f4edc7b72b741e46b558
 SHA512 
3b6bc8b23693b1817b7f8969352bfe45f81762f86d30b9329c3c57fb1897ee5965f5759e357bbe68d21b84ac3e53e5ce80ffafccfac22d9a4a36ce104d5a2966

diff --git a/dev-python/tikzplotlib/tikzplotlib-0.9.9.ebuild 
b/dev-python/tikzplotlib/tikzplotlib-0.9.9.ebuild
new file mode 100644
index 000..7a307bf1c63
--- /dev/null
+++ b/dev-python/tikzplotlib/tikzplotlib-0.9.9.ebuild
@@ -0,0 +1,40 @@
+# Copyright 2019-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DISTUTILS_USE_SETUPTOOLS=pyproject.toml
+PYTHON_COMPAT=( python3_{8..9} )
+
+inherit distutils-r1 virtualx
+
+DESCRIPTION="Convert matplotlib figures into TikZ/PGFPlots"
+HOMEPAGE="https://github.com/nschloe/tikzplotlib;
+SRC_URI="https://github.com/nschloe/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   app-text/texlive[extra]
+   dev-python/matplotlib[latex,${PYTHON_USEDEP}]
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+"
+
+BDEPEND="
+   dev-python/wheel[${PYTHON_USEDEP}]
+   test? (
+   dev-python/exdown[${PYTHON_USEDEP}]
+   dev-python/pandas[${PYTHON_USEDEP}]
+   dev-python/scipy[${PYTHON_USEDEP}]
+)"
+
+distutils_enable_tests pytest
+distutils_enable_sphinx doc dev-python/mock
+
+python_test() {
+   local -x MPLBACKEND=Agg
+   virtx pytest -vv
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/tikzplotlib/

2021-05-22 Thread Andrew Ammerlaan
commit: 0f01e9d1f89d672d5ef4de3c5d45807c2f730a69
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Sat May 22 20:48:57 2021 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Sat May 22 20:55:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f01e9d1

dev-python/tikzplotlib: add 

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 dev-python/tikzplotlib/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/tikzplotlib/metadata.xml 
b/dev-python/tikzplotlib/metadata.xml
index c418000c564..8a46d828cd9 100644
--- a/dev-python/tikzplotlib/metadata.xml
+++ b/dev-python/tikzplotlib/metadata.xml
@@ -14,4 +14,5 @@
nschloe/tikzplotlib
tikzplotlib

+   
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/tikzplotlib/

2021-02-12 Thread Michał Górny
commit: 1c718d4843d00958ef5369f6ecd84ec1c2aa9c43
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 12 08:22:29 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 12 09:09:49 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c718d48

dev-python/tikzplotlib: Bump to 0.9.8

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/tikzplotlib/Manifest |  1 +
 dev-python/tikzplotlib/tikzplotlib-0.9.8.ebuild | 42 +
 2 files changed, 43 insertions(+)

diff --git a/dev-python/tikzplotlib/Manifest b/dev-python/tikzplotlib/Manifest
index 952d9609308..c1a7e0846ef 100644
--- a/dev-python/tikzplotlib/Manifest
+++ b/dev-python/tikzplotlib/Manifest
@@ -1,2 +1,3 @@
 DIST tikzplotlib-0.9.6.tar.gz 589081 BLAKE2B 
aacd1374caed3dc86e6a93479b7ed0d0a79a2f96acc3817e630860794dc2f77c0d908d5765ebd500160d8c459b51131645f3633a084627b55aa2f26f5de87add
 SHA512 
447dcd9da8d5cebf68b9f1a1f06d82370d5adf731524ea17c4f570bfd76dfce06e65f92df0ead732a02b42d9bdf6d0fde9e004bff50204cc5e33cca6c014a257
 DIST tikzplotlib-0.9.7.tar.gz 589052 BLAKE2B 
2960ca341364c003e6c708fa967209c4ab13847f2b7524b926985d73ab146777b314e3df2066c8dcab2ff4c1eb8a46dc4a89f1b85578650cde8c9fb5de5743e9
 SHA512 
0903f774e3f95612b9b68b4e2254f2c0403e5c603dd41445e359587c4e917c373a12485bc0b8ba30b354eb7b93bb754531489c898dbc4479466c071a2f9b0f3d
+DIST tikzplotlib-0.9.8.tar.gz 589858 BLAKE2B 
81bb2ece7d3f5976d928095caa3d8d51b619c97a4b36eea14f4b4477d31e78a978c2eeab81e9829bb9113e70f0035a572a82a229fea61ee08530d57334fda986
 SHA512 
a2b25d9820fd8185d4e7a03fb0669fa4c9b35aac9b371b0a873174d615bd40615f1fafa4208d2019af0b7ffe80a8eec6b56ad6075104f6c3a4f8f237ad5b4466

diff --git a/dev-python/tikzplotlib/tikzplotlib-0.9.8.ebuild 
b/dev-python/tikzplotlib/tikzplotlib-0.9.8.ebuild
new file mode 100644
index 000..eec9580243f
--- /dev/null
+++ b/dev-python/tikzplotlib/tikzplotlib-0.9.8.ebuild
@@ -0,0 +1,42 @@
+# Copyright 2019-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DISTUTILS_USE_SETUPTOOLS=pyproject.toml
+PYTHON_COMPAT=( python3_{7..9} )
+
+inherit distutils-r1 virtualx
+
+DESCRIPTION="Convert matplotlib figures into TikZ/PGFPlots"
+HOMEPAGE="https://github.com/nschloe/tikzplotlib;
+SRC_URI="https://github.com/nschloe/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   app-text/texlive[extra]
+   $( python_gen_cond_dep \
+   'dev-python/importlib_metadata[${PYTHON_USEDEP}]' python3_7 )
+   dev-python/matplotlib[latex,${PYTHON_USEDEP}]
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+"
+
+BDEPEND="
+   dev-python/wheel[${PYTHON_USEDEP}]
+   test? (
+   dev-python/exdown[${PYTHON_USEDEP}]
+   dev-python/pandas[${PYTHON_USEDEP}]
+   dev-python/scipy[${PYTHON_USEDEP}]
+)"
+
+distutils_enable_tests pytest
+distutils_enable_sphinx doc dev-python/mock
+
+python_test() {
+   local -x MPLBACKEND=Agg
+   virtx pytest -vv
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/tikzplotlib/

2021-02-12 Thread Michał Górny
commit: eb5977164577c652b0f559a39dd563599ae70682
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 12 08:22:53 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 12 09:09:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb597716

dev-python/tikzplotlib: Add python@ as co-maint

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/tikzplotlib/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/dev-python/tikzplotlib/metadata.xml 
b/dev-python/tikzplotlib/metadata.xml
index 34881f6ec28..1ff772a7c7b 100644
--- a/dev-python/tikzplotlib/metadata.xml
+++ b/dev-python/tikzplotlib/metadata.xml
@@ -9,6 +9,10 @@
proxy-ma...@gentoo.org
Proxy Maintainers

+   
+   pyt...@gentoo.org
+   Python
+   
tikzplotlib is a Python tool for converting matplotlib 
figures into PGFPlots (TikZ) figures like for native inclusion into LaTeX 
documents. The output of tikzplotlib is in PGFPlots, a LaTeX library that sits 
on top of TikZ and describes graphs in terms of axes, data etc. Consequently, 
the output of tikzplotlib retains more information, can be more easily 
understood, and is more easily editable than raw TikZ output.

nschloe/tikzplotlib



[gentoo-commits] repo/gentoo:master commit in: dev-python/tikzplotlib/

2021-02-11 Thread Michał Górny
commit: ba648348c4cdbe3ed09c38c55c92ce7afe384855
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Feb  6 11:50:52 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Feb 11 20:31:13 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba648348

dev-python/tikzplotlib: Use distutils-r1 pyproject.toml support

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/tikzplotlib/tikzplotlib-0.9.7.ebuild | 16 +---
 1 file changed, 1 insertion(+), 15 deletions(-)

diff --git a/dev-python/tikzplotlib/tikzplotlib-0.9.7.ebuild 
b/dev-python/tikzplotlib/tikzplotlib-0.9.7.ebuild
index b1d6c8827e1..eec9580243f 100644
--- a/dev-python/tikzplotlib/tikzplotlib-0.9.7.ebuild
+++ b/dev-python/tikzplotlib/tikzplotlib-0.9.7.ebuild
@@ -3,6 +3,7 @@
 
 EAPI=7
 
+DISTUTILS_USE_SETUPTOOLS=pyproject.toml
 PYTHON_COMPAT=( python3_{7..9} )
 
 inherit distutils-r1 virtualx
@@ -35,21 +36,6 @@ BDEPEND="
 distutils_enable_tests pytest
 distutils_enable_sphinx doc dev-python/mock
 
-python_prepare_all() {
-   # setup.py was removed in commit 
f04323cfa575caf8a25a9236f55fe6baf1a33b20
-   # for some reason, DISTUTULS_USE_SETUPTOOLS="pyproject.toml" is not 
working
-   # it complains about file not found, setup.cfg does exist
-
-   cat > setup.py <

[gentoo-commits] repo/gentoo:master commit in: dev-python/tikzplotlib/

2021-02-05 Thread Michał Górny
commit: 558b47c9624d890f0643bd251d8850ff7ec62167
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb  5 20:33:47 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb  5 21:28:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=558b47c9

dev-python/tikzplotlib: Bump to 0.9.7

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/tikzplotlib/Manifest |  1 +
 dev-python/tikzplotlib/tikzplotlib-0.9.7.ebuild | 56 +
 2 files changed, 57 insertions(+)

diff --git a/dev-python/tikzplotlib/Manifest b/dev-python/tikzplotlib/Manifest
index 5a84f468a4e..952d9609308 100644
--- a/dev-python/tikzplotlib/Manifest
+++ b/dev-python/tikzplotlib/Manifest
@@ -1 +1,2 @@
 DIST tikzplotlib-0.9.6.tar.gz 589081 BLAKE2B 
aacd1374caed3dc86e6a93479b7ed0d0a79a2f96acc3817e630860794dc2f77c0d908d5765ebd500160d8c459b51131645f3633a084627b55aa2f26f5de87add
 SHA512 
447dcd9da8d5cebf68b9f1a1f06d82370d5adf731524ea17c4f570bfd76dfce06e65f92df0ead732a02b42d9bdf6d0fde9e004bff50204cc5e33cca6c014a257
+DIST tikzplotlib-0.9.7.tar.gz 589052 BLAKE2B 
2960ca341364c003e6c708fa967209c4ab13847f2b7524b926985d73ab146777b314e3df2066c8dcab2ff4c1eb8a46dc4a89f1b85578650cde8c9fb5de5743e9
 SHA512 
0903f774e3f95612b9b68b4e2254f2c0403e5c603dd41445e359587c4e917c373a12485bc0b8ba30b354eb7b93bb754531489c898dbc4479466c071a2f9b0f3d

diff --git a/dev-python/tikzplotlib/tikzplotlib-0.9.7.ebuild 
b/dev-python/tikzplotlib/tikzplotlib-0.9.7.ebuild
new file mode 100644
index 000..b1d6c8827e1
--- /dev/null
+++ b/dev-python/tikzplotlib/tikzplotlib-0.9.7.ebuild
@@ -0,0 +1,56 @@
+# Copyright 2019-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7..9} )
+
+inherit distutils-r1 virtualx
+
+DESCRIPTION="Convert matplotlib figures into TikZ/PGFPlots"
+HOMEPAGE="https://github.com/nschloe/tikzplotlib;
+SRC_URI="https://github.com/nschloe/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   app-text/texlive[extra]
+   $( python_gen_cond_dep \
+   'dev-python/importlib_metadata[${PYTHON_USEDEP}]' python3_7 )
+   dev-python/matplotlib[latex,${PYTHON_USEDEP}]
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+"
+
+BDEPEND="
+   dev-python/wheel[${PYTHON_USEDEP}]
+   test? (
+   dev-python/exdown[${PYTHON_USEDEP}]
+   dev-python/pandas[${PYTHON_USEDEP}]
+   dev-python/scipy[${PYTHON_USEDEP}]
+)"
+
+distutils_enable_tests pytest
+distutils_enable_sphinx doc dev-python/mock
+
+python_prepare_all() {
+   # setup.py was removed in commit 
f04323cfa575caf8a25a9236f55fe6baf1a33b20
+   # for some reason, DISTUTULS_USE_SETUPTOOLS="pyproject.toml" is not 
working
+   # it complains about file not found, setup.cfg does exist
+
+   cat > setup.py <

[gentoo-commits] repo/gentoo:master commit in: dev-python/tikzplotlib/

2020-12-16 Thread Matt Turner
commit: dfd78519f7352ca067d185e47ea68103751c2a63
Author: Andrew Ammerlaan  riseup  net>
AuthorDate: Wed Dec 16 20:28:32 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Dec 17 00:18:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dfd78519

dev-python/tikzplotlib: version bump 0.9.6

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan  riseup.net>
Signed-off-by: Matt Turner  gentoo.org>

 dev-python/tikzplotlib/Manifest |  1 +
 dev-python/tikzplotlib/tikzplotlib-0.9.6.ebuild | 60 +
 2 files changed, 61 insertions(+)

diff --git a/dev-python/tikzplotlib/Manifest b/dev-python/tikzplotlib/Manifest
index 9f399a9f3e4..f65d2255fe5 100644
--- a/dev-python/tikzplotlib/Manifest
+++ b/dev-python/tikzplotlib/Manifest
@@ -1 +1,2 @@
 DIST tikzplotlib-0.9.4.tar.gz 588518 BLAKE2B 
3f6ec8b9149ef86e8a0dd551d4aeca4f676df3ca86de8bb9bfbf2abed81afab50adef99752970a40f174258f4d14c245366c5159f241d2cd10f7cebdfd6bbbfb
 SHA512 
0d654dbecc473f5bc20dc128ad55852c3787ddd50cf730ed57b25a25e6a55e79bfd451eb28188d75ac6b61a53a6a6e244bef2ca366dcb636e0d325c74b32d1cd
+DIST tikzplotlib-0.9.6.tar.gz 589081 BLAKE2B 
aacd1374caed3dc86e6a93479b7ed0d0a79a2f96acc3817e630860794dc2f77c0d908d5765ebd500160d8c459b51131645f3633a084627b55aa2f26f5de87add
 SHA512 
447dcd9da8d5cebf68b9f1a1f06d82370d5adf731524ea17c4f570bfd76dfce06e65f92df0ead732a02b42d9bdf6d0fde9e004bff50204cc5e33cca6c014a257

diff --git a/dev-python/tikzplotlib/tikzplotlib-0.9.6.ebuild 
b/dev-python/tikzplotlib/tikzplotlib-0.9.6.ebuild
new file mode 100644
index 000..c6df920586b
--- /dev/null
+++ b/dev-python/tikzplotlib/tikzplotlib-0.9.6.ebuild
@@ -0,0 +1,60 @@
+# Copyright 2019-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7,8,9} )
+
+inherit distutils-r1 virtualx
+
+DESCRIPTION="Convert matplotlib figures into TikZ/PGFPlots"
+HOMEPAGE="https://github.com/nschloe/tikzplotlib;
+SRC_URI="https://github.com/nschloe/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   app-text/texlive[extra]
+   $( python_gen_cond_dep \
+   'dev-python/importlib_metadata[${PYTHON_USEDEP}]' python3_7 )
+   dev-python/matplotlib[latex,${PYTHON_USEDEP}]
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+"
+
+BDEPEND="
+   dev-python/wheel[${PYTHON_USEDEP}]
+   test? (
+   dev-python/exdown[${PYTHON_USEDEP}]
+   dev-python/pandas[${PYTHON_USEDEP}]
+   dev-python/scipy[${PYTHON_USEDEP}]
+)"
+
+distutils_enable_tests pytest
+distutils_enable_sphinx doc dev-python/mock
+
+python_prepare_all() {
+   # setup.py was removed in commit 
f04323cfa575caf8a25a9236f55fe6baf1a33b20
+   # for some reason, DISTUTULS_USE_SETUPTOOLS="pyproject.toml" is not 
working
+   # it complains about file not found, setup.cfg does exist
+
+   cat > setup.py <

[gentoo-commits] repo/gentoo:master commit in: dev-python/tikzplotlib/

2020-12-16 Thread Matt Turner
commit: 4d32217c07d250b52cc9f79c3b3139264b9d5add
Author: Andrew Ammerlaan  riseup  net>
AuthorDate: Wed Dec 16 20:28:46 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Dec 17 00:18:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d32217c

dev-python/tikzplotlib: clean up old

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan  riseup.net>
Signed-off-by: Matt Turner  gentoo.org>

 dev-python/tikzplotlib/Manifest |  1 -
 dev-python/tikzplotlib/tikzplotlib-0.9.4.ebuild | 60 -
 2 files changed, 61 deletions(-)

diff --git a/dev-python/tikzplotlib/Manifest b/dev-python/tikzplotlib/Manifest
index f65d2255fe5..5a84f468a4e 100644
--- a/dev-python/tikzplotlib/Manifest
+++ b/dev-python/tikzplotlib/Manifest
@@ -1,2 +1 @@
-DIST tikzplotlib-0.9.4.tar.gz 588518 BLAKE2B 
3f6ec8b9149ef86e8a0dd551d4aeca4f676df3ca86de8bb9bfbf2abed81afab50adef99752970a40f174258f4d14c245366c5159f241d2cd10f7cebdfd6bbbfb
 SHA512 
0d654dbecc473f5bc20dc128ad55852c3787ddd50cf730ed57b25a25e6a55e79bfd451eb28188d75ac6b61a53a6a6e244bef2ca366dcb636e0d325c74b32d1cd
 DIST tikzplotlib-0.9.6.tar.gz 589081 BLAKE2B 
aacd1374caed3dc86e6a93479b7ed0d0a79a2f96acc3817e630860794dc2f77c0d908d5765ebd500160d8c459b51131645f3633a084627b55aa2f26f5de87add
 SHA512 
447dcd9da8d5cebf68b9f1a1f06d82370d5adf731524ea17c4f570bfd76dfce06e65f92df0ead732a02b42d9bdf6d0fde9e004bff50204cc5e33cca6c014a257

diff --git a/dev-python/tikzplotlib/tikzplotlib-0.9.4.ebuild 
b/dev-python/tikzplotlib/tikzplotlib-0.9.4.ebuild
deleted file mode 100644
index c6df920586b..000
--- a/dev-python/tikzplotlib/tikzplotlib-0.9.4.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 2019-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8,9} )
-
-inherit distutils-r1 virtualx
-
-DESCRIPTION="Convert matplotlib figures into TikZ/PGFPlots"
-HOMEPAGE="https://github.com/nschloe/tikzplotlib;
-SRC_URI="https://github.com/nschloe/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-   app-text/texlive[extra]
-   $( python_gen_cond_dep \
-   'dev-python/importlib_metadata[${PYTHON_USEDEP}]' python3_7 )
-   dev-python/matplotlib[latex,${PYTHON_USEDEP}]
-   dev-python/numpy[${PYTHON_USEDEP}]
-   dev-python/pillow[${PYTHON_USEDEP}]
-"
-
-BDEPEND="
-   dev-python/wheel[${PYTHON_USEDEP}]
-   test? (
-   dev-python/exdown[${PYTHON_USEDEP}]
-   dev-python/pandas[${PYTHON_USEDEP}]
-   dev-python/scipy[${PYTHON_USEDEP}]
-)"
-
-distutils_enable_tests pytest
-distutils_enable_sphinx doc dev-python/mock
-
-python_prepare_all() {
-   # setup.py was removed in commit 
f04323cfa575caf8a25a9236f55fe6baf1a33b20
-   # for some reason, DISTUTULS_USE_SETUPTOOLS="pyproject.toml" is not 
working
-   # it complains about file not found, setup.cfg does exist
-
-   cat > setup.py <

[gentoo-commits] repo/gentoo:master commit in: dev-python/tikzplotlib/

2020-10-14 Thread Joonas Niilola
commit: 8bcdd9c0acdfe1a63c4928ee05d06fc488600280
Author: Andrew Ammerlaan  riseup  net>
AuthorDate: Wed Oct 14 07:52:41 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Wed Oct 14 09:21:12 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bcdd9c0

dev-python/tikzplotlib: add missing use flag on dep

Closes: https://bugs.gentoo.org/748723
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Andrew Ammerlaan  riseup.net>
Closes: https://github.com/gentoo/gentoo/pull/17920
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-python/tikzplotlib/tikzplotlib-0.9.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/tikzplotlib/tikzplotlib-0.9.4.ebuild 
b/dev-python/tikzplotlib/tikzplotlib-0.9.4.ebuild
index 78beb88f005..c6df920586b 100644
--- a/dev-python/tikzplotlib/tikzplotlib-0.9.4.ebuild
+++ b/dev-python/tikzplotlib/tikzplotlib-0.9.4.ebuild
@@ -16,10 +16,10 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86"
 
 RDEPEND="
-   app-text/texlive
+   app-text/texlive[extra]
$( python_gen_cond_dep \
'dev-python/importlib_metadata[${PYTHON_USEDEP}]' python3_7 )
-   dev-python/matplotlib[${PYTHON_USEDEP}]
+   dev-python/matplotlib[latex,${PYTHON_USEDEP}]
dev-python/numpy[${PYTHON_USEDEP}]
dev-python/pillow[${PYTHON_USEDEP}]
 "



[gentoo-commits] repo/gentoo:master commit in: dev-python/tikzplotlib/

2020-10-13 Thread Joonas Niilola
commit: 1a6db0c9050d1304483435daff01a5857525f667
Author: Andrew Ammerlaan  riseup  net>
AuthorDate: Sun Oct  4 20:23:36 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Tue Oct 13 12:06:10 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a6db0c9

dev-python/tikzplotlib: cleanup old

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Andrew Ammerlaan  riseup.net>
Closes: https://github.com/gentoo/gentoo/pull/17773
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-python/tikzplotlib/Manifest |  1 -
 dev-python/tikzplotlib/tikzplotlib-0.9.1.ebuild | 42 -
 dev-python/tikzplotlib/tikzplotlib-0.9.4.ebuild | 10 ++
 3 files changed, 2 insertions(+), 51 deletions(-)

diff --git a/dev-python/tikzplotlib/Manifest b/dev-python/tikzplotlib/Manifest
index 95c27dc5d26..9f399a9f3e4 100644
--- a/dev-python/tikzplotlib/Manifest
+++ b/dev-python/tikzplotlib/Manifest
@@ -1,2 +1 @@
-DIST tikzplotlib-0.9.1.tar.gz 584961 BLAKE2B 
62737db9117c96484de690b26c3f13d5a872a3c70ad4ebe635bcba348dfa7f0eb944b8c469807c4c474351a9fae7db6dd71df82e33ee33cbdd8b1abeb9686e1b
 SHA512 
10f3be8b843ea81d48bd6fad494a7e7a0cc5afd45a96c26be7f4dfbac929bdb3010fd355c6e1ef262273fd0783fc5b5b4a7b41a0c01e18cff5446bb9d96ee2b7
 DIST tikzplotlib-0.9.4.tar.gz 588518 BLAKE2B 
3f6ec8b9149ef86e8a0dd551d4aeca4f676df3ca86de8bb9bfbf2abed81afab50adef99752970a40f174258f4d14c245366c5159f241d2cd10f7cebdfd6bbbfb
 SHA512 
0d654dbecc473f5bc20dc128ad55852c3787ddd50cf730ed57b25a25e6a55e79bfd451eb28188d75ac6b61a53a6a6e244bef2ca366dcb636e0d325c74b32d1cd

diff --git a/dev-python/tikzplotlib/tikzplotlib-0.9.1.ebuild 
b/dev-python/tikzplotlib/tikzplotlib-0.9.1.ebuild
deleted file mode 100644
index d079411a059..000
--- a/dev-python/tikzplotlib/tikzplotlib-0.9.1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6,7} )
-
-inherit distutils-r1 virtualx
-
-DESCRIPTION="Convert matplotlib figures into TikZ/PGFPlots"
-HOMEPAGE="https://github.com/nschloe/tikzplotlib;
-SRC_URI="https://github.com/nschloe/tikzplotlib/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-KEYWORDS="~amd64 ~x86"
-
-LICENSE="MIT"
-SLOT="0"
-
-RDEPEND="
-   dev-python/matplotlib[${PYTHON_USEDEP}]
-   dev-python/numpy[${PYTHON_USEDEP}]
-   dev-python/pillow[${PYTHON_USEDEP}]"
-
-DEPEND="test? (
-   dev-python/pandas[${PYTHON_USEDEP}]
-   dev-python/scipy[${PYTHON_USEDEP}] )"
-
-distutils_enable_tests pytest
-distutils_enable_sphinx doc dev-python/mock
-
-python_prepare_all() {
-   # this test fails: tikz error
-   # cannot mix dimensions and dimensionless values in an ellipse
-   rm test/test_patches.py || die
-
-   distutils-r1_python_prepare_all
-}
-
-python_test() {
-   local -x MPLBACKEND=Agg
-   virtx pytest -vv
-}

diff --git a/dev-python/tikzplotlib/tikzplotlib-0.9.4.ebuild 
b/dev-python/tikzplotlib/tikzplotlib-0.9.4.ebuild
index 95096bfb665..78beb88f005 100644
--- a/dev-python/tikzplotlib/tikzplotlib-0.9.4.ebuild
+++ b/dev-python/tikzplotlib/tikzplotlib-0.9.4.ebuild
@@ -7,19 +7,13 @@ PYTHON_COMPAT=( python3_{7,8,9} )
 
 inherit distutils-r1 virtualx
 
-if [[ ${PV} ==  ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/nschloe/${PN}.git 
git://github.com/nschloe/${PN}.git"
-else
-   SRC_URI="https://github.com/nschloe/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~x86"
-fi
-
 DESCRIPTION="Convert matplotlib figures into TikZ/PGFPlots"
 HOMEPAGE="https://github.com/nschloe/tikzplotlib;
+SRC_URI="https://github.com/nschloe/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
+KEYWORDS="~amd64 ~x86"
 
 RDEPEND="
app-text/texlive



[gentoo-commits] repo/gentoo:master commit in: dev-python/tikzplotlib/

2020-10-13 Thread Joonas Niilola
commit: a7c565e7d167ab8e9b426d9852429dc415fdb000
Author: Andrew Ammerlaan  riseup  net>
AuthorDate: Sun Oct  4 20:23:22 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Tue Oct 13 12:06:09 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7c565e7

dev-python/tikzplotlib: version bump 0.9.4

also bumped the python targets

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Andrew Ammerlaan  riseup.net>
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-python/tikzplotlib/Manifest |  1 +
 dev-python/tikzplotlib/metadata.xml |  8 ++-
 dev-python/tikzplotlib/tikzplotlib-0.9.4.ebuild | 66 +
 3 files changed, 73 insertions(+), 2 deletions(-)

diff --git a/dev-python/tikzplotlib/Manifest b/dev-python/tikzplotlib/Manifest
index 9d2e25fabe2..95c27dc5d26 100644
--- a/dev-python/tikzplotlib/Manifest
+++ b/dev-python/tikzplotlib/Manifest
@@ -1 +1,2 @@
 DIST tikzplotlib-0.9.1.tar.gz 584961 BLAKE2B 
62737db9117c96484de690b26c3f13d5a872a3c70ad4ebe635bcba348dfa7f0eb944b8c469807c4c474351a9fae7db6dd71df82e33ee33cbdd8b1abeb9686e1b
 SHA512 
10f3be8b843ea81d48bd6fad494a7e7a0cc5afd45a96c26be7f4dfbac929bdb3010fd355c6e1ef262273fd0783fc5b5b4a7b41a0c01e18cff5446bb9d96ee2b7
+DIST tikzplotlib-0.9.4.tar.gz 588518 BLAKE2B 
3f6ec8b9149ef86e8a0dd551d4aeca4f676df3ca86de8bb9bfbf2abed81afab50adef99752970a40f174258f4d14c245366c5159f241d2cd10f7cebdfd6bbbfb
 SHA512 
0d654dbecc473f5bc20dc128ad55852c3787ddd50cf730ed57b25a25e6a55e79bfd451eb28188d75ac6b61a53a6a6e244bef2ca366dcb636e0d325c74b32d1cd

diff --git a/dev-python/tikzplotlib/metadata.xml 
b/dev-python/tikzplotlib/metadata.xml
index 50a33145b07..34881f6ec28 100644
--- a/dev-python/tikzplotlib/metadata.xml
+++ b/dev-python/tikzplotlib/metadata.xml
@@ -1,9 +1,13 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
+   
+   andrewammerl...@riseup.net
+   Andrew Ammerlaan
+   

-   s...@gentoo.org
-   Gentoo Science Project
+   proxy-ma...@gentoo.org
+   Proxy Maintainers

tikzplotlib is a Python tool for converting matplotlib 
figures into PGFPlots (TikZ) figures like for native inclusion into LaTeX 
documents. The output of tikzplotlib is in PGFPlots, a LaTeX library that sits 
on top of TikZ and describes graphs in terms of axes, data etc. Consequently, 
the output of tikzplotlib retains more information, can be more easily 
understood, and is more easily editable than raw TikZ output.


diff --git a/dev-python/tikzplotlib/tikzplotlib-0.9.4.ebuild 
b/dev-python/tikzplotlib/tikzplotlib-0.9.4.ebuild
new file mode 100644
index 000..95096bfb665
--- /dev/null
+++ b/dev-python/tikzplotlib/tikzplotlib-0.9.4.ebuild
@@ -0,0 +1,66 @@
+# Copyright 2019-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7,8,9} )
+
+inherit distutils-r1 virtualx
+
+if [[ ${PV} ==  ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/nschloe/${PN}.git 
git://github.com/nschloe/${PN}.git"
+else
+   SRC_URI="https://github.com/nschloe/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~x86"
+fi
+
+DESCRIPTION="Convert matplotlib figures into TikZ/PGFPlots"
+HOMEPAGE="https://github.com/nschloe/tikzplotlib;
+
+LICENSE="MIT"
+SLOT="0"
+
+RDEPEND="
+   app-text/texlive
+   $( python_gen_cond_dep \
+   'dev-python/importlib_metadata[${PYTHON_USEDEP}]' python3_7 )
+   dev-python/matplotlib[${PYTHON_USEDEP}]
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+"
+
+BDEPEND="
+   dev-python/wheel[${PYTHON_USEDEP}]
+   test? (
+   dev-python/exdown[${PYTHON_USEDEP}]
+   dev-python/pandas[${PYTHON_USEDEP}]
+   dev-python/scipy[${PYTHON_USEDEP}]
+)"
+
+distutils_enable_tests pytest
+distutils_enable_sphinx doc dev-python/mock
+
+python_prepare_all() {
+   # setup.py was removed in commit 
f04323cfa575caf8a25a9236f55fe6baf1a33b20
+   # for some reason, DISTUTULS_USE_SETUPTOOLS="pyproject.toml" is not 
working
+   # it complains about file not found, setup.cfg does exist
+
+   cat > setup.py <

[gentoo-commits] repo/gentoo:master commit in: dev-python/tikzplotlib/, dev-python/matplotlib2tikz/, profiles/updates/

2020-02-13 Thread Benda XU
commit: 42b1924a9bd4f433207f0e21a47127bd9b5a7b3f
Author: Andrew Ammerlaan  riseup  net>
AuthorDate: Thu Feb  6 12:18:20 2020 +
Commit: Benda XU  gentoo  org>
CommitDate: Fri Feb 14 02:57:09 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42b1924a

dev-python/tikzplotlib: Version bump 0.9.1

  - Renamed from matplotlib2tikz
  - Added py3_7
  - Fixed IUSE="test"
  - Added IUSE="doc"

  - dev-python/matplotlib2tikz: Renamed to tikzplotlib
  - profile/updates: matplotlib2tikz to tikzplotlib

Closes: https://bugs.gentoo.org/695716
Closes: https://github.com/gentoo/gentoo/pull/14579

Signed-off-by: Benda Xu  gentoo.org>

 dev-python/matplotlib2tikz/Manifest|  1 -
 .../matplotlib2tikz/matplotlib2tikz-0.6.18.ebuild  | 38 
 dev-python/matplotlib2tikz/metadata.xml| 13 ---
 dev-python/tikzplotlib/Manifest|  1 +
 dev-python/tikzplotlib/metadata.xml| 13 +++
 dev-python/tikzplotlib/tikzplotlib-0.9.1.ebuild| 42 ++
 profiles/updates/1Q-2020   |  1 +
 7 files changed, 57 insertions(+), 52 deletions(-)

diff --git a/dev-python/matplotlib2tikz/Manifest 
b/dev-python/matplotlib2tikz/Manifest
deleted file mode 100644
index cebe627c01c..000
--- a/dev-python/matplotlib2tikz/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST matplotlib2tikz-0.6.18.tar.gz 527262 BLAKE2B 
370a1e088a17a98afd29e1e465c93b98b10100c85a277be3130f5c39bc236a9efab9241f9edffdbd430f9645cba4ff00ebda73dddeda024e3f545b21e548e786
 SHA512 
e12db2dd54a2145e1d66e19158c8a9305243beea60add0559959d801d319c43a28aa779048764d2adf29f878f7ccca9b2363bbc5034135a9d9002a8815fe37ab

diff --git a/dev-python/matplotlib2tikz/matplotlib2tikz-0.6.18.ebuild 
b/dev-python/matplotlib2tikz/matplotlib2tikz-0.6.18.ebuild
deleted file mode 100644
index f0038878e87..000
--- a/dev-python/matplotlib2tikz/matplotlib2tikz-0.6.18.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_6 )
-
-inherit distutils-r1 virtualx
-
-DESCRIPTION="Convert matplotlib figures into TikZ/PGFPlots"
-HOMEPAGE="https://github.com/nschloe/matplotlib2tikz;
-SRC_URI="https://github.com/nschloe/matplotlib2tikz/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-KEYWORDS="~amd64"
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="test"
-
-RDEPEND="
-   dev-python/matplotlib[${PYTHON_USEDEP}]
-   dev-python/numpy[${PYTHON_USEDEP}]
-   dev-python/pillow[${PYTHON_USEDEP}]
-   dev-python/six[${PYTHON_USEDEP}]"
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-   test? (
-   ${RDEPEND}
-   dev-python/ImageHash[${PYTHON_USEDEP}]
-   dev-python/pytest[${PYTHON_USEDEP}]
-   dev-tex/pgf
-   )"
-
-# we have not succeeded in getting the tests to work yet ;-)
-RESTRICT="test"
-
-python_test() {
-   local -x MPLBACKEND=Agg
-   virtx py.test -v
-}

diff --git a/dev-python/matplotlib2tikz/metadata.xml 
b/dev-python/matplotlib2tikz/metadata.xml
deleted file mode 100644
index 1d946eedff0..000
--- a/dev-python/matplotlib2tikz/metadata.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   s...@gentoo.org
-   Gentoo Science Project
-   
-   matplotlib2tikz is a Python tool for converting 
matplotlib figures into PGFPlots (TikZ) figures like for native inclusion into 
LaTeX documents. The output of matplotlib2tikz is in PGFPlots, a LaTeX library 
that sits on top of TikZ and describes graphs in terms of axes, data etc. 
Consequently, the output of matplotlib2tikz retains more information, can be 
more easily understood, and is more easily editable than raw TikZ 
output.
-   
-   nschloe/matplotlib2tikz
-   matplotlib2tikz
-   
-

diff --git a/dev-python/tikzplotlib/Manifest b/dev-python/tikzplotlib/Manifest
new file mode 100644
index 000..9d2e25fabe2
--- /dev/null
+++ b/dev-python/tikzplotlib/Manifest
@@ -0,0 +1 @@
+DIST tikzplotlib-0.9.1.tar.gz 584961 BLAKE2B 
62737db9117c96484de690b26c3f13d5a872a3c70ad4ebe635bcba348dfa7f0eb944b8c469807c4c474351a9fae7db6dd71df82e33ee33cbdd8b1abeb9686e1b
 SHA512 
10f3be8b843ea81d48bd6fad494a7e7a0cc5afd45a96c26be7f4dfbac929bdb3010fd355c6e1ef262273fd0783fc5b5b4a7b41a0c01e18cff5446bb9d96ee2b7

diff --git a/dev-python/tikzplotlib/metadata.xml 
b/dev-python/tikzplotlib/metadata.xml
new file mode 100644
index 000..50a33145b07
--- /dev/null
+++ b/dev-python/tikzplotlib/metadata.xml
@@ -0,0 +1,13 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   s...@gentoo.org
+   Gentoo Science Project
+   
+   tikzplotlib is a Python tool for converting matplotlib 
figures into PGFPlots (TikZ) figures like for native inclusion into LaTeX 
documents. The output of tikzplotlib is in PGFPlots, a LaTeX