summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-26 07:50:35 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-26 07:50:35 +0000
commit5c5822af47c5b18c0a76f5890fa947701cd3142e (patch)
tree0b1491e09bf830270db5cb3325f8ecd6d343c096
parentMerging upstream version 0.14. (diff)
downloadpackage-notes-debian.tar.xz
package-notes-debian.zip
Adding debian version 0.14.debian/0.14debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
-rw-r--r--debian/changelog6
-rw-r--r--debian/package-notes.mk9
2 files changed, 10 insertions, 5 deletions
diff --git a/debian/changelog b/debian/changelog
index 5bfc9db..7fe2204 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+package-notes (0.14) unstable; urgency=medium
+
+ * d/package-notes.mk: change to no-op on Ubuntu
+
+ -- Luca Boccassi <bluca@debian.org> Sun, 23 Jun 2024 17:18:48 +0100
+
package-notes (0.13) unstable; urgency=medium
* debian/package-notes.mk: skip when linking with llvm
diff --git a/debian/package-notes.mk b/debian/package-notes.mk
index 2cb1339..dc2c705 100644
--- a/debian/package-notes.mk
+++ b/debian/package-notes.mk
@@ -4,16 +4,14 @@
# llvm does not support spec files
ifeq ( ,$(filter lld, $(LD)))
+# Ubuntu implemented this in dpkg-buildpackage, make this a no-op to avoid duplication
+include /usr/share/dpkg/vendor.mk
+ifneq ($(DEB_VENDOR),Ubuntu)
# binutils 2.39 is required for --package-metadata=
ifeq (0, $(shell dpkg --compare-versions $$(dpkg-query -f '$${Version}' -W binutils) ge 2.39; echo $$?))
-include /usr/share/dpkg/vendor.mk
ifeq (, $(filter nocheck, $(DEBUGINFOD_URLS)))
-ifeq ($(DEB_VENDOR),Ubuntu)
-export DEBUGINFOD_URLS=https://debuginfod.ubuntu.com
-else
export DEBUGINFOD_URLS=https://debuginfod.debian.net
endif
-endif
export DEB_SOURCE_PACKAGE_VERSION=$(shell dpkg-parsechangelog -S Version)
export DEB_SOURCE_PACKAGE_NAME=$(shell dpkg-parsechangelog -S Source)
# Set by /usr/share/dpkg/vendor.mk
@@ -21,4 +19,5 @@ export DEB_VENDOR
export DEB_LDFLAGS_MAINT_APPEND+= -specs=/usr/share/debhelper/dh_package_notes/debian-package-notes.specs
endif
endif
+endif