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: Sat, 01 Oct 2022 23:34:37
Message-Id: 1664667256.6178165e223acdba9352c6b7ce2cc727561dfb20.conikost@gentoo
1 commit: 6178165e223acdba9352c6b7ce2cc727561dfb20
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 1 23:34:16 2022 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 1 23:34:16 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6178165e
7
8 sys-apps/hw-probe: add 1.6.5
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.5.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 cf47cb22e1d0..236f7de72729 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.4.tar.gz 162317 BLAKE2B 5fc5ddf032c6b2504430349089d95be5310a7ac7752a2b6c3c504240dae6572ee773f8360d6449e9122b20de904a7348a2bdc0af660de44f14cf37b16664ef2a SHA512 c812ebdb23f6b8a4df2f2849a29ecc1307c09f758aeb912face6e899510af69f9dee606fb0ff1807a6de1e89a5f7a8b3259b894cc823b9d25efbf26accf60ac4
22 +DIST hw-probe-1.6.5.tar.gz 163190 BLAKE2B 1d2ceb152d387018f427cd623897f8c4cc8828a6952c54bb9caa673797ac347b64d9daffcddeca16e8274e5ad42c2cff22efe3330209da1eee5476636167f0ad SHA512 68d6709ca4efe82e0e5de3b580c68f76fa31384af0c53645b6609cee14b944a410e58b12ac13f879d8d86220c1088cfaad17dc6edd24cf27700e449add6f6488
23
24 diff --git a/sys-apps/hw-probe/hw-probe-1.6.5.ebuild b/sys-apps/hw-probe/hw-probe-1.6.5.ebuild
25 new file mode 100644
26 index 000000000000..89965032f4b0
27 --- /dev/null
28 +++ b/sys-apps/hw-probe/hw-probe-1.6.5.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 +}