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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 17FE3138334 for ; Wed, 5 Sep 2018 06:20:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D2B15E07EF; Wed, 5 Sep 2018 06:20:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B064DE07EF for ; Wed, 5 Sep 2018 06:20:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DA16B335CC3 for ; Wed, 5 Sep 2018 06:20:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 449603C6 for ; Wed, 5 Sep 2018 06:20:19 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1536128412.eab43e1f6478f40c79ebc6e16017695884b39b60.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/compiler-rt-sanitizers/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-7.0.9999.ebuild sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-9999.ebuild X-VCS-Directories: sys-libs/compiler-rt-sanitizers/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: eab43e1f6478f40c79ebc6e16017695884b39b60 X-VCS-Branch: master Date: Wed, 5 Sep 2018 06:20:19 +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-Archives-Salt: b37ed273-7bcd-47e7-89f0-2be85eccf909 X-Archives-Hash: d686bf04a2119aa482aedf0d5e31964f commit: eab43e1f6478f40c79ebc6e16017695884b39b60 Author: Michał Górny gentoo org> AuthorDate: Wed Sep 5 06:09:43 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Sep 5 06:20:12 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eab43e1f sys-libs/compiler-rt-sanitizers: Add new glibc fixes to live ebuilds .../compiler-rt-sanitizers/compiler-rt-sanitizers-7.0.9999.ebuild | 6 +++++- sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-9999.ebuild | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-7.0.9999.ebuild b/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-7.0.9999.ebuild index 3028242fe9f..9635d97c119 100644 --- a/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-7.0.9999.ebuild +++ b/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-7.0.9999.ebuild @@ -75,8 +75,12 @@ src_unpack() { src_prepare() { cmake-utils_src_prepare + # apply the fixes for new glibc / split tirpc + eapply "${FILESDIR}/9999/0001-sanitizer_common-Fix-using-libtirpc-on-Linux.patch" + eapply "${FILESDIR}/9999/0002-test-Support-using-libtirpc-on-Linux.patch" + if use test; then - # remove tests that are broken by new glibc + # remove tests that are (still) broken by new glibc # https://bugs.llvm.org/show_bug.cgi?id=36065 if use elibc_glibc && has_version '>=sys-libs/glibc-2.25'; then rm test/lsan/TestCases/Linux/use_tls_dynamic.cc || die diff --git a/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-9999.ebuild b/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-9999.ebuild index 6d2a4a7a40b..e50fb3c855a 100644 --- a/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-9999.ebuild +++ b/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-9999.ebuild @@ -74,8 +74,12 @@ src_unpack() { src_prepare() { cmake-utils_src_prepare + # apply the fixes for new glibc / split tirpc + eapply "${FILESDIR}/9999/0001-sanitizer_common-Fix-using-libtirpc-on-Linux.patch" + eapply "${FILESDIR}/9999/0002-test-Support-using-libtirpc-on-Linux.patch" + if use test; then - # remove tests that are broken by new glibc + # remove tests that are (still) broken by new glibc # https://bugs.llvm.org/show_bug.cgi?id=36065 if use elibc_glibc && has_version '>=sys-libs/glibc-2.25'; then rm test/lsan/TestCases/Linux/use_tls_dynamic.cc || die