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: Tue, 09 Jan 2018 02:01:02
Message-Id: 1515428148.65c4b0afe033cb8a0d92da427d3dfdab01e7fc6e.radhermit@gentoo
1 commit: 65c4b0afe033cb8a0d92da427d3dfdab01e7fc6e
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 8 15:49:11 2018 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 8 16:15:48 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65c4b0af
7
8 dev-python/py-cpuinfo: version bump to 3.3.0
9
10 dev-python/py-cpuinfo/Manifest | 1 +
11 dev-python/py-cpuinfo/py-cpuinfo-3.3.0.ebuild | 27 +++++++++++++++++++++++++++
12 2 files changed, 28 insertions(+)
13
14 diff --git a/dev-python/py-cpuinfo/Manifest b/dev-python/py-cpuinfo/Manifest
15 index 3d6d39a0ade..44976f5dd19 100644
16 --- a/dev-python/py-cpuinfo/Manifest
17 +++ b/dev-python/py-cpuinfo/Manifest
18 @@ -1 +1,2 @@
19 DIST py-cpuinfo-3.2.0.tar.gz 76019 BLAKE2B 2a0969911b385e51ead94a92b89a21bf6ebd6a49ce5229329265ec0611fabe1180cf4ac617c1786ab25605fbf11463e85d74a02195cf01ebc40a5f8d1350f83a SHA512 737d5a73d6991ce5cb99125951a75492f48177030986270bbe7dcc0efb4e3200c9957bfbe51bd5a7555bfa8e62db68c3a5227e47e5e6bb2115ff2c10c0bfb688
20 +DIST py-cpuinfo-3.3.0.tar.gz 76052 BLAKE2B ffa9d53ccca034b8b4707cc60c8c38b66bd76101e4c6c8d8bf5de743904270a4b9236c0f03192336c2fb32fefb665c5a6d5587639a408ff0bb9183b33f9c3ce7 SHA512 b31ebfb0f066303813d699a7aa5bd5b8d4e0b3b6e8422dfb4aa53c5b64d2234c5275fc293b3eb3ee72752691e023dc94fc013ccf6a0251d307c4b10619135524
21
22 diff --git a/dev-python/py-cpuinfo/py-cpuinfo-3.3.0.ebuild b/dev-python/py-cpuinfo/py-cpuinfo-3.3.0.ebuild
23 new file mode 100644
24 index 00000000000..308eee31c50
25 --- /dev/null
26 +++ b/dev-python/py-cpuinfo/py-cpuinfo-3.3.0.ebuild
27 @@ -0,0 +1,27 @@
28 +# Copyright 1999-2018 Gentoo Foundation
29 +# Distributed under the terms of the GNU General Public License v2
30 +
31 +EAPI=6
32 +
33 +PYTHON_COMPAT=( python{2_7,3_{4,5,6}} pypy pypy3 )
34 +
35 +inherit distutils-r1
36 +
37 +DESCRIPTION="Get CPU info with pure Python 2 & 3"
38 +HOMEPAGE="https://github.com/workhorsy/py-cpuinfo https://pypi.python.org/pypi/py-cpuinfo"
39 +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
40 +
41 +LICENSE="MIT"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
44 +IUSE=""
45 +
46 +RDEPEND=""
47 +DEPEND="${RDEPEND}
48 + dev-python/setuptools[${PYTHON_USEDEP}]"
49 +
50 +DOCS=( ChangeLog )
51 +
52 +python_test() {
53 + "${PYTHON}" test_suite.py -v || die
54 +}