commit:     7c76d544126a3fa6bf79fe3d40dfbdb1dbad9d4a
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Mon Jun  9 15:20:36 2025 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Mon Jun  9 15:28:00 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c76d544

x11-libs/libdrm: Version bump to 2.4.125

Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 x11-libs/libdrm/Manifest              |  1 +
 x11-libs/libdrm/libdrm-2.4.125.ebuild | 83 +++++++++++++++++++++++++++++++++++
 2 files changed, 84 insertions(+)

diff --git a/x11-libs/libdrm/Manifest b/x11-libs/libdrm/Manifest
index ffd6a016017e..571689c11b52 100644
--- a/x11-libs/libdrm/Manifest
+++ b/x11-libs/libdrm/Manifest
@@ -1 +1,2 @@
 DIST libdrm-2.4.124.tar.xz 481244 BLAKE2B 
b463dfb78168c9c94d7dd7e241a233f6500bc6ef00487daf81b936975a3d4f056cc83a764aee6de7200f5804e3aa05c0b2d3fb7e10ada5e1bc414d9a8f120f2c
 SHA512 
0408c3ae5780c57d19321a9a7b046d656e252b2f48e520b2beb18f83495bea39c445deb9a9a6795b46194051c2ea4da476e08c63972daf841064099df6dff365
+DIST libdrm-2.4.125.tar.xz 485592 BLAKE2B 
4bfb60d95e57035c5068a05a218ed026e79fc9d067a73958f09e67c66d326f36aca2343d1bbd455894e8259bc6ac78253967c8cde47454b4dfa10225f9c3ea8a
 SHA512 
faad141f48a49915c0312eb635df76968f0f4d41bb6851be625a7ae0e24826e7283b5ec9ec3b09ead9a96297bf42221c411288f9b000c3dbc159ed8dde93a7e4

diff --git a/x11-libs/libdrm/libdrm-2.4.125.ebuild 
b/x11-libs/libdrm/libdrm-2.4.125.ebuild
new file mode 100644
index 000000000000..4b6ed59dd814
--- /dev/null
+++ b/x11-libs/libdrm/libdrm-2.4.125.ebuild
@@ -0,0 +1,83 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+EGIT_REPO_URI="https://gitlab.freedesktop.org/mesa/libdrm.git";
+PYTHON_COMPAT=( python3_{11..14} )
+
+if [[ ${PV} = 9999* ]]; then
+       GIT_ECLASS="git-r3"
+fi
+
+inherit ${GIT_ECLASS} python-any-r1 meson-multilib
+
+DESCRIPTION="X.Org libdrm library"
+HOMEPAGE="https://dri.freedesktop.org/ https://gitlab.freedesktop.org/mesa/drm";
+if [[ ${PV} != 9999* ]]; then
+       SRC_URI="https://dri.freedesktop.org/libdrm/${P}.tar.xz";
+       KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+fi
+
+VIDEO_CARDS="amdgpu exynos freedreno intel nouveau omap radeon tegra vc4 
vivante vmware"
+for card in ${VIDEO_CARDS}; do
+       IUSE_VIDEO_CARDS+=" video_cards_${card}"
+done
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="${IUSE_VIDEO_CARDS} doc test tools udev valgrind"
+RESTRICT="!test? ( test )"
+
+COMMON_DEPEND="
+       video_cards_intel? ( 
>=x11-libs/libpciaccess-0.13.1-r1:=[${MULTILIB_USEDEP}] )"
+DEPEND="${COMMON_DEPEND}
+       valgrind? ( dev-debug/valgrind )"
+RDEPEND="${COMMON_DEPEND}
+       video_cards_amdgpu? (
+               tools? ( >=dev-util/cunit-2.1 )
+               test?  ( >=dev-util/cunit-2.1 )
+       )
+       udev? ( virtual/udev )"
+BDEPEND="${PYTHON_DEPS}
+       doc? ( $(python_gen_any_dep 'dev-python/docutils[${PYTHON_USEDEP}]') )"
+
+python_check_deps() {
+       use doc || return 0
+       python_has_version "dev-python/docutils[${PYTHON_USEDEP}]"
+}
+
+src_prepare() {
+       default
+       sed -i -e "/^PLATFORM_SYMBOLS/a '__gentoo_check_ldflags__'," \
+               symbols-check.py || die # bug #925550
+}
+
+multilib_src_configure() {
+       local emesonargs=(
+               $(meson_use udev)
+               -Dcairo-tests=disabled
+               $(meson_feature video_cards_amdgpu amdgpu)
+               $(meson_feature video_cards_exynos exynos)
+               $(meson_feature video_cards_freedreno freedreno)
+               $(meson_feature video_cards_intel intel)
+               $(meson_feature video_cards_nouveau nouveau)
+               $(meson_feature video_cards_omap omap)
+               $(meson_feature video_cards_radeon radeon)
+               $(meson_feature video_cards_tegra tegra)
+               $(meson_feature video_cards_vc4 vc4)
+               $(meson_feature video_cards_vivante etnaviv)
+               $(meson_feature video_cards_vmware vmwgfx)
+               # valgrind installs its .pc file to the pkgconfig for the 
primary arch
+               -Dvalgrind=$(usex valgrind auto disabled)
+               $(meson_native_use_bool tools install-test-programs)
+               $(meson_native_use_feature doc man-pages)
+       )
+
+       if use test || { multilib_is_native_abi && use tools; }; then
+               emesonargs+=( -Dtests=true  )
+       else
+               emesonargs+=( -Dtests=false )
+       fi
+       meson_src_configure
+}

Reply via email to