Skip to content

Commit 2e1e48a

Browse files
committed
Generated debian files for noble
1 parent bb5af7e commit 2e1e48a

File tree

13 files changed

+39
-46
lines changed

13 files changed

+39
-46
lines changed

‎debian/changelog‎

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
ros-kilted-neo-nav2-bringup (1.0.4-1noble) noble; urgency=high
2+
3+
* Autogenerated, no changelog for this version found in CHANGELOG.rst.
4+
5+
-- Pradheep Padmanabhan <padmanabhan@neobotix.de> Fri, 12 Sep 2025 12:04:20 -0000
6+
7+

‎debian/changelog.em‎

Lines changed: 0 additions & 7 deletions
This file was deleted.

‎debian/compat‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
9

‎debian/compat.em‎

Lines changed: 0 additions & 1 deletion
This file was deleted.

‎debian/control‎

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
Source: ros-kilted-neo-nav2-bringup
2+
Section: misc
3+
Priority: optional
4+
Maintainer: Pradheep Padmanabhan <padmanabhan@neobotix.de>
5+
Build-Depends: debhelper (>= 9.0.0), ros-kilted-ament-cmake, ros-kilted-nav2-common, ros-kilted-navigation2, ros-kilted-slam-toolbox, ros-kilted-ros-workspace
6+
Homepage:
7+
Standards-Version: 3.9.2
8+
9+
Package: ros-kilted-neo-nav2-bringup
10+
Architecture: any
11+
Depends: ${shlibs:Depends}, ${misc:Depends}, ros-kilted-nav2-common, ros-kilted-navigation2, ros-kilted-slam-toolbox, ros-kilted-ros-workspace
12+
Description: ROS-2 navigation bringup packages for neobotix robots

‎debian/control.em‎

Lines changed: 0 additions & 14 deletions
This file was deleted.
Lines changed: 3 additions & 7 deletions
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: neo_nav2_bringup
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: Apache-2.0
7+
See repository for full license text

‎debian/gbp.conf‎

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[git-buildpackage]
2+
upstream-tag=release/kilted/neo_nav2_bringup/1.0.4-1
3+
upstream-tree=tag

‎debian/gbp.conf.em‎

Lines changed: 0 additions & 3 deletions
This file was deleted.

‎debian/rules.em‎ renamed to ‎debian/rules‎

Lines changed: 11 additions & 11 deletions
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/kilted/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/kilted/setup.sh" ]; then . "/opt/ros/kilted/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/kilted" \
36+
-DAMENT_PREFIX_PATH="/opt/ros/kilted" \
37+
-DCMAKE_PREFIX_PATH="/opt/ros/kilted" \
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/kilted/setup.sh" ]; then . "/opt/ros/kilted/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/kilted/setup.sh" ]; then . "/opt/ros/kilted/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/kilted/setup.sh" ]; then . "/opt/ros/kilted/setup.sh"; fi && \
60+
dh_shlibdeps -l$(CURDIR)/debian/ros-kilted-neo-nav2-bringup//opt/ros/kilted/lib/:$(CURDIR)/debian/ros-kilted-neo-nav2-bringup//opt/ros/kilted/opt/neo_nav2_bringup/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/kilted/setup.sh" ]; then . "/opt/ros/kilted/setup.sh"; fi && \
6767
dh_auto_install

0 commit comments

Comments
 (0)