Skip to content

Commit 2965da4

Browse files
committed
[wip/ros-pr2-machine] initial commit
1 parent 9ff89fd commit 2965da4

File tree

6 files changed

+70
-0
lines changed

6 files changed

+70
-0
lines changed

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@ SUBDIR+= ros-perception-pcl
133133
SUBDIR+= ros-pcl-msgs
134134
SUBIDR+= ros-pr2-description
135135
SUBDIR+= ros-pr2-hardware-interface
136+
SUBDIR+= ros-pr2-machine
136137
SUBDIR+= ros-pr2-msgs
137138
SUBDIR+= ros-py-urdf-parser
138139
SUBDIR+= ros-qualisys

ros-pr2-machine/DESCR

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
This package contains the xxx.machine files that describe the
2+
different hosts a node can be spawned on. Currently there is one
3+
machine file for the pr2 robot, and one for the simulated pr2 robot.

ros-pr2-machine/Makefile

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# robotpkg Makefile for: wip/ros-pr2-machine
2+
# Created: Matthieu Herrb on Thu, 19 Jun 2025
3+
#
4+
5+
ROS_PKG= pr2_machine
6+
ROS_METAPKG= pr2_common
7+
ROS_VERSION= 1.13.1
8+
ROS_REPO= pr2_common
9+
10+
PKGNAME= ros-$(subst _,-,${ROS_PKG})-${ROS_VERSION}
11+
12+
MASTER_SITES= ${MASTER_SITE_GITHUB:=PR2}/${ROS_METAPKG}/archive/refs/tags/
13+
14+
CATEGORIES= wip
15+
16+
ROS_COMMENT= The files that describe the PR2 hosts a node can be spawned on.
17+
18+
WRKSRC= ${WRKDIR}/${ROS_METAPKG}-${ROS_VERSION}/${ROS_PKG}
19+
20+
include ../../meta-pkgs/ros-base/Makefile.common
21+
22+
include ../../devel/ros-catkin/depend.mk
23+
include ../../mk/sysdep/python.mk
24+
include ../../mk/robotpkg.mk

ros-pr2-machine/PLIST

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
@comment Thu Jun 19 20:09:36 CEST 2025
2+
lib/pkgconfig/pr2_machine.pc
3+
share/pr2_machine/cmake/pr2_machineConfig-version.cmake
4+
share/pr2_machine/cmake/pr2_machineConfig.cmake
5+
share/pr2_machine/package.xml
6+
share/pr2_machine/pr2.machine
7+
share/pr2_machine/sim.machine

ros-pr2-machine/depend.mk

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# robotpkg depend.mk for: wip/ros-pr2-machine
2+
# Created: Matthieu Herrb on Thu, 19 Jun 2025
3+
#
4+
5+
DEPEND_DEPTH:= ${DEPEND_DEPTH}+
6+
ROS_PR2_MACHINE_DEPEND_MK:= ${ROS_PR2_MACHINE_DEPEND_MK}+
7+
8+
ifeq (+,${DEPEND_DEPTH})
9+
DEPEND_PKG+= ros-pr2-machine
10+
endif
11+
12+
ifeq (+,${ROS_PR2_MACHINE_DEPEND_MK})
13+
14+
include ../../meta-pkgs/ros-base/depend.common
15+
PREFER.ros-pr2-machine?= ${PREFER.ros-base}
16+
SYSTEM_PREFIX.ros-pr2-machine?= ${SYSTEM_PREFIX.ros-base}
17+
18+
DEPEND_USE+= ros-pr2-machine
19+
ROS_DEPEND_USE+= ros-pr2-machine
20+
21+
DEPEND_ABI.ros-pr2-machine?= ros-pr2-machine>=1.13.1
22+
DEPEND_DIR.ros-pr2-machine?= ../../wip/ros-pr2-machine
23+
24+
SYSTEM_SEARCH.ros-pr2-machine=\
25+
lib/pkgconfig/pr2_machine.pc \
26+
share/pr2_machine/package.xml
27+
28+
CMAKE_PREFIX_PATH.ros-pr2-machine= ${PREFIX.ros-pr2-machine}
29+
30+
endif
31+
32+
DEPEND_DEPTH:= ${DEPEND_DEPTH:+=}

ros-pr2-machine/distinfo

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
SHA1 (ros/pr2_machine/1.13.1.tar.gz) = ae2deeac2742e0af7e82ed96fd7d89a14a16dc33
2+
RMD160 (ros/pr2_machine/1.13.1.tar.gz) = fc67419af64bf23f7bcaa91de5dd61ac2e3cafbe
3+
Size (ros/pr2_machine/1.13.1.tar.gz) = 21742267 bytes

0 commit comments

Comments
 (0)