Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/py-cpuinfo/
Date: Mon, 03 Feb 2020 22:18:57
Message-Id: 1580768176.bfa77d73279cbcb82dcf63cce739272834209574.radhermit@gentoo
1 commit: bfa77d73279cbcb82dcf63cce739272834209574
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 3 22:14:18 2020 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 3 22:16:16 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bfa77d73
7
8 dev-python/py-cpuinfo: add py38 support and fix setuptools dep
9
10 Signed-off-by: Tim Harder <radhermit <AT> gentoo.org>
11
12 dev-python/py-cpuinfo/py-cpuinfo-5.0.0-r1.ebuild | 22 ++++++++++++++++++++++
13 1 file changed, 22 insertions(+)
14
15 diff --git a/dev-python/py-cpuinfo/py-cpuinfo-5.0.0-r1.ebuild b/dev-python/py-cpuinfo/py-cpuinfo-5.0.0-r1.ebuild
16 new file mode 100644
17 index 00000000000..5c322340dc0
18 --- /dev/null
19 +++ b/dev-python/py-cpuinfo/py-cpuinfo-5.0.0-r1.ebuild
20 @@ -0,0 +1,22 @@
21 +# Copyright 1999-2020 Gentoo Authors
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=7
25 +
26 +PYTHON_COMPAT=( python3_{6,7,8} pypy3 )
27 +DISTUTILS_USE_SETUPTOOLS=rdepend
28 +
29 +inherit distutils-r1
30 +
31 +DESCRIPTION="Get CPU info with pure Python 2 & 3"
32 +HOMEPAGE="https://github.com/workhorsy/py-cpuinfo https://pypi.org/project/py-cpuinfo/"
33 +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
34 +
35 +LICENSE="MIT"
36 +SLOT="0"
37 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
38 +IUSE=""
39 +
40 +distutils_enable_tests setup.py
41 +
42 +DOCS=( ChangeLog )