Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-physics/bullet/
Date: Wed, 27 Apr 2022 13:19:12
Message-Id: 1651065536.938fbd296801a1a6fd5e9bde8ef7cb74b4b572a6.juippis@gentoo
1 commit: 938fbd296801a1a6fd5e9bde8ef7cb74b4b572a6
2 Author: Thamognya Kodi <contact <AT> thamognya <DOT> com>
3 AuthorDate: Sun Apr 24 12:29:11 2022 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 27 13:18:56 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=938fbd29
7
8 sci-physics/bullet: Bump to version 3.22b
9
10 Signed-off-by: Thamognya Kodi <contact <AT> thamognya.com>
11 Closes: https://github.com/gentoo/gentoo/pull/25180
12 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
13
14 sci-physics/bullet/Manifest | 1 +
15 sci-physics/bullet/bullet-3.22b.ebuild | 87 ++++++++++++++++++++++++++++++++++
16 2 files changed, 88 insertions(+)
17
18 diff --git a/sci-physics/bullet/Manifest b/sci-physics/bullet/Manifest
19 index 0147de634410..5c5fc483463a 100644
20 --- a/sci-physics/bullet/Manifest
21 +++ b/sci-physics/bullet/Manifest
22 @@ -2,3 +2,4 @@ DIST bullet-3.07.tar.gz 148413637 BLAKE2B 776cd7651d11d865095ea000d353860bea09c6
23 DIST bullet-3.08.tar.gz 129282084 BLAKE2B daa5b6719575af28c6f6359ef51c7a9b8ca9cde2e5b4ea1b00c2991fc4d6b13175d034c7a694eaf36e8ff3ab343457027f57bb511639b3701341ad4551f1a6ca SHA512 4177c2b2f3b007691102973e7a3d4337b8de559d20058db75a2d25eab35b9be62fa14e3362435ef6f7ea2f6b8cf02a78770cc49c17e979adf3a2b41f19ee702a
24 DIST bullet-3.17.tar.gz 131995187 BLAKE2B 38996c299eb900f867367966c90c7511d4f5c727671249665a073f86390a4514f7c8193577fd73502b49d467eaeb6e7b195426089065ce3bda3238ee76e237b3 SHA512 a5105bf5f1dd365a64a350755c7d2c97942f74897a18dcdb3651e6732fd55cc1030a096f5808cf50575281f05e3ac09aa50a48d271a47b94cd61f5167a72b7cc
25 DIST bullet-3.21.tar.gz 133046747 BLAKE2B 7bbc51027f19502e4d72bb33ad698817d87d559b60a3eb1067aebc8e25dbf746fd99753cfe6839a2be649318ce7c7563f63409818dc1bdd210a5ed56fe38b5bd SHA512 dfe2e091d2ea42301e131b010769b5a3c5204693f40d46e4f2a8cba94117d19058b8c9873e6a1ce8dff11a249498e65540566ef1a2ff7866546289958965fda4
26 +DIST bullet-3.22b.tar.gz 139800935 BLAKE2B e7fb35d95b11164fd3184c110581bd73c0a4886087ccccd30b58756ffb97f79d1d2d1ae4a9f51b83c2eac94e5666b7529bf0dbfd7dd8a46ebcaed3f10edf76f5 SHA512 9e2f3eb78b94de6a11d605f4ab87868f19d5aa8df61b35030c3866d47ae9c3e5cfc56ab57b8752d697c17489599de55f4066125f3e1fcbcbc61eed8821ae3f24
27
28 diff --git a/sci-physics/bullet/bullet-3.22b.ebuild b/sci-physics/bullet/bullet-3.22b.ebuild
29 new file mode 100644
30 index 000000000000..236d0a1e53d8
31 --- /dev/null
32 +++ b/sci-physics/bullet/bullet-3.22b.ebuild
33 @@ -0,0 +1,87 @@
34 +# Copyright 1999-2022 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=8
38 +
39 +inherit cmake toolchain-funcs
40 +
41 +DESCRIPTION="Continuous Collision Detection and Physics Library"
42 +HOMEPAGE="https://pybullet.org/wordpress/"
43 +SRC_URI="https://github.com/bulletphysics/${PN}3/archive/${PV}.tar.gz -> ${P}.tar.gz"
44 +
45 +LICENSE="ZLIB"
46 +SLOT="0/${PV}"
47 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
48 +IUSE="doc double-precision examples extras openmp tbb test +threads"
49 +
50 +REQUIRED_USE="
51 + openmp? ( threads )
52 + tbb? ( threads )
53 +"
54 +
55 +RDEPEND="
56 + virtual/opengl
57 + media-libs/freeglut
58 + tbb? ( <dev-cpp/tbb-2021.4.0:= )
59 +"
60 +DEPEND="${RDEPEND}"
61 +BDEPEND="doc? ( app-doc/doxygen[dot] )"
62 +
63 +PATCHES=( "${FILESDIR}"/${PN}-2.85-soversion.patch )
64 +
65 +DOCS=( AUTHORS.txt LICENSE.txt README.md )
66 +
67 +# Building / linking of third Party library BussIK does not work out of the box
68 +RESTRICT="test"
69 +
70 +S="${WORKDIR}/${PN}3-${PV}"
71 +
72 +pkg_pretend() {
73 + [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
74 +}
75 +
76 +pkg_setup() {
77 + [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
78 +}
79 +
80 +src_prepare() {
81 + cmake_src_prepare
82 +
83 + # allow to generate docs
84 + sed -i -e 's/GENERATE_HTMLHELP.*//g' Doxyfile || die
85 +}
86 +
87 +src_configure() {
88 + local mycmakeargs=(
89 + -DBUILD_CPU_DEMOS=OFF
90 + -DBUILD_OPENGL3_DEMOS=OFF
91 + -DBUILD_BULLET2_DEMOS=OFF
92 + -DUSE_GRAPHICAL_BENCHMARK=OFF
93 + -DINSTALL_LIBS=ON
94 + -DBUILD_BULLET3=ON
95 + -DBUILD_BULLET_ROBOTICS_GUI_EXTRA=OFF # This module depends on example libraries
96 + -DBUILD_EXTRAS=$(usex extras)
97 + -DUSE_DOUBLE_PRECISION=$(usex double-precision)
98 + -DBUILD_UNIT_TESTS=$(usex test)
99 + -DBULLET2_MULTITHREADING=$(usex threads)
100 + -DBULLET2_USE_OPEN_MP_MULTITHREADING=$(usex openmp)
101 + -DBULLET2_USE_TBB_MULTITHREADING=$(usex tbb)
102 + )
103 + cmake_src_configure
104 +}
105 +
106 +src_compile() {
107 + cmake_src_compile
108 +
109 + if use doc; then
110 + doxygen || die
111 + HTML_DOCS+=( html/. )
112 + DOCS+=( docs/*.pdf )
113 + fi
114 +
115 + if use examples; then
116 + # throws QA warnings
117 + rm examples/ThirdPartyLibs/openvr/*/linux*/libopenvr_api.so || die
118 + DOCS+=( examples )
119 + fi
120 +}