[lintian] 01/01: Don't error out when AppStream metadata is invalid and emit new appstream-metadata-invalid tag instead. (Closes: #879661)

2017-10-24 Thread Chris Lamb
This is an automated email from the git hooks/post-receive script.

lamby pushed a commit to branch master
in repository lintian.

commit 463b6c4c642f11e3bde41aefb7d714cfffc315c6
Author: Chris Lamb 
Date:   Tue Oct 24 15:54:20 2017 -0400

Don't error out when AppStream metadata is invalid and emit new 
appstream-metadata-invalid tag instead. (Closes: #879661)
---
 checks/appstream-metadata.desc|  7 +++
 checks/appstream-metadata.pm  | 19 +--
 debian/changelog  |  3 +++
 .../debian/appstream-metadata-invalid.metadata.xml|  1 +
 t/tests/appstream-metadata/debian/debian/rules|  1 +
 t/tests/appstream-metadata/desc   |  1 +
 t/tests/appstream-metadata/tags   |  1 +
 7 files changed, 27 insertions(+), 6 deletions(-)

diff --git a/checks/appstream-metadata.desc b/checks/appstream-metadata.desc
index 8d1bcf6..f548640 100644
--- a/checks/appstream-metadata.desc
+++ b/checks/appstream-metadata.desc
@@ -38,3 +38,10 @@ Ref: https://wiki.debian.org/AppStream/Guidelines
 Info: The modalias matching rule in the AppStream metadata file is
  malformed.  Hexadecimal numbers in vendor and product IDs must be
  upper case.
+
+Tag: appstream-metadata-invalid
+Severity: serious
+Certainty: certain
+Ref: https://wiki.debian.org/AppStream/Guidelines
+Info: The specified AppStream metadata file does not consist of
+ valid XML.
diff --git a/checks/appstream-metadata.pm b/checks/appstream-metadata.pm
index cedf59c..d45e84d 100644
--- a/checks/appstream-metadata.pm
+++ b/checks/appstream-metadata.pm
@@ -88,12 +88,19 @@ sub check_modalias {
 # FIXME report this as an error
 return;
 }
-my $xml = XMLin(
-$metadatafile->fs_path,
-ForceArray => ['provides', 'modalias'],
-KeepRoot => 1,
-KeyAttr => [],
-);
+my $xml = eval {
+XMLin(
+$metadatafile->fs_path,
+ForceArray => ['provides', 'modalias'],
+KeepRoot => 1,
+KeyAttr => [],
+);
+};
+if ($@) {
+tag 'appstream-metadata-invalid', basename($metadatafile->fs_path);
+return 0;
+}
+
 if (exists $xml->{'application'}) {
 tag('appstream-metadata-legacy-format', $metadatafile);
 return 0;
diff --git a/debian/changelog b/debian/changelog
index 1af1c0c..2d64e4d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,6 +2,9 @@ lintian (2.5.56) UNRELEASED; urgency=medium
 
   XXX: generate tag summary
 
+  * checks/appstream-metadata.{pm,desc}:
++ [CL] Don't error out when AppStream metadata is invalid and emit new
+  appstream-metadata-invalid tag instead.  (Closes: #879661)
   * checks/binaries.desc:
 + [CL] Apply patch from Adrian Bunk to mention the lack of the "-g"
   flag as a common cause for the debug-file-with-no-debug-symbols tag.
diff --git 
a/t/tests/appstream-metadata/debian/debian/appstream-metadata-invalid.metadata.xml
 
b/t/tests/appstream-metadata/debian/debian/appstream-metadata-invalid.metadata.xml
new file mode 100644
index 000..a823b8d
--- /dev/null
+++ 
b/t/tests/appstream-metadata/debian/debian/appstream-metadata-invalid.metadata.xml
@@ -0,0 +1 @@
+This is not a valid XML document.
diff --git a/t/tests/appstream-metadata/debian/debian/rules 
b/t/tests/appstream-metadata/debian/debian/rules
index 5302e21..5fb0c35 100644
--- a/t/tests/appstream-metadata/debian/debian/rules
+++ b/t/tests/appstream-metadata/debian/debian/rules
@@ -11,4 +11,5 @@ UDEV_DIR=$(DESTDIR)/lib/udev/rules.d/
 override_dh_install:
dh_install
install -m 0644 debian/appstream-metadata.metadata.xml $(APPSYNC_DIR)
+   install -m 0644 debian/appstream-metadata-invalid.metadata.xml 
$(APPSYNC_DIR)
install -m 0644 debian/appstream-metadata-obsolete.metadata.xml 
$(OBSOLETE_APPSYNC_DIR)
diff --git a/t/tests/appstream-metadata/desc b/t/tests/appstream-metadata/desc
index 2a424af..8447da2 100644
--- a/t/tests/appstream-metadata/desc
+++ b/t/tests/appstream-metadata/desc
@@ -6,3 +6,4 @@ Test-For:
  appstream-metadata-legacy-format
  appstream-metadata-missing-modalias-provide
  appstream-metadata-malformed-modalias-provide
+ appstream-metadata-invalid
diff --git a/t/tests/appstream-metadata/tags b/t/tests/appstream-metadata/tags
index 03eeba9..6f13957 100644
--- a/t/tests/appstream-metadata/tags
+++ b/t/tests/appstream-metadata/tags
@@ -1,3 +1,4 @@
+E: appstream-metadata: appstream-metadata-invalid 
appstream-metadata-invalid.metadata.xml
 E: appstream-metadata: appstream-metadata-legacy-format 
usr/share/appdata/appstream-metadata-obsolete.metadata.xml
 W: appstream-metadata: appstream-metadata-in-legacy-location 
usr/share/appdata/appstream-metadata-obsolete.metadata.xml
 W: appstream-metadata: appstream-metadata-malformed-modalias-provide 
usr/share/metainfo/appstream-metadata.metadata.xml include non-valid hex digit 
in USB matching 

[lintian] branch master updated (d0e387d -> 463b6c4)

2017-10-24 Thread Chris Lamb
This is an automated email from the git hooks/post-receive script.

lamby pushed a change to branch master
in repository lintian.

  from  d0e387d   spelling: Add several corrections
   new  463b6c4   Don't error out when AppStream metadata is invalid and 
emit new appstream-metadata-invalid tag instead. (Closes: #879661)

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 checks/appstream-metadata.desc|  7 +++
 checks/appstream-metadata.pm  | 19 +--
 debian/changelog  |  3 +++
 .../debian/appstream-metadata-invalid.metadata.xml|  1 +
 t/tests/appstream-metadata/debian/debian/rules|  1 +
 t/tests/appstream-metadata/desc   |  1 +
 t/tests/appstream-metadata/tags   |  1 +
 7 files changed, 27 insertions(+), 6 deletions(-)
 create mode 100644 
t/tests/appstream-metadata/debian/debian/appstream-metadata-invalid.metadata.xml

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/lintian/lintian.git



Processed: Re: lintian: Fail to process ser-player due to invalid XML

2017-10-24 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 879661 + pending
Bug #879661 [lintian] lintian: Fail to process ser-player due to invalid XML
Added tag(s) pending.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
879661: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=879661
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#879661: lintian: Fail to process ser-player due to invalid XML

2017-10-24 Thread Chris Lamb
tags 879661 + pending
thanks

Fixed in Git:

  
https://anonscm.debian.org/git/lintian/lintian.git/commit/?id=463b6c4c642f11e3bde41aefb7d714cfffc315c6


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-



[lintian] 01/01: Emit new empty-section-field tag instead of uninitialized value warnings on an empty "Section:" field. (Closes: #878515)

2017-10-24 Thread Chris Lamb
This is an automated email from the git hooks/post-receive script.

lamby pushed a commit to branch master
in repository lintian.

commit 8e5b05587f58c757cfe88cb095ca77805c181c66
Author: Chris Lamb 
Date:   Tue Oct 24 23:12:06 2017 -0400

Emit new empty-section-field tag instead of uninitialized value warnings on 
an empty "Section:" field. (Closes: #878515)
---
 checks/fields.desc| 6 ++
 checks/fields.pm  | 4 +++-
 debian/changelog  | 2 ++
 t/debs/fields-general-bad/control | 2 +-
 4 files changed, 12 insertions(+), 2 deletions(-)

diff --git a/checks/fields.desc b/checks/fields.desc
index 2ada4c0..da6cfc6 100644
--- a/checks/fields.desc
+++ b/checks/fields.desc
@@ -1331,3 +1331,9 @@ Info: Since Debian Policy version 4.0.1, the priority 
extra
  Please update debian/control and replace all instances of
  Priority: extra with Priority: optional.
 Ref: policy 2.5
+
+Tag: empty-section-field
+Severity: normal
+Certainty: certain
+Info: The "Section:" field in this package's control file is empty.
+Ref: policy 2.4
diff --git a/checks/fields.pm b/checks/fields.pm
index 3a5de15..9dbeb2e 100644
--- a/checks/fields.pm
+++ b/checks/fields.pm
@@ -520,13 +520,15 @@ sub run {
 tag 'wrong-section-for-udeb', $section;
 }
 } else {
-my @parts = split(m{/}, $section, 2);
+my @parts = split(m{/}, $section, 2) || ('');
 
 if (scalar @parts > 1) {
 tag 'unknown-section', $section
   unless $KNOWN_ARCHIVE_PARTS{$parts[0]};
 tag 'unknown-section', $section
   unless $KNOWN_SECTIONS->known($parts[1]);
+} elsif ($parts[0] eq '') {
+tag 'empty-section-field';
 } elsif ($parts[0] eq 'unknown') {
 tag 'section-is-dh_make-template';
 } else {
diff --git a/debian/changelog b/debian/changelog
index 2d64e4d..e5d9b00 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -30,6 +30,8 @@ lintian (2.5.56) UNRELEASED; urgency=medium
   * checks/fields.pm:
 + [CL] Apply patch from Nicolas Boulenguez to accept and recommend the
   new vcs-mtn mtn:// uri format.  (Closes: #878798)
++ [CL] Emit new empty-section-field tag instead of uninitialized value
+  warnings on an empty "Section:" field.  (Closes: #878515)
   * checks/init.d.pm:
 + [CL] Check for files that use content from the /etc/init.d/skeleton
   template. Thanks to Christoph Biedl for the idea.  (Closes: #879152)
diff --git a/t/debs/fields-general-bad/control 
b/t/debs/fields-general-bad/control
index a23dd29..4fbd0ee 100644
--- a/t/debs/fields-general-bad/control
+++ b/t/debs/fields-general-bad/control
@@ -3,7 +3,7 @@ Source: fields-general-bad
 Version: 1.0?
 Architecture: weird i386 amd64
 Maintainer: Debian Lintian Maintainers 
-Section: devel
+Section:
 Priority: is
  weird
 Unknown-Field: Hallo World

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/lintian/lintian.git



[lintian] branch master updated (463b6c4 -> 8e5b055)

2017-10-24 Thread Chris Lamb
This is an automated email from the git hooks/post-receive script.

lamby pushed a change to branch master
in repository lintian.

  from  463b6c4   Don't error out when AppStream metadata is invalid and 
emit new appstream-metadata-invalid tag instead. (Closes: #879661)
   new  8e5b055   Emit new empty-section-field tag instead of uninitialized 
value warnings on an empty "Section:" field. (Closes: #878515)

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 checks/fields.desc| 6 ++
 checks/fields.pm  | 4 +++-
 debian/changelog  | 2 ++
 t/debs/fields-general-bad/control | 2 +-
 4 files changed, 12 insertions(+), 2 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/lintian/lintian.git



Processed: Re: lintian: Use of uninitialized value in string eq at …/checks/fields.pm line 512. / Use of uninitialized value in string ne at …/checks/fields.pm lines 521 and 537.

2017-10-24 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 878515 + pending
Bug #878515 [lintian] lintian: Use of uninitialized value $parts[0] in string 
eq at …/checks/fields.pm line 512. / Use of uninitialized value $parts[-1] in 
string ne at …/checks/fields.pm lines 521 and 537.
Added tag(s) pending.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
878515: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=878515
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#878515: lintian: Use of uninitialized value in string eq at …/checks/fields.pm line 512. / Use of uninitialized value in string ne at …/checks/fields.pm lines 521 and 537.

2017-10-24 Thread Chris Lamb
tags 878515 + pending
thanks

Fixed in Git. Thanks for the report, Axel :)

  
https://anonscm.debian.org/git/lintian/lintian.git/commit/?id=8e5b05587f58c757cfe88cb095ca77805c181c66


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-



[lintian] 01/01: Revert "Emit new empty-section-field tag instead of uninitialized value warnings on an empty "Section:" field. (Closes: #878515)"

2017-10-24 Thread Chris Lamb
This is an automated email from the git hooks/post-receive script.

lamby pushed a commit to branch master
in repository lintian.

commit fd669f7b8c34ab927d9075ebefc162aaf827521b
Author: Chris Lamb 
Date:   Tue Oct 24 23:43:25 2017 -0400

Revert "Emit new empty-section-field tag instead of uninitialized value 
warnings on an empty "Section:" field. (Closes: #878515)"

This reverts commit 8e5b05587f58c757cfe88cb095ca77805c181c66.
---
 checks/fields.desc| 6 --
 checks/fields.pm  | 4 +---
 debian/changelog  | 2 --
 t/debs/fields-general-bad/control | 2 +-
 4 files changed, 2 insertions(+), 12 deletions(-)

diff --git a/checks/fields.desc b/checks/fields.desc
index da6cfc6..2ada4c0 100644
--- a/checks/fields.desc
+++ b/checks/fields.desc
@@ -1331,9 +1331,3 @@ Info: Since Debian Policy version 4.0.1, the priority 
extra
  Please update debian/control and replace all instances of
  Priority: extra with Priority: optional.
 Ref: policy 2.5
-
-Tag: empty-section-field
-Severity: normal
-Certainty: certain
-Info: The "Section:" field in this package's control file is empty.
-Ref: policy 2.4
diff --git a/checks/fields.pm b/checks/fields.pm
index 9dbeb2e..3a5de15 100644
--- a/checks/fields.pm
+++ b/checks/fields.pm
@@ -520,15 +520,13 @@ sub run {
 tag 'wrong-section-for-udeb', $section;
 }
 } else {
-my @parts = split(m{/}, $section, 2) || ('');
+my @parts = split(m{/}, $section, 2);
 
 if (scalar @parts > 1) {
 tag 'unknown-section', $section
   unless $KNOWN_ARCHIVE_PARTS{$parts[0]};
 tag 'unknown-section', $section
   unless $KNOWN_SECTIONS->known($parts[1]);
-} elsif ($parts[0] eq '') {
-tag 'empty-section-field';
 } elsif ($parts[0] eq 'unknown') {
 tag 'section-is-dh_make-template';
 } else {
diff --git a/debian/changelog b/debian/changelog
index e5d9b00..2d64e4d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -30,8 +30,6 @@ lintian (2.5.56) UNRELEASED; urgency=medium
   * checks/fields.pm:
 + [CL] Apply patch from Nicolas Boulenguez to accept and recommend the
   new vcs-mtn mtn:// uri format.  (Closes: #878798)
-+ [CL] Emit new empty-section-field tag instead of uninitialized value
-  warnings on an empty "Section:" field.  (Closes: #878515)
   * checks/init.d.pm:
 + [CL] Check for files that use content from the /etc/init.d/skeleton
   template. Thanks to Christoph Biedl for the idea.  (Closes: #879152)
diff --git a/t/debs/fields-general-bad/control 
b/t/debs/fields-general-bad/control
index 4fbd0ee..a23dd29 100644
--- a/t/debs/fields-general-bad/control
+++ b/t/debs/fields-general-bad/control
@@ -3,7 +3,7 @@ Source: fields-general-bad
 Version: 1.0?
 Architecture: weird i386 amd64
 Maintainer: Debian Lintian Maintainers 
-Section:
+Section: devel
 Priority: is
  weird
 Unknown-Field: Hallo World

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/lintian/lintian.git



[lintian] branch master updated (8e5b055 -> fd669f7)

2017-10-24 Thread Chris Lamb
This is an automated email from the git hooks/post-receive script.

lamby pushed a change to branch master
in repository lintian.

  from  8e5b055   Emit new empty-section-field tag instead of uninitialized 
value warnings on an empty "Section:" field. (Closes: #878515)
   new  fd669f7   Revert "Emit new empty-section-field tag instead of 
uninitialized value warnings on an empty "Section:" field. (Closes: #878515)"

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 checks/fields.desc| 6 --
 checks/fields.pm  | 4 +---
 debian/changelog  | 2 --
 t/debs/fields-general-bad/control | 2 +-
 4 files changed, 2 insertions(+), 12 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/lintian/lintian.git



Build failed in Jenkins: lintian-tests_sid #2044

2017-10-24 Thread jenkins
See 


Changes:

[lamby] Emit new empty-section-field tag instead of uninitialized value warnings

--
[...truncated 609.57 KB...]
tests::fields-perl-provides
tests::fields-qa-maint-name
tests::fields-root-maint-address
tests::fields-redundant
tests::fields-section-general
tests::fields-transitional
tests::fields-uncanonical-vcs-fields
tests::fields-unknown-fields
tests::fields-uploaders
tests::fields-vcs-fields
tests::fields-vcs-field-insecure-uri
tests::fields-version-bad
tests::fields-version-bad-rc
tests::fields-version-dfsg-native
tests::fields-version-dot-dfsg
tests::fields-version-dsfg
tests::fields-virtual-packages
tests::filename-length-really-really-really-really-long-package-name
tests::files-adobe-font
tests::files-arch-indep-not-marked-all
tests::files-doxygen-documentation
tests::files-empty
tests::files-embedded
tests::files-extra-license
tests::files-foo-violates-expected-naming
tests::files-flash-non-free
tests::files-fonts
tests::files-gzip
tests::files-foo-in-bar
tests::fields-wrong-section
tests::files-gzip-ma-same
tests::files-games-section
tests::files-hardlinks
tests::files-java-classfiles
tests::files-ieee-data
tests::files-locales
tests::files-bad-perm-owner
tests::files-general
tests::files-nodejs
tests::files-override-misplaced
tests::files-old-config-script
tests::files-package-contains-foo
tests::files-privacybreach
tests::files-python-module-has-overly-generic-name
tests::files-python-coverage
tests::files-python-modules
tests::files-r-data
tests::files-special-file
tests::files-symlinks
tests::files-pkgconfig
tests::files-tar-traps
tests::files-wildcard-characters
tests::files-uses-perl4-libs-with-dep
tests::files-uses-perl4-libs-without-dep
tests::files-zero-byte-doc
tests::huge-usr-share-percent
tests::group-checks-file-conflict
tests::files-wrong-owner
tests::gir
tests::group-checks-multi-arch
tests::group-checks-circular-deps
tests::files-python-general
tests::infofiles-general
tests::files-wrong-ma-foreign
tests::init.d-lsb-depends
tests::init.d-script-registration
tests::init.d-symlink
tests::init.d-script-contains-skeleton-template-content
tests::init.d-general
tests::manpages-dependencies
tests::maintscript-includes-maint-script-parameters
tests::md5sums-empty
tests::md5sums-general
tests::manpages-wrong-dir
tests::manpages-general
tests::init.d-lsb-headers
tests::md5sums-missing
tests::menu-format-desktop-general
tests::menus-doc-base-general
tests::menus-foo-calls-bar
tests::menu-format-desktop-mimetype
tests::nmu-case-insensitive
tests::menus-doc-base-registration
tests::menus-script-check-ok
tests::nmu-local-changelog
tests::nmu-not-a-nmu
tests::nmu-local-version
tests::nmu-multi-author
tests::menu-format-general
tests::nmu-qa-upload
tests::java-class-format
tests::nmu-space-around-maintainer
tests::nmu-team-upload
tests::nmu-ubuntu-native
tests::nmu-with-maintainer-ack
tests::patch-systems-dpatch-description
tests::patch-systems-empty-series
tests::obsolete-sites
tests::ocaml-general
tests::patch-systems-no-patch-system
tests::patch-systems-quilt-description
tests::patch-systems-no-readme-source
tests::patch-systems-quilt-debian-changes
tests::patch-systems-quilt-general
tests::patch-systems-quilt-no-depends
tests::patch-systems-quilt-no-newline
tests::java-classpath
tests::phppear-composer
tests::phppear-general
tests::patch-systems-quilt-no-series
tests::phppear-pear
tests::po-debconf-general
tests::po-debconf-missing
tests::po-debconf-no-po-debconf
tests::python-build-depends-on-sphinx-alternative
tests::python-build-depends-on-sphinx
tests::python-build-depends-on-sphinx-unrel
tests::python-new-python2-package
tests::python-django-package-does-not-depend-on-django
tests::python-python2-no-python3
tests::phppear-pearok
tests::python-python2-apps
tests::rules-build-dep-pattern
tests::python-python2-no-python3-unrel
tests::rules-dh-order
tests::java-jars
tests::rules-dh-unused-target
tests::rules-dh-unused-target-nonempty
tests::rules-general
tests::rules-ignore-define
tests::rules-ignores-error-clean
tests::rules-ignores-error-clean-fp
tests::rules-missing-targets-with-includes
tests::rules-not-makefile
tests::rules-missing-targets-with-known-includes
tests::rules-parses-dpkg-parsechangelog
tests::rules-missing-targets
tests::rules-special-variables
tests::rules-symlink
tests::rules-includi

Bug#879722: lintian: W-shlibs-symbol-not-found: false positive

2017-10-24 Thread Shawn Landden
Package: lintian
Version: 2.5.55
Severity: normal

dpkg-shlibdeps: warning: symbol __aeabi_atexit@CXXABI_ARM_1.3.3 used by 
debian/libkyotocabinet16v5/usr/lib/arm-linux-gnueabi/libkyotocabinet.so.16.13.0 
found in none of the libraries

dpkg-shlibdeps: warning: symbol __aeabi_atexit@CXXABI_ARM_1.3.3 used by 
debian/libkyotocabinet16v5/usr/lib/arm-linux-gnueabihf/libkyotocabinet.so.16.13.0
 found in none of the libraries

armel and armhf

-- System Information:
Debian Release: buster/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.13.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages lintian depends on:
ii  binutils  2.29.1-6
ii  bzip2 1.0.6-8.1
ii  diffstat  1.61-1+b1
ii  dpkg  1.19.0.4
ii  file  1:5.32-1
ii  gettext   0.19.8.1-4
ii  intltool-debian   0.35.0+20060710.4
ii  libapt-pkg-perl   0.1.33
ii  libarchive-zip-perl   1.59-1
ii  libclass-accessor-perl0.51-1
ii  libclone-perl 0.38-2+b2
ii  libdpkg-perl  1.19.0.4
ii  libemail-valid-perl   1.202-1
ii  libfile-basedir-perl  0.07-1
ii  libipc-run-perl   0.96-1
ii  liblist-moreutils-perl0.416-1+b3
ii  libparse-debianchangelog-perl 1.2.0-12
ii  libperl5.26 [libdigest-sha-perl]  5.26.0-8
ii  libtext-levenshtein-perl  0.13-1
ii  libtimedate-perl  2.3000-2
ii  liburi-perl   1.72-2
ii  libxml-simple-perl2.24-1
ii  libyaml-libyaml-perl  0.63-2+b2
ii  man-db2.7.6.1-2
ii  patchutils0.3.4-2
ii  perl  5.26.0-8
ii  t1utils   1.40-2
ii  xz-utils  5.2.2-1.3

Versions of packages lintian recommends:
ii  libperlio-gzip-perl  0.19-1+b4

Versions of packages lintian suggests:
pn  binutils-multiarch 
ii  dpkg-dev   1.19.0.4
ii  libhtml-parser-perl3.72-3+b2
pn  libtext-template-perl  

-- no debconf information



Build failed in Jenkins: lintian-tests_sid #2045

2017-10-24 Thread jenkins
See 


Changes:

[lamby] Revert "Emit new empty-section-field tag instead of uninitialized value

--
[...truncated 239.83 KB...]
Adding debian:D-TRUST_Root_Class_3_CA_2_EV_2009.pem
Adding debian:D-TRUST_Root_Class_3_CA_2_2009.pem
Adding debian:Cybertrust_Global_Root.pem
Adding debian:Comodo_Trusted_Services_root.pem
Adding debian:Comodo_Secure_Services_root.pem
Adding debian:Comodo_AAA_Services_root.pem
Adding debian:China_Internet_Network_Information_Center_EV_Certificates_Root.pem
Adding debian:Chambers_of_Commerce_Root_-_2008.pem
Adding debian:Certum_Trusted_Network_CA_2.pem
Adding debian:Certum_Trusted_Network_CA.pem
Adding debian:Certum_Root_CA.pem
Adding debian:Certplus_Root_CA_G2.pem
Adding debian:Certplus_Root_CA_G1.pem
Adding debian:Certplus_Class_2_Primary_CA.pem
Adding debian:Certinomis_-_Root_CA.pem
Warning: there was a problem reading the certificate file 
/etc/ssl/certs/Certinomis_-_Autorit?_Racine.pem. Message:
  /etc/ssl/certs/Certinomis_-_Autorit?_Racine.pem (No such file or directory)
Adding debian:Certigna.pem
Adding debian:Camerfirma_Global_Chambersign_Root.pem
Adding debian:Camerfirma_Chambers_of_Commerce_Root.pem
Adding debian:COMODO_RSA_Certification_Authority.pem
Adding debian:COMODO_ECC_Certification_Authority.pem
Adding debian:COMODO_Certification_Authority.pem
Adding debian:CNNIC_ROOT.pem
Adding debian:CFCA_EV_ROOT.pem
Adding debian:CA_Disig_Root_R2.pem
Adding debian:CA_Disig_Root_R1.pem
Adding debian:Buypass_Class_3_Root_CA.pem
Adding debian:Buypass_Class_2_Root_CA.pem
Adding debian:Baltimore_CyberTrust_Root.pem
Adding debian:Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.pem
Adding debian:Atos_TrustedRoot_2011.pem
Adding debian:Amazon_Root_CA_4.pem
Adding debian:Amazon_Root_CA_3.pem
Adding debian:Amazon_Root_CA_2.pem
Adding debian:Amazon_Root_CA_1.pem
Adding debian:AffirmTrust_Premium_ECC.pem
Adding debian:AffirmTrust_Premium.pem
Adding debian:AffirmTrust_Networking.pem
Adding debian:AffirmTrust_Commercial.pem
Adding debian:AddTrust_Qualified_Certificates_Root.pem
Adding debian:AddTrust_Public_Services_Root.pem
Adding debian:AddTrust_Low-Value_Services_Root.pem
Adding debian:AddTrust_External_Root.pem
Adding debian:Actalis_Authentication_Root_CA.pem
Adding debian:AC_RAIZ_FNMT-RCM.pem
Adding debian:ACEDICOM_Root.pem
Adding debian:ACCVRAIZ1.pem
done.
Setting up openjdk-8-jdk-headless:amd64 (8u144-b01-2) ...
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/idlj to 
provide /usr/bin/idlj (idlj) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/jdeps to 
provide /usr/bin/jdeps (jdeps) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/wsimport to 
provide /usr/bin/wsimport (wsimport) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/rmic to 
provide /usr/bin/rmic (rmic) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/jinfo to 
provide /usr/bin/jinfo (jinfo) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/jsadebugd to 
provide /usr/bin/jsadebugd (jsadebugd) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/native2ascii 
to provide /usr/bin/native2ascii (native2ascii) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/jstat to 
provide /usr/bin/jstat (jstat) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/javac to 
provide /usr/bin/javac (javac) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/javah to 
provide /usr/bin/javah (javah) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/jstack to 
provide /usr/bin/jstack (jstack) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/jrunscript to 
provide /usr/bin/jrunscript (jrunscript) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/javadoc to 
provide /usr/bin/javadoc (javadoc) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/jhat to 
provide /usr/bin/jhat (jhat) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/javap to 
provide /usr/bin/javap (javap) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/jar to provide 
/usr/bin/jar (jar) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/xjc to provide 
/usr/bin/xjc (xjc) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/schemagen to 
provide /usr/bin/schemagen (schemagen) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/jps to provide 
/usr/bin/jps (jps) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/bin/extcheck to 
provide /usr/bin/extcheck (extcheck) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-