diff -Nru vboot-utils-0~R63-10032.B/debian/changelog vboot-utils-0~R63-10032.B/debian/changelog --- vboot-utils-0~R63-10032.B/debian/changelog 2018-02-05 16:55:42.000000000 +0000 +++ vboot-utils-0~R63-10032.B/debian/changelog 2018-02-06 15:29:11.000000000 +0000 @@ -1,8 +1,12 @@ -vboot-utils (0~R63-10032.B-2build1) bionic; urgency=high +vboot-utils (0~R63-10032.B-3) unstable; urgency=medium - * No change rebuild against openssl1.1. + * Move git repository to salsa.debian.org. + * Make build logs verbose to include the full command line. + * Protect dh_override_auto_test with check of nocheck in DEB_BUILD_OPTIONS. + * Bump Standards-Version to 4.1.3. + * Update my name in Uploaders. - -- Dimitri John Ledkov Mon, 05 Feb 2018 16:55:42 +0000 + -- Raphaël Hertzog Tue, 06 Feb 2018 16:29:11 +0100 vboot-utils (0~R63-10032.B-2) unstable; urgency=medium diff -Nru vboot-utils-0~R63-10032.B/debian/control vboot-utils-0~R63-10032.B/debian/control --- vboot-utils-0~R63-10032.B/debian/control 2018-02-05 16:55:42.000000000 +0000 +++ vboot-utils-0~R63-10032.B/debian/control 2018-02-06 15:29:11.000000000 +0000 @@ -1,9 +1,8 @@ Source: vboot-utils Section: admin Priority: optional -Maintainer: Ubuntu Developers -XSBC-Original-Maintainer: Sophie Brun -Uploaders: Raphael Hertzog +Maintainer: Sophie Brun +Uploaders: Raphaël Hertzog Build-Depends: debhelper (>= 9), liblzma-dev, libssl-dev, @@ -14,9 +13,9 @@ python, # tests/external_rsa_signer.sh openssl -Standards-Version: 4.1.1 -Vcs-Git: https://anonscm.debian.org/git/collab-maint/vboot-utils.git -Vcs-Browser: https://anonscm.debian.org/cgit/collab-maint/vboot-utils.git +Standards-Version: 4.1.3 +Vcs-Git: https://salsa.debian.org/debian/vboot-utils.git +Vcs-Browser: https://salsa.debian.org/debian/vboot-utils Homepage: https://chromium.googlesource.com/chromiumos/platform/vboot_reference Package: vboot-utils diff -Nru vboot-utils-0~R63-10032.B/debian/rules vboot-utils-0~R63-10032.B/debian/rules --- vboot-utils-0~R63-10032.B/debian/rules 2017-11-20 13:19:32.000000000 +0000 +++ vboot-utils-0~R63-10032.B/debian/rules 2018-02-06 15:29:11.000000000 +0000 @@ -2,8 +2,11 @@ export DEB_BUILD_MAINT_OPTIONS = hardening=+all +override_dh_auto_build: + dh_auto_build -- V=1 + override_dh_auto_install: - $(MAKE) DESTDIR=$$(pwd)/debian/vboot-utils/usr install + $(MAKE) V=1 DESTDIR=$$(pwd)/debian/vboot-utils/usr install mkdir -p $$(pwd)/debian/cgpt/usr/bin mv -t $$(pwd)/debian/cgpt/usr/bin \ $$(pwd)/debian/vboot-utils/usr/bin/cgpt @@ -20,7 +23,9 @@ rmdir --ignore-fail-on-non-empty -p debian/vboot-utils/usr/lib/pkgconfig override_dh_auto_test: - make runtests +ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS))) + make runtests V=1 +endif %: dh $@ --parallel