[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#657390: marked as done (lintian: Please make build-arch and build-indep required targets)



Your message dated Mon, 20 Jun 2022 14:34:13 +0000
with message-id <E1o3ITl-0000kM-80@fasolo.debian.org>
and subject line Bug#657390: fixed in lintian 2.115.0
has caused the Debian Bug report #657390,
regarding lintian: Please make build-arch and build-indep required targets
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact owner@bugs.debian.org
immediately.)


-- 
657390: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=657390
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: lintian
Version: 2.5.4
Severity: normal
Tags: patch

Hi,

Once build-arch and build-indep are supported by dpkg-buildpackage,
hopefully in the next week, and/or are required by Policy, please
could you apply the attached patch to move build-arch and build-indep
from recommended to required?

I kept the debian-rules-missing-recommended-target check and
description in case it's of potential use in the future, but
otherwise these could also be removed.


Thanks,
Roger

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (550, 'unstable'), (500, 'testing'), (400, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages lintian depends on:
ii  binutils                       2.22-5
ii  bzip2                          1.0.6-1
ii  diffstat                       1.55-2
ii  file                           5.09-2
ii  gettext                        0.18.1.1-5
ii  intltool-debian                0.35.0+20060710.1
ii  libapt-pkg-perl                0.1.25+b1
ii  libclass-accessor-perl         0.34-1
ii  libclone-perl                  0.31-1+b2
ii  libdigest-sha-perl             5.70-1
ii  libdpkg-perl                   1.16.2
ii  libemail-valid-perl            0.186-1
ii  libipc-run-perl                0.90-1
ii  libparse-debianchangelog-perl  1.2.0-1
ii  libtimedate-perl               1.2000-1
ii  liburi-perl                    1.59-1
ii  locales                        2.13-24
ii  locales-all [locales]          2.13-24
ii  man-db                         2.6.0.2-3
ii  patchutils                     0.3.2-1.1
ii  perl [libdigest-sha-perl]      5.14.2-6
ii  unzip                          6.0-5

lintian recommends no packages.

Versions of packages lintian suggests:
ii  binutils-multiarch     <none>
ii  dpkg-dev               1.16.2
ii  libhtml-parser-perl    3.69-1+b1
ii  libtext-template-perl  1.45-2
ii  man-db                 2.6.0.2-3
ii  xz-utils               5.1.1alpha+20110809-3

-- no debconf information
>From 8ef4bfa900671cf36c8dd109fd31c9483d1e9106 Mon Sep 17 00:00:00 2001
From: Roger Leigh <rleigh@debian.org>
Date: Wed, 25 Jan 2012 21:59:21 +0000
Subject: [PATCH 1/2] build-arch and build-indep are required targets in
 debian/rules

Move build-arch and build-indep from %recommended to %required.
Update debian-rules-missing-required-target description with some
of the text from debian-rules-missing-recommended-target.  Leave
empty %required and debian-rules-missing-recommended-target for
potential future use.

Signed-off-by: Roger Leigh <rleigh@debian.org>
---
 checks/rules      |    4 ++--
 checks/rules.desc |   30 ++++++++++++++----------------
 2 files changed, 16 insertions(+), 18 deletions(-)

diff --git a/checks/rules b/checks/rules
index bdba0b6..a176d2b 100644
--- a/checks/rules
+++ b/checks/rules
@@ -87,11 +87,11 @@ my @RULE_CLEAN_DEPENDS =
 
 # The following targets are required per Policy.
 my %required = map { $_ => 1 }
-    qw(build binary binary-arch binary-indep clean);
+    qw(build build-arch build-indep binary binary-arch binary-indep clean);
 
 # The following targets are recommended per Policy.
 my %recommended = map { $_ => 1 }
-    qw(build-arch build-indep);
+    qw();
 
 # Rules about required debhelper command ordering.  Each command is put into a
 # class and the tag is issued if they're called in the wrong order for the
diff --git a/checks/rules.desc b/checks/rules.desc
index 5a9dfe7..94aa85e 100644
--- a/checks/rules.desc
+++ b/checks/rules.desc
@@ -30,21 +30,15 @@ Tag: debian-rules-missing-required-target
 Severity: serious
 Certainty: certain
 Ref: policy 4.9
-Info: The <tt>debian/rules</tt> file for this package does not provide one
- of the required targets.  All of build, binary, binary-arch,
- binary-indep, and clean must be provided, even if they don't do anything
- for this package.
 
-Tag: debian-rules-missing-recommended-target
-Severity: normal
-Certainty: certain
-Ref: policy 4.9
 Info: The <tt>debian/rules</tt> file for this package does not provide
- one of the recommended targets.  All of build-arch and build-indep
- should be provided, even if they don't do anything for this package.
- If this package does not currently split building of architecture
- dependent and independent packages, the following rules may be added
- to fall back to the build target:
+ one of the required targets.  All of build, build-arch, build-indep,
+ binary, binary-arch, binary-indep, and clean must be provided, even
+ if they don't do anything for this package.  If this package does not
+ currently split building of architecture dependent and independent
+ packages, and does not currently provide build-arch or build-indep
+ targets, the following rules may be added to fall back to the build
+ target:
  .
    build-arch: build
    build-indep: build
@@ -56,9 +50,13 @@ Info: The <tt>debian/rules</tt> file for this package does not provide
    build-indep: build-stamp
    build-stamp:
 	build here
- .
- These targets will be required by policy in the future, so should be
- added to prevent future breakage.
+
+Tag: debian-rules-missing-recommended-target
+Severity: normal
+Certainty: certain
+Ref: policy 4.9
+Info: The <tt>debian/rules</tt> file for this package does not provide
+ one of the recommended targets.
 
 Tag: debian-rules-uses-deprecated-makefile
 Severity: normal
-- 
1.7.8.3

>From 74423d8f4502ffaf7504d1e2a8ad7fc164e4be32 Mon Sep 17 00:00:00 2001
From: Roger Leigh <rleigh@debian.org>
Date: Wed, 25 Jan 2012 22:12:19 +0000
Subject: [PATCH 2/2] Update checks for
 debian-rules-missing-recommended-target

Replace all use of debian-rules-missing-recommended-target
with debian-rules-missing-required-target.
---
 t/tests/generic-dh-make-2005/tags                  |    4 ++--
 t/tests/generic-dh-make-2008/tags                  |    4 ++--
 t/tests/generic-empty/tags                         |    4 ++--
 t/tests/rules-dh-unused-target-nonempty/tags       |    4 ++--
 .../rules-missing-targets-with-known-includes/desc |    1 -
 .../rules-missing-targets-with-known-includes/tags |    4 ++--
 t/tests/rules-missing-targets/desc                 |    2 +-
 t/tests/rules-missing-targets/tags                 |    4 ++--
 t/tests/rules-variable-targets/desc                |    2 +-
 testset/tags.binary                                |    2 +-
 10 files changed, 15 insertions(+), 16 deletions(-)

diff --git a/t/tests/generic-dh-make-2005/tags b/t/tests/generic-dh-make-2005/tags
index eb71be2..1d46b76 100644
--- a/t/tests/generic-dh-make-2005/tags
+++ b/t/tests/generic-dh-make-2005/tags
@@ -5,8 +5,8 @@ I: generic-dh-make-2005 source: debian-watch-file-is-missing
 I: generic-dh-make-2005: extended-description-is-probably-too-short
 W: generic-dh-make-2005 source: ancient-standards-version 3.6.2 (current is CURRENT)
 W: generic-dh-make-2005 source: debian-rules-ignores-make-clean-error line 47
-W: generic-dh-make-2005 source: debian-rules-missing-recommended-target build-arch
-W: generic-dh-make-2005 source: debian-rules-missing-recommended-target build-indep
+W: generic-dh-make-2005 source: debian-rules-missing-required-target build-arch
+W: generic-dh-make-2005 source: debian-rules-missing-required-target build-indep
 W: generic-dh-make-2005 source: debian-rules-sets-DH_COMPAT line 12
 W: generic-dh-make-2005 source: dh_suidregister-is-obsolete line 85
 W: generic-dh-make-2005 source: package-uses-deprecated-debhelper-compat-version 2
diff --git a/t/tests/generic-dh-make-2008/tags b/t/tests/generic-dh-make-2008/tags
index 8912546..035d011 100644
--- a/t/tests/generic-dh-make-2008/tags
+++ b/t/tests/generic-dh-make-2008/tags
@@ -9,8 +9,8 @@ I: generic-dh-make-2008: package-contains-empty-directory usr/bin/
 I: generic-dh-make-2008: package-contains-empty-directory usr/sbin/
 W: generic-dh-make-2008 source: ancient-standards-version 3.7.3 (current is CURRENT)
 W: generic-dh-make-2008 source: bad-homepage <insert the upstream URL, if relevant>
-W: generic-dh-make-2008 source: debian-rules-missing-recommended-target build-arch
-W: generic-dh-make-2008 source: debian-rules-missing-recommended-target build-indep
+W: generic-dh-make-2008 source: debian-rules-missing-required-target build-arch
+W: generic-dh-make-2008 source: debian-rules-missing-required-target build-indep
 W: generic-dh-make-2008 source: dh-clean-k-is-deprecated
 W: generic-dh-make-2008 source: dh-make-template-in-source debian/cron.d.ex
 W: generic-dh-make-2008 source: dh-make-template-in-source debian/emacsen-install.ex
diff --git a/t/tests/generic-empty/tags b/t/tests/generic-empty/tags
index b04062d..6d424a8 100644
--- a/t/tests/generic-empty/tags
+++ b/t/tests/generic-empty/tags
@@ -9,8 +9,8 @@ E: generic-empty: maintainer-address-missing a
 E: generic-empty: no-copyright-file
 E: generic-empty: package-has-no-description
 W: generic-empty source: changelog-should-mention-nmu
-W: generic-empty source: debian-rules-missing-recommended-target build-arch
-W: generic-empty source: debian-rules-missing-recommended-target build-indep
+W: generic-empty source: debian-rules-missing-required-target build-arch
+W: generic-empty source: debian-rules-missing-required-target build-indep
 W: generic-empty source: maintainer-not-full-name a
 W: generic-empty source: no-debian-copyright
 W: generic-empty source: no-section-field-for-source
diff --git a/t/tests/rules-dh-unused-target-nonempty/tags b/t/tests/rules-dh-unused-target-nonempty/tags
index 475f57f..125ddc2 100644
--- a/t/tests/rules-dh-unused-target-nonempty/tags
+++ b/t/tests/rules-dh-unused-target-nonempty/tags
@@ -1,3 +1,3 @@
 W: rules-dh-unused-target-nonempty source: binary-arch-rules-but-pkg-is-arch-indep
-W: rules-dh-unused-target-nonempty source: debian-rules-missing-recommended-target build-arch
-W: rules-dh-unused-target-nonempty source: debian-rules-missing-recommended-target build-indep
+W: rules-dh-unused-target-nonempty source: debian-rules-missing-required-target build-arch
+W: rules-dh-unused-target-nonempty source: debian-rules-missing-required-target build-indep
diff --git a/t/tests/rules-missing-targets-with-known-includes/desc b/t/tests/rules-missing-targets-with-known-includes/desc
index 113279e..d5c0791 100644
--- a/t/tests/rules-missing-targets-with-known-includes/desc
+++ b/t/tests/rules-missing-targets-with-known-includes/desc
@@ -4,4 +4,3 @@ Version: 1.0
 Description: Test for debian/rules with known included file
 Test-For:
  debian-rules-missing-required-target
- debian-rules-missing-recommended-target
diff --git a/t/tests/rules-missing-targets-with-known-includes/tags b/t/tests/rules-missing-targets-with-known-includes/tags
index 6b5eba7..9528152 100644
--- a/t/tests/rules-missing-targets-with-known-includes/tags
+++ b/t/tests/rules-missing-targets-with-known-includes/tags
@@ -1,4 +1,4 @@
 E: rules-missing-targets-with-known-includes source: debian-rules-missing-required-target binary-arch
 E: rules-missing-targets-with-known-includes source: debian-rules-missing-required-target binary-indep
-W: rules-missing-targets-with-known-includes source: debian-rules-missing-recommended-target build-arch
-W: rules-missing-targets-with-known-includes source: debian-rules-missing-recommended-target build-indep
+W: rules-missing-targets-with-known-includes source: debian-rules-missing-required-target build-arch
+W: rules-missing-targets-with-known-includes source: debian-rules-missing-required-target build-indep
diff --git a/t/tests/rules-missing-targets/desc b/t/tests/rules-missing-targets/desc
index f92d7bb..c6cd105 100644
--- a/t/tests/rules-missing-targets/desc
+++ b/t/tests/rules-missing-targets/desc
@@ -3,5 +3,5 @@ Sequence: 6000
 Version: 1.0
 Description: Test for missing targets in debian/rules
 Test-For:
- debian-rules-missing-recommended-target
+ debian-rules-missing-required-target
  package-would-benefit-from-build-arch-targets
diff --git a/t/tests/rules-missing-targets/tags b/t/tests/rules-missing-targets/tags
index ef2f56a..22a40b6 100644
--- a/t/tests/rules-missing-targets/tags
+++ b/t/tests/rules-missing-targets/tags
@@ -1,3 +1,3 @@
-W: rules-missing-targets source: debian-rules-missing-recommended-target build-arch
-W: rules-missing-targets source: debian-rules-missing-recommended-target build-indep
+W: rules-missing-targets source: debian-rules-missing-required-target build-arch
+W: rules-missing-targets source: debian-rules-missing-required-target build-indep
 W: rules-missing-targets source: package-would-benefit-from-build-arch-targets
diff --git a/t/tests/rules-variable-targets/desc b/t/tests/rules-variable-targets/desc
index a7bc41d..5785b70 100644
--- a/t/tests/rules-variable-targets/desc
+++ b/t/tests/rules-variable-targets/desc
@@ -2,4 +2,4 @@ Testname: rules-variable-targets
 Sequence: 6000
 Version: 1.0
 Description: Test against missing targets in debian/rules
-Test-Against: debian-rules-missing-recommended-target
+Test-Against: debian-rules-missing-required-target
diff --git a/testset/tags.binary b/testset/tags.binary
index 1028eb9..832d137 100644
--- a/testset/tags.binary
+++ b/testset/tags.binary
@@ -60,7 +60,7 @@ I: binary: desktop-entry-contains-encoding-key usr/share/applications/hello.desk
 I: binary: no-md5sums-control-file
 W: binary source: ancient-standards-version 3.2.1 (current is 3.9.2)
 W: binary source: debian-rules-ignores-make-clean-error line 14
-W: binary source: debian-rules-missing-recommended-target build-indep
+W: binary source: debian-rules-missing-required-target build-indep
 W: binary source: debian-rules-uses-pwd line 9
 W: binary source: intra-source-package-circular-dependency binary binary-data
 W: binary source: maintainer-upload-has-incorrect-version-number 4-1.1
-- 
1.7.8.3


--- End Message ---
--- Begin Message ---
Source: lintian
Source-Version: 2.115.0
Done: Axel Beckert <abe@debian.org>

We believe that the bug you reported is fixed in the latest version of
lintian, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 657390@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Axel Beckert <abe@debian.org> (supplier of updated lintian package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmaster@ftp-master.debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Mon, 20 Jun 2022 13:23:02 +0200
Source: lintian
Architecture: source
Version: 2.115.0
Distribution: unstable
Urgency: medium
Maintainer: Debian Lintian Maintainers <lintian-maint@debian.org>
Changed-By: Axel Beckert <abe@debian.org>
Closes: 657390 932634 941656 963099 989381 995286 996740 999768 999810 1000234 1000977 1001655 1002828 1003131 1003272 1003353 1003456 1003668 1003817 1003913 1003941 1004231 1004239 1004240 1004660 1005046 1005184 1005762 1006390 1006859 1007140 1007257 1012090
Changes:
 lintian (2.115.0) unstable; urgency=medium
 .
   The Lintian Resurrection Release.
 .
   * Summary of tag changes:
     + Added:
       - alien-tag
       - chown-with-dot
       - conflicting-test-fields
       - declare-python-versions-for-test
       - drop-python-version-declaration
       - invalid-override-restriction
       - missing-prerequisite-for-pyproject-backend
       - old-devhelp-standard
       - stray-devhelp-documentation
       - test-leaves-python-version-untested
       - uses-poetry-cli
     + Removed:
       - crossing-screens
       - debhelper-compatibility-level-not-a-number
       - debian-tests-control-and-control-autodep8
       - exclusive-runtime-tests-field
       - package-contains-devhelp-file-without-symlink
 .
   [ Axel Beckert ]
   * Adopting Lintian. (Changes #1012289 from ITA to pure RFH.)
     + Remove Chris Lamb from Uploaders (see #1012289) and re-add myself.
   * Workarounds until
     https://github.com/Perl-Critic/Perl-Critic/issues/925 is fixed:
     + Replace all occurrences of "Copyright ©" with "Copyright (C)" again.
     + Remove unnecessary usage of UTF-8 from bin/lintian.
     + Replace UTF-8 characters in mostly Copyright comments.
     + Replace UTF-8 characters in code with \N{…}.
   * Remove literal unicode character U+0334 COMBINING TILDE OVERLAY which
     likely had been added accidentally. (Triggered by the symptoms of
     https://github.com/Perl-Critic/Perl-Critic/issues/925, but permanent.)
   * Update copyright years in debian/copyright.
   * Run perltidy over lib, bin/lintian, private/refresh-perl-provides,
     private/runtests and several files in t/scripts/.
   * data/…/perl-provides updated by running "debian/rules
     refresh-perl-provides".
   * Add Felix Lechner to debian/copyright based on copyright statements
     elsewhere. Thanks for all your contributions!
   * Update t/recipes/README: "debian/rules runtests" → "private/runtests"
   * Follow module renaming: Perl::Critic::Freenode → Perl::…::Community.
   * t/s…/h…/tag-coverage.t: Replace "$ENV{'LINTIAN_BASE'}" with
     "$ENV{'LINTIAN_BASE'} // '.'" to be able to run it with "prove -l".
   * init.d-general check: Avoid relying on line numbers in #DEBHELPER#
     replacement code.
   * very-long-line-length-in-source-file: Ignore files listed in new data
     file binary-file-extensions. (Closes: #1005046)
   * Fix false positives for adopted-extended-field with X- prefixed
     fields. (Closes: #999768)
     + Empty hints files seem to require a Test-Against field in desc.
   * Update own source lintian-overrides for "pointed hints".
     + Make them work with old and new lintian versions by using wildcards.
   * Rename README.developers to have a proper file suffix (.pod).
   * Switch syntax marker of README.developers.pod from "perl" to "pod".
   * Documentation update: Replace directory "frontend/" with "bin/".
   * Fix a bunch of "Use of uninitialized value $_ in concatenation"
     warnings when running tests with "prove -l" directly.
   * README.developers.pod: Explain the difference between check and test.
   * lintian(1): Drop mentioning of never existing --no-overrides option.
   * Replace unfitting Text::Glob with more flexible Regexp::Wildcards
     (Closes: #1003353)
     + Add unit test for Lintian::Util::match_glob. The current testsuite
       does not seem to be able to cover such a case.
   * Declare compliance with Debian Policy 4.6.1. (No changes needed.)
   * Refresh data using private/refresh-data. Skip unreleased policy though
     for now.
   * Fix "Use of uninitialized value $step in concatenation" in
     Lintian::Version which showed up as unrecognized tag (!) when running
     the test suite on the git repo already tagged for a release.
   * debian/gbp.conf: Declare so far used tag format so that gbp uses it.
   * Add lintian override for very-long-line-length-in-source-file in
     Lintian::Check::Cruft as well as test-leaves-python-version-untested.
   * Use versioned Breaks instead of Conflicts against lzd, see #1001655.
     Thanks Lintian for reporting ;-) and Paul Gevers for the sanity check!
 .
   [ Felix Lechner ]
   * Refresh manual references.
   * Use Text::Glob to match hint contexts with override patterns. Replaces
     a trusted homegrown routine. (Closes: #1003272)
   * Refresh list of available Debhelper commands.
   * Refresh list of installable fonts.
   * Generate section references for Lintian manual from repo; point to
     website.
   * Accept globbing patterns in profiles when enabling and disabling
     checks or tags.
   * Refresh data sources in parallel.
   * Add the New Maintainer's Guide to the list of quotable authorities.
   * Eliminate unpredictable output in the check siles/privacy-breach.
   * Honor the environment variable NO_COLOR as specified in
     https://no-color.org/.
   * More attempts to eliminate unpredictable output in the check
     files/privacy-breach.
   * Drop the tag debian-tests-control-and-control-autodep8.
   * Set authority references apart from other data sources.
   * Provide rudimentary Emacs integration. (See: #968758)
   * Associate Emacs modules with the 'editors' archive section.
   * Recognize /usr/bin/raku as a known interpreter for scripts. (Closes:
     #1002828)
   * Do not depend on any particular Lzip implementation. (Closes:
     #1001655)
   * Exempt installables designated as documentation from warning about new
     Python2 packages. (Closes: #995286)
   * Update citations in two tags. (Closes: #1003131)
   * Drop version requirement from
     skip-systemd-native-flag-missing-pre-depends. (See: #1003271)
   * Import new CSS style sheet from the website.
   * Recognize dh-sequence-sphinxdoc as a valid prerequisite for
     dh_sphinxdoc. (Closes: #999810)
   * Tolerate multiarch acceptors in prerequisites for Debhelper commands
     and addons. (Closes: #1000234)
   * Issue yet more pointed hints.
   * Recognize pybuild-plugin-pyproject as a valid prerequisite for the
     python3 Debhelper plugin. (Closes: #1003668)
   * Exempt bullseye backports from changelog-file-missing-explicit-entry.
     (Closes: #941656)
   * Mask long source lines in autotools-generated files. (Closes: #996740)
   * Turn embedded-library into a classification tag. (Closes: #932634)
   * Require the targets build-arch and build-indep in debian/rules.
     (Closes: #657390)
   * Do not insist on a particular name for unversioned links to a shared
     library. (Closes: #963099)
   * Exempt the names of Debian folks associated with a package from
     spelling checks. (Closes: #989381)
   * Require py3version invocation consistent with presence of
     X-Python3-Version in d/control. (See: #1001677)
   * Exempt CGI scripts from executable-in-usr-lib. (Closes: #1003941)
   * CGI scripts can be ELF executables. (See: #1003941)
   * Exempt Python's .dist-info and .egg-info folders everywhere from
     documentation-outside-usr-share. (Closes: #1003913)
   * Flag an outdated Debian copyright just once; use the most recent
     year. (Closes: #1003817)
   * Implement '--no-show-overrides'; honor it for overrides and masks
     alike. (See: #1004240)
   * Allow the command-line option '--no-info' to reverse 'info=yes' in the
     configuration file. (Closes: #1004240)
   * Elide manual references to ancient Lintian versions; use modern
     examples. (Closes: #1004231)
   * Deprecate --no-tag-display-limit for '--tag-display-limit 0'; update
     documentation. (Closes: #1004239)
   * Also provide a default output width for
     lintian-annotate-hints. (Closes: #1004660)
   * Mask examples in tests from
     package-does-not-install-examples. (Closes: #1005184)
   * Recognize Java 18 in unstable, and Java 19 as otherwise
     available. (Closes: #1005762)
   * Leave default Java bytecode version at 56. (See: #1005762)
   * Adjust documentation reference to manual page for dh_make. (Closes:
     #1006390)
   * Warn about devhelp index files that use version 1. (Closes: #1006859)
   * Store ELF information from readelf in an MLDBM database. (Closes:
     #1003456)
   * Issue pedantic hint for dot in 'chown user.group' instead of a
     colon. (Closes: #1007140)
   * Upgrade missing-systemd-timer-for-cron-script to warning; no longer
     experimental. (Closes: #1007257)
 .
   [ Ryan Finnie ]
   * Provide a constant citation for
     systemd-service-file-uses-nobody-or-nogroup. (Closes: !385)
 .
   [ Louis-Philippe Véronneau ]
   * Check that tests pulling in all Python versions also query which ones
     are available. (Closes: !361)
   * Add new Python tags for pyproject.toml build backends according to
     PEP-517. (Closes: !384)
   * Rename 'python3-flit' to 'flit', as there is no 'python3-flit'
     package. (Closes: !386)
 .
   [ Daniel Kahn Gillmor ]
   * Correct lintian-annotate-hints manpage.
 .
   [ Simon McVittie ]
   * Silence a very widespread false positive for detached debug symbols.
     (Closes: #1000977, !387)
 .
   [ Simon Quigley ]
   * Add "kinetic" as a known Ubuntu distribution. (Closes: !392)
 .
   [ xiao sheng wen(肖盛文) ]
   * Add riscv64 support (Closes: #1012090, !394)
 .
   [ Damyan Ivanov ]
   * Update releases.json data for Debian policy releases (4.6.1 added;
     closes: !393)
 .
   [ Paul Wise ]
   * Add more obsolete domains for former source code hosting services.
Checksums-Sha1:
 863a51cffc5b8359ef133d6e6f150d9cac148eb3 2503 lintian_2.115.0.dsc
 e20194c63f481a7361969fab6ea7739f3f6e03d5 2170172 lintian_2.115.0.tar.xz
 3453b48f59dd2f58e2e78523e9018c58a42faebe 7274 lintian_2.115.0_source.buildinfo
Checksums-Sha256:
 431a025b52e185cac6cbf2fedca8b6c60e2f7dfa55d89d86fcd543a34e8232b9 2503 lintian_2.115.0.dsc
 f353d372d036daa6ad0341b418728cfe73c11688708b6c3a33d50acb445d2b53 2170172 lintian_2.115.0.tar.xz
 e1c1bd41b7f5a8014231f9db422c1711e97cf50146eab83a1d113370735f02d9 7274 lintian_2.115.0_source.buildinfo
Files:
 4484e31abe39a15def23b119f92ef3ab 2503 devel optional lintian_2.115.0.dsc
 9d7922b69d30a63693825120e049ea00 2170172 devel optional lintian_2.115.0.tar.xz
 12f2494d410df4c2bf03f82075ce5f60 7274 devel optional lintian_2.115.0_source.buildinfo

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCgAdFiEERoyJeTtCmBnp12Ema+Zjx1o1yXUFAmKwZiIACgkQa+Zjx1o1
yXUIng/5ARDjo8W4NggeM79xaeIgqtRbCao5XuBX6VyAE6hupaK8vHH/konnGmwg
jfRvPQK6YCXfqHggIKNQnToJgKUxdI+U3e10PYrbc5qt2UWFMiRfEHGqG3cfu+uA
JhqldKXfRkvmY4+9WPChWZ4C8qjdPZNcQwwdwm1Rg6gKMreYDGNIWJ94Hh7BkNsC
lNowSbDW6uE0XLBxVVeHhQGrn0Aki8fkx82W+Hod2A26sCXv/Gx7OSb8KVERa3+7
D05KDZd+ZGXBIdk/zRn/AeCxwcLXXMCS7qNDsfbJ8oUeYyy7y7QrQbGeFrBdOTyk
JbqqG0rTGbvfg3UcviOm/rvkr5QHdA5OMLUKRoljApMJEzbASGzYqNiUSmZNWH8x
v9EZ/qTHrcPFL/bIC9POvjD3FhSs3EkgQxXCuVPWZRruurgEme6DmnxHEj9TAe6L
GcUr+6DDHMw+j9SlO04VDDpUFVO2ftPfMcSckNCNM3eMxfig4XjPmyay3m6BjgaF
Rq6ckTUCUt5hsm7T48I0PAjXMRcAbemfI3PmVOUgwIf3BvzcdvJew0h90ULOY94N
cCWdsZ5SwC1hoz6EsBVmD16XxxYvZM7/wcf40PJkJ+YwtJu2Wm3dAv5WPK8UTrYr
qK1s62DfByho45eV9rXKeLnjvRN37rQYOWl7WwYy6YfpzQYDFWU=
=3dK3
-----END PGP SIGNATURE-----

--- End Message ---

Reply to: