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 1DC36138350 for ; Mon, 16 Mar 2020 11:03:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1F306E0BD7; Mon, 16 Mar 2020 11:03:28 +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 E53E1E0BD7 for ; Mon, 16 Mar 2020 11:03:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 B94D134F1CD for ; Mon, 16 Mar 2020 11:03:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4832C187 for ; Mon, 16 Mar 2020 11:03:23 +0000 (UTC) From: "Cédric Krier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Cédric Krier" Message-ID: <1584356594.7a0eb5cfdc61e517ac28c13cd3832e92b96fd1a3.cedk@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/mercurial/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-vcs/mercurial/mercurial-4.6.2.ebuild dev-vcs/mercurial/mercurial-4.9-r2.ebuild dev-vcs/mercurial/mercurial-4.9.1.ebuild dev-vcs/mercurial/mercurial-5.0.2.ebuild dev-vcs/mercurial/mercurial-5.1.2.ebuild dev-vcs/mercurial/mercurial-5.2.2-r1.ebuild dev-vcs/mercurial/mercurial-9999.ebuild X-VCS-Directories: dev-vcs/mercurial/ X-VCS-Committer: cedk X-VCS-Committer-Name: Cédric Krier X-VCS-Revision: 7a0eb5cfdc61e517ac28c13cd3832e92b96fd1a3 X-VCS-Branch: master Date: Mon, 16 Mar 2020 11:03: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: 7d6ffaee-6de2-4fdf-a292-0a9d53df51b1 X-Archives-Hash: efcbc01619d7be467e62294d88127756 commit: 7a0eb5cfdc61e517ac28c13cd3832e92b96fd1a3 Author: Cédric Krier gentoo org> AuthorDate: Sun Mar 15 10:24:28 2020 +0000 Commit: Cédric Krier gentoo org> CommitDate: Mon Mar 16 11:03:14 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a0eb5cf dev-vcs/mercurial: Use filter-flags instead of strip-flags Closes: https://bugs.gentoo.org/712594 Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Cédric Krier gentoo.org> dev-vcs/mercurial/mercurial-4.6.2.ebuild | 2 +- dev-vcs/mercurial/mercurial-4.9-r2.ebuild | 2 +- dev-vcs/mercurial/mercurial-4.9.1.ebuild | 2 +- dev-vcs/mercurial/mercurial-5.0.2.ebuild | 2 +- dev-vcs/mercurial/mercurial-5.1.2.ebuild | 2 +- dev-vcs/mercurial/mercurial-5.2.2-r1.ebuild | 2 +- dev-vcs/mercurial/mercurial-9999.ebuild | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/dev-vcs/mercurial/mercurial-4.6.2.ebuild b/dev-vcs/mercurial/mercurial-4.6.2.ebuild index 135710a8f27..1c5db61c049 100644 --- a/dev-vcs/mercurial/mercurial-4.6.2.ebuild +++ b/dev-vcs/mercurial/mercurial-4.6.2.ebuild @@ -41,7 +41,7 @@ python_prepare_all() { } python_configure_all() { - strip-flags # was '-ftracer -ftree-vectorize', TODO: see bug #712594 + filter-flags -ftracer -ftree-vectorize # Note: make it impl-conditional if py3 is supported append-flags -fno-strict-aliasing diff --git a/dev-vcs/mercurial/mercurial-4.9-r2.ebuild b/dev-vcs/mercurial/mercurial-4.9-r2.ebuild index 25fa556dc7a..a878d8730ad 100644 --- a/dev-vcs/mercurial/mercurial-4.9-r2.ebuild +++ b/dev-vcs/mercurial/mercurial-4.9-r2.ebuild @@ -49,7 +49,7 @@ python_prepare_all() { } python_configure_all() { - strip-flags # was '-ftracer -ftree-vectorize', TODO: see bug #712594 + filter-flags -ftracer -ftree-vectorize # Note: make it impl-conditional if py3 is supported append-flags -fno-strict-aliasing diff --git a/dev-vcs/mercurial/mercurial-4.9.1.ebuild b/dev-vcs/mercurial/mercurial-4.9.1.ebuild index c50921ab4f3..435caf12f6e 100644 --- a/dev-vcs/mercurial/mercurial-4.9.1.ebuild +++ b/dev-vcs/mercurial/mercurial-4.9.1.ebuild @@ -49,7 +49,7 @@ python_prepare_all() { } python_configure_all() { - strip-flags # was '-ftracer -ftree-vectorize', TODO: see bug #712594 + filter-flags -ftracer -ftree-vectorize # Note: make it impl-conditional if py3 is supported append-flags -fno-strict-aliasing diff --git a/dev-vcs/mercurial/mercurial-5.0.2.ebuild b/dev-vcs/mercurial/mercurial-5.0.2.ebuild index 8e116e66820..117dc6be168 100644 --- a/dev-vcs/mercurial/mercurial-5.0.2.ebuild +++ b/dev-vcs/mercurial/mercurial-5.0.2.ebuild @@ -49,7 +49,7 @@ python_prepare_all() { } python_configure_all() { - strip-flags # was '-ftracer -ftree-vectorize', TODO: see bug #712594 + filter-flags -ftracer -ftree-vectorize # Note: make it impl-conditional if py3 is supported append-flags -fno-strict-aliasing diff --git a/dev-vcs/mercurial/mercurial-5.1.2.ebuild b/dev-vcs/mercurial/mercurial-5.1.2.ebuild index 24db3c875e1..88464e06396 100644 --- a/dev-vcs/mercurial/mercurial-5.1.2.ebuild +++ b/dev-vcs/mercurial/mercurial-5.1.2.ebuild @@ -49,7 +49,7 @@ python_prepare_all() { } python_configure_all() { - strip-flags # was '-ftracer -ftree-vectorize', TODO: see bug #712594 + filter-flags -ftracer -ftree-vectorize # Note: make it impl-conditional if py3 is supported append-flags -fno-strict-aliasing diff --git a/dev-vcs/mercurial/mercurial-5.2.2-r1.ebuild b/dev-vcs/mercurial/mercurial-5.2.2-r1.ebuild index 5ee7bb5b45f..6cf8acb5c9c 100644 --- a/dev-vcs/mercurial/mercurial-5.2.2-r1.ebuild +++ b/dev-vcs/mercurial/mercurial-5.2.2-r1.ebuild @@ -55,7 +55,7 @@ python_prepare_all() { } python_compile() { - strip-flags # was '-ftracer -ftree-vectorize', TODO: see bug #712594 + filter-flags -ftracer -ftree-vectorize python_is_python3 || local -x CFLAGS="${CFLAGS} -fno-strict-aliasing" distutils-r1_python_compile build_ext --no-zstd } diff --git a/dev-vcs/mercurial/mercurial-9999.ebuild b/dev-vcs/mercurial/mercurial-9999.ebuild index 6a75f6d2818..a62bf9062fd 100644 --- a/dev-vcs/mercurial/mercurial-9999.ebuild +++ b/dev-vcs/mercurial/mercurial-9999.ebuild @@ -57,7 +57,7 @@ python_prepare_all() { } python_compile() { - strip-flags # was '-ftracer -ftree-vectorize', TODO: see bug #712594 + filter-flags -ftracer -ftree-vectorize python_is_python3 || local -x CFLAGS="${CFLAGS} -fno-strict-aliasing" distutils-r1_python_compile build_ext --no-zstd }