diff -Nru libconfig-model-dpkg-perl-2.131/debian/changelog libconfig-model-dpkg-perl-2.132/debian/changelog --- libconfig-model-dpkg-perl-2.131/debian/changelog 2020-03-09 18:11:19.000000000 +0000 +++ libconfig-model-dpkg-perl-2.132/debian/changelog 2020-03-18 19:26:27.000000000 +0000 @@ -1,3 +1,15 @@ +libconfig-model-dpkg-perl (2.132) unstable; urgency=medium + + * Team upload. + * Annotate test-only build dependencies with . + * Config/Model/Dpkg/Control/Source/StandardVersion: adjust loading of + lintian profile after changes in Lintian::Profile. + * Adjust t/model_tests.d/dpkg-control-test-conf.pl to new + Lintian::Profile as well. + * Make build and runtime dependency on lintian versioned. + + -- gregor herrmann Wed, 18 Mar 2020 20:26:27 +0100 + libconfig-model-dpkg-perl (2.131) unstable; urgency=medium * control: depends on licensecheck >= 3.0.45 diff -Nru libconfig-model-dpkg-perl-2.131/debian/control libconfig-model-dpkg-perl-2.132/debian/control --- libconfig-model-dpkg-perl-2.131/debian/control 2020-03-09 18:11:19.000000000 +0000 +++ libconfig-model-dpkg-perl-2.132/debian/control 2020-03-18 19:26:27.000000000 +0000 @@ -7,31 +7,31 @@ Build-Depends: debhelper-compat (= 12), libmodule-build-perl Build-Depends-Indep: bash-completion, - libapt-pkg-perl, - libarray-intspan-perl, - libconfig-model-backend-yaml-perl, + libapt-pkg-perl , + libarray-intspan-perl , + libconfig-model-backend-yaml-perl , libconfig-model-perl (>= 2.122), - libconfig-model-tester-perl (>= 3.006), - libexporter-lite-perl, - liblog-log4perl-perl, - libmodule-corelist-perl, - libmouse-perl, - libparse-recdescent-perl, - libpath-tiny-perl, - libsoftware-licensemoreutils-perl, - libsort-versions-perl, - libtest-differences-perl, - libtest-exception-perl, - libtest-memory-cycle-perl, - libtest-pod-perl, - libtest-warn-perl, - libtext-autoformat-perl, - libtext-levenshtein-damerau-perl, - libwww-perl, - libyaml-libyaml-perl, - licensecheck (>= 3.0.45), - lintian, - po-debconf + libconfig-model-tester-perl (>= 3.006) , + libexporter-lite-perl , + liblog-log4perl-perl , + libmodule-corelist-perl , + libmouse-perl , + libparse-recdescent-perl , + libpath-tiny-perl , + libsoftware-licensemoreutils-perl , + libsort-versions-perl , + libtest-differences-perl , + libtest-exception-perl , + libtest-memory-cycle-perl , + libtest-pod-perl , + libtest-warn-perl , + libtext-autoformat-perl , + libtext-levenshtein-damerau-perl , + libwww-perl , + libyaml-libyaml-perl , + licensecheck (>= 3.0.45) , + lintian (>= 2.57.0~) , + po-debconf Standards-Version: 4.5.0 Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libconfig-model-dpkg-perl Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libconfig-model-dpkg-perl.git @@ -59,7 +59,7 @@ libwww-perl, libyaml-libyaml-perl, licensecheck (>= 3.0.45), - lintian + lintian (>= 2.57.0~) Recommends: libconfig-model-tkui-perl Enhances: devscripts Description: editor for Dpkg source files with validation diff -Nru libconfig-model-dpkg-perl-2.131/.gitignore libconfig-model-dpkg-perl-2.132/.gitignore --- libconfig-model-dpkg-perl-2.131/.gitignore 1970-01-01 00:00:00.000000000 +0000 +++ libconfig-model-dpkg-perl-2.132/.gitignore 2020-03-18 19:26:27.000000000 +0000 @@ -0,0 +1,6 @@ +Build +MYMETA* +_build +wr_root +blib +*~ diff -Nru libconfig-model-dpkg-perl-2.131/lib/Config/Model/Dpkg/Control/Source/StandardVersion.pm libconfig-model-dpkg-perl-2.132/lib/Config/Model/Dpkg/Control/Source/StandardVersion.pm --- libconfig-model-dpkg-perl-2.131/lib/Config/Model/Dpkg/Control/Source/StandardVersion.pm 2020-03-09 18:11:19.000000000 +0000 +++ libconfig-model-dpkg-perl-2.132/lib/Config/Model/Dpkg/Control/Source/StandardVersion.pm 2020-03-18 19:26:27.000000000 +0000 @@ -16,7 +16,8 @@ # Given the initialisation required for Lintian::Data, using compute # to extract the default value from Lintain is scary: I'd rather avoid # running this code several times in an eval as done by compute -my $profile = Lintian::Profile->new ('debian'); +my $profile = Lintian::Profile->new(); +$profile->load('debian'); Lintian::Data->set_vendor($profile); my $standards = Lintian::Data->new('standards-version/release-dates', qr/\s+/); my @std_list = $standards->all(); diff -Nru libconfig-model-dpkg-perl-2.131/t/model_tests.d/dpkg-control-test-conf.pl libconfig-model-dpkg-perl-2.132/t/model_tests.d/dpkg-control-test-conf.pl --- libconfig-model-dpkg-perl-2.131/t/model_tests.d/dpkg-control-test-conf.pl 2020-03-09 18:11:19.000000000 +0000 +++ libconfig-model-dpkg-perl-2.132/t/model_tests.d/dpkg-control-test-conf.pl 2020-03-18 19:26:27.000000000 +0000 @@ -10,7 +10,8 @@ my $conf_file_name = "control"; my $conf_dir = 'debian'; -my $profile = Lintian::Profile->new ('debian'); +my $profile = Lintian::Profile->new (); +$profile->load('debian'); Lintian::Data->set_vendor($profile); my $standards = Lintian::Data->new('standards-version/release-dates', qr/\s+/); my @std_list = $standards->all();