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/matplotlib-inline/
Date: Wed, 23 Feb 2022 21:30:20
Message-Id: 1645651798.c858f990e7bf28ce49247f83ebd4e5d32b25e5ac.mgorny@gentoo
1 commit: c858f990e7bf28ce49247f83ebd4e5d32b25e5ac
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 23 20:40:18 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 23 21:29:58 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c858f990
7
8 dev-python/matplotlib-inline: Migrate to PEP517 build
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 .../matplotlib-inline-0.1.3-r1.ebuild | 25 ++++++++++++++++++++++
13 1 file changed, 25 insertions(+)
14
15 diff --git a/dev-python/matplotlib-inline/matplotlib-inline-0.1.3-r1.ebuild b/dev-python/matplotlib-inline/matplotlib-inline-0.1.3-r1.ebuild
16 new file mode 100644
17 index 000000000000..ddc247e6a9b8
18 --- /dev/null
19 +++ b/dev-python/matplotlib-inline/matplotlib-inline-0.1.3-r1.ebuild
20 @@ -0,0 +1,25 @@
21 +# Copyright 2021-2022 Gentoo Authors
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=8
25 +
26 +DISTUTILS_USE_PEP517=setuptools
27 +PYTHON_COMPAT=( python3_{8..10} )
28 +
29 +inherit distutils-r1
30 +
31 +DESCRIPTION="Inline Matplotlib backend for Jupyter"
32 +HOMEPAGE="https://github.com/ipython/matplotlib-inline/"
33 +SRC_URI="
34 + https://github.com/ipython/matplotlib-inline/archive/${PV}.tar.gz
35 + -> ${P}.gh.tar.gz
36 +"
37 +
38 +LICENSE="BSD"
39 +SLOT="0"
40 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
41 +
42 +RDEPEND="
43 + dev-python/matplotlib[${PYTHON_USEDEP}]
44 + dev-python/traitlets[${PYTHON_USEDEP}]
45 +"