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: Tue, 01 Nov 2022 18:49:07
Message-Id: 1667328439.6e75c3a451c3d3b1f5d98b81e776929cc6bc2426.conikost@gentoo
1 commit: 6e75c3a451c3d3b1f5d98b81e776929cc6bc2426
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 1 14:30:18 2022 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 1 18:47:19 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e75c3a4
7
8 sys-apps/hw-probe: drop 1.6.4
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.4.ebuild | 63 ---------------------------------
14 2 files changed, 64 deletions(-)
15
16 diff --git a/sys-apps/hw-probe/Manifest b/sys-apps/hw-probe/Manifest
17 index 236f7de72729..7202da398968 100644
18 --- a/sys-apps/hw-probe/Manifest
19 +++ b/sys-apps/hw-probe/Manifest
20 @@ -1,2 +1 @@
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.4.ebuild b/sys-apps/hw-probe/hw-probe-1.6.4.ebuild
25 deleted file mode 100644
26 index 49411921e683..000000000000
27 --- a/sys-apps/hw-probe/hw-probe-1.6.4.ebuild
28 +++ /dev/null
29 @@ -1,63 +0,0 @@
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 -}