dev-ros/filters: remove old

Package-Manager: Portage-2.3.5, Repoman-2.3.2
This commit is contained in:
Alexis Ballier
2017-03-18 12:25:03 +01:00
parent 31ce7a85d8
commit b7d4e1b0a9
4 changed files with 0 additions and 72 deletions

View File

@@ -1,2 +1 @@
DIST filters-1.7.4.tar.gz 16979 SHA256 fb71f1fbeaf89726877fce66dce1db8957c5cc6dffa1973d6a104a10233f8237 SHA512 74a0b64b7225f0b28e369f58fe9e5d639ed80acd18db849b1519e725b7566e6299b01e07559105c3072a781ba56b54d6a5887b02145700e046aeeb2740cbcc80 WHIRLPOOL 336f915d81b52f5b56d55026478ed60d3aa4a67cf281368213b446046edaf8b092f006818dbd54a7f7dc87b5575eda565d5ab8845b1c2f5e5be6d13ea24b3876
DIST filters-1.7.5.tar.gz 18547 SHA256 6632c8bc2f3c47db6f69d136ccf58a1963ac0c83f5f542173caaebd2c7086160 SHA512 79ed89687b2731542186b06edd6ed7d589e9935f5188052995bbcaf15c79cc9232f788056554768f84487cdb1760eb7f73e65077c2226694a93f0f96b0a6ebcb WHIRLPOOL 797a5841cee8bcba755210a93fd9838af0b84fd0fd3dd6e1e90d1fa9d7b2bec46c1cf5e7b53a3c98a531d29a6df9518eecbf562aa8e934390981cbf876fb5e9e

View File

@@ -1,27 +0,0 @@
commit 5aef0d6619394df17bffe743071295ad041b5794
Author: Lukas Bulwahn <lukas.bulwahn@oss.bmw-carit.de>
Date: Tue Feb 4 16:02:09 2014 +0100
make rostest in CMakeLists optional (ros/rosdistro#3010)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index ccb54f9..97eea51 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -5,7 +5,7 @@ project(filters)
# Find dependencies
##############################################################################
-find_package(catkin REQUIRED COMPONENTS pluginlib roslib roscpp rosconsole rostest)
+find_package(catkin REQUIRED COMPONENTS pluginlib roslib roscpp rosconsole)
find_package(Boost COMPONENTS system filesystem thread REQUIRED)
include_directories(
@@ -41,6 +41,7 @@ add_library(transfer_function src/transfer_function.cpp)
target_link_libraries(transfer_function ${catkin_LIBRARIES} ${Boost_LIBRARIES})
if(CATKIN_ENABLE_TESTING)
+ find_package(rostest)
# Test median filter
add_executable(median_test EXCLUDE_FROM_ALL test/test_median.cpp )
target_link_libraries(median_test median ${catkin_LIBRARIES} ${Boost_LIBRARIES} ${GTEST_LIBRARIES})

View File

@@ -1,23 +0,0 @@
Upstream status: Merged.
https://github.com/ros/filters/commit/2607c82034cdfbf96fe372c9637b0133b6ba6970
Index: filters-1.7.4/CMakeLists.txt
===================================================================
--- filters-1.7.4.orig/CMakeLists.txt
+++ filters-1.7.4/CMakeLists.txt
@@ -40,6 +40,7 @@ target_link_libraries(median ${catkin_LI
add_library(transfer_function src/transfer_function.cpp)
target_link_libraries(transfer_function ${catkin_LIBRARIES} ${Boost_LIBRARIES})
+if(CATKIN_ENABLE_TESTING)
# Test median filter
add_executable(median_test EXCLUDE_FROM_ALL test/test_median.cpp )
target_link_libraries(median_test median ${catkin_LIBRARIES} ${Boost_LIBRARIES} ${GTEST_LIBRARIES})
@@ -67,6 +68,7 @@ add_rostest(test/test_chain.launch)
# Test realtime safe buffer class
catkin_add_gtest(realtime_buffer_test EXCLUDE_FROM_ALL test/test_realtime_circular_buffer.cpp)
+endif()
##############################################################################
# Install

View File

@@ -1,21 +0,0 @@
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
ROS_REPO_URI="https://github.com/ros/filters"
KEYWORDS="~amd64 ~arm"
inherit ros-catkin
DESCRIPTION="Standardized interface for processing data as a sequence of filters"
LICENSE="BSD"
SLOT="0"
IUSE=""
RDEPEND="dev-ros/roscpp
dev-libs/boost:=[threads]
dev-ros/pluginlib"
DEPEND="${RDEPEND}
test? ( dev-ros/rostest dev-cpp/gtest )"
PATCHES=( "${FILESDIR}/tests.patch" "${FILESDIR}/rostest.patch" )