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 A61B2158086 for ; Thu, 2 Dec 2021 04:43:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AE0BEE0831; Thu, 2 Dec 2021 04:43:27 +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 477B5E0831 for ; Thu, 2 Dec 2021 04:43:27 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A393534326D for ; Thu, 2 Dec 2021 04:43:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D7C751C6 for ; Thu, 2 Dec 2021 04:43:23 +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: <1638420194.e73573692da466a260372f147612c7602bd8bf4b.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/sidplayfp/, media-sound/sidplayfp/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/sidplayfp/files/sidplayfp-1.4.4-musl-limits.patch media-sound/sidplayfp/sidplayfp-1.4.4.ebuild X-VCS-Directories: media-sound/sidplayfp/files/ media-sound/sidplayfp/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: e73573692da466a260372f147612c7602bd8bf4b X-VCS-Branch: master Date: Thu, 2 Dec 2021 04:43:23 +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: fd3d88b8-47b5-4595-9a14-2162e4601501 X-Archives-Hash: 40f5be094b20e338730bb30932856d4c commit: e73573692da466a260372f147612c7602bd8bf4b Author: Sam James gentoo org> AuthorDate: Thu Dec 2 04:42:45 2021 +0000 Commit: Sam James gentoo org> CommitDate: Thu Dec 2 04:43:14 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7357369 media-sound/sidplayfp: add musl patch Closes: https://bugs.gentoo.org/764113 Thanks-to: ernsteiswuerfel mailbox.org> Signed-off-by: Sam James gentoo.org> media-sound/sidplayfp/files/sidplayfp-1.4.4-musl-limits.patch | 11 +++++++++++ media-sound/sidplayfp/sidplayfp-1.4.4.ebuild | 9 ++++++++- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/media-sound/sidplayfp/files/sidplayfp-1.4.4-musl-limits.patch b/media-sound/sidplayfp/files/sidplayfp-1.4.4-musl-limits.patch new file mode 100644 index 000000000000..ad810d66f5b5 --- /dev/null +++ b/media-sound/sidplayfp/files/sidplayfp-1.4.4-musl-limits.patch @@ -0,0 +1,11 @@ +https://bugs.gentoo.org/764113 +--- a/src/IniConfig.cpp ++++ b/src/IniConfig.cpp +@@ -36,6 +36,7 @@ + # include + # include /* mkdir */ + # include /* opendir */ ++# include + #else + # include + #endif diff --git a/media-sound/sidplayfp/sidplayfp-1.4.4.ebuild b/media-sound/sidplayfp/sidplayfp-1.4.4.ebuild index 40dc1277bbd0..caff4726ef0c 100644 --- a/media-sound/sidplayfp/sidplayfp-1.4.4.ebuild +++ b/media-sound/sidplayfp/sidplayfp-1.4.4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -22,11 +22,17 @@ DEPEND="${RDEPEND} DOCS=( AUTHORS README TODO ) +PATCHES=( + "${FILESDIR}"/${PN}-1.4.4-musl-limits.patch +) + src_prepare() { default + if ! use alsa; then sed -i -e 's:alsa >= 1.0:dIsAbLe&:' configure || die fi + if ! use pulseaudio; then sed -i -e 's:libpulse-simple >= 1.0:dIsAbLe&:' configure || die fi @@ -34,5 +40,6 @@ src_prepare() { src_configure() { export ac_cv_header_linux_soundcard_h=$(usex oss) + econf }