Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/hw-probe/
Date: Mon, 28 Mar 2022 17:04:31
Message-Id: 1648487024.090dad68f3f630c60985b077431c1a4e5f380cc4.conikost@gentoo
1 commit: 090dad68f3f630c60985b077431c1a4e5f380cc4
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Mon Mar 28 17:03:44 2022 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Mon Mar 28 17:03:44 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=090dad68
7
8 sys-apps/hw-probe: add 1.6.3
9
10 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
11
12 sys-apps/hw-probe/Manifest | 1 +
13 sys-apps/hw-probe/hw-probe-1.6.3.ebuild | 63 +++++++++++++++++++++++++++++++++
14 2 files changed, 64 insertions(+)
15
16 diff --git a/sys-apps/hw-probe/Manifest b/sys-apps/hw-probe/Manifest
17 index a9311d02120d..16fe42a46a1c 100644
18 --- a/sys-apps/hw-probe/Manifest
19 +++ b/sys-apps/hw-probe/Manifest
20 @@ -1 +1,2 @@
21 DIST hw-probe-1.6.2.tar.gz 163183 BLAKE2B f9b8d405e59f7799dd665b62362fe8f2b9fe45491d43249ab61ef0fa5ea4d83671ac0dbeef622c68f7c581eef8cd3aa33e6c8bbd46d5488a9c1f4781c820453d SHA512 8a7bf5254f24cc3a1ca19039a00de312f1400f34eaa0459fbff665221940abf60396e5d9e95b4a021e7f5fb9c54254b8c50d0d0b125fc60a0a7f5c7a57edf68c
22 +DIST hw-probe-1.6.3.tar.gz 161938 BLAKE2B b4c43846411452a580ec4ea1743d3779fdfcf74636c62be5d66bbebe087a6355141f73b3da500cc36eba4dfba322ce19931cfd7023b395134b2fad940785cbff SHA512 b9898603b3bc15bc9d26be8511e64a776b51c8bfdfa6b62d5ca550d2663df8a7a2e3f423023ad8b221b0bc81ac413266ecd9e5fed618dc9967994523dcc7dd0a
23
24 diff --git a/sys-apps/hw-probe/hw-probe-1.6.3.ebuild b/sys-apps/hw-probe/hw-probe-1.6.3.ebuild
25 new file mode 100644
26 index 000000000000..89965032f4b0
27 --- /dev/null
28 +++ b/sys-apps/hw-probe/hw-probe-1.6.3.ebuild
29 @@ -0,0 +1,63 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +inherit optfeature readme.gentoo-r1
36 +
37 +DESCRIPTION="A tool to probe for hardware, check it's operability and find drivers"
38 +HOMEPAGE="https://github.com/linuxhw/hw-probe/"
39 +SRC_URI="https://github.com/linuxhw/hw-probe/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
40 +
41 +LICENSE="LGPL-2.1+"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~arm64 ~x86"
44 +
45 +RDEPEND="
46 + dev-lang/perl
47 + dev-perl/Digest-SHA1
48 + net-misc/curl
49 + sys-apps/dmidecode
50 + sys-apps/edid-decode
51 + sys-apps/hwinfo
52 + sys-apps/pciutils
53 + sys-apps/smartmontools
54 + sys-apps/usbutils
55 + virtual/perl-Data-Dumper
56 +"
57 +
58 +src_compile() {
59 + :;
60 +}
61 +
62 +src_install() {
63 + default
64 +
65 + readme.gentoo_create_doc
66 +}
67 +
68 +pkg_postinst() {
69 + readme.gentoo_print_elog
70 +
71 + optfeature "showing Machine Check Exceptions." app-admin/mcelog
72 + optfeature "showing additional I/O statistics." app-admin/sysstat
73 + optfeature "showing display data channel (ddc) information." app-misc/ddcutil
74 + optfeature "showing smart card (reader) information." dev-libs/opensc
75 + optfeature "showing Vulkan GPU hardware information." dev-util/vulkan-tools
76 + optfeature "showing information of attached scanners." media-gfx/sane-backends
77 + optfeature "showing GPU information provided by MESA." media-libs/mesa
78 + optfeature "showing zeroconf statistics." net-dns/avahi
79 + optfeature "showing HP printer statistics." net-print/hplip
80 + optfeature "showing status about rfkill switches on communication devices." net-wireless/rfkill
81 + optfeature "showing additional CPU capabilities." sys-apps/cpuid
82 + optfeature "showing hard disk (HDD, SSD, ..) capabilities." sys-apps/hdparm
83 + optfeature "showing available I2C sensors." sys-apps/i2c-tools
84 + optfeature "showing additional hardware and system information detected by inxi." sys-apps/inxi
85 + optfeature "showing information about tested memory for faults." sys-apps/memtester
86 + optfeature "showing 'Plug & Play' devices." sys-apps/pnputils
87 + optfeature "showing systemd boot process information." sys-apps/systemd
88 + optfeature "showing ACPI statistics and tables." sys-power/iasl
89 + optfeature "showing information about NUMA." sys-process/numactl
90 + optfeature "showing additional GPU information provided by MESA progs." x11-apps/mesa-progs
91 + optfeature "showing available Xinput devices." x11-apps/xinput
92 +}