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 27874158020 for ; Sun, 18 Dec 2022 05:03:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6FA94E08FB; Sun, 18 Dec 2022 05:03:18 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 57692E08FB for ; Sun, 18 Dec 2022 05:03:18 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 70CDF341213 for ; Sun, 18 Dec 2022 05:03:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0DF7C771 for ; Sun, 18 Dec 2022 05:03:16 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1671339789.578ec8ac64277873e10168f2bbf4de43c29a79df.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/libXdmcp/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-libs/libXdmcp/libXdmcp-1.1.4-r1.ebuild x11-libs/libXdmcp/libXdmcp-1.1.4-r2.ebuild X-VCS-Directories: x11-libs/libXdmcp/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 578ec8ac64277873e10168f2bbf4de43c29a79df X-VCS-Branch: master Date: Sun, 18 Dec 2022 05:03:16 +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: d3145b22-d82a-4182-8855-b4db57e9cd80 X-Archives-Hash: b5a41ae0afdb75c52d4a5aa0f3eaea3a commit: 578ec8ac64277873e10168f2bbf4de43c29a79df Author: Sam James gentoo org> AuthorDate: Sun Dec 18 05:02:25 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun Dec 18 05:03:09 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=578ec8ac x11-libs/libXdmcp: libbsd is needed for non-glibc still musl doesn't provide arc4random_buf (or getentropy). Signed-off-by: Sam James gentoo.org> .../libXdmcp/{libXdmcp-1.1.4-r1.ebuild => libXdmcp-1.1.4-r2.ebuild} | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/x11-libs/libXdmcp/libXdmcp-1.1.4-r1.ebuild b/x11-libs/libXdmcp/libXdmcp-1.1.4-r2.ebuild similarity index 92% rename from x11-libs/libXdmcp/libXdmcp-1.1.4-r1.ebuild rename to x11-libs/libXdmcp/libXdmcp-1.1.4-r2.ebuild index dfb9f2e02d51..ef38544cc615 100644 --- a/x11-libs/libXdmcp/libXdmcp-1.1.4-r1.ebuild +++ b/x11-libs/libXdmcp/libXdmcp-1.1.4-r2.ebuild @@ -15,7 +15,11 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~ RDEPEND=" elibc_glibc? ( || ( >=sys-libs/glibc-2.36 dev-libs/libbsd[${MULTILIB_USEDEP}] ) - )" + ) + !elibc_glibc? ( + dev-libs/libbsd[${MULTILIB_USEDEP}] + ) +" DEPEND="${RDEPEND} x11-base/xorg-proto"