diff -Nru lintian-2.114.0/debian/changelog lintian-2.114.0ubuntu1/debian/changelog --- lintian-2.114.0/debian/changelog 2021-11-27 18:20:56.000000000 +0100 +++ lintian-2.114.0ubuntu1/debian/changelog 2022-01-11 17:29:18.000000000 +0100 @@ -1,3 +1,18 @@ +lintian (2.114.0ubuntu1) jammy; urgency=medium + + * Merge with Debian unstable (LP: #1957100). Remaining changes: + - Fix building udebs, now that in Ubuntu noudebs is implied profile + (LP: #1918120) + - Add zst as allowed compression for .deb & .udeb although we don't + actually ship udeb package that supports zst. (LP: #1923845) + - Add AC_INIT in + macro-not-cross-compilation-safe/build-spec/orig/src/configure.ac + (LP: #1950989) + - Remove the libio-prompt-tiny-perl dependency as it isn't + used in any Perl file in the final package (LP: #1959004) + + -- Simon Chopin Tue, 11 Jan 2022 17:29:18 +0100 + lintian (2.114.0) unstable; urgency=medium [ Felix Lechner ] @@ -127,6 +142,31 @@ -- Chris Lamb Sat, 13 Nov 2021 15:25:15 +0000 +lintian (2.111.0ubuntu3) jammy; urgency=medium + + * Remove the libio-prompt-tiny-perl dependency as it isn't + used in any Perl file in the final package (LP: #1959004) + + -- Simon Chopin Tue, 25 Jan 2022 15:25:15 +0100 + +lintian (2.111.0ubuntu2) jammy; urgency=medium + + * Add AC_INIT in + macro-not-cross-compilation-safe/build-spec/orig/src/configure.ac + (LP: #1950989) + + -- Heinrich Schuchardt Mon, 15 Nov 2021 13:09:34 +0100 + +lintian (2.111.0ubuntu1) jammy; urgency=medium + + * Merge from Debian Sid. Remaining changes: + - Fix building udebs, now that in Ubuntu noudebs is implied profile + (LP: #1918120). + - Add zst as allowed compression for .deb & .udeb. Although we don't + actually ship udeb package that supports zst. (LP: #1923845) + + -- Simon Quigley Thu, 11 Nov 2021 05:26:06 -0600 + lintian (2.111.0) unstable; urgency=medium * Summary of tag changes: @@ -148,6 +188,17 @@ -- Chris Lamb Sat, 30 Oct 2021 09:03:59 +0000 +lintian (2.110.0ubuntu1) jammy; urgency=medium + + * Merge from Debian Sid. Remaining changes: + - Fix building udebs, now that in Ubuntu noudebs is implied profile + (LP: #1918120). + - Add zst as allowed compression for .deb & .udeb. Although we don't + actually ship udeb package that supports zst. (LP: #1923845) + * Add "jammy" as a known Ubuntu distribution. + + -- Simon Quigley Wed, 27 Oct 2021 04:01:49 -0500 + lintian (2.110.0) unstable; urgency=medium * Summary of tag changes: @@ -515,6 +566,26 @@ -- Chris Lamb Tue, 07 Sep 2021 09:43:56 +0000 +lintian (2.104.0ubuntu3) impish; urgency=medium + + * Add zst as allowed compression for .deb & .udeb. Although we don't + actually ship udeb package that supports zst. LP: #1923845 + + -- Dimitri John Ledkov Tue, 15 Jun 2021 10:42:12 +0100 + +lintian (2.104.0ubuntu2) hirsute; urgency=medium + + * Teach lintian that impish is a valid Ubuntu release. (LP: #1928392) + + -- Brian Murray Thu, 13 May 2021 14:51:42 -0700 + +lintian (2.104.0ubuntu1) hirsute; urgency=medium + + * Fix building udebs, now that in Ubuntu noudebs is implied profile. LP: + #1918120 + + -- Dimitri John Ledkov Thu, 18 Mar 2021 14:09:46 +0000 + lintian (2.104.0) unstable; urgency=medium [ Baptiste Beauplat ] @@ -26179,3 +26250,4 @@ * First release -- Christian Schwarz Wed, 11 Feb 1998 23:15:51 +0100 + diff -Nru lintian-2.114.0/debian/control lintian-2.114.0ubuntu1/debian/control --- lintian-2.114.0/debian/control 2021-11-27 18:20:56.000000000 +0100 +++ lintian-2.114.0ubuntu1/debian/control 2022-01-11 17:29:18.000000000 +0100 @@ -1,7 +1,8 @@ Source: lintian Section: devel Priority: optional -Maintainer: Debian Lintian Maintainers +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Debian Lintian Maintainers Uploaders: Chris Lamb , Build-Depends: @@ -53,7 +54,6 @@ libfont-ttf-perl, libhtml-html5-entities-perl, libio-interactive-perl, - libio-prompt-tiny-perl, libipc-run3-perl, libjson-maybexs-perl, liblist-compare-perl, diff -Nru lintian-2.114.0/lib/Lintian/Check/DebFormat.pm lintian-2.114.0ubuntu1/lib/Lintian/Check/DebFormat.pm --- lintian-2.114.0/lib/Lintian/Check/DebFormat.pm 2021-11-27 18:20:56.000000000 +0100 +++ lintian-2.114.0ubuntu1/lib/Lintian/Check/DebFormat.pm 2022-01-11 17:29:18.000000000 +0100 @@ -137,13 +137,13 @@ } else { if ( $ctrl_member !~ m{\A - control\.tar(?:\.(?:gz|xz))? \Z}xsm + control\.tar(?:\.(?:gz|xz|zst))? \Z}xsm ) { $self->hint( 'malformed-deb-archive', join($SPACE, "second (official) member $ctrl_member", - 'not control.tar.(gz|xz)')); + 'not control.tar.(gz|xz|zst)')); $failed = 1; } elsif ($ctrl_member eq 'control.tar') { $self->hint('uses-no-compression-for-control-tarball'); @@ -161,14 +161,14 @@ } else { if ( $data_member !~ m{\A - data\.tar(?:\.(?:gz|bz2|xz|lzma))? \Z}xsm + data\.tar(?:\.(?:gz|bz2|xz|lzma|zst))? \Z}xsm ) { # wasn't okay after all $self->hint( 'malformed-deb-archive', join($SPACE, "third (official) member $data_member", - 'not data.tar.(gz|xz|bz2|lzma)')); + 'not data.tar.(gz|xz|bz2|lzma|zst)')); $failed = 1; } elsif ($self->processable->type eq 'udeb' && $data_member !~ m/^data\.tar\.[gx]z$/) { diff -Nru lintian-2.114.0/t/recipes/checks/build-systems/autotools/macro-not-cross-compilation-safe/build-spec/orig/src/configure.ac lintian-2.114.0ubuntu1/t/recipes/checks/build-systems/autotools/macro-not-cross-compilation-safe/build-spec/orig/src/configure.ac --- lintian-2.114.0/t/recipes/checks/build-systems/autotools/macro-not-cross-compilation-safe/build-spec/orig/src/configure.ac 2021-11-27 18:20:56.000000000 +0100 +++ lintian-2.114.0ubuntu1/t/recipes/checks/build-systems/autotools/macro-not-cross-compilation-safe/build-spec/orig/src/configure.ac 2022-01-11 17:29:18.000000000 +0100 @@ -1 +1,3 @@ +AC_INIT + AC_PATH_PROG(PKG_CONFIG, pkg-config, no) diff -Nru lintian-2.114.0/t/recipes/checks/debian/shlibs/shared-libs-non-pic-i386/build-spec/Makefile.in lintian-2.114.0ubuntu1/t/recipes/checks/debian/shlibs/shared-libs-non-pic-i386/build-spec/Makefile.in --- lintian-2.114.0/t/recipes/checks/debian/shlibs/shared-libs-non-pic-i386/build-spec/Makefile.in 2021-11-27 18:20:56.000000000 +0100 +++ lintian-2.114.0ubuntu1/t/recipes/checks/debian/shlibs/shared-libs-non-pic-i386/build-spec/Makefile.in 2022-01-11 17:29:18.000000000 +0100 @@ -39,9 +39,9 @@ upload_type = [% $upload_type %] ifeq ($(upload_type),source) -extraflags = -S +extraflags = -S --build-profiles='!noudeb' else -extraflags = +extraflags = --build-profiles='!noudeb' endif .DEFAULT_GOAL := $(product) diff -Nru lintian-2.114.0/t/recipes/checks/libraries/shared/relocation/shared-libs-non-pic-i386/build-spec/Makefile.in lintian-2.114.0ubuntu1/t/recipes/checks/libraries/shared/relocation/shared-libs-non-pic-i386/build-spec/Makefile.in --- lintian-2.114.0/t/recipes/checks/libraries/shared/relocation/shared-libs-non-pic-i386/build-spec/Makefile.in 2021-11-27 18:20:56.000000000 +0100 +++ lintian-2.114.0ubuntu1/t/recipes/checks/libraries/shared/relocation/shared-libs-non-pic-i386/build-spec/Makefile.in 2022-01-11 17:29:18.000000000 +0100 @@ -39,9 +39,9 @@ upload_type = [% $upload_type %] ifeq ($(upload_type),source) -extraflags = -S +extraflags = -S --build-profiles='!noudeb' else -extraflags = +extraflags = --build-profiles='!noudeb' endif .DEFAULT_GOAL := $(product) diff -Nru lintian-2.114.0/t/templates/upload-make-builder/Makefile.in lintian-2.114.0ubuntu1/t/templates/upload-make-builder/Makefile.in --- lintian-2.114.0/t/templates/upload-make-builder/Makefile.in 2021-11-27 18:20:56.000000000 +0100 +++ lintian-2.114.0ubuntu1/t/templates/upload-make-builder/Makefile.in 2022-01-11 17:29:18.000000000 +0100 @@ -24,9 +24,9 @@ upload_type = [% $upload_type %] ifeq ($(upload_type),source) -extraflags = -S +extraflags = -S --build-profiles='!noudeb' else -extraflags = +extraflags = --build-profiles='!noudeb' endif .DEFAULT_GOAL := $(product)