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 E01CC1382C5 for ; Tue, 26 Dec 2017 20:59:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B70B3E0C3F; Tue, 26 Dec 2017 20:59:24 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 941D3E0C3F for ; Tue, 26 Dec 2017 20:59:24 +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 CCDDF341236 for ; Tue, 26 Dec 2017 20:59:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2AEAB4C92 for ; Tue, 26 Dec 2017 20:59:20 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1514321951.b7c414167ec7a2916d933d12805d869a4d4b9bd4.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/mpc/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/mpc/mpc-1.0.3.ebuild X-VCS-Directories: dev-libs/mpc/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: b7c414167ec7a2916d933d12805d869a4d4b9bd4 X-VCS-Branch: master Date: Tue, 26 Dec 2017 20:59:20 +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: dbd70122-bae9-4163-aa73-86271709182a X-Archives-Hash: 19a6ed207916ebbd2493bf6aea0c3da0 commit: b7c414167ec7a2916d933d12805d869a4d4b9bd4 Author: Sergei Trofimovich gentoo org> AuthorDate: Tue Dec 26 20:58:23 2017 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Tue Dec 26 20:59:11 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7c41416 dev-libs/mpc: revert today's changes for 1.0.3 ebuild, bug #642300 This change reverts the following changes: commit 0c689de38bcc3b4279aa9e3b09c836e48a237e3d dev-libs/mpc: explicitly regenerate ./configure, noticed by Anarchy commit cdf7f5c37e8a3dfacfbf5fc81a6a2a8ef3b77a9a dev-libs/mpc: fix build failure against mpfr-4.0.0, bug #642300 That way 1.0.3 version will keep failing to build against mpfr-4.0.0 (and prevent users from breaking gcc) and version 1.0.3-r1 will work as expected. Reported-by: Attila Tóth Bug: https://bugs.gentoo.org/642300 Package-Manager: Portage-2.3.19, Repoman-2.3.6 dev-libs/mpc/mpc-1.0.3.ebuild | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/dev-libs/mpc/mpc-1.0.3.ebuild b/dev-libs/mpc/mpc-1.0.3.ebuild index 66845b9d3d0..198111c0b08 100644 --- a/dev-libs/mpc/mpc-1.0.3.ebuild +++ b/dev-libs/mpc/mpc-1.0.3.ebuild @@ -3,7 +3,7 @@ EAPI="4" -inherit autotools eutils libtool multilib-minimal +inherit eutils libtool multilib-minimal DESCRIPTION="A library for multiprecision complex arithmetic with exact rounding" HOMEPAGE="http://mpc.multiprecision.org/" @@ -19,8 +19,6 @@ DEPEND=">=dev-libs/gmp-4.3.2[${MULTILIB_USEDEP},static-libs?] RDEPEND="${DEPEND}" src_prepare() { - epatch "${FILESDIR}"/${P}-mpfr-4.0.0.patch - eautoreconf elibtoolize #347317 }