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-ros/rosconsole/
Date: Tue, 08 Jan 2019 08:54:44
Message-Id: 1546937672.8d7ca480e5c8249a6ac08a1a0167f0f1d7b43ae2.aballier@gentoo
1 commit: 8d7ca480e5c8249a6ac08a1a0167f0f1d7b43ae2
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 8 08:44:13 2019 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 8 08:54:32 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d7ca480
7
8 dev-ros/rosconsole: Remove old
9
10 Package-Manager: Portage-2.3.54, Repoman-2.3.12
11 Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>
12
13 dev-ros/rosconsole/Manifest | 1 -
14 dev-ros/rosconsole/rosconsole-1.13.6.ebuild | 38 -----------------------------
15 2 files changed, 39 deletions(-)
16
17 diff --git a/dev-ros/rosconsole/Manifest b/dev-ros/rosconsole/Manifest
18 index 76044d69e5b..3bc5076fdd5 100644
19 --- a/dev-ros/rosconsole/Manifest
20 +++ b/dev-ros/rosconsole/Manifest
21 @@ -1,2 +1 @@
22 -DIST ros_comm-1.13.6.tar.gz 1047870 BLAKE2B 874e31faa1a6a77292dab4b7fa64ed13a1f1f63f76512ea351e53bd14ce87662cea5c648e48c3c16668104129cc5eb172bc8f381516bdba676c7212f1acbaaf9 SHA512 382e81847141ab95462fc84a8215b945af995d29f9c0d507665e22faaf79aee9789950546ca7737bd40059f3ed1ecd284ff11bd3e6f1732f3c47a433c5d25155
23 DIST rosconsole-1.13.7.tar.gz 24202 BLAKE2B bee6d4a9a682fe045a233989373e8a283c26d85bd4d746c2363798cd61f168e368afef81872437363b55a44080e6c926b4f3fd9c66fa9e2bf078454a675336ea SHA512 e0e17641011de5a3b58ddc7ac984042463f375f76174ff6bfa8a6c95d7889e33e702156f7ec0d7628f9f37a1d062f0291367ee81025dd9989320d5d24c35b387
24
25 diff --git a/dev-ros/rosconsole/rosconsole-1.13.6.ebuild b/dev-ros/rosconsole/rosconsole-1.13.6.ebuild
26 deleted file mode 100644
27 index 146fbb09651..00000000000
28 --- a/dev-ros/rosconsole/rosconsole-1.13.6.ebuild
29 +++ /dev/null
30 @@ -1,38 +0,0 @@
31 -# Copyright 1999-2018 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=5
35 -
36 -ROS_REPO_URI="https://github.com/ros/ros_comm"
37 -KEYWORDS="~amd64 ~arm"
38 -ROS_SUBDIR=tools/${PN}
39 -
40 -inherit ros-catkin
41 -
42 -DESCRIPTION="ROS console output library"
43 -LICENSE="BSD"
44 -SLOT="0"
45 -IUSE="+log4cxx glog"
46 -
47 -RDEPEND="
48 - dev-ros/cpp_common
49 - dev-ros/rostime
50 - dev-ros/rosunit
51 - dev-libs/boost:=[threads]
52 - log4cxx? ( dev-libs/log4cxx )
53 - !log4cxx? ( glog? ( dev-cpp/glog ) )
54 -"
55 -DEPEND="${RDEPEND}"
56 -
57 -src_configure() {
58 - local ROSCONSOLE_BACKEND=""
59 - if use log4cxx; then
60 - ROSCONSOLE_BACKEND="log4cxx"
61 - elif use glog; then
62 - ROSCONSOLE_BACKEND="glog"
63 - else
64 - ROSCONSOLE_BACKEND="print"
65 - fi
66 - local mycatkincmakeargs=( "-DROSCONSOLE_BACKEND=${ROSCONSOLE_BACKEND}" )
67 - ros-catkin_src_configure
68 -}