Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python3-xapp/
Date: Fri, 21 Jan 2022 17:15:45
Message-Id: 1642785310.5a1e1385073c056e501c919fa935e4df12c8a60b.sam@gentoo
1 commit: 5a1e1385073c056e501c919fa935e4df12c8a60b
2 Author: Matthew S. Turnbull <sparky <AT> bluefang-logic <DOT> com>
3 AuthorDate: Tue Dec 28 21:51:39 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 21 17:15:10 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a1e1385
7
8 dev-python/python3-xapp: Add Python 3.10 support
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Matthew S. Turnbull <sparky <AT> bluefang-logic.com>
12 Signed-off-by: Sam James <sam <AT> gentoo.org>
13
14 .../python3-xapp/python3-xapp-2.2.1-r1.ebuild | 25 ++++++++++++++++++++++
15 1 file changed, 25 insertions(+)
16
17 diff --git a/dev-python/python3-xapp/python3-xapp-2.2.1-r1.ebuild b/dev-python/python3-xapp/python3-xapp-2.2.1-r1.ebuild
18 new file mode 100644
19 index 000000000000..7e90cea1c5e6
20 --- /dev/null
21 +++ b/dev-python/python3-xapp/python3-xapp-2.2.1-r1.ebuild
22 @@ -0,0 +1,25 @@
23 +# Copyright 1999-2021 Gentoo Authors
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI=7
27 +
28 +PYTHON_COMPAT=( python3_{7,8,9,10} )
29 +
30 +inherit distutils-r1
31 +
32 +DESCRIPTION="Python bindings for x11-libs/xapp"
33 +HOMEPAGE="https://github.com/linuxmint/python3-xapp"
34 +SRC_URI="https://github.com/linuxmint/python3-xapp/archive/${PV}.tar.gz -> ${P}.tar.gz"
35 +
36 +LICENSE="LGPL-2"
37 +SLOT="0"
38 +KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
39 +IUSE=""
40 +
41 +DEPEND="
42 + >=x11-libs/xapp-2.2.0[introspection]
43 +"
44 +RDEPEND="
45 + ${DEPEND}
46 + dev-python/psutil[${PYTHON_USEDEP}]
47 +"