Gentoo Archives: gentoo-commits

From: Alexis Ballier <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-electronics/gazebo/
Date: Mon, 11 Jul 2016 07:58:55
Message-Id: 1468223922.9d90a4919640baa08778ef7f963cc0edd43ce51f.aballier@gentoo
1 commit: 9d90a4919640baa08778ef7f963cc0edd43ce51f
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jul 11 07:58:15 2016 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 11 07:58:42 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d90a491
7
8 sci-electronics/gazebo: remove old
9
10 Package-Manager: portage-2.3.0
11
12 sci-electronics/gazebo/Manifest | 1 -
13 sci-electronics/gazebo/gazebo-7.1.0.ebuild | 73 ------------------------------
14 2 files changed, 74 deletions(-)
15
16 diff --git a/sci-electronics/gazebo/Manifest b/sci-electronics/gazebo/Manifest
17 index 52d0305..a53315e 100644
18 --- a/sci-electronics/gazebo/Manifest
19 +++ b/sci-electronics/gazebo/Manifest
20 @@ -1,2 +1 @@
21 -DIST gazebo-7.1.0.tar.bz2 51097678 SHA256 93f75ec601bdafd2d4715d7200d81f52123979b00d547635ae38738e6405d863 SHA512 573392d984a2770c2394234da9532d7e46517e8312091fab5a4b3df8ad6997ab2594c7648694cea858f8210938f1c1787c51df80910f554a2bfc005f8894c6fc WHIRLPOOL c5a0ed5ac645ad215f5bc8b1b96d8d2e20ab78b3d5546eb9a1cce5ae0a5941f809760b12f71b12f38b84cab755f95c3b152f0c9633a9815d8ca001f026281a21
22 DIST gazebo-7.2.0.tar.bz2 51084680 SHA256 3e10501379236146f5393fcf02be419ce343bfa76b0f6670d43cc5bc13cd6fb1 SHA512 b484ef589fbcbe3262b257a6741f253ba23837c3585f42a857e7b03acf6dcbf7209a65f1fce9e4ee6df3b8a45a5124015c99e8708644f259e6d1275bbadab503 WHIRLPOOL 595146621ed9f6bbeecb325fddcacf048fadaff69338c2c8cefccb6e82669494d92000ae194e0a1941094491be3ec759165e8f8220fb7649cdb209ee66e5b60a
23
24 diff --git a/sci-electronics/gazebo/gazebo-7.1.0.ebuild b/sci-electronics/gazebo/gazebo-7.1.0.ebuild
25 deleted file mode 100644
26 index 615611c..0000000
27 --- a/sci-electronics/gazebo/gazebo-7.1.0.ebuild
28 +++ /dev/null
29 @@ -1,73 +0,0 @@
30 -# Copyright 1999-2015 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -# $Id$
33 -
34 -EAPI=5
35 -
36 -inherit cmake-utils versionator vcs-snapshot flag-o-matic
37 -
38 -DESCRIPTION="A 3D multiple robot simulator with dynamics"
39 -HOMEPAGE="http://gazebosim.org/"
40 -SRC_URI="http://osrf-distributions.s3.amazonaws.com/gazebo/releases/${P}.tar.bz2"
41 -
42 -LICENSE="Apache-2.0"
43 -SLOT="0"
44 -KEYWORDS="~amd64"
45 -IUSE="cpu_flags_x86_sse2 libav test"
46 -
47 -RDEPEND="
48 - =dev-libs/protobuf-2*:=
49 - virtual/opengl
50 - media-libs/openal
51 - net-misc/curl
52 - dev-libs/tinyxml
53 - dev-libs/tinyxml2
54 - dev-libs/libtar
55 - dev-cpp/tbb
56 - >=dev-games/ogre-1.7.4
57 - sci-libs/libccd
58 - libav? ( >=media-video/libav-9:0= )
59 - !libav? ( >=media-video/ffmpeg-2.6:0= )
60 - sci-libs/gts
61 - >=sci-physics/bullet-2.82
62 - >=dev-libs/sdformat-4.1:=
63 - dev-qt/qtcore:4
64 - dev-qt/qtgui:4
65 - dev-qt/qtwebkit:4
66 - dev-qt/qtxmlpatterns:4
67 - dev-libs/boost:=[threads]
68 - sci-libs/gdal
69 - virtual/libusb:1
70 - dev-libs/libspnav
71 - media-libs/freeimage
72 - sci-libs/hdf5:=
73 - sys-apps/util-linux
74 - media-gfx/graphviz
75 - >=sci-libs/ignition-math-2.3:2=
76 - net-libs/ignition-transport:=
77 -"
78 -DEPEND="${RDEPEND}
79 - dev-qt/qttest:4
80 - app-text/ronn
81 - virtual/pkgconfig
82 - x11-apps/mesa-progs
83 - test? ( dev-libs/libxslt )
84 -"
85 -CMAKE_BUILD_TYPE=RelWithDebInfo
86 -
87 -src_configure() {
88 - # doesnt build without it
89 - append-cxxflags "-std=c++11"
90 - # doesnt build with as-needed either
91 - append-ldflags "-Wl,--no-as-needed"
92 -
93 - local mycmakeargs=(
94 - "-DUSE_UPSTREAM_CFLAGS=OFF"
95 - "-DSSE2_FOUND=$(usex cpu_flags_x86_sse2 TRUE FALSE)"
96 - "-DUSE_HOST_CFLAGS=FALSE"
97 - "-DENABLE_TESTS_COMPILATION=$(usex test TRUE FALSE)"
98 - "-DENABLE_SCREEN_TESTS=FALSE"
99 - "-DUSE_EXTERNAL_TINYXML2=TRUE"
100 - )
101 - cmake-utils_src_configure
102 -}