Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/matplotlib2tikz/
Date: Tue, 29 May 2018 08:00:48
Message-Id: 1527580826.9fc066ac05f1cc48898741309177e17ae0a243cf.soap@gentoo
1 commit: 9fc066ac05f1cc48898741309177e17ae0a243cf
2 Author: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
3 AuthorDate: Mon May 28 06:22:01 2018 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Tue May 29 08:00:26 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fc066ac
7
8 dev-python/matplotlib2tikz: Version bump to 0.6.17
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11 Closes: https://github.com/gentoo/gentoo/pull/8629
12
13 dev-python/matplotlib2tikz/Manifest | 1 +
14 .../matplotlib2tikz/matplotlib2tikz-0.6.17.ebuild | 38 ++++++++++++++++++++++
15 2 files changed, 39 insertions(+)
16
17 diff --git a/dev-python/matplotlib2tikz/Manifest b/dev-python/matplotlib2tikz/Manifest
18 index b7484d46c66..dfa67eb3820 100644
19 --- a/dev-python/matplotlib2tikz/Manifest
20 +++ b/dev-python/matplotlib2tikz/Manifest
21 @@ -1 +1,2 @@
22 DIST matplotlib2tikz-0.6.15.tar.gz 526046 BLAKE2B 4cc3585fe1a83c563fd00928843a16b4ba1ab2fecf8b662beaf40cd9e0211fb4fdb09c4bc4c1f110452621cf5d92f86bb492d0838be20693b86c3b4e9bd73566 SHA512 1f5b05319090d74fbd7ec99ad0e3f236f44107de2381d69e423f5878ba4c7666caca46ab87ae187f52f3ffa907cc4d75018b2ce6c9bcef44062e369f9a26be11
23 +DIST matplotlib2tikz-0.6.17.tar.gz 526409 BLAKE2B 704ede0539aeb9668b4c1534b6dd13bb2a5bc18e7861bfdbe2e9002cc5a8b8c4639ac77384e1249c52ef33e04986b85f27dc5219e9c9c7c8b7b03cb5a7bf586c SHA512 9a8f34a69147271bb252a4e04bc5ce27c39fc976c29d1530df109287bbfd163f37a3b5f3d6a03def962e06c2a69e7d256028b12372847fbe14459cc664eca199
24
25 diff --git a/dev-python/matplotlib2tikz/matplotlib2tikz-0.6.17.ebuild b/dev-python/matplotlib2tikz/matplotlib2tikz-0.6.17.ebuild
26 new file mode 100644
27 index 00000000000..6aaaf8cd6d9
28 --- /dev/null
29 +++ b/dev-python/matplotlib2tikz/matplotlib2tikz-0.6.17.ebuild
30 @@ -0,0 +1,38 @@
31 +# Copyright 1999-2018 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +PYTHON_COMPAT=( python2_7 python3_{4,5} )
37 +
38 +inherit distutils-r1 virtualx
39 +
40 +DESCRIPTION="Convert matplotlib figures into TikZ/PGFPlots"
41 +HOMEPAGE="https://github.com/nschloe/matplotlib2tikz"
42 +SRC_URI="https://github.com/nschloe/matplotlib2tikz/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 +KEYWORDS="~amd64"
44 +
45 +LICENSE="MIT"
46 +SLOT="0"
47 +IUSE="test"
48 +
49 +RDEPEND="
50 + dev-python/matplotlib[${PYTHON_USEDEP}]
51 + dev-python/numpy[${PYTHON_USEDEP}]
52 + dev-python/pillow[${PYTHON_USEDEP}]
53 + dev-python/six[${PYTHON_USEDEP}]"
54 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
55 + test? (
56 + ${RDEPEND}
57 + dev-python/ImageHash[${PYTHON_USEDEP}]
58 + dev-python/pytest[${PYTHON_USEDEP}]
59 + dev-tex/pgf
60 + )"
61 +
62 +# we have not succeeded in getting the tests to work yet ;-)
63 +RESTRICT="test"
64 +
65 +python_test() {
66 + local -x MPLBACKEND=Agg
67 + virtx py.test -v || die "Tests failed with ${EPYTHON}"
68 +}