From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1214154-garchives=archives.gentoo.org@lists.gentoo.org> 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 8523C138359 for <garchives@archives.gentoo.org>; Mon, 12 Oct 2020 12:51:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D3C1CE08E5; Mon, 12 Oct 2020 12:51:47 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 BABA3E08E5 for <gentoo-commits@lists.gentoo.org>; Mon, 12 Oct 2020 12:51:47 +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 3E754340662 for <gentoo-commits@lists.gentoo.org>; Mon, 12 Oct 2020 12:51:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A3A2E36B for <gentoo-commits@lists.gentoo.org>; Mon, 12 Oct 2020 12:51:44 +0000 (UTC) From: "Joonas Niilola" <juippis@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" <juippis@gentoo.org> Message-ID: <1602507077.8995ab51a11cd8df60be49303ac9e61234dc9eae.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-physics/bullet/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-physics/bullet/bullet-3.05.ebuild X-VCS-Directories: sci-physics/bullet/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 8995ab51a11cd8df60be49303ac9e61234dc9eae X-VCS-Branch: master Date: Mon, 12 Oct 2020 12:51:44 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: bed8c29e-63df-4f1c-bfc1-3b3cd514b948 X-Archives-Hash: 9b577685bec78e6c509be6e6e23f2468 commit: 8995ab51a11cd8df60be49303ac9e61234dc9eae Author: Joonas Niilola <juippis <AT> gentoo <DOT> org> AuthorDate: Mon Oct 12 12:51:17 2020 +0000 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org> CommitDate: Mon Oct 12 12:51:17 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8995ab51 sci-physics/bullet: bring back USE flag for double-precision - some silent revdeps break with it, still too experimental. Bug: https://bugs.gentoo.org/747898 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org> sci-physics/bullet/bullet-3.05.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sci-physics/bullet/bullet-3.05.ebuild b/sci-physics/bullet/bullet-3.05.ebuild index 1361eaaff57..0ba0a2d387c 100644 --- a/sci-physics/bullet/bullet-3.05.ebuild +++ b/sci-physics/bullet/bullet-3.05.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://github.com/bulletphysics/bullet3/archive/${PV}.tar.gz -> ${P}.t LICENSE="ZLIB" SLOT="0/${PV}" KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux" -IUSE="doc examples openmp tbb test threads" +IUSE="doc double-precision examples openmp tbb test threads" REQUIRED_USE=" openmp? ( threads ) @@ -60,7 +60,7 @@ src_configure() { -DINSTALL_LIBS=ON -DBUILD_BULLET3=ON -DBUILD_EXTRAS=OFF - -DUSE_DOUBLE_PRECISION=ON + -DUSE_DOUBLE_PRECISION=$(usex double-precision) -DBUILD_UNIT_TESTS=$(usex test) -DBULLET2_MULTITHREADING=$(usex threads) -DBULLET2_USE_OPEN_MP_MULTITHREADING=$(usex openmp)