public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: net-libs/ignition-transport/
@ 2015-09-16 14:19 Alexis Ballier
  0 siblings, 0 replies; 29+ messages in thread
From: Alexis Ballier @ 2015-09-16 14:19 UTC (permalink / raw
  To: gentoo-commits

commit:     3f13a9f257a50791ede00609d741f627aeaaf09f
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 16 14:19:12 2015 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Wed Sep 16 14:19:21 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f13a9f2

net-libs/ignition-transport: initial import. ebuild by me.

Package-Manager: portage-2.2.20.1

 net-libs/ignition-transport/Manifest               |  1 +
 .../ignition-transport-0.7.0.ebuild                | 34 ++++++++++++++++++++++
 net-libs/ignition-transport/metadata.xml           |  8 +++++
 3 files changed, 43 insertions(+)

diff --git a/net-libs/ignition-transport/Manifest b/net-libs/ignition-transport/Manifest
new file mode 100644
index 0000000..85768b9
--- /dev/null
+++ b/net-libs/ignition-transport/Manifest
@@ -0,0 +1 @@
+DIST ignition-transport-0.7.0.tar.bz2 339283 SHA256 93629936bf1de3fe8168f97028d76d5c34ad1ecb0869d1a2bbfc7ede0797dc61 SHA512 ce28f5cc9a4e2c71f84bdfd210f43c1410e8ae9bb59568e74ca0c33fe029ba41e016d2defbba8003f5a8228b4a068813c3fd6124f17e583c87dfa27d15303282 WHIRLPOOL 8fd7de962b67b94bde2e4c163d50b660d3b144260a3a8bdc0421775b7fb67c6b5bfd120897b076f6b94b8144720bad953fb00491845296521e3f15fb918bc4c5

diff --git a/net-libs/ignition-transport/ignition-transport-0.7.0.ebuild b/net-libs/ignition-transport/ignition-transport-0.7.0.ebuild
new file mode 100644
index 0000000..0ad985f
--- /dev/null
+++ b/net-libs/ignition-transport/ignition-transport-0.7.0.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit cmake-utils vcs-snapshot flag-o-matic
+
+DESCRIPTION="Combines ZeroMQ with Protobufs to create a fast and efficient message passing system"
+HOMEPAGE="http://ignitionrobotics.org/libraries/transport"
+SRC_URI="http://gazebosim.org/distributions/ign-transport/releases/${P}.tar.bz2"
+
+LICENSE="Apache-2.0"
+SLOT="0/0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND="
+	dev-libs/protobuf:=
+	net-libs/zeromq:=
+	sys-apps/util-linux
+"
+RDEPEND="${DEPEND}"
+DEPEND="${DEPEND}
+	virtual/pkgconfig"
+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
+}

diff --git a/net-libs/ignition-transport/metadata.xml b/net-libs/ignition-transport/metadata.xml
new file mode 100644
index 0000000..e7dd05f
--- /dev/null
+++ b/net-libs/ignition-transport/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<maintainer>
+<email>aballier@gentoo.org</email>
+<name>Alexis Ballier</name>
+</maintainer>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/ignition-transport/
@ 2015-09-21  8:09 Alexis Ballier
  0 siblings, 0 replies; 29+ messages in thread
From: Alexis Ballier @ 2015-09-21  8:09 UTC (permalink / raw
  To: gentoo-commits

commit:     ee853c6c2c994e9b862782674aedf4c9258c93db
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 21 08:08:41 2015 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Mon Sep 21 08:08:41 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee853c6c

net-libs/ignition-transport: Add minimal version on zeromq dep. Might fix bug #560930.

Package-Manager: portage-2.2.20.1

 net-libs/ignition-transport/ignition-transport-0.7.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/ignition-transport/ignition-transport-0.7.0.ebuild b/net-libs/ignition-transport/ignition-transport-0.7.0.ebuild
index 0ad985f..1a6971c 100644
--- a/net-libs/ignition-transport/ignition-transport-0.7.0.ebuild
+++ b/net-libs/ignition-transport/ignition-transport-0.7.0.ebuild
@@ -17,7 +17,7 @@ IUSE=""
 
 DEPEND="
 	dev-libs/protobuf:=
-	net-libs/zeromq:=
+	>=net-libs/zeromq-3.2.0:=
 	sys-apps/util-linux
 "
 RDEPEND="${DEPEND}"


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/ignition-transport/
@ 2015-10-15 11:32 Alexis Ballier
  0 siblings, 0 replies; 29+ messages in thread
From: Alexis Ballier @ 2015-10-15 11:32 UTC (permalink / raw
  To: gentoo-commits

commit:     d517f398ef9006be2992925a4925482edb99f701
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 15 11:32:19 2015 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Thu Oct 15 11:32:19 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d517f398

net-libs/ignition-transport: Bump to 0.9.0.

Package-Manager: portage-2.2.23

 net-libs/ignition-transport/Manifest               |  1 +
 .../ignition-transport-0.9.0.ebuild                | 34 ++++++++++++++++++++++
 2 files changed, 35 insertions(+)

diff --git a/net-libs/ignition-transport/Manifest b/net-libs/ignition-transport/Manifest
index 85768b9..4dd0f71 100644
--- a/net-libs/ignition-transport/Manifest
+++ b/net-libs/ignition-transport/Manifest
@@ -1 +1,2 @@
 DIST ignition-transport-0.7.0.tar.bz2 339283 SHA256 93629936bf1de3fe8168f97028d76d5c34ad1ecb0869d1a2bbfc7ede0797dc61 SHA512 ce28f5cc9a4e2c71f84bdfd210f43c1410e8ae9bb59568e74ca0c33fe029ba41e016d2defbba8003f5a8228b4a068813c3fd6124f17e583c87dfa27d15303282 WHIRLPOOL 8fd7de962b67b94bde2e4c163d50b660d3b144260a3a8bdc0421775b7fb67c6b5bfd120897b076f6b94b8144720bad953fb00491845296521e3f15fb918bc4c5
+DIST ignition-transport-0.9.0.tar.bz2 345080 SHA256 3ff085d0398782e4e5edb48e86b6211eee38c56b415e000f7b02a398fba44895 SHA512 af6f3b678f5ac463b59feb603e138e2ce18f404ac73580384b6fdc2cb502c9f9fb8b3e9280ff250c3ea691dd986c6c6a31296b5e19cf96f5f785da09d2530cbc WHIRLPOOL e920d0e1250eaa38fa9a625dcb7d63cf3574abc9beede6554abc50d17f737d1ff58fa8a34302572cb9e827af72ee7ba3b8b30cc2fab33aa977db41c3ddc7b16b

diff --git a/net-libs/ignition-transport/ignition-transport-0.9.0.ebuild b/net-libs/ignition-transport/ignition-transport-0.9.0.ebuild
new file mode 100644
index 0000000..1a6971c
--- /dev/null
+++ b/net-libs/ignition-transport/ignition-transport-0.9.0.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit cmake-utils vcs-snapshot flag-o-matic
+
+DESCRIPTION="Combines ZeroMQ with Protobufs to create a fast and efficient message passing system"
+HOMEPAGE="http://ignitionrobotics.org/libraries/transport"
+SRC_URI="http://gazebosim.org/distributions/ign-transport/releases/${P}.tar.bz2"
+
+LICENSE="Apache-2.0"
+SLOT="0/0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND="
+	dev-libs/protobuf:=
+	>=net-libs/zeromq-3.2.0:=
+	sys-apps/util-linux
+"
+RDEPEND="${DEPEND}"
+DEPEND="${DEPEND}
+	virtual/pkgconfig"
+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
+}


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/ignition-transport/
@ 2015-10-16 15:39 Alexis Ballier
  0 siblings, 0 replies; 29+ messages in thread
From: Alexis Ballier @ 2015-10-16 15:39 UTC (permalink / raw
  To: gentoo-commits

commit:     ed27b0d79c8fc0c9ad9408f0577bea8ecb296231
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 16 15:39:10 2015 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Fri Oct 16 15:39:10 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed27b0d7

net-libs/ignition-transport: Add missing dep on net-libs/cppzmq. Bug #563248.

Package-Manager: portage-2.2.23

 ...gnition-transport-0.9.0.ebuild => ignition-transport-0.9.0-r1.ebuild} | 1 +
 1 file changed, 1 insertion(+)

diff --git a/net-libs/ignition-transport/ignition-transport-0.9.0.ebuild b/net-libs/ignition-transport/ignition-transport-0.9.0-r1.ebuild
similarity index 98%
rename from net-libs/ignition-transport/ignition-transport-0.9.0.ebuild
rename to net-libs/ignition-transport/ignition-transport-0.9.0-r1.ebuild
index 1a6971c..f965d2f 100644
--- a/net-libs/ignition-transport/ignition-transport-0.9.0.ebuild
+++ b/net-libs/ignition-transport/ignition-transport-0.9.0-r1.ebuild
@@ -19,6 +19,7 @@ DEPEND="
 	dev-libs/protobuf:=
 	>=net-libs/zeromq-3.2.0:=
 	sys-apps/util-linux
+	net-libs/cppzmq
 "
 RDEPEND="${DEPEND}"
 DEPEND="${DEPEND}


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/ignition-transport/
@ 2016-02-09  8:45 Alexis Ballier
  0 siblings, 0 replies; 29+ messages in thread
From: Alexis Ballier @ 2016-02-09  8:45 UTC (permalink / raw
  To: gentoo-commits

commit:     3158ee617a77e6127582cf3d9986cf30c030fb5e
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Tue Feb  9 08:02:39 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Tue Feb  9 08:45:48 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3158ee61

net-libs/ignition-transport: bump to 1.0.1

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>

 net-libs/ignition-transport/Manifest               |  1 +
 .../ignition-transport-1.0.1.ebuild                | 35 ++++++++++++++++++++++
 2 files changed, 36 insertions(+)

diff --git a/net-libs/ignition-transport/Manifest b/net-libs/ignition-transport/Manifest
index 4dd0f71..90c7bb4 100644
--- a/net-libs/ignition-transport/Manifest
+++ b/net-libs/ignition-transport/Manifest
@@ -1,2 +1,3 @@
 DIST ignition-transport-0.7.0.tar.bz2 339283 SHA256 93629936bf1de3fe8168f97028d76d5c34ad1ecb0869d1a2bbfc7ede0797dc61 SHA512 ce28f5cc9a4e2c71f84bdfd210f43c1410e8ae9bb59568e74ca0c33fe029ba41e016d2defbba8003f5a8228b4a068813c3fd6124f17e583c87dfa27d15303282 WHIRLPOOL 8fd7de962b67b94bde2e4c163d50b660d3b144260a3a8bdc0421775b7fb67c6b5bfd120897b076f6b94b8144720bad953fb00491845296521e3f15fb918bc4c5
 DIST ignition-transport-0.9.0.tar.bz2 345080 SHA256 3ff085d0398782e4e5edb48e86b6211eee38c56b415e000f7b02a398fba44895 SHA512 af6f3b678f5ac463b59feb603e138e2ce18f404ac73580384b6fdc2cb502c9f9fb8b3e9280ff250c3ea691dd986c6c6a31296b5e19cf96f5f785da09d2530cbc WHIRLPOOL e920d0e1250eaa38fa9a625dcb7d63cf3574abc9beede6554abc50d17f737d1ff58fa8a34302572cb9e827af72ee7ba3b8b30cc2fab33aa977db41c3ddc7b16b
+DIST ignition-transport-1.0.1.tar.bz2 342960 SHA256 584b9b2ff29c349893e8b97761acfea70097f45374554d5ed0b57abac1691e23 SHA512 82314bd413fac111c07ec1ba3f32ecee3995087a98b40c97f6c634ecad3ba6a046a600a3c387f6d7a33997bb7e5a1bac962613146ac09c717d91624333d7e0a3 WHIRLPOOL 0013302cb1216513505c8eff7f11c38e5ec1e4f370bfb00c910a2682b704e0140f9f9bc032fe092ff03aaa28f5e1ce8d14d246bc5a672a60be072fb4af4e6fab

diff --git a/net-libs/ignition-transport/ignition-transport-1.0.1.ebuild b/net-libs/ignition-transport/ignition-transport-1.0.1.ebuild
new file mode 100644
index 0000000..f965d2f
--- /dev/null
+++ b/net-libs/ignition-transport/ignition-transport-1.0.1.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit cmake-utils vcs-snapshot flag-o-matic
+
+DESCRIPTION="Combines ZeroMQ with Protobufs to create a fast and efficient message passing system"
+HOMEPAGE="http://ignitionrobotics.org/libraries/transport"
+SRC_URI="http://gazebosim.org/distributions/ign-transport/releases/${P}.tar.bz2"
+
+LICENSE="Apache-2.0"
+SLOT="0/0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND="
+	dev-libs/protobuf:=
+	>=net-libs/zeromq-3.2.0:=
+	sys-apps/util-linux
+	net-libs/cppzmq
+"
+RDEPEND="${DEPEND}"
+DEPEND="${DEPEND}
+	virtual/pkgconfig"
+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
+}


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/ignition-transport/
@ 2016-03-10  9:46 Alexis Ballier
  0 siblings, 0 replies; 29+ messages in thread
From: Alexis Ballier @ 2016-03-10  9:46 UTC (permalink / raw
  To: gentoo-commits

commit:     0883ae9a7d29e8d37df50fdf0191364a61d3b064
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 10 09:45:13 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Thu Mar 10 09:45:13 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0883ae9a

net-libs/ignition-transport: bump to 1.1.0

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>

 net-libs/ignition-transport/Manifest               |  1 +
 .../ignition-transport-1.1.0.ebuild                | 35 ++++++++++++++++++++++
 2 files changed, 36 insertions(+)

diff --git a/net-libs/ignition-transport/Manifest b/net-libs/ignition-transport/Manifest
index 90c7bb4..4be5c0a 100644
--- a/net-libs/ignition-transport/Manifest
+++ b/net-libs/ignition-transport/Manifest
@@ -1,3 +1,4 @@
 DIST ignition-transport-0.7.0.tar.bz2 339283 SHA256 93629936bf1de3fe8168f97028d76d5c34ad1ecb0869d1a2bbfc7ede0797dc61 SHA512 ce28f5cc9a4e2c71f84bdfd210f43c1410e8ae9bb59568e74ca0c33fe029ba41e016d2defbba8003f5a8228b4a068813c3fd6124f17e583c87dfa27d15303282 WHIRLPOOL 8fd7de962b67b94bde2e4c163d50b660d3b144260a3a8bdc0421775b7fb67c6b5bfd120897b076f6b94b8144720bad953fb00491845296521e3f15fb918bc4c5
 DIST ignition-transport-0.9.0.tar.bz2 345080 SHA256 3ff085d0398782e4e5edb48e86b6211eee38c56b415e000f7b02a398fba44895 SHA512 af6f3b678f5ac463b59feb603e138e2ce18f404ac73580384b6fdc2cb502c9f9fb8b3e9280ff250c3ea691dd986c6c6a31296b5e19cf96f5f785da09d2530cbc WHIRLPOOL e920d0e1250eaa38fa9a625dcb7d63cf3574abc9beede6554abc50d17f737d1ff58fa8a34302572cb9e827af72ee7ba3b8b30cc2fab33aa977db41c3ddc7b16b
 DIST ignition-transport-1.0.1.tar.bz2 342960 SHA256 584b9b2ff29c349893e8b97761acfea70097f45374554d5ed0b57abac1691e23 SHA512 82314bd413fac111c07ec1ba3f32ecee3995087a98b40c97f6c634ecad3ba6a046a600a3c387f6d7a33997bb7e5a1bac962613146ac09c717d91624333d7e0a3 WHIRLPOOL 0013302cb1216513505c8eff7f11c38e5ec1e4f370bfb00c910a2682b704e0140f9f9bc032fe092ff03aaa28f5e1ce8d14d246bc5a672a60be072fb4af4e6fab
+DIST ignition-transport-1.1.0.tar.bz2 346403 SHA256 ed3617e7b1de58d3457f7cf79e6b70111f42a83e8f0c46dde834fce9516ffb7f SHA512 3493b0d3b00472544ee71d05faa6994b3f8fade0c56a886f797c458d9da82e894991188d59fca8de7474f482b86beacd440b51f0f590d710051dd83267cbc4a7 WHIRLPOOL 67dd0705ab501e0eaef6f9f61ef63e928581153bac5ca5d7b4d637e3e124c7e7a7bac12708d0eca887c236836a252dcd442f021572a4e0841a4a018b00eb0920

diff --git a/net-libs/ignition-transport/ignition-transport-1.1.0.ebuild b/net-libs/ignition-transport/ignition-transport-1.1.0.ebuild
new file mode 100644
index 0000000..f965d2f
--- /dev/null
+++ b/net-libs/ignition-transport/ignition-transport-1.1.0.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit cmake-utils vcs-snapshot flag-o-matic
+
+DESCRIPTION="Combines ZeroMQ with Protobufs to create a fast and efficient message passing system"
+HOMEPAGE="http://ignitionrobotics.org/libraries/transport"
+SRC_URI="http://gazebosim.org/distributions/ign-transport/releases/${P}.tar.bz2"
+
+LICENSE="Apache-2.0"
+SLOT="0/0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND="
+	dev-libs/protobuf:=
+	>=net-libs/zeromq-3.2.0:=
+	sys-apps/util-linux
+	net-libs/cppzmq
+"
+RDEPEND="${DEPEND}"
+DEPEND="${DEPEND}
+	virtual/pkgconfig"
+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
+}


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/ignition-transport/
@ 2016-04-25 10:41 Alexis Ballier
  0 siblings, 0 replies; 29+ messages in thread
From: Alexis Ballier @ 2016-04-25 10:41 UTC (permalink / raw
  To: gentoo-commits

commit:     778c729f1c85b4b25031c78bce74844bf64b0867
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 25 10:38:18 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Mon Apr 25 10:41:19 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=778c729f

net-libs/ignition-transport: remove old

Package-Manager: portage-2.2.28

 net-libs/ignition-transport/Manifest               |  3 --
 .../ignition-transport-0.7.0.ebuild                | 34 ---------------------
 .../ignition-transport-0.9.0-r1.ebuild             | 35 ----------------------
 .../ignition-transport-1.0.1.ebuild                | 35 ----------------------
 4 files changed, 107 deletions(-)

diff --git a/net-libs/ignition-transport/Manifest b/net-libs/ignition-transport/Manifest
index 4be5c0a..b7cf4e6 100644
--- a/net-libs/ignition-transport/Manifest
+++ b/net-libs/ignition-transport/Manifest
@@ -1,4 +1 @@
-DIST ignition-transport-0.7.0.tar.bz2 339283 SHA256 93629936bf1de3fe8168f97028d76d5c34ad1ecb0869d1a2bbfc7ede0797dc61 SHA512 ce28f5cc9a4e2c71f84bdfd210f43c1410e8ae9bb59568e74ca0c33fe029ba41e016d2defbba8003f5a8228b4a068813c3fd6124f17e583c87dfa27d15303282 WHIRLPOOL 8fd7de962b67b94bde2e4c163d50b660d3b144260a3a8bdc0421775b7fb67c6b5bfd120897b076f6b94b8144720bad953fb00491845296521e3f15fb918bc4c5
-DIST ignition-transport-0.9.0.tar.bz2 345080 SHA256 3ff085d0398782e4e5edb48e86b6211eee38c56b415e000f7b02a398fba44895 SHA512 af6f3b678f5ac463b59feb603e138e2ce18f404ac73580384b6fdc2cb502c9f9fb8b3e9280ff250c3ea691dd986c6c6a31296b5e19cf96f5f785da09d2530cbc WHIRLPOOL e920d0e1250eaa38fa9a625dcb7d63cf3574abc9beede6554abc50d17f737d1ff58fa8a34302572cb9e827af72ee7ba3b8b30cc2fab33aa977db41c3ddc7b16b
-DIST ignition-transport-1.0.1.tar.bz2 342960 SHA256 584b9b2ff29c349893e8b97761acfea70097f45374554d5ed0b57abac1691e23 SHA512 82314bd413fac111c07ec1ba3f32ecee3995087a98b40c97f6c634ecad3ba6a046a600a3c387f6d7a33997bb7e5a1bac962613146ac09c717d91624333d7e0a3 WHIRLPOOL 0013302cb1216513505c8eff7f11c38e5ec1e4f370bfb00c910a2682b704e0140f9f9bc032fe092ff03aaa28f5e1ce8d14d246bc5a672a60be072fb4af4e6fab
 DIST ignition-transport-1.1.0.tar.bz2 346403 SHA256 ed3617e7b1de58d3457f7cf79e6b70111f42a83e8f0c46dde834fce9516ffb7f SHA512 3493b0d3b00472544ee71d05faa6994b3f8fade0c56a886f797c458d9da82e894991188d59fca8de7474f482b86beacd440b51f0f590d710051dd83267cbc4a7 WHIRLPOOL 67dd0705ab501e0eaef6f9f61ef63e928581153bac5ca5d7b4d637e3e124c7e7a7bac12708d0eca887c236836a252dcd442f021572a4e0841a4a018b00eb0920

diff --git a/net-libs/ignition-transport/ignition-transport-0.7.0.ebuild b/net-libs/ignition-transport/ignition-transport-0.7.0.ebuild
deleted file mode 100644
index 1a6971c..0000000
--- a/net-libs/ignition-transport/ignition-transport-0.7.0.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit cmake-utils vcs-snapshot flag-o-matic
-
-DESCRIPTION="Combines ZeroMQ with Protobufs to create a fast and efficient message passing system"
-HOMEPAGE="http://ignitionrobotics.org/libraries/transport"
-SRC_URI="http://gazebosim.org/distributions/ign-transport/releases/${P}.tar.bz2"
-
-LICENSE="Apache-2.0"
-SLOT="0/0"
-KEYWORDS="~amd64"
-IUSE=""
-
-DEPEND="
-	dev-libs/protobuf:=
-	>=net-libs/zeromq-3.2.0:=
-	sys-apps/util-linux
-"
-RDEPEND="${DEPEND}"
-DEPEND="${DEPEND}
-	virtual/pkgconfig"
-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
-}

diff --git a/net-libs/ignition-transport/ignition-transport-0.9.0-r1.ebuild b/net-libs/ignition-transport/ignition-transport-0.9.0-r1.ebuild
deleted file mode 100644
index f965d2f..0000000
--- a/net-libs/ignition-transport/ignition-transport-0.9.0-r1.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit cmake-utils vcs-snapshot flag-o-matic
-
-DESCRIPTION="Combines ZeroMQ with Protobufs to create a fast and efficient message passing system"
-HOMEPAGE="http://ignitionrobotics.org/libraries/transport"
-SRC_URI="http://gazebosim.org/distributions/ign-transport/releases/${P}.tar.bz2"
-
-LICENSE="Apache-2.0"
-SLOT="0/0"
-KEYWORDS="~amd64"
-IUSE=""
-
-DEPEND="
-	dev-libs/protobuf:=
-	>=net-libs/zeromq-3.2.0:=
-	sys-apps/util-linux
-	net-libs/cppzmq
-"
-RDEPEND="${DEPEND}"
-DEPEND="${DEPEND}
-	virtual/pkgconfig"
-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
-}

diff --git a/net-libs/ignition-transport/ignition-transport-1.0.1.ebuild b/net-libs/ignition-transport/ignition-transport-1.0.1.ebuild
deleted file mode 100644
index f965d2f..0000000
--- a/net-libs/ignition-transport/ignition-transport-1.0.1.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit cmake-utils vcs-snapshot flag-o-matic
-
-DESCRIPTION="Combines ZeroMQ with Protobufs to create a fast and efficient message passing system"
-HOMEPAGE="http://ignitionrobotics.org/libraries/transport"
-SRC_URI="http://gazebosim.org/distributions/ign-transport/releases/${P}.tar.bz2"
-
-LICENSE="Apache-2.0"
-SLOT="0/0"
-KEYWORDS="~amd64"
-IUSE=""
-
-DEPEND="
-	dev-libs/protobuf:=
-	>=net-libs/zeromq-3.2.0:=
-	sys-apps/util-linux
-	net-libs/cppzmq
-"
-RDEPEND="${DEPEND}"
-DEPEND="${DEPEND}
-	virtual/pkgconfig"
-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
-}


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/ignition-transport/
@ 2016-05-10 13:20 Alexis Ballier
  0 siblings, 0 replies; 29+ messages in thread
From: Alexis Ballier @ 2016-05-10 13:20 UTC (permalink / raw
  To: gentoo-commits

commit:     9636fd064ee63d6f2a7b0bba798302c3c9f781da
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Tue May 10 13:20:35 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Tue May 10 13:20:46 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9636fd06

net-libs/ignition-transport: bump to 1.2.0

Package-Manager: portage-2.2.28

 net-libs/ignition-transport/Manifest               |  1 +
 .../ignition-transport-1.2.0.ebuild                | 36 ++++++++++++++++++++++
 2 files changed, 37 insertions(+)

diff --git a/net-libs/ignition-transport/Manifest b/net-libs/ignition-transport/Manifest
index b7cf4e6..87fba28 100644
--- a/net-libs/ignition-transport/Manifest
+++ b/net-libs/ignition-transport/Manifest
@@ -1 +1,2 @@
 DIST ignition-transport-1.1.0.tar.bz2 346403 SHA256 ed3617e7b1de58d3457f7cf79e6b70111f42a83e8f0c46dde834fce9516ffb7f SHA512 3493b0d3b00472544ee71d05faa6994b3f8fade0c56a886f797c458d9da82e894991188d59fca8de7474f482b86beacd440b51f0f590d710051dd83267cbc4a7 WHIRLPOOL 67dd0705ab501e0eaef6f9f61ef63e928581153bac5ca5d7b4d637e3e124c7e7a7bac12708d0eca887c236836a252dcd442f021572a4e0841a4a018b00eb0920
+DIST ignition-transport-1.2.0.tar.bz2 351845 SHA256 80935b712aa175c7f72d66269a7c03c8db0082539fc2bea5f9e8d896754240cc SHA512 3826c8d267fcf702497c338db0f18e2297e03ce0f6de721773a0a61f16a4b505dda5269be335af4dfecf0d59402a098650ef41be6ba45d7a6ce53ee2f619ee95 WHIRLPOOL b982d75c980a7eed6c0f7cb753c17ebf9478b2b0dc9a47191562a64d249194faca00d3213809c042a2156dd1bbf97df50c8fedc1df151a63f4b70c3a9e882961

diff --git a/net-libs/ignition-transport/ignition-transport-1.2.0.ebuild b/net-libs/ignition-transport/ignition-transport-1.2.0.ebuild
new file mode 100644
index 0000000..94fde8b
--- /dev/null
+++ b/net-libs/ignition-transport/ignition-transport-1.2.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit cmake-utils vcs-snapshot flag-o-matic
+
+DESCRIPTION="Combines ZeroMQ with Protobufs to create a fast and efficient message passing system"
+HOMEPAGE="http://ignitionrobotics.org/libraries/transport"
+SRC_URI="http://gazebosim.org/distributions/ign-transport/releases/${P}.tar.bz2"
+
+LICENSE="Apache-2.0"
+SLOT="0/0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND="
+	dev-libs/protobuf:=
+	>=net-libs/zeromq-3.2.0:=
+	sys-apps/util-linux
+	net-libs/cppzmq
+"
+RDEPEND="${DEPEND}"
+DEPEND="${DEPEND}
+	virtual/pkgconfig"
+CMAKE_BUILD_TYPE=RelWithDebInfo
+PATCHES=( "${FILESDIR}/protobuf3.patch" )
+
+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
+}


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/ignition-transport/
@ 2016-07-29 10:15 Alexis Ballier
  0 siblings, 0 replies; 29+ messages in thread
From: Alexis Ballier @ 2016-07-29 10:15 UTC (permalink / raw
  To: gentoo-commits

commit:     c9c848bb2129c7f991096928ac5ac835eb2f6567
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 29 10:15:03 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Fri Jul 29 10:15:03 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9c848bb

net-libs/ignition-transport: bump to 1.3.0

Package-Manager: portage-2.3.0

 net-libs/ignition-transport/Manifest               |  1 +
 .../ignition-transport-1.3.0.ebuild                | 36 ++++++++++++++++++++++
 2 files changed, 37 insertions(+)

diff --git a/net-libs/ignition-transport/Manifest b/net-libs/ignition-transport/Manifest
index 87fba28..84353cc 100644
--- a/net-libs/ignition-transport/Manifest
+++ b/net-libs/ignition-transport/Manifest
@@ -1,2 +1,3 @@
 DIST ignition-transport-1.1.0.tar.bz2 346403 SHA256 ed3617e7b1de58d3457f7cf79e6b70111f42a83e8f0c46dde834fce9516ffb7f SHA512 3493b0d3b00472544ee71d05faa6994b3f8fade0c56a886f797c458d9da82e894991188d59fca8de7474f482b86beacd440b51f0f590d710051dd83267cbc4a7 WHIRLPOOL 67dd0705ab501e0eaef6f9f61ef63e928581153bac5ca5d7b4d637e3e124c7e7a7bac12708d0eca887c236836a252dcd442f021572a4e0841a4a018b00eb0920
 DIST ignition-transport-1.2.0.tar.bz2 351845 SHA256 80935b712aa175c7f72d66269a7c03c8db0082539fc2bea5f9e8d896754240cc SHA512 3826c8d267fcf702497c338db0f18e2297e03ce0f6de721773a0a61f16a4b505dda5269be335af4dfecf0d59402a098650ef41be6ba45d7a6ce53ee2f619ee95 WHIRLPOOL b982d75c980a7eed6c0f7cb753c17ebf9478b2b0dc9a47191562a64d249194faca00d3213809c042a2156dd1bbf97df50c8fedc1df151a63f4b70c3a9e882961
+DIST ignition-transport-1.3.0.tar.bz2 348943 SHA256 5fd2d54b6554bd61b10d66cf5e4d597b44a55e30e16c8ba3e1f4382efcdee006 SHA512 a374325840263464ef6b1eef84f332106ac999ba3c2cb2dc425f5eecead27768007a3178f188cdb450ea72423148098333ee34a37344130afaaa4f6b75112d02 WHIRLPOOL 1e8d703757cedd67d0c6bcb36ee62e78c662eb7875426e928e5d7af5e141bf9fdf0998ab8c918e2786e890daa71c72c9ea40926d197628fe61c9a4dafbded31f

diff --git a/net-libs/ignition-transport/ignition-transport-1.3.0.ebuild b/net-libs/ignition-transport/ignition-transport-1.3.0.ebuild
new file mode 100644
index 0000000..51f5f08
--- /dev/null
+++ b/net-libs/ignition-transport/ignition-transport-1.3.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit cmake-utils vcs-snapshot flag-o-matic
+
+DESCRIPTION="Combines ZeroMQ with Protobufs to create a fast and efficient message passing system"
+HOMEPAGE="http://ignitionrobotics.org/libraries/transport"
+SRC_URI="http://gazebosim.org/distributions/ign-transport/releases/${P}.tar.bz2"
+
+LICENSE="Apache-2.0"
+SLOT="0/0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND="
+	dev-libs/protobuf:=
+	>=net-libs/zeromq-3.2.0:=
+	sys-apps/util-linux
+	net-libs/cppzmq
+"
+RDEPEND="${DEPEND}"
+DEPEND="${DEPEND}
+	virtual/pkgconfig"
+CMAKE_BUILD_TYPE=RelWithDebInfo
+PATCHES=( "${FILESDIR}/protobuf3.patch" )
+
+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
+}


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/ignition-transport/
@ 2016-10-12 11:23 Alexis Ballier
  0 siblings, 0 replies; 29+ messages in thread
From: Alexis Ballier @ 2016-10-12 11:23 UTC (permalink / raw
  To: gentoo-commits

commit:     5061198e5babaa197fcf46cb750111080cf56c5c
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 12 08:52:32 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Wed Oct 12 11:23:24 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5061198e

net-libs/ignition-transport: remove old

Package-Manager: portage-2.3.2

 net-libs/ignition-transport/Manifest               |  2 --
 .../ignition-transport-1.1.0.ebuild                | 36 ----------------------
 .../ignition-transport-1.2.0.ebuild                | 36 ----------------------
 3 files changed, 74 deletions(-)

diff --git a/net-libs/ignition-transport/Manifest b/net-libs/ignition-transport/Manifest
index 84353cc..8434713 100644
--- a/net-libs/ignition-transport/Manifest
+++ b/net-libs/ignition-transport/Manifest
@@ -1,3 +1 @@
-DIST ignition-transport-1.1.0.tar.bz2 346403 SHA256 ed3617e7b1de58d3457f7cf79e6b70111f42a83e8f0c46dde834fce9516ffb7f SHA512 3493b0d3b00472544ee71d05faa6994b3f8fade0c56a886f797c458d9da82e894991188d59fca8de7474f482b86beacd440b51f0f590d710051dd83267cbc4a7 WHIRLPOOL 67dd0705ab501e0eaef6f9f61ef63e928581153bac5ca5d7b4d637e3e124c7e7a7bac12708d0eca887c236836a252dcd442f021572a4e0841a4a018b00eb0920
-DIST ignition-transport-1.2.0.tar.bz2 351845 SHA256 80935b712aa175c7f72d66269a7c03c8db0082539fc2bea5f9e8d896754240cc SHA512 3826c8d267fcf702497c338db0f18e2297e03ce0f6de721773a0a61f16a4b505dda5269be335af4dfecf0d59402a098650ef41be6ba45d7a6ce53ee2f619ee95 WHIRLPOOL b982d75c980a7eed6c0f7cb753c17ebf9478b2b0dc9a47191562a64d249194faca00d3213809c042a2156dd1bbf97df50c8fedc1df151a63f4b70c3a9e882961
 DIST ignition-transport-1.3.0.tar.bz2 348943 SHA256 5fd2d54b6554bd61b10d66cf5e4d597b44a55e30e16c8ba3e1f4382efcdee006 SHA512 a374325840263464ef6b1eef84f332106ac999ba3c2cb2dc425f5eecead27768007a3178f188cdb450ea72423148098333ee34a37344130afaaa4f6b75112d02 WHIRLPOOL 1e8d703757cedd67d0c6bcb36ee62e78c662eb7875426e928e5d7af5e141bf9fdf0998ab8c918e2786e890daa71c72c9ea40926d197628fe61c9a4dafbded31f

diff --git a/net-libs/ignition-transport/ignition-transport-1.1.0.ebuild b/net-libs/ignition-transport/ignition-transport-1.1.0.ebuild
deleted file mode 100644
index 94fde8b..00000000
--- a/net-libs/ignition-transport/ignition-transport-1.1.0.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit cmake-utils vcs-snapshot flag-o-matic
-
-DESCRIPTION="Combines ZeroMQ with Protobufs to create a fast and efficient message passing system"
-HOMEPAGE="http://ignitionrobotics.org/libraries/transport"
-SRC_URI="http://gazebosim.org/distributions/ign-transport/releases/${P}.tar.bz2"
-
-LICENSE="Apache-2.0"
-SLOT="0/0"
-KEYWORDS="~amd64"
-IUSE=""
-
-DEPEND="
-	dev-libs/protobuf:=
-	>=net-libs/zeromq-3.2.0:=
-	sys-apps/util-linux
-	net-libs/cppzmq
-"
-RDEPEND="${DEPEND}"
-DEPEND="${DEPEND}
-	virtual/pkgconfig"
-CMAKE_BUILD_TYPE=RelWithDebInfo
-PATCHES=( "${FILESDIR}/protobuf3.patch" )
-
-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
-}

diff --git a/net-libs/ignition-transport/ignition-transport-1.2.0.ebuild b/net-libs/ignition-transport/ignition-transport-1.2.0.ebuild
deleted file mode 100644
index 94fde8b..00000000
--- a/net-libs/ignition-transport/ignition-transport-1.2.0.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit cmake-utils vcs-snapshot flag-o-matic
-
-DESCRIPTION="Combines ZeroMQ with Protobufs to create a fast and efficient message passing system"
-HOMEPAGE="http://ignitionrobotics.org/libraries/transport"
-SRC_URI="http://gazebosim.org/distributions/ign-transport/releases/${P}.tar.bz2"
-
-LICENSE="Apache-2.0"
-SLOT="0/0"
-KEYWORDS="~amd64"
-IUSE=""
-
-DEPEND="
-	dev-libs/protobuf:=
-	>=net-libs/zeromq-3.2.0:=
-	sys-apps/util-linux
-	net-libs/cppzmq
-"
-RDEPEND="${DEPEND}"
-DEPEND="${DEPEND}
-	virtual/pkgconfig"
-CMAKE_BUILD_TYPE=RelWithDebInfo
-PATCHES=( "${FILESDIR}/protobuf3.patch" )
-
-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
-}


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/ignition-transport/
@ 2016-10-12 11:23 Alexis Ballier
  0 siblings, 0 replies; 29+ messages in thread
From: Alexis Ballier @ 2016-10-12 11:23 UTC (permalink / raw
  To: gentoo-commits

commit:     c14ef0c24725790b302031beb351349a93ff7178
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 12 09:03:06 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Wed Oct 12 11:23:25 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c14ef0c2

net-libs/ignition-transport: bump to 1.4.0

Package-Manager: portage-2.3.2

 net-libs/ignition-transport/Manifest               |  1 +
 .../ignition-transport-1.4.0.ebuild                | 36 ++++++++++++++++++++++
 2 files changed, 37 insertions(+)

diff --git a/net-libs/ignition-transport/Manifest b/net-libs/ignition-transport/Manifest
index 8434713..838fe79 100644
--- a/net-libs/ignition-transport/Manifest
+++ b/net-libs/ignition-transport/Manifest
@@ -1 +1,2 @@
 DIST ignition-transport-1.3.0.tar.bz2 348943 SHA256 5fd2d54b6554bd61b10d66cf5e4d597b44a55e30e16c8ba3e1f4382efcdee006 SHA512 a374325840263464ef6b1eef84f332106ac999ba3c2cb2dc425f5eecead27768007a3178f188cdb450ea72423148098333ee34a37344130afaaa4f6b75112d02 WHIRLPOOL 1e8d703757cedd67d0c6bcb36ee62e78c662eb7875426e928e5d7af5e141bf9fdf0998ab8c918e2786e890daa71c72c9ea40926d197628fe61c9a4dafbded31f
+DIST ignition-transport-1.4.0.tar.bz2 349098 SHA256 bc612e9781f9cab81cc4111ed0de07c4838303f67c25bc8b663d394b40a8f5d4 SHA512 23f1d1b6982441786a764f902a849d8466943c457a989638ab5d57e936c9a0d4bab324d60c8d7190e40ecc153736d55cf903df6a57cb2cbbda86bbe79ba1055d WHIRLPOOL 6b019c025bc41ad6e7f3e94f220767a652442a05678718f5e686c71f1e2ed30be60f16fb29cfd8df976d87827647f74b3b8664aeea319cb68e44802fbd9f81fa

diff --git a/net-libs/ignition-transport/ignition-transport-1.4.0.ebuild b/net-libs/ignition-transport/ignition-transport-1.4.0.ebuild
new file mode 100644
index 00000000..51f5f08
--- /dev/null
+++ b/net-libs/ignition-transport/ignition-transport-1.4.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit cmake-utils vcs-snapshot flag-o-matic
+
+DESCRIPTION="Combines ZeroMQ with Protobufs to create a fast and efficient message passing system"
+HOMEPAGE="http://ignitionrobotics.org/libraries/transport"
+SRC_URI="http://gazebosim.org/distributions/ign-transport/releases/${P}.tar.bz2"
+
+LICENSE="Apache-2.0"
+SLOT="0/0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND="
+	dev-libs/protobuf:=
+	>=net-libs/zeromq-3.2.0:=
+	sys-apps/util-linux
+	net-libs/cppzmq
+"
+RDEPEND="${DEPEND}"
+DEPEND="${DEPEND}
+	virtual/pkgconfig"
+CMAKE_BUILD_TYPE=RelWithDebInfo
+PATCHES=( "${FILESDIR}/protobuf3.patch" )
+
+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
+}


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/ignition-transport/
@ 2016-11-29 12:18 Alexis Ballier
  0 siblings, 0 replies; 29+ messages in thread
From: Alexis Ballier @ 2016-11-29 12:18 UTC (permalink / raw
  To: gentoo-commits

commit:     5fc651a8de902683da5110c2265c31b0e9feff54
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 29 09:57:32 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Tue Nov 29 12:18:39 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fc651a8

net-libs/ignition-transport: add ignition-transport2 in a new slot

Package-Manager: portage-2.3.2

 net-libs/ignition-transport/Manifest               |  1 +
 .../ignition-transport-2.1.0.ebuild                | 38 ++++++++++++++++++++++
 2 files changed, 39 insertions(+)

diff --git a/net-libs/ignition-transport/Manifest b/net-libs/ignition-transport/Manifest
index f853a63..7e682c8 100644
--- a/net-libs/ignition-transport/Manifest
+++ b/net-libs/ignition-transport/Manifest
@@ -1 +1,2 @@
 DIST ignition-transport-1.4.0.tar.bz2 349098 SHA256 bc612e9781f9cab81cc4111ed0de07c4838303f67c25bc8b663d394b40a8f5d4 SHA512 23f1d1b6982441786a764f902a849d8466943c457a989638ab5d57e936c9a0d4bab324d60c8d7190e40ecc153736d55cf903df6a57cb2cbbda86bbe79ba1055d WHIRLPOOL 6b019c025bc41ad6e7f3e94f220767a652442a05678718f5e686c71f1e2ed30be60f16fb29cfd8df976d87827647f74b3b8664aeea319cb68e44802fbd9f81fa
+DIST ignition-transport2-2.1.0.tar.bz2 372107 SHA256 f1190ee6a880962b9083328efcaf4c8fe4e9f00504da4432cde69820edbc212e SHA512 91aa6dc60db69b6c2fe0f694ef7d0fc91d68bbc55c227039bc9d42833106be05df1e92c6fe97f530e645c358fb073bb449243b03aa16c61917df374c21c45da2 WHIRLPOOL 9b993e5eb3da931014cd229b261fdb901d852ee0b6358e440e127759a5b116f8637c64129d7f102c280a9be10053a2e1611c77b5e03d5031fbfdde6c42d31e2b

diff --git a/net-libs/ignition-transport/ignition-transport-2.1.0.ebuild b/net-libs/ignition-transport/ignition-transport-2.1.0.ebuild
new file mode 100644
index 00000000..4fecd4c
--- /dev/null
+++ b/net-libs/ignition-transport/ignition-transport-2.1.0.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit cmake-utils vcs-snapshot flag-o-matic
+
+DESCRIPTION="Combines ZeroMQ with Protobufs to create a fast and efficient message passing system"
+HOMEPAGE="http://ignitionrobotics.org/libraries/transport"
+SRC_URI="http://gazebosim.org/distributions/ign-transport/releases/${PN}2-${PV}.tar.bz2"
+
+LICENSE="Apache-2.0"
+SLOT="2/0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND="
+	net-libs/ignition-msgs:=
+	dev-libs/protobuf:=
+	>=net-libs/zeromq-3.2.0:=
+	sys-apps/util-linux
+	net-libs/cppzmq
+"
+RDEPEND="${DEPEND}"
+DEPEND="${DEPEND}
+	virtual/pkgconfig"
+CMAKE_BUILD_TYPE=RelWithDebInfo
+PATCHES=( "${FILESDIR}/protobuf3.patch" )
+S="${WORKDIR}/${PN}2-${PV}"
+
+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
+}


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/ignition-transport/
@ 2016-11-29 12:18 Alexis Ballier
  0 siblings, 0 replies; 29+ messages in thread
From: Alexis Ballier @ 2016-11-29 12:18 UTC (permalink / raw
  To: gentoo-commits

commit:     881b533ac79365b2aab0f7d816a5890b56d286a8
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 29 09:34:54 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Tue Nov 29 12:18:39 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=881b533a

net-libs/ignition-transport: remove old

Package-Manager: portage-2.3.2

 net-libs/ignition-transport/Manifest               |  1 -
 .../ignition-transport-1.3.0.ebuild                | 36 ----------------------
 2 files changed, 37 deletions(-)

diff --git a/net-libs/ignition-transport/Manifest b/net-libs/ignition-transport/Manifest
index 838fe79..f853a63 100644
--- a/net-libs/ignition-transport/Manifest
+++ b/net-libs/ignition-transport/Manifest
@@ -1,2 +1 @@
-DIST ignition-transport-1.3.0.tar.bz2 348943 SHA256 5fd2d54b6554bd61b10d66cf5e4d597b44a55e30e16c8ba3e1f4382efcdee006 SHA512 a374325840263464ef6b1eef84f332106ac999ba3c2cb2dc425f5eecead27768007a3178f188cdb450ea72423148098333ee34a37344130afaaa4f6b75112d02 WHIRLPOOL 1e8d703757cedd67d0c6bcb36ee62e78c662eb7875426e928e5d7af5e141bf9fdf0998ab8c918e2786e890daa71c72c9ea40926d197628fe61c9a4dafbded31f
 DIST ignition-transport-1.4.0.tar.bz2 349098 SHA256 bc612e9781f9cab81cc4111ed0de07c4838303f67c25bc8b663d394b40a8f5d4 SHA512 23f1d1b6982441786a764f902a849d8466943c457a989638ab5d57e936c9a0d4bab324d60c8d7190e40ecc153736d55cf903df6a57cb2cbbda86bbe79ba1055d WHIRLPOOL 6b019c025bc41ad6e7f3e94f220767a652442a05678718f5e686c71f1e2ed30be60f16fb29cfd8df976d87827647f74b3b8664aeea319cb68e44802fbd9f81fa

diff --git a/net-libs/ignition-transport/ignition-transport-1.3.0.ebuild b/net-libs/ignition-transport/ignition-transport-1.3.0.ebuild
deleted file mode 100644
index 51f5f08..00000000
--- a/net-libs/ignition-transport/ignition-transport-1.3.0.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit cmake-utils vcs-snapshot flag-o-matic
-
-DESCRIPTION="Combines ZeroMQ with Protobufs to create a fast and efficient message passing system"
-HOMEPAGE="http://ignitionrobotics.org/libraries/transport"
-SRC_URI="http://gazebosim.org/distributions/ign-transport/releases/${P}.tar.bz2"
-
-LICENSE="Apache-2.0"
-SLOT="0/0"
-KEYWORDS="~amd64"
-IUSE=""
-
-DEPEND="
-	dev-libs/protobuf:=
-	>=net-libs/zeromq-3.2.0:=
-	sys-apps/util-linux
-	net-libs/cppzmq
-"
-RDEPEND="${DEPEND}"
-DEPEND="${DEPEND}
-	virtual/pkgconfig"
-CMAKE_BUILD_TYPE=RelWithDebInfo
-PATCHES=( "${FILESDIR}/protobuf3.patch" )
-
-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
-}


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/ignition-transport/
@ 2017-01-17 13:02 Alexis Ballier
  0 siblings, 0 replies; 29+ messages in thread
From: Alexis Ballier @ 2017-01-17 13:02 UTC (permalink / raw
  To: gentoo-commits

commit:     4659e4fb22f40ba32a9088e6739fcab835d09651
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 17 13:01:10 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Tue Jan 17 13:01:10 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4659e4fb

net-libs/ignition-transport: add version 3.0.1

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 net-libs/ignition-transport/Manifest               |  1 +
 .../ignition-transport-3.0.1.ebuild                | 37 ++++++++++++++++++++++
 2 files changed, 38 insertions(+)

diff --git a/net-libs/ignition-transport/Manifest b/net-libs/ignition-transport/Manifest
index 7e682c8..3bb6a82 100644
--- a/net-libs/ignition-transport/Manifest
+++ b/net-libs/ignition-transport/Manifest
@@ -1,2 +1,3 @@
 DIST ignition-transport-1.4.0.tar.bz2 349098 SHA256 bc612e9781f9cab81cc4111ed0de07c4838303f67c25bc8b663d394b40a8f5d4 SHA512 23f1d1b6982441786a764f902a849d8466943c457a989638ab5d57e936c9a0d4bab324d60c8d7190e40ecc153736d55cf903df6a57cb2cbbda86bbe79ba1055d WHIRLPOOL 6b019c025bc41ad6e7f3e94f220767a652442a05678718f5e686c71f1e2ed30be60f16fb29cfd8df976d87827647f74b3b8664aeea319cb68e44802fbd9f81fa
 DIST ignition-transport2-2.1.0.tar.bz2 372107 SHA256 f1190ee6a880962b9083328efcaf4c8fe4e9f00504da4432cde69820edbc212e SHA512 91aa6dc60db69b6c2fe0f694ef7d0fc91d68bbc55c227039bc9d42833106be05df1e92c6fe97f530e645c358fb073bb449243b03aa16c61917df374c21c45da2 WHIRLPOOL 9b993e5eb3da931014cd229b261fdb901d852ee0b6358e440e127759a5b116f8637c64129d7f102c280a9be10053a2e1611c77b5e03d5031fbfdde6c42d31e2b
+DIST ignition-transport3-3.0.1.tar.bz2 384679 SHA256 c2b8dd5f391a30f1239893b51d4ea487fd47bfe12ccdb3876a83df192df666be SHA512 a2e80d3b5a8b0ca327bd8892d1177f8316d3e2dbbb6f064626e00eb5e67572519377290973527d69ab4a8ff3970c350a7066625429d3a8403a5be8d491fb89c6 WHIRLPOOL 986b4af3deb1d24c3a4f9ff89b3e526efbf68f278b9ed0fff513fbf095e2f1752a4552a8c652545619fa3f5223f0353b68c728af0623f0ec66a2f6bc5aee01a5

diff --git a/net-libs/ignition-transport/ignition-transport-3.0.1.ebuild b/net-libs/ignition-transport/ignition-transport-3.0.1.ebuild
new file mode 100644
index 00000000..7e39eeb
--- /dev/null
+++ b/net-libs/ignition-transport/ignition-transport-3.0.1.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit cmake-utils vcs-snapshot flag-o-matic
+
+DESCRIPTION="Combines ZeroMQ with Protobufs to create a fast and efficient message passing system"
+HOMEPAGE="http://ignitionrobotics.org/libraries/transport"
+SRC_URI="http://gazebosim.org/distributions/ign-transport/releases/${PN}3-${PV}.tar.bz2"
+
+LICENSE="Apache-2.0"
+SLOT="3/3"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND="
+	net-libs/ignition-msgs:=
+	dev-libs/protobuf:=
+	>=net-libs/zeromq-3.2.0:=
+	sys-apps/util-linux
+	net-libs/cppzmq
+"
+RDEPEND="${DEPEND}"
+DEPEND="${DEPEND}
+	virtual/pkgconfig"
+CMAKE_BUILD_TYPE=RelWithDebInfo
+S="${WORKDIR}/${PN}3-${PV}"
+
+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
+}


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/ignition-transport/
@ 2017-12-08 18:44 Alexis Ballier
  0 siblings, 0 replies; 29+ messages in thread
From: Alexis Ballier @ 2017-12-08 18:44 UTC (permalink / raw
  To: gentoo-commits

commit:     437b20e7769bb1a7b441b352704c719be48526fc
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Thu Dec  7 08:02:35 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Fri Dec  8 18:44:15 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=437b20e7

net-libs/ignition-transport: bump to 3.1.0

Package-Manager: Portage-2.3.16, Repoman-2.3.6

 net-libs/ignition-transport/Manifest               |  3 +-
 .../ignition-transport-3.1.0.ebuild                | 36 ++++++++++++++++++++++
 2 files changed, 38 insertions(+), 1 deletion(-)

diff --git a/net-libs/ignition-transport/Manifest b/net-libs/ignition-transport/Manifest
index 52516bce7f4..156c1963def 100644
--- a/net-libs/ignition-transport/Manifest
+++ b/net-libs/ignition-transport/Manifest
@@ -1 +1,2 @@
-DIST ignition-transport3-3.0.1.tar.bz2 384679 SHA256 c2b8dd5f391a30f1239893b51d4ea487fd47bfe12ccdb3876a83df192df666be SHA512 a2e80d3b5a8b0ca327bd8892d1177f8316d3e2dbbb6f064626e00eb5e67572519377290973527d69ab4a8ff3970c350a7066625429d3a8403a5be8d491fb89c6 WHIRLPOOL 986b4af3deb1d24c3a4f9ff89b3e526efbf68f278b9ed0fff513fbf095e2f1752a4552a8c652545619fa3f5223f0353b68c728af0623f0ec66a2f6bc5aee01a5
+DIST ignition-transport3-3.0.1.tar.bz2 384679 BLAKE2B 1aace81c8d708dc06dedb53453718b019b1472c6c787fddb3b76c9e97cf2d518db2e037c20451b10c31db8a31d87b70f93c8339515a98f376bb660798bf07cd8 SHA512 a2e80d3b5a8b0ca327bd8892d1177f8316d3e2dbbb6f064626e00eb5e67572519377290973527d69ab4a8ff3970c350a7066625429d3a8403a5be8d491fb89c6
+DIST ignition-transport3-3.1.0.tar.bz2 385946 BLAKE2B 0ae44f0e1cd17369de9ee39f0d128ee5edbc68c1be672be5476d7cf8c161f59c069af63cec1966f6e0ba1c9e56ade0563b6546f7f285bdc49b6941939e2a4379 SHA512 438ab49f1c506e098c00becccf1856b3e0129d60f9aca32f713a74b38aefb178833353ff479c8512e7ffec812bdc0a06eb7f28f09766dc0cc5a9707184151555

diff --git a/net-libs/ignition-transport/ignition-transport-3.1.0.ebuild b/net-libs/ignition-transport/ignition-transport-3.1.0.ebuild
new file mode 100644
index 00000000000..8c6b71bda1c
--- /dev/null
+++ b/net-libs/ignition-transport/ignition-transport-3.1.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+inherit cmake-utils vcs-snapshot flag-o-matic
+
+DESCRIPTION="Combines ZeroMQ with Protobufs to create a fast and efficient message passing system"
+HOMEPAGE="http://ignitionrobotics.org/libraries/transport"
+SRC_URI="http://gazebosim.org/distributions/ign-transport/releases/${PN}3-${PV}.tar.bz2"
+
+LICENSE="Apache-2.0"
+SLOT="3/3"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND="
+	net-libs/ignition-msgs:=
+	dev-libs/protobuf:=
+	>=net-libs/zeromq-3.2.0:=
+	sys-apps/util-linux
+	net-libs/cppzmq
+"
+RDEPEND="${DEPEND}"
+DEPEND="${DEPEND}
+	virtual/pkgconfig"
+CMAKE_BUILD_TYPE=RelWithDebInfo
+S="${WORKDIR}/${PN}3-${PV}"
+
+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
+}


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/ignition-transport/
@ 2018-01-07  7:08 Alexis Ballier
  0 siblings, 0 replies; 29+ messages in thread
From: Alexis Ballier @ 2018-01-07  7:08 UTC (permalink / raw
  To: gentoo-commits

commit:     9baa6c16da83b4d8a791ef4b0127b3218d1686b2
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Sun Jan  7 07:04:50 2018 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Sun Jan  7 07:04:50 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9baa6c16

net-libs/ignition-transport: Remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 net-libs/ignition-transport/Manifest               |  1 -
 .../ignition-transport-3.0.1.ebuild                | 36 ----------------------
 2 files changed, 37 deletions(-)

diff --git a/net-libs/ignition-transport/Manifest b/net-libs/ignition-transport/Manifest
index 156c1963def..3c0b0411f41 100644
--- a/net-libs/ignition-transport/Manifest
+++ b/net-libs/ignition-transport/Manifest
@@ -1,2 +1 @@
-DIST ignition-transport3-3.0.1.tar.bz2 384679 BLAKE2B 1aace81c8d708dc06dedb53453718b019b1472c6c787fddb3b76c9e97cf2d518db2e037c20451b10c31db8a31d87b70f93c8339515a98f376bb660798bf07cd8 SHA512 a2e80d3b5a8b0ca327bd8892d1177f8316d3e2dbbb6f064626e00eb5e67572519377290973527d69ab4a8ff3970c350a7066625429d3a8403a5be8d491fb89c6
 DIST ignition-transport3-3.1.0.tar.bz2 385946 BLAKE2B 0ae44f0e1cd17369de9ee39f0d128ee5edbc68c1be672be5476d7cf8c161f59c069af63cec1966f6e0ba1c9e56ade0563b6546f7f285bdc49b6941939e2a4379 SHA512 438ab49f1c506e098c00becccf1856b3e0129d60f9aca32f713a74b38aefb178833353ff479c8512e7ffec812bdc0a06eb7f28f09766dc0cc5a9707184151555

diff --git a/net-libs/ignition-transport/ignition-transport-3.0.1.ebuild b/net-libs/ignition-transport/ignition-transport-3.0.1.ebuild
deleted file mode 100644
index 8c6b71bda1c..00000000000
--- a/net-libs/ignition-transport/ignition-transport-3.0.1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit cmake-utils vcs-snapshot flag-o-matic
-
-DESCRIPTION="Combines ZeroMQ with Protobufs to create a fast and efficient message passing system"
-HOMEPAGE="http://ignitionrobotics.org/libraries/transport"
-SRC_URI="http://gazebosim.org/distributions/ign-transport/releases/${PN}3-${PV}.tar.bz2"
-
-LICENSE="Apache-2.0"
-SLOT="3/3"
-KEYWORDS="~amd64"
-IUSE=""
-
-DEPEND="
-	net-libs/ignition-msgs:=
-	dev-libs/protobuf:=
-	>=net-libs/zeromq-3.2.0:=
-	sys-apps/util-linux
-	net-libs/cppzmq
-"
-RDEPEND="${DEPEND}"
-DEPEND="${DEPEND}
-	virtual/pkgconfig"
-CMAKE_BUILD_TYPE=RelWithDebInfo
-S="${WORKDIR}/${PN}3-${PV}"
-
-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
-}


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/ignition-transport/
@ 2018-01-07  7:08 Alexis Ballier
  0 siblings, 0 replies; 29+ messages in thread
From: Alexis Ballier @ 2018-01-07  7:08 UTC (permalink / raw
  To: gentoo-commits

commit:     c02a1a615853d1bd5561d69931962a8022049da9
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Sun Jan  7 07:05:27 2018 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Sun Jan  7 07:05:27 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c02a1a61

net-libs/ignition-transport: lock to ignition-msgs slot 0

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 ...tion-transport-3.1.0.ebuild => ignition-transport-3.1.0-r1.ebuild} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-libs/ignition-transport/ignition-transport-3.1.0.ebuild b/net-libs/ignition-transport/ignition-transport-3.1.0-r1.ebuild
similarity index 93%
rename from net-libs/ignition-transport/ignition-transport-3.1.0.ebuild
rename to net-libs/ignition-transport/ignition-transport-3.1.0-r1.ebuild
index 8c6b71bda1c..d90f82ffa1b 100644
--- a/net-libs/ignition-transport/ignition-transport-3.1.0.ebuild
+++ b/net-libs/ignition-transport/ignition-transport-3.1.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -15,7 +15,7 @@ KEYWORDS="~amd64"
 IUSE=""
 
 DEPEND="
-	net-libs/ignition-msgs:=
+	net-libs/ignition-msgs:0=
 	dev-libs/protobuf:=
 	>=net-libs/zeromq-3.2.0:=
 	sys-apps/util-linux


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/ignition-transport/
@ 2018-02-22 20:19 Alexis Ballier
  0 siblings, 0 replies; 29+ messages in thread
From: Alexis Ballier @ 2018-02-22 20:19 UTC (permalink / raw
  To: gentoo-commits

commit:     3b15468d285838fe6b01be10a43e00c6d81b782c
Author:     Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Thu Feb 22 17:43:49 2018 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Thu Feb 22 20:18:29 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b15468d

net-libs/ignition-transport: use HTTPS

 net-libs/ignition-transport/ignition-transport-3.1.0-r1.ebuild | 2 +-
 net-libs/ignition-transport/ignition-transport-4.0.0.ebuild    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-libs/ignition-transport/ignition-transport-3.1.0-r1.ebuild b/net-libs/ignition-transport/ignition-transport-3.1.0-r1.ebuild
index d90f82ffa1b..d061cf3b13b 100644
--- a/net-libs/ignition-transport/ignition-transport-3.1.0-r1.ebuild
+++ b/net-libs/ignition-transport/ignition-transport-3.1.0-r1.ebuild
@@ -6,7 +6,7 @@ EAPI=5
 inherit cmake-utils vcs-snapshot flag-o-matic
 
 DESCRIPTION="Combines ZeroMQ with Protobufs to create a fast and efficient message passing system"
-HOMEPAGE="http://ignitionrobotics.org/libraries/transport"
+HOMEPAGE="https://ignitionrobotics.org/libraries/transport"
 SRC_URI="http://gazebosim.org/distributions/ign-transport/releases/${PN}3-${PV}.tar.bz2"
 
 LICENSE="Apache-2.0"

diff --git a/net-libs/ignition-transport/ignition-transport-4.0.0.ebuild b/net-libs/ignition-transport/ignition-transport-4.0.0.ebuild
index 7fc18b97a88..a2d37bb8411 100644
--- a/net-libs/ignition-transport/ignition-transport-4.0.0.ebuild
+++ b/net-libs/ignition-transport/ignition-transport-4.0.0.ebuild
@@ -6,7 +6,7 @@ EAPI=5
 inherit cmake-utils vcs-snapshot flag-o-matic
 
 DESCRIPTION="Combines ZeroMQ with Protobufs to create a fast and efficient message passing system"
-HOMEPAGE="http://ignitionrobotics.org/libraries/transport"
+HOMEPAGE="https://ignitionrobotics.org/libraries/transport"
 SRC_URI="http://gazebosim.org/distributions/ign-transport/releases/${PN}4-${PV}.tar.bz2"
 
 LICENSE="Apache-2.0"


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/ignition-transport/
@ 2018-02-24 12:31 Alexis Ballier
  0 siblings, 0 replies; 29+ messages in thread
From: Alexis Ballier @ 2018-02-24 12:31 UTC (permalink / raw
  To: gentoo-commits

commit:     568b6318474ff6c5c5c31c15c516a334f2d98949
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 24 09:51:55 2018 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Sat Feb 24 12:31:34 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=568b6318

net-libs/ignition-transport: bump zeromq dep.

Closes: https://bugs.gentoo.org/648616
Package-Manager: Portage-2.3.24, Repoman-2.3.6

 net-libs/ignition-transport/ignition-transport-4.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/ignition-transport/ignition-transport-4.0.0.ebuild b/net-libs/ignition-transport/ignition-transport-4.0.0.ebuild
index a2d37bb8411..90d853fe0fd 100644
--- a/net-libs/ignition-transport/ignition-transport-4.0.0.ebuild
+++ b/net-libs/ignition-transport/ignition-transport-4.0.0.ebuild
@@ -17,7 +17,7 @@ IUSE=""
 DEPEND="
 	net-libs/ignition-msgs:1=
 	dev-libs/protobuf:=
-	>=net-libs/zeromq-3.2.0:=
+	>=net-libs/zeromq-4.2.0:=
 	sys-apps/util-linux
 	net-libs/cppzmq
 "


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/ignition-transport/
@ 2018-10-16 12:36 Andreas Sturmlechner
  0 siblings, 0 replies; 29+ messages in thread
From: Andreas Sturmlechner @ 2018-10-16 12:36 UTC (permalink / raw
  To: gentoo-commits

commit:     a6eeee6f34010d1e4f17e4b9568ceb254db11410
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 16 01:43:02 2018 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Tue Oct 16 12:36:02 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6eeee6f

net-libs/ignition-transport: Drop old

Package-Manager: Portage-2.3.49, Repoman-2.3.10
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 net-libs/ignition-transport/Manifest               |  1 -
 .../ignition-transport-3.1.0-r1.ebuild             | 36 ----------------------
 2 files changed, 37 deletions(-)

diff --git a/net-libs/ignition-transport/Manifest b/net-libs/ignition-transport/Manifest
index 60280941d26..5d89675dd91 100644
--- a/net-libs/ignition-transport/Manifest
+++ b/net-libs/ignition-transport/Manifest
@@ -1,2 +1 @@
-DIST ignition-transport3-3.1.0.tar.bz2 385946 BLAKE2B 0ae44f0e1cd17369de9ee39f0d128ee5edbc68c1be672be5476d7cf8c161f59c069af63cec1966f6e0ba1c9e56ade0563b6546f7f285bdc49b6941939e2a4379 SHA512 438ab49f1c506e098c00becccf1856b3e0129d60f9aca32f713a74b38aefb178833353ff479c8512e7ffec812bdc0a06eb7f28f09766dc0cc5a9707184151555
 DIST ignition-transport4-4.0.0.tar.bz2 396662 BLAKE2B cb4c56954ddcd863d60941c43e38624747ca07e6cb5c7404309012dc9d22fb8a053e1113b117a0ee8447e32b6b52318b5b4844a050e4b8c1feccc2de391c46bf SHA512 90facd527e953d3319b4b3b7c5efa610d6c965fcaaf053b8b32039825fccca89c17f153ffec5c0562d4d3d534741f3d6c1a603eb2c75fd5cb217bf22a6d6e503

diff --git a/net-libs/ignition-transport/ignition-transport-3.1.0-r1.ebuild b/net-libs/ignition-transport/ignition-transport-3.1.0-r1.ebuild
deleted file mode 100644
index d061cf3b13b..00000000000
--- a/net-libs/ignition-transport/ignition-transport-3.1.0-r1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit cmake-utils vcs-snapshot flag-o-matic
-
-DESCRIPTION="Combines ZeroMQ with Protobufs to create a fast and efficient message passing system"
-HOMEPAGE="https://ignitionrobotics.org/libraries/transport"
-SRC_URI="http://gazebosim.org/distributions/ign-transport/releases/${PN}3-${PV}.tar.bz2"
-
-LICENSE="Apache-2.0"
-SLOT="3/3"
-KEYWORDS="~amd64"
-IUSE=""
-
-DEPEND="
-	net-libs/ignition-msgs:0=
-	dev-libs/protobuf:=
-	>=net-libs/zeromq-3.2.0:=
-	sys-apps/util-linux
-	net-libs/cppzmq
-"
-RDEPEND="${DEPEND}"
-DEPEND="${DEPEND}
-	virtual/pkgconfig"
-CMAKE_BUILD_TYPE=RelWithDebInfo
-S="${WORKDIR}/${PN}3-${PV}"
-
-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
-}


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/ignition-transport/
@ 2020-05-15 16:34 Alexis Ballier
  0 siblings, 0 replies; 29+ messages in thread
From: Alexis Ballier @ 2020-05-15 16:34 UTC (permalink / raw
  To: gentoo-commits

commit:     b6744223a2928e15f59a34d363860f92386da4ea
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Fri May 15 08:11:07 2020 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Fri May 15 16:33:42 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6744223

net-libs/ignition-transport: bump to 8.0.0

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>

 net-libs/ignition-transport/Manifest               |  1 +
 .../ignition-transport-8.0.0.ebuild                | 33 ++++++++++++++++++++++
 2 files changed, 34 insertions(+)

diff --git a/net-libs/ignition-transport/Manifest b/net-libs/ignition-transport/Manifest
index 5d89675dd91..53527a03c17 100644
--- a/net-libs/ignition-transport/Manifest
+++ b/net-libs/ignition-transport/Manifest
@@ -1 +1,2 @@
 DIST ignition-transport4-4.0.0.tar.bz2 396662 BLAKE2B cb4c56954ddcd863d60941c43e38624747ca07e6cb5c7404309012dc9d22fb8a053e1113b117a0ee8447e32b6b52318b5b4844a050e4b8c1feccc2de391c46bf SHA512 90facd527e953d3319b4b3b7c5efa610d6c965fcaaf053b8b32039825fccca89c17f153ffec5c0562d4d3d534741f3d6c1a603eb2c75fd5cb217bf22a6d6e503
+DIST ignition-transport8_8.0.0.tar.gz 543654 BLAKE2B 6f4154795d1f4708ad22d19fa573aeafe05710b280ea033d3fe92e50cf7e2426022ea5e98dd3a966dfe9a8b4765fa879050303fe11171a6586294facf7c278aa SHA512 ab1bae994a8676864ceb78b87f2258b8ed22036aed87e815fc22f830edd8b087d1ef0406dc0d053ea823d95b5fb765c4867d27ce5653f1d685001aab0cf0ec03

diff --git a/net-libs/ignition-transport/ignition-transport-8.0.0.ebuild b/net-libs/ignition-transport/ignition-transport-8.0.0.ebuild
new file mode 100644
index 00000000000..9e15e8e7f1a
--- /dev/null
+++ b/net-libs/ignition-transport/ignition-transport-8.0.0.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake-utils
+
+DESCRIPTION="Combines ZeroMQ with Protobufs to create a fast and efficient message passing system"
+HOMEPAGE="https://ignitionrobotics.org/libraries/transport"
+SRC_URI="https://github.com/ignitionrobotics/ign-transport/archive/${PN}8_${PV}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="8"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND="
+	net-libs/ignition-msgs:5=
+	dev-libs/protobuf:=
+	>=net-libs/zeromq-4.2.0:=
+	sys-apps/util-linux
+	net-libs/cppzmq
+	dev-db/sqlite:3
+"
+RDEPEND="${DEPEND}"
+DEPEND="${DEPEND}
+	dev-util/ignition-cmake:2"
+BDEPEND="
+	dev-util/ignition-cmake:2
+	virtual/pkgconfig"
+CMAKE_BUILD_TYPE=RelWithDebInfo
+S="${WORKDIR}/ign-transport-${PN}8_${PV}"
+PATCHES=( "${FILESDIR}/zmq.patch" )


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/ignition-transport/
@ 2020-11-26 18:23 Andreas Sturmlechner
  0 siblings, 0 replies; 29+ messages in thread
From: Andreas Sturmlechner @ 2020-11-26 18:23 UTC (permalink / raw
  To: gentoo-commits

commit:     24294d992e71d95685a890b0015b918c411d7f0b
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Nov  7 20:31:43 2020 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Nov 26 18:23:10 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24294d99

net-libs/ignition-transport: Drop 4.0.0

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 net-libs/ignition-transport/Manifest               |  1 -
 .../ignition-transport-4.0.0.ebuild                | 30 ----------------------
 2 files changed, 31 deletions(-)

diff --git a/net-libs/ignition-transport/Manifest b/net-libs/ignition-transport/Manifest
index 53527a03c17..b067d76f745 100644
--- a/net-libs/ignition-transport/Manifest
+++ b/net-libs/ignition-transport/Manifest
@@ -1,2 +1 @@
-DIST ignition-transport4-4.0.0.tar.bz2 396662 BLAKE2B cb4c56954ddcd863d60941c43e38624747ca07e6cb5c7404309012dc9d22fb8a053e1113b117a0ee8447e32b6b52318b5b4844a050e4b8c1feccc2de391c46bf SHA512 90facd527e953d3319b4b3b7c5efa610d6c965fcaaf053b8b32039825fccca89c17f153ffec5c0562d4d3d534741f3d6c1a603eb2c75fd5cb217bf22a6d6e503
 DIST ignition-transport8_8.0.0.tar.gz 543654 BLAKE2B 6f4154795d1f4708ad22d19fa573aeafe05710b280ea033d3fe92e50cf7e2426022ea5e98dd3a966dfe9a8b4765fa879050303fe11171a6586294facf7c278aa SHA512 ab1bae994a8676864ceb78b87f2258b8ed22036aed87e815fc22f830edd8b087d1ef0406dc0d053ea823d95b5fb765c4867d27ce5653f1d685001aab0cf0ec03

diff --git a/net-libs/ignition-transport/ignition-transport-4.0.0.ebuild b/net-libs/ignition-transport/ignition-transport-4.0.0.ebuild
deleted file mode 100644
index 90d853fe0fd..00000000000
--- a/net-libs/ignition-transport/ignition-transport-4.0.0.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit cmake-utils vcs-snapshot flag-o-matic
-
-DESCRIPTION="Combines ZeroMQ with Protobufs to create a fast and efficient message passing system"
-HOMEPAGE="https://ignitionrobotics.org/libraries/transport"
-SRC_URI="http://gazebosim.org/distributions/ign-transport/releases/${PN}4-${PV}.tar.bz2"
-
-LICENSE="Apache-2.0"
-SLOT="4/4"
-KEYWORDS="~amd64"
-IUSE=""
-
-DEPEND="
-	net-libs/ignition-msgs:1=
-	dev-libs/protobuf:=
-	>=net-libs/zeromq-4.2.0:=
-	sys-apps/util-linux
-	net-libs/cppzmq
-"
-RDEPEND="${DEPEND}"
-DEPEND="${DEPEND}
-	>=dev-util/ignition-cmake-0.4
-	virtual/pkgconfig"
-CMAKE_BUILD_TYPE=RelWithDebInfo
-S="${WORKDIR}/${PN}4-${PV}"
-PATCHES=( "${FILESDIR}/zmq.patch" )


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/ignition-transport/
@ 2021-08-12 13:34 Alexis Ballier
  0 siblings, 0 replies; 29+ messages in thread
From: Alexis Ballier @ 2021-08-12 13:34 UTC (permalink / raw
  To: gentoo-commits

commit:     97c55d9a65a5215e14299bbe9fffa2c5df98544d
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 12 13:20:28 2021 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Thu Aug 12 13:34:38 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97c55d9a

net-libs/ignition-transport: update homepage and desc

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>

 net-libs/ignition-transport/ignition-transport-8.0.0.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/net-libs/ignition-transport/ignition-transport-8.0.0.ebuild b/net-libs/ignition-transport/ignition-transport-8.0.0.ebuild
index 9e15e8e7f1a..e97e11283c4 100644
--- a/net-libs/ignition-transport/ignition-transport-8.0.0.ebuild
+++ b/net-libs/ignition-transport/ignition-transport-8.0.0.ebuild
@@ -1,12 +1,12 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
 inherit cmake-utils
 
-DESCRIPTION="Combines ZeroMQ with Protobufs to create a fast and efficient message passing system"
-HOMEPAGE="https://ignitionrobotics.org/libraries/transport"
+DESCRIPTION="Combines ZeroMQ with Protobufs to create a message passing system"
+HOMEPAGE="https://github.com/ignitionrobotics/ign-transport"
 SRC_URI="https://github.com/ignitionrobotics/ign-transport/archive/${PN}8_${PV}.tar.gz"
 
 LICENSE="Apache-2.0"


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/ignition-transport/
@ 2021-08-12 13:34 Alexis Ballier
  0 siblings, 0 replies; 29+ messages in thread
From: Alexis Ballier @ 2021-08-12 13:34 UTC (permalink / raw
  To: gentoo-commits

commit:     718add23cdf135b966451ce9a951216ff57db242
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 12 13:21:23 2021 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Thu Aug 12 13:34:39 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=718add23

net-libs/ignition-transport: bump to 8.1.0

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>

 net-libs/ignition-transport/Manifest                                    | 2 +-
 ...{ignition-transport-8.0.0.ebuild => ignition-transport-8.1.0.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/ignition-transport/Manifest b/net-libs/ignition-transport/Manifest
index b067d76f745..bd26b45c87e 100644
--- a/net-libs/ignition-transport/Manifest
+++ b/net-libs/ignition-transport/Manifest
@@ -1 +1 @@
-DIST ignition-transport8_8.0.0.tar.gz 543654 BLAKE2B 6f4154795d1f4708ad22d19fa573aeafe05710b280ea033d3fe92e50cf7e2426022ea5e98dd3a966dfe9a8b4765fa879050303fe11171a6586294facf7c278aa SHA512 ab1bae994a8676864ceb78b87f2258b8ed22036aed87e815fc22f830edd8b087d1ef0406dc0d053ea823d95b5fb765c4867d27ce5653f1d685001aab0cf0ec03
+DIST ignition-transport8_8.1.0.tar.gz 663459 BLAKE2B aa3acbf280b6ebdfc7a734521df4edf8724fe24cf92de81e4dd5bf33d65257c929417af205a44b731a878111a3586fef1e9d5b27df0b7343e402424108a22598 SHA512 eb64f18721190fcb79a5b45746fd44fa24274c6fe6c5021dd9306c15a327873377d07d4aa770633982038b84da650d3d0c8a56169222c0c88fa1318314fc4529

diff --git a/net-libs/ignition-transport/ignition-transport-8.0.0.ebuild b/net-libs/ignition-transport/ignition-transport-8.1.0.ebuild
similarity index 100%
rename from net-libs/ignition-transport/ignition-transport-8.0.0.ebuild
rename to net-libs/ignition-transport/ignition-transport-8.1.0.ebuild


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/ignition-transport/
@ 2021-08-12 13:34 Alexis Ballier
  0 siblings, 0 replies; 29+ messages in thread
From: Alexis Ballier @ 2021-08-12 13:34 UTC (permalink / raw
  To: gentoo-commits

commit:     f833af59b5482c084df10f2c68fcc941a28ae86a
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 12 13:25:35 2021 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Thu Aug 12 13:34:39 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f833af59

net-libs/ignition-transport: use cmake eclass

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>

 net-libs/ignition-transport/ignition-transport-8.1.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/ignition-transport/ignition-transport-8.1.0.ebuild b/net-libs/ignition-transport/ignition-transport-8.1.0.ebuild
index 22dfd215af7..7adee87f2cc 100644
--- a/net-libs/ignition-transport/ignition-transport-8.1.0.ebuild
+++ b/net-libs/ignition-transport/ignition-transport-8.1.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit cmake-utils
+inherit cmake
 
 DESCRIPTION="Combines ZeroMQ with Protobufs to create a message passing system"
 HOMEPAGE="https://github.com/ignitionrobotics/ign-transport"


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/ignition-transport/
@ 2022-03-09 14:04 Alexis Ballier
  0 siblings, 0 replies; 29+ messages in thread
From: Alexis Ballier @ 2022-03-09 14:04 UTC (permalink / raw
  To: gentoo-commits

commit:     8ccd562654d21c9e5c5e7ced5752505a82904172
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Wed Mar  9 13:46:13 2022 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Wed Mar  9 14:04:54 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ccd5626

net-libs/ignition-transport: bump to 8.2.1

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>

 net-libs/ignition-transport/Manifest                                    | 2 +-
 ...{ignition-transport-8.1.0.ebuild => ignition-transport-8.2.1.ebuild} | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-libs/ignition-transport/Manifest b/net-libs/ignition-transport/Manifest
index bd26b45c87ee..51f871dbe003 100644
--- a/net-libs/ignition-transport/Manifest
+++ b/net-libs/ignition-transport/Manifest
@@ -1 +1 @@
-DIST ignition-transport8_8.1.0.tar.gz 663459 BLAKE2B aa3acbf280b6ebdfc7a734521df4edf8724fe24cf92de81e4dd5bf33d65257c929417af205a44b731a878111a3586fef1e9d5b27df0b7343e402424108a22598 SHA512 eb64f18721190fcb79a5b45746fd44fa24274c6fe6c5021dd9306c15a327873377d07d4aa770633982038b84da650d3d0c8a56169222c0c88fa1318314fc4529
+DIST ignition-transport8_8.2.1.tar.gz 606719 BLAKE2B 7a7c1af30c3d30a2a0e946c7af39bc7711d75acbae665922167dc1431cbd104c369c34eabd5a651d08f2134492f024b851bbce47831db851567b2f7e0c1b9514 SHA512 517e1e35f1fbc5b2300f1e158de33b9076a8295762c327dca001fbc6373c5794754ba3d05d084140e207930f57a0e34c6e97f2491fe5dc645957f666289260a9

diff --git a/net-libs/ignition-transport/ignition-transport-8.1.0.ebuild b/net-libs/ignition-transport/ignition-transport-8.2.1.ebuild
similarity index 95%
rename from net-libs/ignition-transport/ignition-transport-8.1.0.ebuild
rename to net-libs/ignition-transport/ignition-transport-8.2.1.ebuild
index 7adee87f2cc8..0d785702f142 100644
--- a/net-libs/ignition-transport/ignition-transport-8.1.0.ebuild
+++ b/net-libs/ignition-transport/ignition-transport-8.2.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/ignition-transport/
@ 2022-08-24 11:38 Alexis Ballier
  0 siblings, 0 replies; 29+ messages in thread
From: Alexis Ballier @ 2022-08-24 11:38 UTC (permalink / raw
  To: gentoo-commits

commit:     e8bdd791aa52d61cb936cb093f4be1d9841bcaa0
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 24 10:21:48 2022 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Wed Aug 24 11:38:44 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8bdd791

net-libs/ignition-transport: fix $S

Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>

 net-libs/ignition-transport/ignition-transport-8.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/ignition-transport/ignition-transport-8.3.0.ebuild b/net-libs/ignition-transport/ignition-transport-8.3.0.ebuild
index 0d785702f142..dd2ad51efb98 100644
--- a/net-libs/ignition-transport/ignition-transport-8.3.0.ebuild
+++ b/net-libs/ignition-transport/ignition-transport-8.3.0.ebuild
@@ -29,4 +29,4 @@ BDEPEND="
 	dev-util/ignition-cmake:2
 	virtual/pkgconfig"
 CMAKE_BUILD_TYPE=RelWithDebInfo
-S="${WORKDIR}/ign-transport-${PN}8_${PV}"
+S="${WORKDIR}/gz-transport-ignition-transport8_${PV}"


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/ignition-transport/
@ 2022-08-24 11:38 Alexis Ballier
  0 siblings, 0 replies; 29+ messages in thread
From: Alexis Ballier @ 2022-08-24 11:38 UTC (permalink / raw
  To: gentoo-commits

commit:     8fe1560a657a3694381c9632a029ca1bb1341f2b
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 24 10:20:42 2022 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Wed Aug 24 11:38:44 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fe1560a

net-libs/ignition-transport: bump to 8.3.0

Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>

 net-libs/ignition-transport/Manifest                                    | 2 +-
 ...{ignition-transport-8.2.1.ebuild => ignition-transport-8.3.0.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/ignition-transport/Manifest b/net-libs/ignition-transport/Manifest
index 51f871dbe003..4aa33ea2b3fe 100644
--- a/net-libs/ignition-transport/Manifest
+++ b/net-libs/ignition-transport/Manifest
@@ -1 +1 @@
-DIST ignition-transport8_8.2.1.tar.gz 606719 BLAKE2B 7a7c1af30c3d30a2a0e946c7af39bc7711d75acbae665922167dc1431cbd104c369c34eabd5a651d08f2134492f024b851bbce47831db851567b2f7e0c1b9514 SHA512 517e1e35f1fbc5b2300f1e158de33b9076a8295762c327dca001fbc6373c5794754ba3d05d084140e207930f57a0e34c6e97f2491fe5dc645957f666289260a9
+DIST ignition-transport8_8.3.0.tar.gz 607354 BLAKE2B f6d9213824fe8bd870968762173022cbd9196809574f9c16de625a75e903c883625f27faaf95fad5aa876e8cd2822f082b3dff7e3bd8c90e70766c2073aa19dd SHA512 120e9e7aea50e7f83d854c1ba61696ddf559db000f9d81ebfcad35db6752c1b5b6319163bd35080f5ccd5d2af928734dc836124c065dd77fd4076aedfb569ea4

diff --git a/net-libs/ignition-transport/ignition-transport-8.2.1.ebuild b/net-libs/ignition-transport/ignition-transport-8.3.0.ebuild
similarity index 100%
rename from net-libs/ignition-transport/ignition-transport-8.2.1.ebuild
rename to net-libs/ignition-transport/ignition-transport-8.3.0.ebuild


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/ignition-transport/
@ 2023-08-25 12:54 Alexis Ballier
  0 siblings, 0 replies; 29+ messages in thread
From: Alexis Ballier @ 2023-08-25 12:54 UTC (permalink / raw
  To: gentoo-commits

commit:     fbed161d2f21f364ff6b8e88fc58de517b222c22
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 25 11:56:05 2023 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Fri Aug 25 12:54:03 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbed161d

net-libs/ignition-transport: bump to 8.4.0

Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>

 net-libs/ignition-transport/Manifest                                   | 2 +-
 ...ignition-transport-8.3.0.ebuild => ignition-transport-8.4.0.ebuild} | 3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/net-libs/ignition-transport/Manifest b/net-libs/ignition-transport/Manifest
index 4aa33ea2b3fe..bb415bd6bc13 100644
--- a/net-libs/ignition-transport/Manifest
+++ b/net-libs/ignition-transport/Manifest
@@ -1 +1 @@
-DIST ignition-transport8_8.3.0.tar.gz 607354 BLAKE2B f6d9213824fe8bd870968762173022cbd9196809574f9c16de625a75e903c883625f27faaf95fad5aa876e8cd2822f082b3dff7e3bd8c90e70766c2073aa19dd SHA512 120e9e7aea50e7f83d854c1ba61696ddf559db000f9d81ebfcad35db6752c1b5b6319163bd35080f5ccd5d2af928734dc836124c065dd77fd4076aedfb569ea4
+DIST ignition-transport8_8.4.0.tar.gz 610048 BLAKE2B 82ece18d0777d8ca4f64d3b5c37a8532f3a1d067772303f4373e663a99e95573f8991db465a2d6d86606c8565d2af667c96f2ecf7a8dca032c5ab2d7888e7ea4 SHA512 7ed3d59b707f2d1b26bf80dfa7cc9633d4ce5a39b97c5396012e73bd949859ad3b71f79b8aa025ca78f5c1796bfdc9006c1c704f1b6b75e854ffcfc4c3ab53f8

diff --git a/net-libs/ignition-transport/ignition-transport-8.3.0.ebuild b/net-libs/ignition-transport/ignition-transport-8.4.0.ebuild
similarity index 90%
rename from net-libs/ignition-transport/ignition-transport-8.3.0.ebuild
rename to net-libs/ignition-transport/ignition-transport-8.4.0.ebuild
index dd2ad51efb98..1661b79abf05 100644
--- a/net-libs/ignition-transport/ignition-transport-8.3.0.ebuild
+++ b/net-libs/ignition-transport/ignition-transport-8.4.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -30,3 +30,4 @@ BDEPEND="
 	virtual/pkgconfig"
 CMAKE_BUILD_TYPE=RelWithDebInfo
 S="${WORKDIR}/gz-transport-ignition-transport8_${PV}"
+PATCHES=( "${FILESDIR}/protobuf.patch" )


^ permalink raw reply related	[flat|nested] 29+ messages in thread

end of thread, other threads:[~2023-08-25 12:54 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-05-15 16:34 [gentoo-commits] repo/gentoo:master commit in: net-libs/ignition-transport/ Alexis Ballier
  -- strict thread matches above, loose matches on Subject: below --
2023-08-25 12:54 Alexis Ballier
2022-08-24 11:38 Alexis Ballier
2022-08-24 11:38 Alexis Ballier
2022-03-09 14:04 Alexis Ballier
2021-08-12 13:34 Alexis Ballier
2021-08-12 13:34 Alexis Ballier
2021-08-12 13:34 Alexis Ballier
2020-11-26 18:23 Andreas Sturmlechner
2018-10-16 12:36 Andreas Sturmlechner
2018-02-24 12:31 Alexis Ballier
2018-02-22 20:19 Alexis Ballier
2018-01-07  7:08 Alexis Ballier
2018-01-07  7:08 Alexis Ballier
2017-12-08 18:44 Alexis Ballier
2017-01-17 13:02 Alexis Ballier
2016-11-29 12:18 Alexis Ballier
2016-11-29 12:18 Alexis Ballier
2016-10-12 11:23 Alexis Ballier
2016-10-12 11:23 Alexis Ballier
2016-07-29 10:15 Alexis Ballier
2016-05-10 13:20 Alexis Ballier
2016-04-25 10:41 Alexis Ballier
2016-03-10  9:46 Alexis Ballier
2016-02-09  8:45 Alexis Ballier
2015-10-16 15:39 Alexis Ballier
2015-10-15 11:32 Alexis Ballier
2015-09-21  8:09 Alexis Ballier
2015-09-16 14:19 Alexis Ballier

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox