diff options
Diffstat (limited to 'dev-ros/pluginlib')
-rw-r--r-- | dev-ros/pluginlib/Manifest | 6 | ||||
-rw-r--r-- | dev-ros/pluginlib/files/catkin_prefix_path2.patch | 15 | ||||
-rw-r--r-- | dev-ros/pluginlib/files/libdir.patch | 19 | ||||
-rw-r--r-- | dev-ros/pluginlib/metadata.xml | 11 | ||||
-rw-r--r-- | dev-ros/pluginlib/pluginlib-1.13.0-r2.ebuild | 34 | ||||
-rw-r--r-- | dev-ros/pluginlib/pluginlib-9999.ebuild | 34 |
6 files changed, 0 insertions, 119 deletions
diff --git a/dev-ros/pluginlib/Manifest b/dev-ros/pluginlib/Manifest deleted file mode 100644 index 10533cae9d11..000000000000 --- a/dev-ros/pluginlib/Manifest +++ /dev/null @@ -1,6 +0,0 @@ -AUX catkin_prefix_path2.patch 678 BLAKE2B c494700f8d2cfce884b65ef87963cbf414dc4af1a9c9390978e7f458ad7f93b28c54bcd9831ff3edf4d6a421c4ec9ad1859bafff5f8ed209662ea1d14a70c299 SHA512 3b91fac26a2e48087fc70a773f5416e6cc3f7758adcddea6d50ba97a2d1ff8ae2f14fd5b74ba043a5546a8809def8b2154c70a97b10c451ba3773a82eda67100 -AUX libdir.patch 849 BLAKE2B 4ca2be8207311e6ac342637d07ba63cb135b4f8433b8cead15279f4b5150fd0388c65f34553842009bb26ec100b8ba220a3737a0923ace55e07ede4b580e7032 SHA512 71404dfc435630f899b9bdd2152363257c918f43c8d718450348308156d586fddf2e45a0715d7d439626bf5d67169fa7e6faff0de26647b7aa803dee6e37622c -DIST pluginlib-1.13.0.tar.gz 20124 BLAKE2B d2c2c643345e3b76bc580e413538af3ddb49ffe00d9d14ee6ad4dfb3d930ca70bad12ef232c831474238050f4b934c0ca5accded800b8c719c006c01e3c7ac00 SHA512 69566fad8aad92cf1d481117e5beb46c6033538ea08db0487e10766c40e89510d6a58e817f52c0bdce2946813272f2f2e72145e949647e24465f1e13995cf85f -EBUILD pluginlib-1.13.0-r2.ebuild 766 BLAKE2B f0237c2133425950d5460df7b3cbb1353218f7c83e8ed6e6cdd72a44e43f4b7dd73bc907f3483a396f59f51bf2c844556b9e1d731676bac11efc03637830aa8d SHA512 fc3b88bfee5d94baee611fc330811ab7b120eb4f48317dcdf3e71951978ae4dbc18c31c0aac6582a9c2966a683e23fc66f1862b013c79a1b25a6033bbf26202d -EBUILD pluginlib-9999.ebuild 766 BLAKE2B f0237c2133425950d5460df7b3cbb1353218f7c83e8ed6e6cdd72a44e43f4b7dd73bc907f3483a396f59f51bf2c844556b9e1d731676bac11efc03637830aa8d SHA512 fc3b88bfee5d94baee611fc330811ab7b120eb4f48317dcdf3e71951978ae4dbc18c31c0aac6582a9c2966a683e23fc66f1862b013c79a1b25a6033bbf26202d -MISC metadata.xml 328 BLAKE2B 0fa7923a2e7c6f5bb095ad58af424e97da4f0f648849851643d0859545d5b62f24ee8d2efe3a4877d1b9902998dd960a1f89ca9a87f753d24f15274cae135286 SHA512 8b3963576ec362c29c21981c8a431aba8721e41e03873604a273bb4257e3a255bd8b01fe5e064d8aa070a7671a1b8aff1dc22f1b238b839e7f0045d163e70e1c diff --git a/dev-ros/pluginlib/files/catkin_prefix_path2.patch b/dev-ros/pluginlib/files/catkin_prefix_path2.patch deleted file mode 100644 index 12e759c63216..000000000000 --- a/dev-ros/pluginlib/files/catkin_prefix_path2.patch +++ /dev/null @@ -1,15 +0,0 @@ -Honour CATKIN_PREFIX_PATH at runtime instead of ROS' hack to use CMAKE_PREFIX_PATH. - -Index: pluginlib-1.11.2/include/pluginlib/class_loader_imp.hpp -=================================================================== ---- pluginlib-1.11.2.orig/include/pluginlib/class_loader_imp.hpp -+++ pluginlib-1.11.2/include/pluginlib/class_loader_imp.hpp -@@ -68,7 +68,7 @@ namespace - std::vector<std::string> catkinFindLib() - { - std::vector<std::string> lib_paths; -- const char * env = std::getenv("CMAKE_PREFIX_PATH"); -+ const char * env = std::getenv("CATKIN_PREFIX_PATH"); - if (env) { - std::string env_catkin_prefix_paths(env); - std::vector<std::string> catkin_prefix_paths; diff --git a/dev-ros/pluginlib/files/libdir.patch b/dev-ros/pluginlib/files/libdir.patch deleted file mode 100644 index 5152705f0196..000000000000 --- a/dev-ros/pluginlib/files/libdir.patch +++ /dev/null @@ -1,19 +0,0 @@ -Add more search pathes for potential libdirs - -Index: pluginlib/include/pluginlib/class_loader_imp.hpp -=================================================================== ---- pluginlib.orig/include/pluginlib/class_loader_imp.hpp -+++ pluginlib/include/pluginlib/class_loader_imp.hpp -@@ -323,6 +323,12 @@ std::vector<std::string> ClassLoader<T>: - boost::filesystem::path bin("bin"); - lib_paths.push_back((path / bin).string()); - #endif -+ boost::filesystem::path lib64("lib64"); -+ lib_paths.push_back((path / lib64).string()); -+ boost::filesystem::path lib32("lib32"); -+ lib_paths.push_back((path / lib32).string()); -+ boost::filesystem::path libx32("libx32"); -+ lib_paths.push_back((path / libx32).string()); - boost::filesystem::path lib("lib"); - lib_paths.push_back((path / lib).string()); - } diff --git a/dev-ros/pluginlib/metadata.xml b/dev-ros/pluginlib/metadata.xml deleted file mode 100644 index b72351cb8201..000000000000 --- a/dev-ros/pluginlib/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>ros@gentoo.org</email> - <name>Gentoo ROS Project</name> - </maintainer> - <upstream> - <remote-id type="github">ros/pluginlib</remote-id> - </upstream> -</pkgmetadata> diff --git a/dev-ros/pluginlib/pluginlib-1.13.0-r2.ebuild b/dev-ros/pluginlib/pluginlib-1.13.0-r2.ebuild deleted file mode 100644 index 7dc414eb606d..000000000000 --- a/dev-ros/pluginlib/pluginlib-1.13.0-r2.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -ROS_REPO_URI="https://github.com/ros/pluginlib" -KEYWORDS="~amd64 ~arm" -ROS_SUBDIR="${PN}" - -inherit ros-catkin - -DESCRIPTION="Tools for writing and dynamically loading plugins using the ROS infrastructure" -LICENSE="BSD" -SLOT="0/${PV}" -IUSE="" - -RDEPEND=" - >=dev-ros/class_loader-0.3.5:= - dev-ros/rosconsole - dev-ros/roslib[${PYTHON_SINGLE_USEDEP}] - dev-libs/boost:= - dev-libs/tinyxml2:= -" -DEPEND="${RDEPEND} - test? ( dev-cpp/gtest )" -PATCHES=( "${FILESDIR}/catkin_prefix_path2.patch" "${FILESDIR}/libdir.patch" ) - -src_test() { - cmake_build tests - - export ROS_PACKAGE_PATH="${S}:${ROS_PACKAGE_PATH}" - export CATKIN_PREFIX_PATH=devel/ - ros-catkin_src_test -} diff --git a/dev-ros/pluginlib/pluginlib-9999.ebuild b/dev-ros/pluginlib/pluginlib-9999.ebuild deleted file mode 100644 index 7dc414eb606d..000000000000 --- a/dev-ros/pluginlib/pluginlib-9999.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -ROS_REPO_URI="https://github.com/ros/pluginlib" -KEYWORDS="~amd64 ~arm" -ROS_SUBDIR="${PN}" - -inherit ros-catkin - -DESCRIPTION="Tools for writing and dynamically loading plugins using the ROS infrastructure" -LICENSE="BSD" -SLOT="0/${PV}" -IUSE="" - -RDEPEND=" - >=dev-ros/class_loader-0.3.5:= - dev-ros/rosconsole - dev-ros/roslib[${PYTHON_SINGLE_USEDEP}] - dev-libs/boost:= - dev-libs/tinyxml2:= -" -DEPEND="${RDEPEND} - test? ( dev-cpp/gtest )" -PATCHES=( "${FILESDIR}/catkin_prefix_path2.patch" "${FILESDIR}/libdir.patch" ) - -src_test() { - cmake_build tests - - export ROS_PACKAGE_PATH="${S}:${ROS_PACKAGE_PATH}" - export CATKIN_PREFIX_PATH=devel/ - ros-catkin_src_test -} |