Gentoo Archives: gentoo-commits

From: Alexis Ballier <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/ignition-transport/
Date: Wed, 12 Oct 2016 11:23:42
Message-Id: 1476271405.c14ef0c24725790b302031beb351349a93ff7178.aballier@gentoo
1 commit: c14ef0c24725790b302031beb351349a93ff7178
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 12 09:03:06 2016 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 12 11:23:25 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c14ef0c2
7
8 net-libs/ignition-transport: bump to 1.4.0
9
10 Package-Manager: portage-2.3.2
11
12 net-libs/ignition-transport/Manifest | 1 +
13 .../ignition-transport-1.4.0.ebuild | 36 ++++++++++++++++++++++
14 2 files changed, 37 insertions(+)
15
16 diff --git a/net-libs/ignition-transport/Manifest b/net-libs/ignition-transport/Manifest
17 index 8434713..838fe79 100644
18 --- a/net-libs/ignition-transport/Manifest
19 +++ b/net-libs/ignition-transport/Manifest
20 @@ -1 +1,2 @@
21 DIST ignition-transport-1.3.0.tar.bz2 348943 SHA256 5fd2d54b6554bd61b10d66cf5e4d597b44a55e30e16c8ba3e1f4382efcdee006 SHA512 a374325840263464ef6b1eef84f332106ac999ba3c2cb2dc425f5eecead27768007a3178f188cdb450ea72423148098333ee34a37344130afaaa4f6b75112d02 WHIRLPOOL 1e8d703757cedd67d0c6bcb36ee62e78c662eb7875426e928e5d7af5e141bf9fdf0998ab8c918e2786e890daa71c72c9ea40926d197628fe61c9a4dafbded31f
22 +DIST ignition-transport-1.4.0.tar.bz2 349098 SHA256 bc612e9781f9cab81cc4111ed0de07c4838303f67c25bc8b663d394b40a8f5d4 SHA512 23f1d1b6982441786a764f902a849d8466943c457a989638ab5d57e936c9a0d4bab324d60c8d7190e40ecc153736d55cf903df6a57cb2cbbda86bbe79ba1055d WHIRLPOOL 6b019c025bc41ad6e7f3e94f220767a652442a05678718f5e686c71f1e2ed30be60f16fb29cfd8df976d87827647f74b3b8664aeea319cb68e44802fbd9f81fa
23
24 diff --git a/net-libs/ignition-transport/ignition-transport-1.4.0.ebuild b/net-libs/ignition-transport/ignition-transport-1.4.0.ebuild
25 new file mode 100644
26 index 00000000..51f5f08
27 --- /dev/null
28 +++ b/net-libs/ignition-transport/ignition-transport-1.4.0.ebuild
29 @@ -0,0 +1,36 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=5
35 +
36 +inherit cmake-utils vcs-snapshot flag-o-matic
37 +
38 +DESCRIPTION="Combines ZeroMQ with Protobufs to create a fast and efficient message passing system"
39 +HOMEPAGE="http://ignitionrobotics.org/libraries/transport"
40 +SRC_URI="http://gazebosim.org/distributions/ign-transport/releases/${P}.tar.bz2"
41 +
42 +LICENSE="Apache-2.0"
43 +SLOT="0/0"
44 +KEYWORDS="~amd64"
45 +IUSE=""
46 +
47 +DEPEND="
48 + dev-libs/protobuf:=
49 + >=net-libs/zeromq-3.2.0:=
50 + sys-apps/util-linux
51 + net-libs/cppzmq
52 +"
53 +RDEPEND="${DEPEND}"
54 +DEPEND="${DEPEND}
55 + virtual/pkgconfig"
56 +CMAKE_BUILD_TYPE=RelWithDebInfo
57 +PATCHES=( "${FILESDIR}/protobuf3.patch" )
58 +
59 +src_configure() {
60 + # upstream appends this conditionally...
61 + append-flags "-fPIC"
62 + echo "set (CMAKE_C_FLAGS_ALL \"${CXXFLAGS} \${CMAKE_C_FLAGS_ALL}\")" > "${S}/cmake/HostCFlags.cmake"
63 + sed -i -e "s/LINK_FLAGS_RELWITHDEBINFO \" \"/LINK_FLAGS_RELWITHDEBINFO \" ${LDFLAGS} \"/" cmake/DefaultCFlags.cmake || die
64 + cmake-utils_src_configure
65 +}