diff -Nru breezy-debian-2.8.10/debian/changelog breezy-debian-2.8.10ubuntu1/debian/changelog --- breezy-debian-2.8.10/debian/changelog 2017-11-08 23:23:20.000000000 +0000 +++ breezy-debian-2.8.10ubuntu1/debian/changelog 2022-05-20 14:43:32.000000000 +0000 @@ -1,3 +1,10 @@ +breezy-debian (2.8.10ubuntu1) bionic; urgency=medium + + * Fix `bzr dh-make` (LP: #1954595) + - dh_make.py: import bzrdir. + + -- Mauricio Faria de Oliveira Fri, 20 May 2022 11:43:32 -0300 + breezy-debian (2.8.10) unstable; urgency=medium * debian/copyright: Fix package name. diff -Nru breezy-debian-2.8.10/debian/control breezy-debian-2.8.10ubuntu1/debian/control --- breezy-debian-2.8.10/debian/control 2017-11-08 23:23:20.000000000 +0000 +++ breezy-debian-2.8.10ubuntu1/debian/control 2022-05-20 14:43:32.000000000 +0000 @@ -1,7 +1,8 @@ Source: breezy-debian Section: vcs Priority: optional -Maintainer: Debian Bazaar Maintainers +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Debian Bazaar Maintainers Uploaders: Jelmer Vernooij Build-Depends: debhelper (>= 9), python-all (>= 2.6.6-3), xz-utils Build-Depends-Indep: brz, python-docutils, python-debian (>= 0.1.11), python-apt, patchutils, python-testtools (>= 0.9.2), pristine-tar, devscripts (>= 2.10.59), python-subunit, python-breezy.tests (>= 3.0.0~bzr6819), python-lzma, libalgorithm-merge-perl, python-distro-info, quilt diff -Nru breezy-debian-2.8.10/dh_make.py breezy-debian-2.8.10ubuntu1/dh_make.py --- breezy-debian-2.8.10/dh_make.py 2017-11-08 23:23:20.000000000 +0000 +++ breezy-debian-2.8.10ubuntu1/dh_make.py 2022-05-20 14:36:18.000000000 +0000 @@ -4,6 +4,8 @@ import sys import subprocess +from breezy.bzr import bzrdir + from ... import ( controldir, errors as bzr_errors,