diff mbox series

[SRU,F/E/D/B/Unstable,1/1] UBUNTU: [Packaging] Add BugLink to update-version-dkms commit

Message ID 20200317151654.28748-2-kleber.souza@canonical.com
State New
Headers show
Series update-version-dkms doesn't add a BugLink | expand

Commit Message

Kleber Sacilotto de Souza March 17, 2020, 3:16 p.m. UTC
BugLink: https://bugs.launchpad.net/bugs/1867790

The commit created by update-version-dkms doesn't have any BugLink, so it
gets added to the debian changelog under "* Miscellaneous Ubuntu changes".

Fix it by to adding a BugLink to https://bugs.launchpad.net/bugs/1786013
("Packaging resync"), which is the bug report being used for all the other
automated commits.

Signed-off-by: Kleber Sacilotto de Souza <kleber.souza@canonical.com>
---
 update-version-dkms | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Comments

Paolo Pisati March 17, 2020, 4:13 p.m. UTC | #1
On Tue, Mar 17, 2020 at 04:16:54PM +0100, Kleber Sacilotto de Souza wrote:
> BugLink: https://bugs.launchpad.net/bugs/1867790

Acked-by: Paolo Pisati <paolo.pisati@canonical.com>
diff mbox series

Patch

diff --git a/update-version-dkms b/update-version-dkms
index a0aba917ad63..301e1b112737 100755
--- a/update-version-dkms
+++ b/update-version-dkms
@@ -50,7 +50,8 @@  EOL
 done <"debian/dkms-versions"
 if ! cmp -s "debian/dkms-versions.new" "debian/dkms-versions"; then
 	mv -f "debian/dkms-versions.new" "debian/dkms-versions"
-	git commit -a -s -m "UBUNTU: update dkms package versions"
+	git commit -a -s -m "UBUNTU: update dkms package versions" \
+		-m "BugLink: https://bugs.launchpad.net/bugs/1786013"
 else
 	rm -f "debian/dkms-versions.new"
 fi