From e272bab600d78309e26b41a5d2b4bc9b33c730ad Mon Sep 17 00:00:00 2001 From: Christian Rauch Date: Fri, 18 Nov 2022 19:07:18 +0100 Subject: [PATCH] add debian meson template --- bloom/generators/debian/generator.py | 2 + .../debian/templates/meson/changelog.em | 7 +++ .../debian/templates/meson/compat.em | 1 + .../debian/templates/meson/control.em | 14 +++++ .../debian/templates/meson/copyright.em | 11 ++++ .../debian/templates/meson/gbp.conf.em | 3 ++ .../debian/templates/meson/rules.em | 52 +++++++++++++++++++ .../debian/templates/meson/source/format.em | 1 + .../debian/templates/meson/source/options.em | 6 +++ 9 files changed, 97 insertions(+) create mode 100644 bloom/generators/debian/templates/meson/changelog.em create mode 100644 bloom/generators/debian/templates/meson/compat.em create mode 100644 bloom/generators/debian/templates/meson/control.em create mode 100644 bloom/generators/debian/templates/meson/copyright.em create mode 100644 bloom/generators/debian/templates/meson/gbp.conf.em create mode 100755 bloom/generators/debian/templates/meson/rules.em create mode 100644 bloom/generators/debian/templates/meson/source/format.em create mode 100644 bloom/generators/debian/templates/meson/source/options.em diff --git a/bloom/generators/debian/generator.py b/bloom/generators/debian/generator.py index fe629c8d..0a8d9acb 100644 --- a/bloom/generators/debian/generator.py +++ b/bloom/generators/debian/generator.py @@ -389,6 +389,8 @@ def generate_substitutions_from_package( pass elif build_type == 'cmake': pass + elif build_type == 'meson': + pass elif build_type == 'ament_cmake': pass elif build_type == 'ament_python': diff --git a/bloom/generators/debian/templates/meson/changelog.em b/bloom/generators/debian/templates/meson/changelog.em new file mode 100644 index 00000000..35859090 --- /dev/null +++ b/bloom/generators/debian/templates/meson/changelog.em @@ -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] diff --git a/bloom/generators/debian/templates/meson/compat.em b/bloom/generators/debian/templates/meson/compat.em new file mode 100644 index 00000000..7a87216d --- /dev/null +++ b/bloom/generators/debian/templates/meson/compat.em @@ -0,0 +1 @@ +@(debhelper_version) diff --git a/bloom/generators/debian/templates/meson/control.em b/bloom/generators/debian/templates/meson/control.em new file mode 100644 index 00000000..1b0f263d --- /dev/null +++ b/bloom/generators/debian/templates/meson/control.em @@ -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: 4.6.0 + +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) diff --git a/bloom/generators/debian/templates/meson/copyright.em b/bloom/generators/debian/templates/meson/copyright.em new file mode 100644 index 00000000..bc82fd5d --- /dev/null +++ b/bloom/generators/debian/templates/meson/copyright.em @@ -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]@ diff --git a/bloom/generators/debian/templates/meson/gbp.conf.em b/bloom/generators/debian/templates/meson/gbp.conf.em new file mode 100644 index 00000000..ad24a164 --- /dev/null +++ b/bloom/generators/debian/templates/meson/gbp.conf.em @@ -0,0 +1,3 @@ +[git-buildpackage] +upstream-tag=@(release_tag) +upstream-tree=tag diff --git a/bloom/generators/debian/templates/meson/rules.em b/bloom/generators/debian/templates/meson/rules.em new file mode 100755 index 00000000..f19cc754 --- /dev/null +++ b/bloom/generators/debian/templates/meson/rules.em @@ -0,0 +1,52 @@ +#!/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 + +# Solve shlibdeps errors in REP136 packages that use GNUInstallDirs: +export DEB_HOST_MULTIARCH := $(shell dpkg-architecture -qDEB_HOST_MULTIARCH) + +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) + +%: + dh $@@ -v --buildsystem=meson --builddirectory=.obj-$(DEB_HOST_GNU_TYPE) + +override_dh_auto_configure: + if [ -f "@(InstallationPrefix)/setup.sh" ]; then . "@(InstallationPrefix)/setup.sh"; fi && \ + dh_auto_configure -- \ + --prefix="@(InstallationPrefix)" \ + --cmake-prefix-path="@(InstallationPrefix)" \ + --libdir=lib \ + --libexecdir=lib + +override_dh_auto_build: + if [ -f "@(InstallationPrefix)/setup.sh" ]; then . "@(InstallationPrefix)/setup.sh"; fi && \ + dh_auto_build + +override_dh_auto_test: + 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: + if [ -f "@(InstallationPrefix)/setup.sh" ]; then . "@(InstallationPrefix)/setup.sh"; fi && \ + dh_shlibdeps -l$(CURDIR)/debian/@(Package)/@(InstallationPrefix)/lib/:$(CURDIR)/debian/@(Package)/@(InstallationPrefix)/lib/${DEB_HOST_MULTIARCH} + +override_dh_auto_install: + if [ -f "@(InstallationPrefix)/setup.sh" ]; then . "@(InstallationPrefix)/setup.sh"; fi && \ + dh_auto_install diff --git a/bloom/generators/debian/templates/meson/source/format.em b/bloom/generators/debian/templates/meson/source/format.em new file mode 100644 index 00000000..9666bf41 --- /dev/null +++ b/bloom/generators/debian/templates/meson/source/format.em @@ -0,0 +1 @@ +3.0 (@(format)) diff --git a/bloom/generators/debian/templates/meson/source/options.em b/bloom/generators/debian/templates/meson/source/options.em new file mode 100644 index 00000000..8c4c78b0 --- /dev/null +++ b/bloom/generators/debian/templates/meson/source/options.em @@ -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]