-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dfb647c
commit 3c3a8a0
Showing
8 changed files
with
110 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
@[for change_version, change_date, changelog, main_name, main_email in changelogs]@(Package) (@(change_version)@(DebianInc)@(Distribution)) @(Distribution); urgency=high | ||
|
||
@(changelog) | ||
|
||
-- @(main_name) <@(main_email)> @(change_date) | ||
|
||
@[end for] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
@(debhelper_version) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Source: @(Package) | ||
Section: misc | ||
Priority: optional | ||
Maintainer: @(Maintainer) | ||
Build-Depends: debhelper (>= @(debhelper_version).0.0), @(', '.join(BuildDepends)) | ||
Homepage: @(Homepage) | ||
Standards-Version: 3.9.2 | ||
|
||
Package: @(Package) | ||
Architecture: any | ||
Depends: ${shlibs:Depends}, ${misc:Depends}, @(', '.join(Depends)) | ||
@[if Conflicts]Conflicts: @(', '.join(Conflicts))@\n@[end if]@ | ||
@[if Replaces]Replaces: @(', '.join(Replaces))@\n@[end if]@ | ||
Description: @(Description) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
Format: Bloom subset of https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ | ||
Upstream-Name: @(Name) | ||
@[if BugTracker]Upstream-Contact: @(BugTracker)@\n@[end if]@ | ||
@[if Source]Source: @(Source)@\n@[end if]@ | ||
@[for License, Text in Licenses]@ | ||
|
||
Files: See file headers in repository for details | ||
Copyright: See package copyright in source code for details | ||
License: @(License) | ||
@(Text) | ||
@[end for]@ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[git-buildpackage] | ||
upstream-tag=@(release_tag) | ||
upstream-tree=tag |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
#!/usr/bin/make -f | ||
# -*- makefile -*- | ||
# Sample debian/rules that uses debhelper. | ||
# This file was originally written by Joey Hess and Craig Small. | ||
# As a special exception, when this file is copied by dh-make into a | ||
# dh-make output file, you may use that output file without restriction. | ||
# This special exception was added by Craig Small in version 0.37 of dh-make. | ||
|
||
# Uncomment this to turn on verbose mode. | ||
export DH_VERBOSE=1 | ||
# TODO: remove the LDFLAGS override. It's here to avoid esoteric problems | ||
# of this sort: | ||
# https://code.ros.org/trac/ros/ticket/2977 | ||
# https://code.ros.org/trac/ros/ticket/3842 | ||
export LDFLAGS= | ||
export PKG_CONFIG_PATH=@(InstallationPrefix)/lib/pkgconfig | ||
# Explicitly enable -DNDEBUG, see: | ||
# https://github.com/ros-infrastructure/bloom/issues/327 | ||
export DEB_CXXFLAGS_MAINT_APPEND=-DNDEBUG | ||
ifneq ($(filter nocheck,$(DEB_BUILD_OPTIONS)),) | ||
BUILD_TESTING_ARG=-DBUILD_TESTING=OFF | ||
endif | ||
|
||
DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) | ||
|
||
%: | ||
dh $@@ -v --buildsystem=cmake --builddirectory=.obj-$(DEB_HOST_GNU_TYPE) | ||
|
||
override_dh_auto_configure: | ||
# In case we're installing to a non-standard location, look for a setup.sh | ||
# in the install tree and source it. It will set things like | ||
# CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. | ||
if [ -f "@(InstallationPrefix)/setup.sh" ]; then . "@(InstallationPrefix)/setup.sh"; fi && \ | ||
dh_auto_configure -- \ | ||
-DCMAKE_INSTALL_PREFIX="@(InstallationPrefix)" \ | ||
-DAMENT_PREFIX_PATH="@(InstallationPrefix)" \ | ||
-DCMAKE_PREFIX_PATH="@(InstallationPrefix)" \ | ||
$(BUILD_TESTING_ARG) | ||
|
||
override_dh_auto_build: | ||
# In case we're installing to a non-standard location, look for a setup.sh | ||
# in the install tree and source it. It will set things like | ||
# CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. | ||
if [ -f "@(InstallationPrefix)/setup.sh" ]; then . "@(InstallationPrefix)/setup.sh"; fi && \ | ||
dh_auto_build | ||
|
||
override_dh_auto_test: | ||
# In case we're installing to a non-standard location, look for a setup.sh | ||
# in the install tree and source it. It will set things like | ||
# CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. | ||
echo -- Running tests. Even if one of them fails the build is not canceled. | ||
if [ -f "@(InstallationPrefix)/setup.sh" ]; then . "@(InstallationPrefix)/setup.sh"; fi && \ | ||
dh_auto_test || true | ||
|
||
override_dh_shlibdeps: | ||
# In case we're installing to a non-standard location, look for a setup.sh | ||
# in the install tree and source it. It will set things like | ||
# CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. | ||
if [ -f "@(InstallationPrefix)/setup.sh" ]; then . "@(InstallationPrefix)/setup.sh"; fi && \ | ||
dh_shlibdeps -l$(CURDIR)/debian/@(Package)/@(InstallationPrefix)/lib/ | ||
|
||
override_dh_auto_install: | ||
# In case we're installing to a non-standard location, look for a setup.sh | ||
# in the install tree and source it. It will set things like | ||
# CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. | ||
if [ -f "@(InstallationPrefix)/setup.sh" ]; then . "@(InstallationPrefix)/setup.sh"; fi && \ | ||
dh_auto_install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3.0 (@(format)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
@[if format and format == 'quilt']@ | ||
# Automatically add upstream changes to the quilt overlay. | ||
# http://manpages.ubuntu.com/manpages/trusty/man1/dpkg-source.1.html | ||
# This supports reusing the orig.tar.gz for debian increments. | ||
auto-commit | ||
@[end if] |