sys-apps/drm_info: add 2.8.0

No drop of 2.7.0 yet since libdrm-2.4.125 just got released too.

Signed-off-by: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
This commit is contained in:
Haelwenn (lanodan) Monnier
2025-06-10 06:11:18 +02:00
parent f6f01a80f1
commit 3a821d3701
2 changed files with 35 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST drm_info-v2.7.0.tar.bz2 16899 BLAKE2B 59c049613aebada228fa4a99af0baff60b5a4db8ce849b0ad59b0e4b1e0471306f5051c0962197d01fc4a06a603fcff14b5c0ce1a8013166758e398ef1f8a320 SHA512 da62282a265358b336c0cfe6a4df2a9e8b8545f15aea33deaa03ad2b79a3c5dcd3b2a3c290faaf595118686b548cc2d60cb2bc411bb9fb255fae2778cfc2bde3
DIST drm_info-v2.8.0.tar.bz2 16998 BLAKE2B 3b481f0342109d4852ecd756e3de985f684ce870457755ebede213020378f3f0daf046a2403fa16a69c451878bc0870789bdfe2c57ee5b8c66dee48e225d876c SHA512 aa8602ed16438e073728b1756a759ad3b40c29bf02fab78a00d4b09488e64f1b174c6085d5dc77b957d023d77299472b175ce0fc3d5bb388578943f0b69e4467

View File

@@ -0,0 +1,34 @@
# Copyright 2020-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson
MY_P="${PN}-v${PV}"
DESCRIPTION="Small utility to dump info about DRM devices"
HOMEPAGE="https://gitlab.freedesktop.org/emersion/drm_info"
SRC_URI="https://gitlab.freedesktop.org/emersion/drm_info/-/archive/v${PV}/${MY_P}.tar.bz2"
S="${WORKDIR}/${MY_P}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE="man +pci"
DEPEND="
dev-libs/json-c:=
>=x11-libs/libdrm-2.4.125
pci? ( sys-apps/pciutils )
"
RDEPEND="${DEPEND}"
BDEPEND="man? ( app-text/scdoc )"
src_configure() {
local emesonargs=(
$(meson_feature man man-pages)
$(meson_feature pci libpci)
)
meson_src_configure
}