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 3D297138359 for ; Sun, 2 Aug 2020 10:09:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5F312E0BDF; Sun, 2 Aug 2020 10:09:19 +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 44132E0BDF for ; Sun, 2 Aug 2020 10:09:19 +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 649BC34EDF9 for ; Sun, 2 Aug 2020 10:09:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CD71D2CC for ; Sun, 2 Aug 2020 10:09:15 +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: <1596362939.5d603d40b77add4605fb84ae93599d2a03aafb35.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/boost/, dev-libs/boost/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/boost/boost-1.73.0.ebuild dev-libs/boost/files/boost-1.73-geometry-private-inheritance.patch X-VCS-Directories: dev-libs/boost/files/ dev-libs/boost/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 5d603d40b77add4605fb84ae93599d2a03aafb35 X-VCS-Branch: master Date: Sun, 2 Aug 2020 10:09:15 +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: ea7d5b1f-88b0-4da5-af22-050bd5115fd1 X-Archives-Hash: 8ad59e9431ae4b1018fd3876a3614390 commit: 5d603d40b77add4605fb84ae93599d2a03aafb35 Author: David Seifert gentoo org> AuthorDate: Sun Aug 2 10:08:59 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Aug 2 10:08:59 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d603d40 dev-libs/boost: Add boost::geometry inheritance patch Closes: https://bugs.gentoo.org/735092 Package-Manager: Portage-3.0.1, Repoman-2.3.23 Signed-off-by: David Seifert gentoo.org> dev-libs/boost/boost-1.73.0.ebuild | 2 ++ .../boost-1.73-geometry-private-inheritance.patch | 23 ++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/dev-libs/boost/boost-1.73.0.ebuild b/dev-libs/boost/boost-1.73.0.ebuild index bcc79240269..e5b91ab3053 100644 --- a/dev-libs/boost/boost-1.73.0.ebuild +++ b/dev-libs/boost/boost-1.73.0.ebuild @@ -60,6 +60,8 @@ PATCHES=( "${FILESDIR}"/${PN}-1.73-boost-mpi-python-PEP-328.patch # Remove annoying #pragma message "${FILESDIR}"/${PN}-1.73-property-tree-include.patch + # https://github.com/boostorg/geometry/issues/721 + "${FILESDIR}"/${PN}-1.73-geometry-private-inheritance.patch ) python_bindings_needed() { diff --git a/dev-libs/boost/files/boost-1.73-geometry-private-inheritance.patch b/dev-libs/boost/files/boost-1.73-geometry-private-inheritance.patch new file mode 100644 index 00000000000..fef7bafec8f --- /dev/null +++ b/dev-libs/boost/files/boost-1.73-geometry-private-inheritance.patch @@ -0,0 +1,23 @@ +From aafbceccc76dccb75963dd4f596fd1f10ee34b03 Mon Sep 17 00:00:00 2001 +From: Jonathan Wakely +Date: Fri, 5 Jun 2020 19:29:27 +0100 +Subject: [PATCH] Make index::detail::rtree::visitors::insert base class public + +Fixes #721 +--- + boost/geometry/index/detail/rtree/visitors/insert.hpp | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/boost/geometry/index/detail/rtree/visitors/insert.hpp b/boost/geometry/index/detail/rtree/visitors/insert.hpp +index 2d324cb7f4..5709a930cc 100644 +--- a/boost/geometry/index/detail/rtree/visitors/insert.hpp ++++ b/boost/geometry/index/detail/rtree/visitors/insert.hpp +@@ -265,7 +265,7 @@ struct insert_traverse_data + // Default insert visitor + template + class insert +- : MembersHolder::visitor ++ : public MembersHolder::visitor + { + protected: + typedef typename MembersHolder::box_type box_type;