Skip to content

Commit 2c0979a

Browse files
Generated debian files for jammy
1 parent cda5e85 commit 2c0979a

13 files changed

+38
-45
lines changed

debian/changelog

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
ros-iron-librealsense2 (2.55.1-1jammy) jammy; urgency=high
2+
3+
* Autogenerated, no changelog for this version found in CHANGELOG.rst.
4+
5+
-- LibRealSense ROS Team <[email protected]> Sun, 21 Apr 2024 11:50:28 -0000
6+
7+

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-iron-librealsense2
2+
Section: misc
3+
Priority: optional
4+
Maintainer: LibRealSense ROS Team <[email protected]>
5+
Build-Depends: debhelper (>= 9.0.0), cmake, dkms, git, libgl1-mesa-dev, libglfw3-dev, libglu1-mesa-dev, libssl-dev, libudev-dev, libusb-1.0-0-dev, libx11-dev, pkg-config, udev, ros-iron-ros-workspace
6+
Homepage: https://github.com/IntelRealSense/librealsense/
7+
Standards-Version: 3.9.2
8+
9+
Package: ros-iron-librealsense2
10+
Architecture: any
11+
Depends: ${shlibs:Depends}, ${misc:Depends}, libgl1-mesa-dev, libglfw3-dev, libglu1-mesa-dev, libx11-dev, ros-iron-ros-workspace
12+
Description: Library for controlling and capturing data from the Intel(R) RealSense(TM) D400 devices.

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: librealsense2
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 License, Version 2.0
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/iron/librealsense2/2.55.1-1
3+
upstream-tree=tag

debian/gbp.conf.em

-3
This file was deleted.

debian/rules.em renamed to debian/rules

+10-10
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/iron/lib/pkgconfig
1717
# Explicitly enable -DNDEBUG, see:
1818
# https://github.com/ros-infrastructure/bloom/issues/327
1919
export DEB_CXXFLAGS_MAINT_APPEND=-DNDEBUG
@@ -27,43 +27,43 @@ export DEB_HOST_MULTIARCH := $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
2727
DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
2828

2929
%:
30-
dh $@@ -v --buildsystem=cmake --builddirectory=.obj-$(DEB_HOST_GNU_TYPE)
30+
dh $@ -v --buildsystem=cmake --builddirectory=.obj-$(DEB_HOST_GNU_TYPE)
3131

3232
override_dh_auto_configure:
3333
# In case we're installing to a non-standard location, look for a setup.sh
3434
# in the install tree and source it. It will set things like
3535
# CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH.
36-
if [ -f "@(InstallationPrefix)/setup.sh" ]; then . "@(InstallationPrefix)/setup.sh"; fi && \
36+
if [ -f "/opt/ros/iron/setup.sh" ]; then . "/opt/ros/iron/setup.sh"; fi && \
3737
dh_auto_configure -- \
38-
-DCMAKE_INSTALL_PREFIX="@(InstallationPrefix)" \
39-
-DCMAKE_PREFIX_PATH="@(InstallationPrefix)" \
38+
-DCMAKE_INSTALL_PREFIX="/opt/ros/iron" \
39+
-DCMAKE_PREFIX_PATH="/opt/ros/iron" \
4040
$(BUILD_TESTING_ARG)
4141

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

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

5757
override_dh_shlibdeps:
5858
# In case we're installing to a non-standard location, look for a setup.sh
5959
# in the install tree and source it. It will set things like
6060
# CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH.
61-
if [ -f "@(InstallationPrefix)/setup.sh" ]; then . "@(InstallationPrefix)/setup.sh"; fi && \
62-
dh_shlibdeps -l$(CURDIR)/debian/@(Package)/@(InstallationPrefix)/lib/:$(CURDIR)/debian/@(Package)/@(InstallationPrefix)/lib/${DEB_HOST_MULTIARCH}
61+
if [ -f "/opt/ros/iron/setup.sh" ]; then . "/opt/ros/iron/setup.sh"; fi && \
62+
dh_shlibdeps -l$(CURDIR)/debian/ros-iron-librealsense2//opt/ros/iron/lib/:$(CURDIR)/debian/ros-iron-librealsense2//opt/ros/iron/lib/${DEB_HOST_MULTIARCH}
6363

6464
override_dh_auto_install:
6565
# In case we're installing to a non-standard location, look for a setup.sh
6666
# in the install tree and source it. It will set things like
6767
# CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH.
68-
if [ -f "@(InstallationPrefix)/setup.sh" ]; then . "@(InstallationPrefix)/setup.sh"; fi && \
68+
if [ -f "/opt/ros/iron/setup.sh" ]; then . "/opt/ros/iron/setup.sh"; fi && \
6969
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)