Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/fcl/
Date: Tue, 30 Nov 2021 13:30:10
Message-Id: 1638278994.7897bd0985beb36330f57999f8ce0b51349f2cdc.asturm@gentoo
1 commit: 7897bd0985beb36330f57999f8ce0b51349f2cdc
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 30 12:12:49 2021 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 30 13:29:54 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7897bd09
7
8 sci-libs/fcl: Drop 0.5.0-r1
9
10 Bug: https://bugs.gentoo.org/770589
11 Package-Manager: Portage-3.0.28, Repoman-3.0.3
12 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
13
14 sci-libs/fcl/Manifest | 1 -
15 sci-libs/fcl/fcl-0.5.0-r1.ebuild | 40 ----------------------------------------
16 2 files changed, 41 deletions(-)
17
18 diff --git a/sci-libs/fcl/Manifest b/sci-libs/fcl/Manifest
19 index b180d0a77df9..0cc2d261b2a3 100644
20 --- a/sci-libs/fcl/Manifest
21 +++ b/sci-libs/fcl/Manifest
22 @@ -1,2 +1 @@
23 -DIST fcl-0.5.0.tar.gz 5760425 BLAKE2B 5eac7ace3801740a6317bcc558199b5791e3e5c4fbd63305e5173597b1ecf647388a92bc894629598f963aacd0dd6f894717ae76b3bf7fc9c62a55d9330caf20 SHA512 8741c664720cb32e368e0139881ce69c29e3ccb9633ddc22f47b89918774dbc19541c68e1dbfd78a91f4c8c226ad4c0e1867b6e62111d4311fe907310fc71794
24 DIST fcl-0.6.1.tar.gz 6208928 BLAKE2B 174176b3844b18ada60884f641c49475357b1c25cb58cdfc1c4545d595add58713020ffaf148676dae14eca87397495cc971423f06fd19af5cffac1bde584603 SHA512 9d5382c1f2701f2cc6988b3e3969f44c401ea0eb4fdfc5ae69c27dd5bb59a0f17de82ef49e7dce0e1fd91a133db6f10aef9581ca2e32b919046f72921593ebf4
25
26 diff --git a/sci-libs/fcl/fcl-0.5.0-r1.ebuild b/sci-libs/fcl/fcl-0.5.0-r1.ebuild
27 deleted file mode 100644
28 index ed568a3218b8..000000000000
29 --- a/sci-libs/fcl/fcl-0.5.0-r1.ebuild
30 +++ /dev/null
31 @@ -1,40 +0,0 @@
32 -# Copyright 1999-2021 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=5
36 -
37 -SCM=""
38 -if [ "${PV#9999}" != "${PV}" ] ; then
39 - SCM="git-r3"
40 - EGIT_REPO_URI="https://github.com/flexible-collision-library/fcl"
41 -fi
42 -
43 -inherit ${SCM} cmake-utils
44 -
45 -if [ "${PV#9999}" != "${PV}" ] ; then
46 - SRC_URI=""
47 -else
48 - KEYWORDS="~amd64 ~arm"
49 - SRC_URI="https://github.com/flexible-collision-library/fcl/archive/${PV}.tar.gz -> ${P}.tar.gz"
50 -fi
51 -
52 -DESCRIPTION="The Flexible Collision Library"
53 -HOMEPAGE="http://gamma.cs.unc.edu/FCL/"
54 -LICENSE="BSD"
55 -SLOT="0"
56 -IUSE="cpu_flags_x86_sse"
57 -
58 -RDEPEND="
59 - sci-libs/octomap:=
60 - sci-libs/flann
61 - dev-libs/boost:=[threads(+)]
62 - sci-libs/libccd"
63 -DEPEND="${RDEPEND}
64 - virtual/pkgconfig"
65 -
66 -src_configure() {
67 - local mycmakeargs=(
68 - "-DFCL_USE_SSE=$(usex cpu_flags_x86_sse TRUE FALSE)"
69 - )
70 - cmake-utils_src_configure
71 -}