From: "Alexis Ballier" <aballier@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-electronics/gazebo/
Date: Fri, 15 Feb 2019 12:36:03 +0000 (UTC) [thread overview]
Message-ID: <1550234153.3b56d288a60f6ade8eeb8e58c3d8508d8a4c967e.aballier@gentoo> (raw)
commit: 3b56d288a60f6ade8eeb8e58c3d8508d8a4c967e
Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 15 11:41:33 2019 +0000
Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Fri Feb 15 12:35:53 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b56d288
sci-electronics/gazebo: bump to 10.0.0
Package-Manager: Portage-2.3.60, Repoman-2.3.12
Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>
sci-electronics/gazebo/Manifest | 1 +
sci-electronics/gazebo/gazebo-10.0.0.ebuild | 78 +++++++++++++++++++++++++++++
2 files changed, 79 insertions(+)
diff --git a/sci-electronics/gazebo/Manifest b/sci-electronics/gazebo/Manifest
index e0aa0a8f63d..c3d20804e75 100644
--- a/sci-electronics/gazebo/Manifest
+++ b/sci-electronics/gazebo/Manifest
@@ -1,2 +1,3 @@
+DIST gazebo-10.0.0.tar.bz2 52987075 BLAKE2B 38d8954827e2aef1607b5e4841014d394644aa0d7cc8969c18d47dd4311701e70cde40ed8be1e28010c5472bac2787ebd619a72fcdf0c59391f890b53dac2b79 SHA512 ddb7d4514e90722c11de9f0187321d9a9b5eb778c047b432bc6104792f423275b996c76caa91fcc4a6e6cb578fb0d479c429db3e1da25c9ec5da51fb2520e29b
DIST gazebo-9.4.1.tar.bz2 53014386 BLAKE2B c3e450f869f3e5f88bd9b5f5924a6b003880fff492849d6570222c7c37e98f1b89df4dca1af16c9a766b049067bbcc9d86334882041c6420b6b5221dfd643bb0 SHA512 76fb217c396f4d70fa4617df3aa5a672b5ddd4680df22eb3fbe67182ef8b3e05affda2e61f71d03e31f9c47b2f7d56aac162b63dec2f122cef1e47fd65d25f02
DIST gazebo-9.6.0.tar.bz2 52899944 BLAKE2B a1ae213cb81cbfbb62fb8a229f12c0c95c4325a8f2a1aae0d07dfaa3bdf17f4d4c3043f37efb5d407fb34073b354d83e7114e166225b8c90e87329abe1618059 SHA512 ef0cc95897322304e0117947e4b45dfb2c4ef3a24f3fa8c798397b3c6cf68b8193b7013efcf15a01f45b15caeae02ed7dacc53ae3b5dc8fcd393018b33bd3d14
diff --git a/sci-electronics/gazebo/gazebo-10.0.0.ebuild b/sci-electronics/gazebo/gazebo-10.0.0.ebuild
new file mode 100644
index 00000000000..2ba6f5bb35d
--- /dev/null
+++ b/sci-electronics/gazebo/gazebo-10.0.0.ebuild
@@ -0,0 +1,78 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+inherit cmake-utils versionator vcs-snapshot flag-o-matic
+
+DESCRIPTION="A 3D multiple robot simulator with dynamics"
+HOMEPAGE="http://gazebosim.org/"
+SRC_URI="https://osrf-distributions.s3.amazonaws.com/gazebo/releases/${P}.tar.bz2"
+
+LICENSE="Apache-2.0"
+# Subslot = major version = soname of libs
+SLOT="0/10"
+KEYWORDS="~amd64"
+IUSE="cpu_flags_x86_sse2 libav test"
+
+RDEPEND="
+ >=dev-libs/protobuf-2:=
+ virtual/opengl
+ media-libs/openal
+ net-misc/curl
+ dev-libs/tinyxml
+ >=dev-libs/tinyxml2-6:=
+ dev-libs/libtar
+ dev-cpp/tbb
+ >=dev-games/ogre-1.7.4:=[freeimage]
+ <dev-games/ogre-1.10
+ >=media-libs/freeimage-3.15.4[png]
+ sci-libs/libccd
+ libav? ( >=media-video/libav-9:0= )
+ !libav? ( >=media-video/ffmpeg-2.6:0= )
+ sci-libs/gts
+ >=sci-physics/bullet-2.82
+ >=dev-libs/sdformat-6.0:=
+ dev-qt/qtwidgets:5
+ dev-qt/qtcore:5
+ dev-qt/qtopengl:5
+ dev-libs/boost:=[threads]
+ sci-libs/gdal:=
+ virtual/libusb:1
+ dev-libs/libspnav
+ media-libs/freeimage
+ sci-libs/hdf5:=[cxx]
+ sys-apps/util-linux
+ media-gfx/graphviz
+ net-libs/ignition-msgs:1=
+ sci-libs/ignition-math:4=
+ net-libs/ignition-transport:4=
+ x11-libs/qwt:6=[qt5(+)]
+"
+DEPEND="${RDEPEND}
+ dev-qt/qttest:5
+ app-text/ronn
+ app-arch/gzip
+ virtual/pkgconfig
+ x11-apps/mesa-progs
+ test? ( dev-libs/libxslt )
+"
+CMAKE_BUILD_TYPE=RelWithDebInfo
+PATCHES=( "${FILESDIR}/qwt.patch" )
+
+src_configure() {
+ # doesnt build without it
+ append-cxxflags "-std=c++11"
+ # doesnt build with as-needed either
+ append-ldflags "-Wl,--no-as-needed"
+
+ local mycmakeargs=(
+ "-DUSE_UPSTREAM_CFLAGS=OFF"
+ "-DSSE2_FOUND=$(usex cpu_flags_x86_sse2 TRUE FALSE)"
+ "-DUSE_HOST_CFLAGS=FALSE"
+ "-DBUILD_TESTING=$(usex test TRUE FALSE)"
+ "-DENABLE_SCREEN_TESTS=FALSE"
+ "-DUSE_EXTERNAL_TINYXML2=TRUE"
+ )
+ cmake-utils_src_configure
+}
next reply other threads:[~2019-02-15 12:36 UTC|newest]
Thread overview: 58+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-02-15 12:36 Alexis Ballier [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-01-03 15:03 [gentoo-commits] repo/gentoo:master commit in: sci-electronics/gazebo/ Andreas Sturmlechner
2023-11-21 17:47 Alexis Ballier
2023-06-12 14:06 Sam James
2023-02-01 19:27 Andreas Sturmlechner
2022-10-18 13:16 Alexis Ballier
2022-09-04 12:23 David Seifert
2022-04-21 11:16 Alexis Ballier
2022-02-21 17:04 Alexis Ballier
2022-01-28 7:24 Sam James
2021-12-15 9:28 Alexis Ballier
2021-12-15 9:28 Alexis Ballier
2021-12-02 1:25 Sam James
2021-10-29 22:23 Sam James
2021-08-03 15:52 Alexis Ballier
2021-06-18 19:18 David Seifert
2021-05-12 9:53 Alexis Ballier
2020-09-21 13:47 Alexis Ballier
2020-04-26 7:54 Mikle Kolyada
2019-12-10 17:35 Alexis Ballier
2019-04-05 17:11 Alexis Ballier
2018-12-20 16:10 Alexis Ballier
2018-12-20 16:10 Alexis Ballier
2018-10-03 13:52 Alexis Ballier
2018-08-23 11:41 Alexis Ballier
2018-08-22 9:32 Alexis Ballier
2018-07-16 10:51 Alexis Ballier
2018-06-25 4:44 Andreas Sturmlechner
2018-06-25 4:44 Andreas Sturmlechner
2018-06-21 13:36 Alexis Ballier
2018-06-08 12:26 Alexis Ballier
2018-01-28 12:54 Alexis Ballier
2018-01-28 12:54 Alexis Ballier
2018-01-07 7:08 Alexis Ballier
2018-01-07 7:08 Alexis Ballier
2017-12-26 14:54 Alexis Ballier
2017-12-20 16:54 Alexis Ballier
2017-06-29 20:28 Alexis Ballier
2017-05-07 12:36 Alexis Ballier
2017-02-21 9:21 Alexis Ballier
2017-01-17 13:02 Alexis Ballier
2017-01-17 13:02 Alexis Ballier
2017-01-17 12:54 Alexis Ballier
2016-12-29 14:37 Alexis Ballier
2016-12-29 14:37 Alexis Ballier
2016-12-29 14:37 Alexis Ballier
2016-10-12 13:43 Alexis Ballier
2016-10-12 11:23 Alexis Ballier
2016-07-18 12:13 Alexis Ballier
2016-07-11 7:58 Alexis Ballier
2016-06-17 16:27 Alexis Ballier
2016-05-02 16:35 Alexis Ballier
2016-04-09 19:15 Alexis Ballier
2016-03-02 19:36 Alexis Ballier
2016-01-28 20:25 Alexis Ballier
2015-11-01 11:48 Alexis Ballier
2015-09-16 13:17 Alexis Ballier
2015-09-16 11:33 Alexis Ballier
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1550234153.3b56d288a60f6ade8eeb8e58c3d8508d8a4c967e.aballier@gentoo \
--to=aballier@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox