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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 327F315813A for ; Mon, 13 Jan 2025 03:54:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F312CE07FE; Mon, 13 Jan 2025 03:54:20 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 3842DE07FE for ; Mon, 13 Jan 2025 03:54:20 +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 41670340943 for ; Mon, 13 Jan 2025 03:54:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9D0641DC9 for ; Mon, 13 Jan 2025 03:54:17 +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: <1736740450.c2c8a65fb6252b1c1b974d6a9bdd46a1309d8dd7.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/libX11/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-libs/libX11/libX11-1.8.10-r1.ebuild x11-libs/libX11/libX11-1.8.10.ebuild X-VCS-Directories: x11-libs/libX11/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: c2c8a65fb6252b1c1b974d6a9bdd46a1309d8dd7 X-VCS-Branch: master Date: Mon, 13 Jan 2025 03:54:17 +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: 07a1fe15-7d2c-4b0c-baa3-4f6e10647a7a X-Archives-Hash: 0ba452def2d89f543910f708942b8cad commit: c2c8a65fb6252b1c1b974d6a9bdd46a1309d8dd7 Author: sin-ack protonmail com> AuthorDate: Sun Dec 29 09:02:09 2024 +0000 Commit: Matt Turner gentoo org> CommitDate: Mon Jan 13 03:54:10 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2c8a65f x11-libs/libX11: RDEPEND on x11-base/xorg-proto Without this, source packages fail to build against libX11 when installed as a binpkg due to missing transitive dependencies. Closes: https://bugs.gentoo.org/903707 Closes: https://bugs.gentoo.org/947059 Closes: https://bugs.gentoo.org/947999 Closes: https://github.com/gentoo/gentoo/pull/39886 Signed-off-by: sin-ack protonmail.com> Signed-off-by: Matt Turner gentoo.org> .../libX11/{libX11-1.8.10.ebuild => libX11-1.8.10-r1.ebuild} | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/x11-libs/libX11/libX11-1.8.10.ebuild b/x11-libs/libX11/libX11-1.8.10-r1.ebuild similarity index 70% rename from x11-libs/libX11/libX11-1.8.10.ebuild rename to x11-libs/libX11/libX11-1.8.10-r1.ebuild index 35d1e55b1484..ccd2a3bec8b1 100644 --- a/x11-libs/libX11/libX11-1.8.10.ebuild +++ b/x11-libs/libX11/libX11-1.8.10-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -14,12 +14,17 @@ KEYWORDS="~alpha amd64 arm arm64 hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 IUSE="test" RESTRICT="!test? ( test )" +# HACK: libX11 produces .pc files that depend on xproto.pc. When libX11 +# is installed as a binpkg, DEPEND packages are not pulled in, +# but to build source packages against libX11, xorg-proto is +# needed. Until a "build-against-depend" option is available in +# ebuilds, we RDEPEND on xproto. See bug #903707 and others. RDEPEND=" >=x11-libs/libxcb-1.11.1[${MULTILIB_USEDEP}] x11-misc/compose-tables + x11-base/xorg-proto " DEPEND="${RDEPEND} - x11-base/xorg-proto x11-libs/xtrans " BDEPEND="test? ( dev-lang/perl )"