From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1406354-garchives=archives.gentoo.org@lists.gentoo.org> 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 E18FE158091 for <garchives@archives.gentoo.org>; Thu, 9 Jun 2022 04:22:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1A2F5E086F; Thu, 9 Jun 2022 04:22:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 F360DE086F for <gentoo-commits@lists.gentoo.org>; Thu, 9 Jun 2022 04:22:43 +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 F4088341203 for <gentoo-commits@lists.gentoo.org>; Thu, 9 Jun 2022 04:22:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 58DE144B for <gentoo-commits@lists.gentoo.org>; Thu, 9 Jun 2022 04:22:41 +0000 (UTC) From: "Sam James" <sam@gentoo.org> 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" <sam@gentoo.org> Message-ID: <1654748556.3e40af896261ebb411fb8b03d87af166a0b27326.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/ell/, dev-libs/ell/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/ell/ell-0.51.ebuild dev-libs/ell/files/ell-0.51-musl-build-time.patch X-VCS-Directories: dev-libs/ell/ dev-libs/ell/files/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 3e40af896261ebb411fb8b03d87af166a0b27326 X-VCS-Branch: master Date: Thu, 9 Jun 2022 04:22:41 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 6d48996f-4216-4566-9bbf-7926484164c7 X-Archives-Hash: 3bf292479a435b28046a440e111b2f21 commit: 3e40af896261ebb411fb8b03d87af166a0b27326 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Thu Jun 9 04:22:31 2022 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Thu Jun 9 04:22:36 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e40af89 dev-libs/ell: backport musl build fix Signed-off-by: Sam James <sam <AT> gentoo.org> dev-libs/ell/ell-0.51.ebuild | 4 ++ dev-libs/ell/files/ell-0.51-musl-build-time.patch | 60 +++++++++++++++++++++++ 2 files changed, 64 insertions(+) diff --git a/dev-libs/ell/ell-0.51.ebuild b/dev-libs/ell/ell-0.51.ebuild index 56c48e4f83d1..f7963d87ac96 100644 --- a/dev-libs/ell/ell-0.51.ebuild +++ b/dev-libs/ell/ell-0.51.ebuild @@ -33,6 +33,10 @@ CONFIG_CHECK=" ~KEY_DH_OPERATIONS " +PATCHES=( + "${FILESDIR}"/${P}-musl-build-time.patch +) + src_prepare() { default [[ "${PV}" == *9999 ]] && eautoreconf diff --git a/dev-libs/ell/files/ell-0.51-musl-build-time.patch b/dev-libs/ell/files/ell-0.51-musl-build-time.patch new file mode 100644 index 000000000000..201bc7994406 --- /dev/null +++ b/dev-libs/ell/files/ell-0.51-musl-build-time.patch @@ -0,0 +1,60 @@ +https://git.kernel.org/pub/scm/libs/ell/ell.git/commit/?id=ce7fcfe194f0abcb8f419f83276b16a4ab274032 + +From: "Milan P. Stanić" <mps@arvanta.net> +Date: Mon, 6 Jun 2022 22:05:39 +0200 +Subject: build: fix time.h related breakage on musl + +missing time.h for struct timeval usage +forward declaration of struct timeval in time-private.h +--- a/ell/dhcp-transport.c ++++ b/ell/dhcp-transport.c +@@ -40,6 +40,7 @@ + #include <linux/filter.h> + #include <net/if_arp.h> + #include <errno.h> ++#include <sys/time.h> + + #include "io.h" + #include "util.h" +--- a/ell/dhcp6-transport.c ++++ b/ell/dhcp6-transport.c +@@ -35,6 +35,7 @@ + #include <net/if.h> + #include <unistd.h> + #include <errno.h> ++#include <sys/time.h> + + #include "private.h" + #include "missing.h" +--- a/ell/icmp6.c ++++ b/ell/icmp6.c +@@ -36,6 +36,7 @@ + #include <net/if.h> + #include <unistd.h> + #include <errno.h> ++#include <sys/time.h> + + #include "private.h" + #include "useful.h" +--- a/ell/time-private.h ++++ b/ell/time-private.h +@@ -19,7 +19,7 @@ + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + */ +- ++struct timeval; + uint64_t _time_pick_interval_secs(uint32_t min_secs, uint32_t max_secs); + uint64_t _time_fuzz_msecs(uint64_t ms); + uint64_t _time_fuzz_secs(uint32_t secs, uint32_t max_offset); +--- a/ell/time.c ++++ b/ell/time.c +@@ -26,6 +26,7 @@ + + #define _GNU_SOURCE + #include <time.h> ++#include <sys/time.h> + + #include "time.h" + #include "time-private.h" +cgit