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 968E2158091 for ; Sat, 11 Jun 2022 05:18:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D67DBE0839; Sat, 11 Jun 2022 05:18:28 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BB46FE0839 for ; Sat, 11 Jun 2022 05:18:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 EC0EE34189E for ; Sat, 11 Jun 2022 05:18:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7F025303 for ; Sat, 11 Jun 2022 05:18:26 +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: <1654924696.4fd804270e83f7c6ee3ecc4de4a591c86cb885d4.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-servers/pound/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-servers/pound/pound-3.0.ebuild X-VCS-Directories: www-servers/pound/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 4fd804270e83f7c6ee3ecc4de4a591c86cb885d4 X-VCS-Branch: master Date: Sat, 11 Jun 2022 05:18:26 +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: d5f39a7d-a13f-414e-a7b3-628582d2f9f9 X-Archives-Hash: c8ecc1b6d6aaedbcf720b7d415244531 commit: 4fd804270e83f7c6ee3ecc4de4a591c86cb885d4 Author: Philipp Rösner protonmail com> AuthorDate: Tue May 31 20:08:05 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat Jun 11 05:18:16 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fd80427 www-servers/pound: fix build with musl Building of www-servers/pound on musl wasn't possible due to a missing header file 'queue.h'. Adding sys-libs/queue-standalone as a dependency guarded by the elibc_musl USE_EXPAND flag fixes the issue. Closes: https://bugs.gentoo.org/833031 Signed-off-by: Philipp Rösner protonmail.com> Signed-off-by: Sam James gentoo.org> www-servers/pound/pound-3.0.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/www-servers/pound/pound-3.0.ebuild b/www-servers/pound/pound-3.0.ebuild index 449b52b0ebae..0279aa5ca978 100644 --- a/www-servers/pound/pound-3.0.ebuild +++ b/www-servers/pound/pound-3.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -21,6 +21,7 @@ DEPEND=" dev-libs/nanomsg:= dev-libs/openssl:= net-libs/mbedtls:= + elibc_musl? ( sys-libs/queue-standalone ) " RDEPEND="${DEPEND}"