Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/libccd/
Date: Mon, 28 Dec 2020 15:17:51
Message-Id: 1609168630.b1b980bb9c9e02372c3db1a0d193caf17a375b13.soap@gentoo
1 commit: b1b980bb9c9e02372c3db1a0d193caf17a375b13
2 Author: Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
3 AuthorDate: Mon Dec 28 15:17:10 2020 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 28 15:17:10 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1b980bb
7
8 sci-libs/libccd: Cleanup old
9
10 Package-Manager: Portage-3.0.9, Repoman-3.0.1
11 Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
12 Signed-off-by: David Seifert <soap <AT> gentoo.org>
13
14 sci-libs/libccd/Manifest | 1 -
15 sci-libs/libccd/libccd-2.0.ebuild | 59 ---------------------------------------
16 sci-libs/libccd/metadata.xml | 1 -
17 3 files changed, 61 deletions(-)
18
19 diff --git a/sci-libs/libccd/Manifest b/sci-libs/libccd/Manifest
20 index 59ed2f7be0f..6c8f3bc992e 100644
21 --- a/sci-libs/libccd/Manifest
22 +++ b/sci-libs/libccd/Manifest
23 @@ -1,2 +1 @@
24 -DIST libccd-2.0.tar.gz 68103 BLAKE2B 30a91dba9b5dec5edc40d014dd0cba23d75e99f296918b6e58199890508c39813f5170456b1301e9304c433ca3531b1f23c4cdbfc0f20fca21eeafe53991467d SHA512 627426f1acd24779e7d596fd5b18dede4cf3c13d3cceda87a8b2d0195b72d9ada45290fd41baa20d6e3adafda75074db355cb95a60f80023c32b5ad4e72235bf
25 DIST libccd-2.1.tar.gz 73971 BLAKE2B 77feeb42426e72cfc1392351acf84f4c4670ea7f6a555a2b15dd8927e49b855423c4262e319b06774a8d887423238b8d018021ebeba5ee188e52accf5aeb48a1 SHA512 ff037d9c4df50f09600cf9b3514b259b2850ff43f74817853f5665d22812891168f70bd3cc3969b2c9e3c706f6254991a65421476349607fbd04d894b217456d
26
27 diff --git a/sci-libs/libccd/libccd-2.0.ebuild b/sci-libs/libccd/libccd-2.0.ebuild
28 deleted file mode 100644
29 index 894309a2623..00000000000
30 --- a/sci-libs/libccd/libccd-2.0.ebuild
31 +++ /dev/null
32 @@ -1,59 +0,0 @@
33 -# Copyright 1999-2014 Gentoo Foundation
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=5
37 -
38 -SCM=""
39 -if [ "${PV#9999}" != "${PV}" ] ; then
40 - SCM="git-r3"
41 - EGIT_REPO_URI="https://github.com/danfis/libccd"
42 -fi
43 -
44 -inherit ${SCM} cmake-utils toolchain-funcs
45 -
46 -if [ "${PV#9999}" != "${PV}" ] ; then
47 - KEYWORDS=""
48 - SRC_URI=""
49 -else
50 - KEYWORDS="~amd64 ~arm"
51 - SRC_URI="http://libccd.danfis.cz/files/${P}.tar.gz"
52 -fi
53 -
54 -DESCRIPTION="Library for collision detection between two convex shapes"
55 -HOMEPAGE="http://libccd.danfis.cz/"
56 -LICENSE="BSD"
57 -SLOT="0"
58 -IUSE="double doc"
59 -
60 -RDEPEND=""
61 -DEPEND="${RDEPEND}
62 - doc? ( dev-python/sphinx )"
63 -DOCS=( README )
64 -
65 -src_configure() {
66 - local mycmakeargs=(
67 - "-DCCD_DOUBLE=$(usex double TRUE FALSE)"
68 - )
69 - cmake-utils_src_configure
70 -}
71 -
72 -src_compile() {
73 - cmake-utils_src_compile
74 - if use doc ; then
75 - cd "${S}/doc"
76 - emake SPHINXBUILD=sphinx-build html
77 - fi
78 -}
79 -
80 -src_test() {
81 - cd src/testsuites
82 - tc-export CC
83 - LDFLAGS="-L${BUILD_DIR} ${LDFLAGS}" \
84 - LD_LIBRARY_PATH="${BUILD_DIR}:${LD_LIBRARY_PATH}" \
85 - emake check
86 -}
87 -
88 -src_install() {
89 - cmake-utils_src_install
90 - use doc && dohtml -r "${S}/doc/_build/html/"*
91 -}
92
93 diff --git a/sci-libs/libccd/metadata.xml b/sci-libs/libccd/metadata.xml
94 index 30cf22a0286..8f3764e4475 100644
95 --- a/sci-libs/libccd/metadata.xml
96 +++ b/sci-libs/libccd/metadata.xml
97 @@ -11,7 +11,6 @@
98 implements algorithm Minkowski Portal Refinement (MPR, a.k.a. XenoCollide) as described in Game Programming Gems 7.
99 </longdescription>
100 <use>
101 - <flag name="double">Use double precision floats</flag>
102 <flag name="double-precision">More precise calculations at the expense of speed</flag>
103 </use>
104 <upstream>