From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 5AA6059CAF for ; Sun, 3 Apr 2016 19:22:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 868F621C004; Sun, 3 Apr 2016 19:22:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3339221C004 for ; Sun, 3 Apr 2016 19:21:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 762BD340B30 for ; Sun, 3 Apr 2016 19:21:58 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B3B0080 for ; Sun, 3 Apr 2016 19:21:55 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1459711309.7dd7f39657699bf5e32a30228696f443a7d4446c.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libixion/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libixion/libixion-0.9.1-r1.ebuild X-VCS-Directories: dev-libs/libixion/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 7dd7f39657699bf5e32a30228696f443a7d4446c X-VCS-Branch: master Date: Sun, 3 Apr 2016 19:21:55 +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: e215bb3c-e21f-4faa-9748-e40853a9002c X-Archives-Hash: f503042042a7a6c52530914b22f0809e commit: 7dd7f39657699bf5e32a30228696f443a7d4446c Author: David Seifert gentoo org> AuthorDate: Sun Apr 3 19:21:27 2016 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Apr 3 19:21:49 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7dd7f396 dev-libs/libixion: use more recent sys-devel/boost-m4 Gentoo-Bug: 576462 Package-Manager: portage-2.2.28 dev-libs/libixion/libixion-0.9.1-r1.ebuild | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/dev-libs/libixion/libixion-0.9.1-r1.ebuild b/dev-libs/libixion/libixion-0.9.1-r1.ebuild index 6dc3c0e..e829d56 100644 --- a/dev-libs/libixion/libixion-0.9.1-r1.ebuild +++ b/dev-libs/libixion/libixion-0.9.1-r1.ebuild @@ -27,20 +27,25 @@ RDEPEND=" python? ( ${PYTHON_DEPS} ) " DEPEND="${RDEPEND} + >=sys-devel/boost-m4-0.4_p20160328 >=dev-util/mdds-0.12.0:0= " REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" +PATCHES=( + "${FILESDIR}/${PN}-0.9.1-typo.patch" + "${FILESDIR}/${PN}-0.9.1-python-optional.patch" +) pkg_setup() { use python && python-single-r1_pkg_setup } src_prepare() { - eapply_user + default - eapply "${FILESDIR}/${PN}-0.9.1-typo.patch" \ - "${FILESDIR}/${PN}-0.9.1-python-optional.patch" + # fixes bug 576462, which is due to an outdated bundled boost.m4 + rm m4/boost.m4 || die eautoreconf }