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 053C9139694 for ; Wed, 8 Mar 2017 10:13:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 74509E0C3A; Wed, 8 Mar 2017 10:13:37 +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 4FBB7E0C3A for ; Wed, 8 Mar 2017 10:13:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 E82F034169D for ; Wed, 8 Mar 2017 10:13:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1F32D60E6 for ; Wed, 8 Mar 2017 10:13:34 +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: <1488968004.02d271c94b3ea70df66ecd31eea89ac7dc21eafc.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/boost/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/boost/boost-1.62.0-r1.ebuild dev-libs/boost/boost-1.63.0.ebuild X-VCS-Directories: dev-libs/boost/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 02d271c94b3ea70df66ecd31eea89ac7dc21eafc X-VCS-Branch: master Date: Wed, 8 Mar 2017 10:13:34 +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: ff03813e-2f11-4c01-9240-7f65c944bf90 X-Archives-Hash: d8bc8733da6cce5c2b313faf55d036c6 commit: 02d271c94b3ea70df66ecd31eea89ac7dc21eafc Author: David Seifert gentoo org> AuthorDate: Wed Mar 8 10:11:56 2017 +0000 Commit: David Seifert gentoo org> CommitDate: Wed Mar 8 10:13:24 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02d271c9 dev-libs/boost: Remove ancient boost debris Bug: https://bugs.gentoo.org/show_bug.cgi?id=607734 Package-Manager: Portage-2.3.4, Repoman-2.3.2 Closes: https://github.com/gentoo/gentoo/pull/4152 dev-libs/boost/boost-1.62.0-r1.ebuild | 5 +++++ dev-libs/boost/boost-1.63.0.ebuild | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/dev-libs/boost/boost-1.62.0-r1.ebuild b/dev-libs/boost/boost-1.62.0-r1.ebuild index b790dfb98cb..bd81e637a78 100644 --- a/dev-libs/boost/boost-1.62.0-r1.ebuild +++ b/dev-libs/boost/boost-1.62.0-r1.ebuild @@ -436,4 +436,9 @@ pkg_preinst() { rm -f "${symlink}" || die fi done + + # some ancient installs still have boost cruft lying around + # for unknown reasons, causing havoc for reverse dependencies + # Bug: 607734 + rm -rf "${EROOT%/}"/usr/include/boost-1_[3-5]? || die } diff --git a/dev-libs/boost/boost-1.63.0.ebuild b/dev-libs/boost/boost-1.63.0.ebuild index 87c13c70ffa..14b9384bb16 100644 --- a/dev-libs/boost/boost-1.63.0.ebuild +++ b/dev-libs/boost/boost-1.63.0.ebuild @@ -432,4 +432,9 @@ pkg_preinst() { rm -f "${symlink}" || die fi done + + # some ancient installs still have boost cruft lying around + # for unknown reasons, causing havoc for reverse dependencies + # Bug: 607734 + rm -rf "${EROOT%/}"/usr/include/boost-1_[3-5]? || die }