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/mpdlcd/
Date: Thu, 01 Jul 2021 21:16:07
Message-Id: 1625174126.991e3fb9d306af3b78241c60bdec455532a9affe.conikost@gentoo
1 commit: 991e3fb9d306af3b78241c60bdec455532a9affe
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 1 20:35:12 2021 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 1 21:15:26 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=991e3fb9
7
8 dev-python/mpdlcd: add python3.10 support
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
12
13 dev-python/mpdlcd/mpdlcd-0.5.2.ebuild | 7 +++----
14 1 file changed, 3 insertions(+), 4 deletions(-)
15
16 diff --git a/dev-python/mpdlcd/mpdlcd-0.5.2.ebuild b/dev-python/mpdlcd/mpdlcd-0.5.2.ebuild
17 index 62b00006e88..5bc7994d2cb 100644
18 --- a/dev-python/mpdlcd/mpdlcd-0.5.2.ebuild
19 +++ b/dev-python/mpdlcd/mpdlcd-0.5.2.ebuild
20 @@ -1,15 +1,16 @@
21 -# Copyright 1999-2020 Gentoo Authors
22 +# Copyright 1999-2021 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 EAPI=7
26
27 -PYTHON_COMPAT=( python3_{7..9} )
28 +PYTHON_COMPAT=( python3_{8..10} )
29
30 inherit distutils-r1
31
32 DESCRIPTION="A small tool to display the MPD status on a LCDproc server."
33 HOMEPAGE="https://github.com/rbarrois/mpdlcd"
34 SRC_URI="https://github.com/rbarrois/${PN}/archive/${P}.tar.gz"
35 +S="${WORKDIR}/${PN}-${P}"
36
37 LICENSE="BSD"
38 SLOT="0"
39 @@ -17,8 +18,6 @@ KEYWORDS="amd64 x86"
40
41 RDEPEND="dev-python/python-mpd"
42
43 -S="${WORKDIR}/${PN}-${P}"
44 -
45 distutils_enable_tests pytest
46
47 python_install_all() {