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 2E6CB138350 for ; Sun, 22 Mar 2020 00:32:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 59408E0AAD; Sun, 22 Mar 2020 00:32:58 +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 12531E0AAD for ; Sun, 22 Mar 2020 00:32:58 +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 C704034F12D for ; Sun, 22 Mar 2020 00:32:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3B0B1190 for ; Sun, 22 Mar 2020 00:32:55 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1584837161.9d4a85b0d543b4564beaaa955c2314e70b7e6952.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/ceres-solver/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/ceres-solver/ceres-solver-1.14.0.ebuild X-VCS-Directories: sci-libs/ceres-solver/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 9d4a85b0d543b4564beaaa955c2314e70b7e6952 X-VCS-Branch: master Date: Sun, 22 Mar 2020 00:32: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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: efc1cb7a-0d2d-4dec-84ab-626340c496fa X-Archives-Hash: 763593afe79e18f90887c8fa41032ebf commit: 9d4a85b0d543b4564beaaa955c2314e70b7e6952 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Mar 22 00:31:58 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Mar 22 00:32:41 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d4a85b0 sci-libs/ceres-solver: Drop USE c++11 Closes: https://bugs.gentoo.org/705192 Package-Manager: Portage-2.3.94, Repoman-2.3.21 Signed-off-by: Andreas Sturmlechner gentoo.org> sci-libs/ceres-solver/ceres-solver-1.14.0.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/sci-libs/ceres-solver/ceres-solver-1.14.0.ebuild b/sci-libs/ceres-solver/ceres-solver-1.14.0.ebuild index 6b175ba5ec7..d5241fc699a 100644 --- a/sci-libs/ceres-solver/ceres-solver-1.14.0.ebuild +++ b/sci-libs/ceres-solver/ceres-solver-1.14.0.ebuild @@ -14,7 +14,7 @@ SRC_URI="http://ceres-solver.org/${P}.tar.gz" LICENSE="sparse? ( BSD ) !sparse? ( LGPL-2.1 ) cxsparse? ( BSD )" SLOT="0/1" KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="cxsparse c++11 doc examples gflags lapack openmp +schur sparse test" +IUSE="cxsparse doc examples gflags lapack openmp +schur sparse test" REQUIRED_USE="test? ( gflags ) sparse? ( lapack ) abi_x86_32? ( !sparse !lapack )" @@ -76,9 +76,7 @@ src_configure() { -DBUILD_BENCHMARKS=OFF -DBUILD_EXAMPLES=OFF -DBUILD_TESTING=$(usex test) - -DCXX11=$(usex c++11) -DBUILD_DOCUMENTATION=$(usex doc) - -DCERES_DOCS_INSTALL_DIR="${EPREFIX}"/usr/share/doc/${PF} -DGFLAGS=$(usex gflags) -DLAPACK=$(usex lapack) -DOPENMP=$(usex openmp) @@ -86,6 +84,9 @@ src_configure() { -DCXSPARSE=$(usex cxsparse) -DSUITESPARSE=$(usex sparse) ) + use doc && mycmakeargs+=( + -DCERES_DOCS_INSTALL_DIR="${EPREFIX}"/usr/share/doc/${PF} + ) use sparse || use cxsparse || mycmakeargs+=( -DEIGENSPARSE=ON ) cmake-multilib_src_configure }