Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/x86info/
Date: Sat, 29 Jan 2022 13:05:47
Message-Id: 1643461531.eb96f1f35bb76c5c24292b68f6d5ce5fb81e5447.soap@gentoo
1 commit: eb96f1f35bb76c5c24292b68f6d5ce5fb81e5447
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 29 13:05:31 2022 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 29 13:05:31 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb96f1f3
7
8 sys-apps/x86info: add py3.9/py3.10
9
10 Closes: https://bugs.gentoo.org/832255
11 Signed-off-by: David Seifert <soap <AT> gentoo.org>
12
13 sys-apps/x86info/x86info-1.30_p20190617.ebuild | 16 ++++++++--------
14 1 file changed, 8 insertions(+), 8 deletions(-)
15
16 diff --git a/sys-apps/x86info/x86info-1.30_p20190617.ebuild b/sys-apps/x86info/x86info-1.30_p20190617.ebuild
17 index f56ec2fe5718..af2a213c7833 100644
18 --- a/sys-apps/x86info/x86info-1.30_p20190617.ebuild
19 +++ b/sys-apps/x86info/x86info-1.30_p20190617.ebuild
20 @@ -1,17 +1,19 @@
21 -# Copyright 1999-2020 Gentoo Authors
22 +# Copyright 1999-2022 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 -EAPI=7
26 +EAPI=8
27
28 -PYTHON_COMPAT=( python3_{7..8} )
29 +PYTHON_COMPAT=( python3_{8..10} )
30
31 inherit flag-o-matic linux-info python-any-r1 toolchain-funcs
32
33 -DESCRIPTION="Dave Jones' handy, informative x86 CPU diagnostic utility"
34 -HOMEPAGE="http://www.codemonkey.org.uk/projects/x86info/"
35 # Upstream stopped versioned releases entirely
36 COMMIT="8ea5ed19fae1d209eba9257171a10f7afd474618"
37 +
38 +DESCRIPTION="Dave Jones' handy, informative x86 CPU diagnostic utility"
39 +HOMEPAGE="http://www.codemonkey.org.uk/projects/x86info/"
40 SRC_URI="https://github.com/kernelslacker/x86info/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
41 +S="${WORKDIR}/${PN}-${COMMIT}"
42
43 LICENSE="GPL-2"
44 SLOT="0"
45 @@ -23,15 +25,13 @@ BDEPEND="
46 ${PYTHON_DEPS}
47 virtual/pkgconfig"
48
49 -CONFIG_CHECK="~MTRR ~X86_CPUID"
50 -S="${WORKDIR}/${PN}-${COMMIT}"
51 -
52 PATCHES=(
53 "${FILESDIR}"/${PN}-1.30-pic.patch #270388
54 "${FILESDIR}"/${PN}-1.30-makefile.patch
55 )
56
57 pkg_setup() {
58 + CONFIG_CHECK="~MTRR ~X86_CPUID"
59 linux-info_pkg_setup
60 python-any-r1_pkg_setup
61 }