Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-sense-hat/
Date: Mon, 24 Aug 2020 22:34:01
Message-Id: 1598308374.91a4827b4428bf94d7018c6b67e53730a4789739.conikost@gentoo
1 commit: 91a4827b4428bf94d7018c6b67e53730a4789739
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 24 21:01:38 2020 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 24 22:32:54 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91a4827b
7
8 dev-python/python-sense-hat: add python3.9 support
9
10 Also updated deps
11
12 Package-Manager: Portage-3.0.4, Repoman-3.0.1
13 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
14
15 .../python-sense-hat-2.2.0-r2.ebuild | 25 ++++++++++++++++++++++
16 1 file changed, 25 insertions(+)
17
18 diff --git a/dev-python/python-sense-hat/python-sense-hat-2.2.0-r2.ebuild b/dev-python/python-sense-hat/python-sense-hat-2.2.0-r2.ebuild
19 new file mode 100644
20 index 00000000000..eee4918e1a4
21 --- /dev/null
22 +++ b/dev-python/python-sense-hat/python-sense-hat-2.2.0-r2.ebuild
23 @@ -0,0 +1,25 @@
24 +# Copyright 1999-2020 Gentoo Authors
25 +# Distributed under the terms of the GNU General Public License v2
26 +
27 +EAPI=7
28 +
29 +DISTUTILS_USE_SETUPTOOLS="bdepend"
30 +PYTHON_COMPAT=( python3_{6..9} )
31 +
32 +inherit distutils-r1
33 +
34 +DESCRIPTION="Raspberry Pi Sense HAT python library"
35 +HOMEPAGE="https://github.com/RPi-Distro/python-sense-hat"
36 +SRC_URI="https://github.com/RPi-Distro/python-sense-hat/archive/v${PV}.tar.gz -> ${P}.tar.gz"
37 +
38 +LICENSE="BSD"
39 +SLOT="0"
40 +KEYWORDS="arm arm64"
41 +
42 +RDEPEND="
43 + dev-python/numpy[${PYTHON_USEDEP}]
44 + dev-python/pillow[${PYTHON_USEDEP}]
45 + dev-python/rtimulib[${PYTHON_USEDEP}]
46 +"
47 +
48 +DEPEND="${RDEPEND}"