Skip to content

Commit 95e62d6

Browse files
committed
Generated debian files for jammy
1 parent 5b199a7 commit 95e62d6

13 files changed

+46
-46
lines changed

debian/changelog

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
ros-humble-py-binding-tools (2.0.0-1jammy) jammy; urgency=high
2+
3+
* ROS2 migration
4+
* Contributors: Robert Haschke
5+
6+
-- Robert Haschke <[email protected]> Fri, 24 May 2024 22:00:00 -0000
7+
8+
ros-humble-py-binding-tools (1.0.0-1jammy) jammy; urgency=high
9+
10+
* Initial release factored out from https://github.com/ros-planning/moveit/pull/2910
11+
12+
-- Robert Haschke <[email protected]> Mon, 04 Mar 2024 23:00:00 -0000
13+
14+

debian/changelog.em

-7
This file was deleted.

debian/compat

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
9

debian/compat.em

-1
This file was deleted.

debian/control

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
Source: ros-humble-py-binding-tools
2+
Section: misc
3+
Priority: optional
4+
Maintainer: Robert Haschke <[email protected]>
5+
Build-Depends: debhelper (>= 9.0.0), ros-humble-ament-cmake, ros-humble-ament-cmake-pytest <!nocheck>, ros-humble-ament-cmake-python, ros-humble-ament-lint-auto <!nocheck>, ros-humble-ament-lint-common <!nocheck>, ros-humble-geometry-msgs, ros-humble-pybind11-vendor, ros-humble-rclcpp, ros-humble-rclpy <!nocheck>, ros-humble-std-msgs <!nocheck>, ros-humble-ros-workspace
6+
Homepage: http://wiki.ros.org/py_binding_tools
7+
Standards-Version: 3.9.2
8+
9+
Package: ros-humble-py-binding-tools
10+
Architecture: any
11+
Depends: ${shlibs:Depends}, ${misc:Depends}, ros-humble-geometry-msgs, ros-humble-pybind11-vendor, ros-humble-rclcpp, ros-humble-ros-workspace
12+
Description: Python binding tools for C++

debian/control.em

-14
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
Format: Bloom subset of https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
2-
Upstream-Name: @(Name)
3-
@[if BugTracker]Upstream-Contact: @(BugTracker)@\n@[end if]@
4-
@[if Source]Source: @(Source)@\n@[end if]@
5-
@[for License, Text in Licenses]@
2+
Upstream-Name: py_binding_tools
63

74
Files: See file headers in repository for details
85
Copyright: See package copyright in source code for details
9-
License: @(License)
10-
@(Text)
11-
@[end for]@
6+
License: BSD
7+
See repository for full license text

debian/gbp.conf

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[git-buildpackage]
2+
upstream-tag=release/humble/py_binding_tools/2.0.0-1
3+
upstream-tree=tag

debian/gbp.conf.em

-3
This file was deleted.

debian/rules.em renamed to debian/rules

+11-11
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export DH_VERBOSE=1
1313
# https://code.ros.org/trac/ros/ticket/2977
1414
# https://code.ros.org/trac/ros/ticket/3842
1515
export LDFLAGS=
16-
export PKG_CONFIG_PATH=@(InstallationPrefix)/lib/pkgconfig
16+
export PKG_CONFIG_PATH=/opt/ros/humble/lib/pkgconfig
1717
# Explicitly enable -DNDEBUG, see:
1818
# https://github.com/ros-infrastructure/bloom/issues/327
1919
export DEB_CXXFLAGS_MAINT_APPEND=-DNDEBUG
@@ -24,44 +24,44 @@ endif
2424
DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
2525

2626
%:
27-
dh $@@ -v --buildsystem=cmake --builddirectory=.obj-$(DEB_HOST_GNU_TYPE)
27+
dh $@ -v --buildsystem=cmake --builddirectory=.obj-$(DEB_HOST_GNU_TYPE)
2828

2929
override_dh_auto_configure:
3030
# In case we're installing to a non-standard location, look for a setup.sh
3131
# in the install tree and source it. It will set things like
3232
# CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH.
33-
if [ -f "@(InstallationPrefix)/setup.sh" ]; then . "@(InstallationPrefix)/setup.sh"; fi && \
33+
if [ -f "/opt/ros/humble/setup.sh" ]; then . "/opt/ros/humble/setup.sh"; fi && \
3434
dh_auto_configure -- \
35-
-DCMAKE_INSTALL_PREFIX="@(InstallationPrefix)" \
36-
-DAMENT_PREFIX_PATH="@(InstallationPrefix)" \
37-
-DCMAKE_PREFIX_PATH="@(InstallationPrefix)" \
35+
-DCMAKE_INSTALL_PREFIX="/opt/ros/humble" \
36+
-DAMENT_PREFIX_PATH="/opt/ros/humble" \
37+
-DCMAKE_PREFIX_PATH="/opt/ros/humble" \
3838
$(BUILD_TESTING_ARG)
3939

4040
override_dh_auto_build:
4141
# In case we're installing to a non-standard location, look for a setup.sh
4242
# in the install tree and source it. It will set things like
4343
# CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH.
44-
if [ -f "@(InstallationPrefix)/setup.sh" ]; then . "@(InstallationPrefix)/setup.sh"; fi && \
44+
if [ -f "/opt/ros/humble/setup.sh" ]; then . "/opt/ros/humble/setup.sh"; fi && \
4545
dh_auto_build
4646

4747
override_dh_auto_test:
4848
# In case we're installing to a non-standard location, look for a setup.sh
4949
# in the install tree and source it. It will set things like
5050
# CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH.
5151
echo -- Running tests. Even if one of them fails the build is not canceled.
52-
if [ -f "@(InstallationPrefix)/setup.sh" ]; then . "@(InstallationPrefix)/setup.sh"; fi && \
52+
if [ -f "/opt/ros/humble/setup.sh" ]; then . "/opt/ros/humble/setup.sh"; fi && \
5353
dh_auto_test || true
5454

5555
override_dh_shlibdeps:
5656
# In case we're installing to a non-standard location, look for a setup.sh
5757
# in the install tree and source it. It will set things like
5858
# CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH.
59-
if [ -f "@(InstallationPrefix)/setup.sh" ]; then . "@(InstallationPrefix)/setup.sh"; fi && \
60-
dh_shlibdeps -l$(CURDIR)/debian/@(Package)/@(InstallationPrefix)/lib/:$(CURDIR)/debian/@(Package)/@(InstallationPrefix)/opt/@(Name)/lib/
59+
if [ -f "/opt/ros/humble/setup.sh" ]; then . "/opt/ros/humble/setup.sh"; fi && \
60+
dh_shlibdeps -l$(CURDIR)/debian/ros-humble-py-binding-tools//opt/ros/humble/lib/:$(CURDIR)/debian/ros-humble-py-binding-tools//opt/ros/humble/opt/py_binding_tools/lib/
6161

6262
override_dh_auto_install:
6363
# In case we're installing to a non-standard location, look for a setup.sh
6464
# in the install tree and source it. It will set things like
6565
# CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH.
66-
if [ -f "@(InstallationPrefix)/setup.sh" ]; then . "@(InstallationPrefix)/setup.sh"; fi && \
66+
if [ -f "/opt/ros/humble/setup.sh" ]; then . "/opt/ros/humble/setup.sh"; fi && \
6767
dh_auto_install

debian/source/format

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.0 (quilt)

debian/source/format.em

-1
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
@[if format and format == 'quilt']@
21
# Automatically add upstream changes to the quilt overlay.
32
# http://manpages.ubuntu.com/manpages/trusty/man1/dpkg-source.1.html
43
# This supports reusing the orig.tar.gz for debian increments.
54
auto-commit
6-
@[end if]
5+

0 commit comments

Comments
 (0)