From 11c0305119674ff2d0da4396f29712895277bddd Mon Sep 17 00:00:00 2001 From: Bartek Kryza Date: Mon, 11 Dec 2023 09:44:22 +0100 Subject: [PATCH] Enable building Ubuntu debug symbol packages --- Doxyfile | 2 +- packaging/README.md | 11 ++++++++--- packaging/debian/rules | 3 ++- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/Doxyfile b/Doxyfile index a703d679..99022c23 100644 --- a/Doxyfile +++ b/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = "clang-uml" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 0.4.1 +PROJECT_NUMBER = 0.4.2 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/packaging/README.md b/packaging/README.md index 01ab38da..986c3725 100644 --- a/packaging/README.md +++ b/packaging/README.md @@ -10,6 +10,7 @@ cd packaging make DIST=focal deb make DIST=jammy deb make DIST=lunar deb +make DIST=mantic deb cd _BUILD/ubuntu/focal dput ppa:bkryza/clang-uml *.changes @@ -17,17 +18,20 @@ dput ppa:bkryza/clang-uml *.changes cd _BUILD/ubuntu/jammy dput ppa:bkryza/clang-uml *.changes -cd _BUILD/ubuntu/kinetic +cd _BUILD/ubuntu/lunar dput ppa:bkryza/clang-uml *.changes +cd _BUILD/ubuntu/mantic +dput ppa:bkryza/clang-uml *.changes ``` ## Fedora ```bash cd clang-uml -make fedora_36 -make fedora_37 +make fedora/37 +make fedora/38 +make fedora/39 find packaging/_BUILD/fedora ``` @@ -37,6 +41,7 @@ find packaging/_BUILD/fedora docker run --rm -v $PWD:$PWD -it continuumio/miniconda3 bash conda install conda-build make anaconda-client cd packaging +git config --global --add safe.directory /home/bartek/devel/clang-uml make CONDA_TOKEN= conda ``` diff --git a/packaging/debian/rules b/packaging/debian/rules index e0e5cb5a..1ec8c07e 100755 --- a/packaging/debian/rules +++ b/packaging/debian/rules @@ -13,8 +13,9 @@ override_dh_auto_configure: -DGIT_VERSION={{VERSION}} \ -DBUILD_TESTS=OFF +.PHONY: override_dh_strip override_dh_strip: - dh_strip --dbgsym-migration='clang-uml-dbg (<<{{VERSION}}-1~)' + dh_strip --automatic-dbgsym %: dh $@ --with bash-completion