Gentoo Archives: gentoo-commits

From: Alexis Ballier <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/ignition-math/
Date: Tue, 27 Jun 2017 10:01:45
Message-Id: 1498557687.85c9613983fc37715f27474850c4e6ce9e64a542.aballier@gentoo
1 commit: 85c9613983fc37715f27474850c4e6ce9e64a542
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jun 27 10:00:59 2017 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 27 10:01:27 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85c96139
7
8 sci-libs/ignition-math: Bump to 3.2.0
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.2
11
12 sci-libs/ignition-math/Manifest | 1 +
13 sci-libs/ignition-math/ignition-math-3.2.0.ebuild | 28 +++++++++++++++++++++++
14 2 files changed, 29 insertions(+)
15
16 diff --git a/sci-libs/ignition-math/Manifest b/sci-libs/ignition-math/Manifest
17 index aa61d154cf6..8b80fe7ea4b 100644
18 --- a/sci-libs/ignition-math/Manifest
19 +++ b/sci-libs/ignition-math/Manifest
20 @@ -1 +1,2 @@
21 DIST ignition-math3_3.1.0.tar.bz2 378840 SHA256 1c527afdcbf42ff55e5621ff0e6d38100fc6144a73ef6d9321fe22d782be4887 SHA512 c4ffdd7ab6eb8437068e60b5ffa54465ea9d3185c04c3f2667bb9dc15051a6ace5a8452532af15f05b883ff0d3065de367bba28a8fdf2444fb39d8263d6c6e3f WHIRLPOOL eaf74ed192de50f7421f92778b7b3d4e38e3fbe3d0e277328e6f999223b3e3c1b70445317be537818ddbcdde89204a3d0b71a9b19b0db3761e0f242542247b97
22 +DIST ignition-math3_3.2.0.tar.bz2 382201 SHA256 929794ababed10c92d7217973e1d268a9de4a51dae80c401c6d1333ff65f7f89 SHA512 ffb5d61105ba0951c6420c53d64b47bdd65bdcac17e8ef2ce7cb83aeb2310280e5acb4d029d1af5c05fb5c40accf05df61d1e04dc990225159f1749284e3dcf1 WHIRLPOOL 300279c839246ab892c79cdf4dbe0a59a188f9e0ca10b0980e0dd3bbcbe11ea776bcfacae3c7c56b0d7d4d991183235db0addd688d5f44129ca216c96e74d451
23
24 diff --git a/sci-libs/ignition-math/ignition-math-3.2.0.ebuild b/sci-libs/ignition-math/ignition-math-3.2.0.ebuild
25 new file mode 100644
26 index 00000000000..eef3870ff94
27 --- /dev/null
28 +++ b/sci-libs/ignition-math/ignition-math-3.2.0.ebuild
29 @@ -0,0 +1,28 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=5
34 +
35 +inherit cmake-utils vcs-snapshot flag-o-matic
36 +
37 +DESCRIPTION="A small, fast, and high performance math library for robot applications"
38 +HOMEPAGE="http://ignitionrobotics.org/libraries/math"
39 +SRC_URI="https://bitbucket.org/ignitionrobotics/ign-math/get/${PN}3_${PV}.tar.bz2"
40 +
41 +LICENSE="Apache-2.0"
42 +SLOT="3/3"
43 +KEYWORDS="~amd64"
44 +IUSE=""
45 +
46 +DEPEND=""
47 +RDEPEND="${DEPEND}"
48 +S="${WORKDIR}/${PN}3_${PV}"
49 +CMAKE_BUILD_TYPE=RelWithDebInfo
50 +
51 +src_configure() {
52 + # upstream appends this conditionally...
53 + append-flags "-fPIC"
54 + echo "set (CMAKE_C_FLAGS_ALL \"${CXXFLAGS} \${CMAKE_C_FLAGS_ALL}\")" > "${S}/cmake/HostCFlags.cmake"
55 + sed -i -e "s/LINK_FLAGS_RELWITHDEBINFO \" \"/LINK_FLAGS_RELWITHDEBINFO \" ${LDFLAGS} \"/" cmake/DefaultCFlags.cmake || die
56 + cmake-utils_src_configure
57 +}