From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 10A2D139360 for ; Tue, 3 Aug 2021 15:17:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3DEEDE09CB; Tue, 3 Aug 2021 15:17:48 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2002CE09C0 for ; Tue, 3 Aug 2021 15:17:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 109CF343D49 for ; Tue, 3 Aug 2021 15:17:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A15B7845 for ; Tue, 3 Aug 2021 15:17:45 +0000 (UTC) From: "Alexis Ballier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexis Ballier" Message-ID: <1628003855.45fe8b3105b8dbd0f287be2b2c039ecdde3372a2.aballier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ros/pcl_ros/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ros/pcl_ros/pcl_ros-1.7.2-r1.ebuild dev-ros/pcl_ros/pcl_ros-9999.ebuild X-VCS-Directories: dev-ros/pcl_ros/ X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier X-VCS-Revision: 45fe8b3105b8dbd0f287be2b2c039ecdde3372a2 X-VCS-Branch: master Date: Tue, 3 Aug 2021 15:17:45 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 6ef67f22-869e-403b-a486-007ab5ca7cb8 X-Archives-Hash: 7497b6726adc4198473f2d039caa3120 commit: 45fe8b3105b8dbd0f287be2b2c039ecdde3372a2 Author: Alexis Ballier gentoo org> AuthorDate: Tue Aug 3 15:14:53 2021 +0000 Commit: Alexis Ballier gentoo org> CommitDate: Tue Aug 3 15:17:35 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45fe8b31 dev-ros/pcl_ros: fix tests Closes: https://bugs.gentoo.org/796692 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Alexis Ballier gentoo.org> dev-ros/pcl_ros/pcl_ros-1.7.2-r1.ebuild | 6 ++++++ dev-ros/pcl_ros/pcl_ros-9999.ebuild | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/dev-ros/pcl_ros/pcl_ros-1.7.2-r1.ebuild b/dev-ros/pcl_ros/pcl_ros-1.7.2-r1.ebuild index 3b02e763a1b..274b509a835 100644 --- a/dev-ros/pcl_ros/pcl_ros-1.7.2-r1.ebuild +++ b/dev-ros/pcl_ros/pcl_ros-1.7.2-r1.ebuild @@ -43,3 +43,9 @@ DEPEND="${RDEPEND} ) " PATCHES=( "${FILESDIR}/tests.patch" "${FILESDIR}/pcl.patch" ) + +src_test() { + export ROS_PACKAGE_PATH="${S}:${ROS_PACKAGE_PATH}" + export CATKIN_PREFIX_PATH="${BUILD_DIR}/devel/:${CATKIN_PREFIX_PATH}" + ros-catkin_src_test +} diff --git a/dev-ros/pcl_ros/pcl_ros-9999.ebuild b/dev-ros/pcl_ros/pcl_ros-9999.ebuild index 8dc162b3fa1..ca03876062f 100644 --- a/dev-ros/pcl_ros/pcl_ros-9999.ebuild +++ b/dev-ros/pcl_ros/pcl_ros-9999.ebuild @@ -43,3 +43,9 @@ DEPEND="${RDEPEND} ) " PATCHES=( "${FILESDIR}/tests.patch" ) + +src_test() { + export ROS_PACKAGE_PATH="${S}:${ROS_PACKAGE_PATH}" + export CATKIN_PREFIX_PATH="${BUILD_DIR}/devel/:${CATKIN_PREFIX_PATH}" + ros-catkin_src_test +}