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/matplotlib2tikz/
Date: Fri, 16 Feb 2018 18:49:49
Message-Id: 1518806979.0073648ec4e5e74a3535a1a1e79b78355137c7d3.mgorny@gentoo
1 commit: 0073648ec4e5e74a3535a1a1e79b78355137c7d3
2 Author: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
3 AuthorDate: Sat Feb 10 11:04:41 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 16 18:49:39 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0073648e
7
8 dev-python/matplotlib2tikz: Drop old
9
10 Closes: https://github.com/gentoo/gentoo/pull/7144
11 Package-Manager: Portage-2.3.13, Repoman-2.3.3
12
13 dev-python/matplotlib2tikz/Manifest | 1 -
14 .../matplotlib2tikz/matplotlib2tikz-0.6.14.ebuild | 37 ----------------------
15 2 files changed, 38 deletions(-)
16
17 diff --git a/dev-python/matplotlib2tikz/Manifest b/dev-python/matplotlib2tikz/Manifest
18 index 30cbb805d65..b7484d46c66 100644
19 --- a/dev-python/matplotlib2tikz/Manifest
20 +++ b/dev-python/matplotlib2tikz/Manifest
21 @@ -1,2 +1 @@
22 -DIST matplotlib2tikz-0.6.14.tar.gz 525576 BLAKE2B e8190eca79b1b8fd1ae2852984ff2e5740b945fe541a39449906fb9da7cfa3a8be0a5ad8e22a6a35ce9e687e0c9a091a776a1e2534836b35ef48aa980eb46ccb SHA512 d69b5bbb3e5aa298fe38ca0599436e12a8cf7628936fc24a641fff38b4429e1117f2f239fc41338e8459f8be1be55d7607808ad171bc256eff1f76a69079ac1a
23 DIST matplotlib2tikz-0.6.15.tar.gz 526046 BLAKE2B 4cc3585fe1a83c563fd00928843a16b4ba1ab2fecf8b662beaf40cd9e0211fb4fdb09c4bc4c1f110452621cf5d92f86bb492d0838be20693b86c3b4e9bd73566 SHA512 1f5b05319090d74fbd7ec99ad0e3f236f44107de2381d69e423f5878ba4c7666caca46ab87ae187f52f3ffa907cc4d75018b2ce6c9bcef44062e369f9a26be11
24
25 diff --git a/dev-python/matplotlib2tikz/matplotlib2tikz-0.6.14.ebuild b/dev-python/matplotlib2tikz/matplotlib2tikz-0.6.14.ebuild
26 deleted file mode 100644
27 index 28505b0459e..00000000000
28 --- a/dev-python/matplotlib2tikz/matplotlib2tikz-0.6.14.ebuild
29 +++ /dev/null
30 @@ -1,37 +0,0 @@
31 -# Copyright 1999-2017 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 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
54 - test? (
55 - ${RDEPEND}
56 - dev-python/ImageHash[${PYTHON_USEDEP}]
57 - dev-python/pytest[${PYTHON_USEDEP}]
58 - dev-tex/pgf
59 - )"
60 -
61 -# we have not succeeded in getting the tests to work yet ;-)
62 -RESTRICT="test"
63 -
64 -python_test() {
65 - local -x MPLBACKEND=Agg
66 - virtx py.test -v || die "Tests failed with ${EPYTHON}"
67 -}