forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
net-libs/ignition-msgs: bump to 0.7.0
Package-Manager: Portage-2.3.3, Repoman-2.3.1
- Loading branch information
Showing
2 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
DIST ignition-msgs-0.6.0.tar.bz2 320820 SHA256 aaac3f5ffdbc0e81afde4aa2c297bec52293cfa4091adde9d6fd539089cfd269 SHA512 a7ca7d4fbb8f9d9b0abc786707936e275b4abdf1519a2d4d33dd217ec04b40658682e4c92d21030730b16cc7032653a51aea1f2de01b43a74d8e9f9d6c4e89ef WHIRLPOOL 17afca98bd8d2a37d1c6cbde9c4d97f2278cc0aa84611ea4e368b1259bf58e5ad554c3490fd8e1e83c3a584e697fea8cbb7ae5c377cb4f636610a2db24cc9200 | ||
DIST ignition-msgs-0.6.1.tar.bz2 320745 SHA256 b23d613d038b94eae0292f38d8e2f68b59d62a239fb2d62405758f47249baf3b SHA512 65fe5bdc30433c57cd691ffe3513c9ed6b75daec619996d99c55ee8b00f02a2a77e314d571f3ddc4fb7906d4fc8e410c8e97ca36601d32691ed03e0f30cf1b4f WHIRLPOOL 5d05de6932893ff7750fb0ae0f703b787ba126e37d37303fcf6652cac7a6229a3c7ddf34c26a6536b46c02d17a85ed88f2b15f64ed53736c94eec6204fb53330 | ||
DIST ignition-msgs-0.7.0.tar.bz2 327753 SHA256 5e749ddad57e3e471e01cfc240a9602595dc095952cf34436c40864add08b9dc SHA512 78b35eb6c9b53bd567d227191009cfb8628afa70f244cf05ad9440f370aa9c51a649160c9c65d13e81a48a3a34553614e9835e9a37fb91cad330c363f0a5f62f WHIRLPOOL 8d0f08bd289946713dab64b1a543b815192e0ac60c3d061545e64a135079ea6aa597bce559fb621914ef51ee875f0667b200fd0ce3bba61a578e6ddd3f916a7e |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=6 | ||
|
||
inherit cmake-utils | ||
|
||
DESCRIPTION="Protobuf messages and functions for robot applications" | ||
HOMEPAGE="http://ignitionrobotics.org/libraries/messages https://bitbucket.org/ignitionrobotics/ign-msgs" | ||
SRC_URI="https://osrf-distributions.s3.amazonaws.com/ign-msgs/releases/${P}.tar.bz2" | ||
|
||
LICENSE="Apache-2.0" | ||
SLOT="0" | ||
KEYWORDS="~amd64" | ||
IUSE="" | ||
|
||
DEPEND="dev-libs/protobuf:= | ||
sci-libs/ignition-math:2=" | ||
RDEPEND="${DEPEND}" | ||
CMAKE_BUILD_TYPE=RelWithDebInfo | ||
|
||
src_configure() { | ||
# upstream appends this conditionally... | ||
append-flags "-fPIC" | ||
echo "set (CMAKE_C_FLAGS_ALL \"${CXXFLAGS} \${CMAKE_C_FLAGS_ALL}\")" > "${S}/cmake/HostCFlags.cmake" | ||
sed -i -e "s/LINK_FLAGS_RELWITHDEBINFO \" \"/LINK_FLAGS_RELWITHDEBINFO \" ${LDFLAGS} \"/" cmake/DefaultCFlags.cmake || die | ||
cmake-utils_src_configure | ||
} |