diff options
author | 2025-01-27 22:52:52 +0100 | |
---|---|---|
committer | 2025-01-27 22:52:52 +0100 | |
commit | aba219d6d97b890d71f27d1d08b1feeac6a1646a (patch) | |
tree | a80b84a21584b642cf5593a36ad6a34b770bfcec | |
parent | dev-python/jaconv: Stabilize 0.4.0 amd64, #948884 (diff) | |
download | gentoo-aba219d6d97b890d71f27d1d08b1feeac6a1646a.tar.gz gentoo-aba219d6d97b890d71f27d1d08b1feeac6a1646a.tar.bz2 gentoo-aba219d6d97b890d71f27d1d08b1feeac6a1646a.zip |
sys-apps/hw-probe: add 1.6.6
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
-rw-r--r-- | sys-apps/hw-probe/Manifest | 1 | ||||
-rw-r--r-- | sys-apps/hw-probe/hw-probe-1.6.6.ebuild | 63 |
2 files changed, 64 insertions, 0 deletions
diff --git a/sys-apps/hw-probe/Manifest b/sys-apps/hw-probe/Manifest index f336481c7867..a2ba7fde893e 100644 --- a/sys-apps/hw-probe/Manifest +++ b/sys-apps/hw-probe/Manifest @@ -1 +1,2 @@ DIST hw-probe-1.6.5_p20230812.tar.gz 166015 BLAKE2B 1c5e3ab58aa28e1d5a757d75e8b462b7eaf3da1eb4baca308c681000b95c333e8ea3141b9af2a28e8453a449ea38cca9f5239996e216c0c7dfc4414fc8781b8a SHA512 633cda1e1d6a3104587b6ebf4faad98526e0d6daec5e9a26b319a4b5b76baeac063277eca9e81e7903b28cdebbb3db095f7526d1f46511f885e37b31e1032b7d +DIST hw-probe-1.6.6.tar.gz 170004 BLAKE2B 887649e25ed238b0f0de8e52f587489ed0877f8f93655ebc1c99e1901501e7c3cbfffd5480705781cf91bc3658b58daf05cbd6066ecf1eb3c52d1786028b0bb5 SHA512 ca645549d0b8f8a8c1c8f69498dd8591b55a2a007850b508fe1d6a48cd7c6e3ee25102ed348cb9578989014b7f069c4b9453ed7e516ce57dcbded1166c6ad017 diff --git a/sys-apps/hw-probe/hw-probe-1.6.6.ebuild b/sys-apps/hw-probe/hw-probe-1.6.6.ebuild new file mode 100644 index 000000000000..bac9c9c73202 --- /dev/null +++ b/sys-apps/hw-probe/hw-probe-1.6.6.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit optfeature readme.gentoo-r1 + +DESCRIPTION="A tool to probe for hardware, check it's operability and find drivers" +HOMEPAGE="https://github.com/linuxhw/hw-probe/" +SRC_URI="https://github.com/linuxhw/hw-probe/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="LGPL-2.1+" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~loong ~x86" + +RDEPEND=" + dev-lang/perl + dev-perl/Digest-SHA1 + net-misc/curl + sys-apps/dmidecode + sys-apps/edid-decode + sys-apps/hwinfo + sys-apps/pciutils + sys-apps/smartmontools + sys-apps/usbutils + virtual/perl-Data-Dumper +" + +src_compile() { + :; +} + +src_install() { + default + + readme.gentoo_create_doc +} + +pkg_postinst() { + readme.gentoo_print_elog + + optfeature "showing Machine Check Exceptions." app-admin/mcelog + optfeature "showing additional I/O statistics." app-admin/sysstat + optfeature "showing display data channel (ddc) information." app-misc/ddcutil + optfeature "showing smart card (reader) information." dev-libs/opensc + optfeature "showing Vulkan GPU hardware information." dev-util/vulkan-tools + optfeature "showing information of attached scanners." media-gfx/sane-backends + optfeature "showing GPU information provided by MESA." media-libs/mesa + optfeature "showing zeroconf statistics." net-dns/avahi + optfeature "showing HP printer statistics." net-print/hplip + optfeature "showing status about rfkill switches on communication devices." net-wireless/rfkill + optfeature "showing additional CPU capabilities." sys-apps/cpuid + optfeature "showing hard disk (HDD, SSD, ..) capabilities." sys-apps/hdparm + optfeature "showing available I2C sensors." sys-apps/i2c-tools + optfeature "showing additional hardware and system information detected by inxi." sys-apps/inxi + optfeature "showing information about tested memory for faults." sys-apps/memtester + optfeature "showing 'Plug & Play' devices." sys-apps/pnputils + optfeature "showing systemd boot process information." sys-apps/systemd + optfeature "showing ACPI statistics and tables." sys-power/iasl + optfeature "showing information about NUMA." sys-process/numactl + optfeature "showing additional GPU information provided by MESA progs." x11-apps/mesa-progs + optfeature "showing available Xinput devices." x11-apps/xinput +} |