Gentoo Archives: gentoo-commits

From: Alexis Ballier <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/sdformat/
Date: Thu, 29 Dec 2016 15:16:19
Message-Id: 1483024566.1e4f684e077c8b0800b87e203da3a5cffc5d6fd5.aballier@gentoo
1 commit: 1e4f684e077c8b0800b87e203da3a5cffc5d6fd5
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 29 15:16:06 2016 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 29 15:16:06 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e4f684e
7
8 dev-libs/sdformat: remove old
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 dev-libs/sdformat/Manifest | 1 -
13 dev-libs/sdformat/sdformat-4.1.1-r1.ebuild | 40 ------------------------------
14 2 files changed, 41 deletions(-)
15
16 diff --git a/dev-libs/sdformat/Manifest b/dev-libs/sdformat/Manifest
17 index af09a9c..f7af93d 100644
18 --- a/dev-libs/sdformat/Manifest
19 +++ b/dev-libs/sdformat/Manifest
20 @@ -1,2 +1 @@
21 -DIST sdformat-4.1.1.tar.bz2 443491 SHA256 e2656984ea0411f5132363c2722b1016524195853b05fdd99e9b7dd3fa4031b1 SHA512 c124d8d4cde4dddd289ce2a83708fe3c6db31df186697b9c8c9d7fbec136cbd8f0418576590897089288885688369dae3ecb0993d74a2228077c7928499bfb32 WHIRLPOOL 3f3ba54d5bda89da87d9d8ff254b153929dd900d7611f36d92e2c5ea930b96416ff7c41b303aa04fb43c464e21739ada48fbfa175ef6dacdb53dfb034ad5cd67
22 DIST sdformat-4.2.0.tar.bz2 445091 SHA256 75e2d053f97ca33456109b4d7794e6b7d26deef59c778f0d9e25d1369b24b094 SHA512 f4f79a07b009ab09e700de76a1dcb4a6737f894bd30789baea8b99d1476ddb5d7242f783a4c3dda7490fc798b692c79941d30880661ed560eaaf8c16a4449ad1 WHIRLPOOL 6a6ebe3d9371ca2a79b62d8d563931f39a2045541fd7c161485ef51d1ecb2f8bb529bab07b289874a984f6934d147754d2097bd6cf48ee5749f93a1b1a27db87
23
24 diff --git a/dev-libs/sdformat/sdformat-4.1.1-r1.ebuild b/dev-libs/sdformat/sdformat-4.1.1-r1.ebuild
25 deleted file mode 100644
26 index 66bc9be..00000000
27 --- a/dev-libs/sdformat/sdformat-4.1.1-r1.ebuild
28 +++ /dev/null
29 @@ -1,40 +0,0 @@
30 -# Copyright 1999-2016 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -# $Id$
33 -
34 -EAPI=5
35 -
36 -inherit cmake-utils
37 -
38 -DESCRIPTION="Simulation Description Format (SDF) parser"
39 -HOMEPAGE="http://sdformat.org/"
40 -SRC_URI="http://osrf-distributions.s3.amazonaws.com/sdformat/releases/${P}.tar.bz2"
41 -
42 -LICENSE="Apache-2.0"
43 -# subslot = libsdformat major
44 -SLOT="0/4"
45 -KEYWORDS="~amd64"
46 -IUSE=""
47 -
48 -RDEPEND="
49 - >=dev-libs/urdfdom-1:=
50 - dev-libs/tinyxml
51 - dev-libs/boost:=
52 - sci-libs/ignition-math:2=
53 -"
54 -DEPEND="${RDEPEND}
55 - dev-lang/ruby:*
56 - virtual/pkgconfig
57 -"
58 -CMAKE_BUILD_TYPE=RelWithDebInfo
59 -PATCHES=( "${FILESDIR}/urdfdom1.patch" )
60 -
61 -src_configure() {
62 - echo "set (CMAKE_C_FLAGS_ALL \"${CXXFLAGS} \${CMAKE_C_FLAGS_ALL}\")" > "${S}/cmake/HostCFlags.cmake"
63 - sed -i -e "s/LINK_FLAGS_RELWITHDEBINFO \" \"/LINK_FLAGS_RELWITHDEBINFO \" ${LDFLAGS} \"/" cmake/DefaultCFlags.cmake || die
64 - local mycmakeargs=(
65 - "-DUSE_EXTERNAL_URDF=ON"
66 - "-DUSE_EXTERNAL_TINYXML=ON"
67 - )
68 - cmake-utils_src_configure
69 -}