From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B0FE5158083 for ; Thu, 12 Sep 2024 19:02:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 44692E29AA; Thu, 12 Sep 2024 19:02:37 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2E85BE29AA for ; Thu, 12 Sep 2024 19:02:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5D8B3335DCC for ; Thu, 12 Sep 2024 19:02:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BD66D14D0 for ; Thu, 12 Sep 2024 19:02:34 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1726167729.3a9bc2c57733e0fd19f4414deb2122605819c311.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/libdrm/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-libs/libdrm/libdrm-2.4.122-r1.ebuild x11-libs/libdrm/libdrm-2.4.122.ebuild x11-libs/libdrm/libdrm-2.4.123-r1.ebuild x11-libs/libdrm/libdrm-2.4.123.ebuild x11-libs/libdrm/libdrm-9999.ebuild X-VCS-Directories: x11-libs/libdrm/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 3a9bc2c57733e0fd19f4414deb2122605819c311 X-VCS-Branch: master Date: Thu, 12 Sep 2024 19:02:34 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 8c2763a7-336e-4570-abad-e31d98e22e38 X-Archives-Hash: 25f6ed89a761a6d412e1b20ab866a3a8 commit: 3a9bc2c57733e0fd19f4414deb2122605819c311 Author: Matt Turner gentoo org> AuthorDate: Thu Sep 12 18:25:46 2024 +0000 Commit: Matt Turner gentoo org> CommitDate: Thu Sep 12 19:02:09 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a9bc2c5 x11-libs/libdrm: Add IUSE=doc to control man pages The man pages are just man3 and man7, so unlikely to be used. Avoids a circular dependency as well: (x11-libs/libdrm-2.4.122:0/0::gentoo, ebuild scheduled for merge) depends on (dev-python/docutils-0.21.2-1:0/0::gentoo, binary scheduled for merge) (buildtime) (dev-python/pillow-10.4.0:0/0::gentoo, ebuild scheduled for merge) (runtime) (media-libs/libwebp-1.3.2:0/7::gentoo, ebuild scheduled for merge) (buildtime_slot_op) (virtual/opengl-7.0-r2:0/0::gentoo, ebuild scheduled for merge) (buildtime) (media-libs/mesa-24.1.6:0/0::gentoo, ebuild scheduled for merge) (runtime) (x11-libs/libdrm-2.4.122:0/0::gentoo, ebuild scheduled for merge) (buildtime) Signed-off-by: Matt Turner gentoo.org> x11-libs/libdrm/{libdrm-2.4.122.ebuild => libdrm-2.4.122-r1.ebuild} | 6 ++++-- x11-libs/libdrm/{libdrm-2.4.123.ebuild => libdrm-2.4.123-r1.ebuild} | 6 ++++-- x11-libs/libdrm/libdrm-9999.ebuild | 6 ++++-- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/x11-libs/libdrm/libdrm-2.4.122.ebuild b/x11-libs/libdrm/libdrm-2.4.122-r1.ebuild similarity index 92% rename from x11-libs/libdrm/libdrm-2.4.122.ebuild rename to x11-libs/libdrm/libdrm-2.4.122-r1.ebuild index fa39ce92defa..f2fe1b0a540a 100644 --- a/x11-libs/libdrm/libdrm-2.4.122.ebuild +++ b/x11-libs/libdrm/libdrm-2.4.122-r1.ebuild @@ -26,7 +26,7 @@ done LICENSE="MIT" SLOT="0" -IUSE="${IUSE_VIDEO_CARDS} test tools udev valgrind" +IUSE="${IUSE_VIDEO_CARDS} doc test tools udev valgrind" RESTRICT="!test? ( test )" COMMON_DEPEND=" @@ -40,9 +40,10 @@ RDEPEND="${COMMON_DEPEND} ) udev? ( virtual/udev )" BDEPEND="${PYTHON_DEPS} - $(python_gen_any_dep 'dev-python/docutils[${PYTHON_USEDEP}]')" + 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}]" } @@ -70,6 +71,7 @@ multilib_src_configure() { # 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 diff --git a/x11-libs/libdrm/libdrm-2.4.123.ebuild b/x11-libs/libdrm/libdrm-2.4.123-r1.ebuild similarity index 92% rename from x11-libs/libdrm/libdrm-2.4.123.ebuild rename to x11-libs/libdrm/libdrm-2.4.123-r1.ebuild index 389ed76260af..25b11549579e 100644 --- a/x11-libs/libdrm/libdrm-2.4.123.ebuild +++ b/x11-libs/libdrm/libdrm-2.4.123-r1.ebuild @@ -26,7 +26,7 @@ done LICENSE="MIT" SLOT="0" -IUSE="${IUSE_VIDEO_CARDS} test tools udev valgrind" +IUSE="${IUSE_VIDEO_CARDS} doc test tools udev valgrind" RESTRICT="!test? ( test )" COMMON_DEPEND=" @@ -40,9 +40,10 @@ RDEPEND="${COMMON_DEPEND} ) udev? ( virtual/udev )" BDEPEND="${PYTHON_DEPS} - $(python_gen_any_dep 'dev-python/docutils[${PYTHON_USEDEP}]')" + 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}]" } @@ -70,6 +71,7 @@ multilib_src_configure() { # 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 diff --git a/x11-libs/libdrm/libdrm-9999.ebuild b/x11-libs/libdrm/libdrm-9999.ebuild index 389ed76260af..25b11549579e 100644 --- a/x11-libs/libdrm/libdrm-9999.ebuild +++ b/x11-libs/libdrm/libdrm-9999.ebuild @@ -26,7 +26,7 @@ done LICENSE="MIT" SLOT="0" -IUSE="${IUSE_VIDEO_CARDS} test tools udev valgrind" +IUSE="${IUSE_VIDEO_CARDS} doc test tools udev valgrind" RESTRICT="!test? ( test )" COMMON_DEPEND=" @@ -40,9 +40,10 @@ RDEPEND="${COMMON_DEPEND} ) udev? ( virtual/udev )" BDEPEND="${PYTHON_DEPS} - $(python_gen_any_dep 'dev-python/docutils[${PYTHON_USEDEP}]')" + 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}]" } @@ -70,6 +71,7 @@ multilib_src_configure() { # 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