Your message dated Tue, 14 Aug 2018 16:48:56 +0000
with message-id <[email protected]>
and subject line Bug#870039: fixed in cmake-extras 1.3+17.04.20170310-2
has caused the Debian Bug report #870039,
regarding cmake-extras: please fix testsuite or switch back to Python2 
implementation
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 [email protected]
immediately.)


-- 
870039: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=870039
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: cmake-extras
User: [email protected]
Usertags: origin-ubuntu artful ubuntu-patch
Version: 1.3+17.04.20170310-1
Severity: important
Tags: patch


Hello, seems that the Python3 patch makes the testsuite fail at least in 
includechecker test
Test project /tmp/autopkgtest.9GbBdi/autopkgtest_tmp/tmp.ElVNN8WK3w/build
    Start 1: good-header-test
1/3 Test #1: good-header-test .................   Passed    0.00 sec
    Start 2: bad-header-test
2/3 Test #2: bad-header-test ..................   Passed    0.00 sec
    Start 3: demolib-include-check
3/3 Test #3: demolib-include-check ............***Failed    0.22 sec

67% tests passed, 1 tests failed out of 3

Total Test time (real) =   0.22 sec

The following tests FAILED:
          3 - demolib-include-check (Failed)
Errors while running CTest
Makefile:72: recipe for target 'test' failed
Failed: Unexpected exit value 2, expected 0
make: *** [test] Error 8


Can you please fix or revert?

You might find useful my trick to have a more verbose test output, otherwise it 
might be not trivial to understand/fix

debdiff attached

G.
diff -Nru cmake-extras-1.3+17.04.20170310/debian/changelog 
cmake-extras-1.3+17.04.20170310/debian/changelog
--- cmake-extras-1.3+17.04.20170310/debian/changelog    2017-07-21 
11:43:00.000000000 +0200
+++ cmake-extras-1.3+17.04.20170310/debian/changelog    2017-07-28 
19:49:19.000000000 +0200
@@ -1,3 +1,11 @@
+cmake-extras (1.3+17.04.20170310-1ubuntu1) artful; urgency=medium
+
+  * Switch back to Python2 implementation, the Python3 switch breaks
+    testsuite.
+  * More verbosity in failing test.
+
+ -- Gianfranco Costamagna <[email protected]>  Fri, 28 Jul 2017 
19:49:19 +0200
+
 cmake-extras (1.3+17.04.20170310-1) unstable; urgency=medium
 
   * Initial upload to Debian. (Closes: #863191).
diff -Nru cmake-extras-1.3+17.04.20170310/debian/control 
cmake-extras-1.3+17.04.20170310/debian/control
--- cmake-extras-1.3+17.04.20170310/debian/control      2017-05-23 
12:16:00.000000000 +0200
+++ cmake-extras-1.3+17.04.20170310/debian/control      2017-07-28 
19:49:19.000000000 +0200
@@ -16,7 +17,7 @@
 Multi-Arch: foreign
 Depends: ${misc:Depends},
          cmake (>= 3.1),
-         python3,
+         python,
 Description: Extra CMake utility modules
  CMake modules which are used for Ubuntu development. In Debian, this package 
is
  helpful when porting Ubuntu originated software to Debian.
diff -Nru cmake-extras-1.3+17.04.20170310/debian/patches/series 
cmake-extras-1.3+17.04.20170310/debian/patches/series
--- cmake-extras-1.3+17.04.20170310/debian/patches/series       2017-05-23 
10:26:03.000000000 +0200
+++ cmake-extras-1.3+17.04.20170310/debian/patches/series       2017-07-28 
19:49:19.000000000 +0200
@@ -1,3 +1,3 @@
 0001_73_72.patch
 0002_74_73.patch
-1001_ensure-python3-usage.patch
+#1001_ensure-python3-usage.patch
diff -Nru cmake-extras-1.3+17.04.20170310/debian/tests/includechecker 
cmake-extras-1.3+17.04.20170310/debian/tests/includechecker
--- cmake-extras-1.3+17.04.20170310/debian/tests/includechecker 2017-05-23 
09:40:12.000000000 +0200
+++ cmake-extras-1.3+17.04.20170310/debian/tests/includechecker 2017-07-28 
19:49:17.000000000 +0200
@@ -28,10 +28,10 @@
 
   (
     cd "${bindir}"
-    cmake $@ -DCMAKE_INSTALL_PREFIX="${installdir}" "${srcdir}" > /dev/null
-    make > /dev/null
+    cmake $@ -DCMAKE_INSTALL_PREFIX="${installdir}" "${srcdir}"
+    make
     set +e
-    make test &> /dev/null
+    make test
     retval=$?
     set -e
 

Attachment: signature.asc
Description: OpenPGP digital signature


--- End Message ---
--- Begin Message ---
Source: cmake-extras
Source-Version: 1.3+17.04.20170310-2

We believe that the bug you reported is fixed in the latest version of
cmake-extras, 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 [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Mike Gabriel <[email protected]> (supplier of updated cmake-extras 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 [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 1.8
Date: Tue, 14 Aug 2018 18:34:51 +0200
Source: cmake-extras
Binary: cmake-extras
Architecture: source
Version: 1.3+17.04.20170310-2
Distribution: unstable
Urgency: medium
Maintainer: Mike Gabriel <[email protected]>
Changed-By: Mike Gabriel <[email protected]>
Description:
 cmake-extras - Extra CMake utility modules
Closes: 870039
Changes:
 cmake-extras (1.3+17.04.20170310-2) unstable; urgency=medium
 .
   [ Gianfranco Costamagna ]
   * Switch back to Python2 implementation, the Python3 switch breaks
     testsuite. (Closes: #870039).
   * More verbosity in failing test.
 .
   [ Mike Gabriel ]
   * debian/patches:
     + Enable 0003_75_74.patch. By accident not added to series file in previous
       upload.
   * debian/control:
     + Add Debian CMake Team to Uploaders: field.
     + Update Vcs-*: fields. Packaging Git has been migrated to 
salsa.debian.org.
     + Set Priority: to optional.
     + Package now complies with Standards-Version: 4.2.0.
   * debian/{control,compat}: Switch to DH compat level version 11.
   * debian/patches:
     + Enable 0003_75_74.patch. By accident not added to series file in previous
       upload.
   * debian/watch:
     + Use secure URL for upstream tarball download.
   * debian/examples:
     + Add file. Install doxygenbuilder-demo examples into doc/ folder of this
       package.
   * debian/copyright:
     + Use secure URI to obtain copyright format reference.
Checksums-Sha1:
 99214974593025e10c2016cb430ef2526acd4f8c 2422 
cmake-extras_1.3+17.04.20170310-2.dsc
 ed2ff054d276811e25f4c12fdb60850cb8fb5961 10212 
cmake-extras_1.3+17.04.20170310-2.debian.tar.xz
 ae3969fa2d3191caaa477408f570c8ab83d43f59 7197 
cmake-extras_1.3+17.04.20170310-2_source.buildinfo
Checksums-Sha256:
 4ccc46fc483536dae1abd17bbb2f50ea708d393fe7cb7c27bc41dd695a6335cd 2422 
cmake-extras_1.3+17.04.20170310-2.dsc
 36b4ebcb705b8354fc5cd67ccef222f8cbeaebef647758a202ca3659c51d3025 10212 
cmake-extras_1.3+17.04.20170310-2.debian.tar.xz
 cee5fed9f9ea34f3179b4da76ea737a01e159443863cf1f21ac2007b013b9be1 7197 
cmake-extras_1.3+17.04.20170310-2_source.buildinfo
Files:
 84921c0a48c9905d72759bb72cb44ac0 2422 libs optional 
cmake-extras_1.3+17.04.20170310-2.dsc
 7e9cb212b4faf33f1912dae2649385b4 10212 libs optional 
cmake-extras_1.3+17.04.20170310-2.debian.tar.xz
 f3b38847b4c5684ccbefa5611539d368 7197 libs optional 
cmake-extras_1.3+17.04.20170310-2_source.buildinfo

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

iQJJBAEBCAAzFiEEm/uu6GwKpf+/IgeCmvRrMCV3GzEFAltzBLcVHHN1bndlYXZl
ckBkZWJpYW4ub3JnAAoJEJr0azAldxsx1/YP/3ua113mb8HusV7nTTxH6w4pLwL9
B2UBPhlsDO5yPLAzcUGXB3nznwTWqN+lCXGnGNKuiQEkl7lNOtDbtTHzwmdn1oEZ
W39iWq5iZwZojReTa3Jo5pJjqVehozAzR2Il4cjTuDhoxSuQiK24y3Alc6oHIMk/
vGxOPPKRtrXfB3xAOjAdmXEpYBveZatlwFReaIJCGEFOWvZm1NC9vIyWLpCSlpU9
xiyRQqjyHBwynpoOE4LqVgpF2vCmcPYm2Zduc1dCdvi3XcxI0BsgTFpifzCyGBGD
p/kmAO6D/B0KuSItwD7euTP9c6A4S0Qq5MKE6Vyn924IQ0VACyLn4L1uzvyfQhiV
5ZGpzf2+KQtcPCzWX6XZtMx44EHadKJQdQ9FmWFj0LkZOJ9jQypane/f7fD50UUq
6wS4eoL9Jt2BkLwoVqaMpuCb7Cbyf4bdHPVjb8QKU83CZyOc1EM31A/45scO/W6d
NZyYzXxUXyHDeE3WKOVI92blsWjbUvM1QU5zdiC3g0pUfT/f5kcS4uOat+W216Qa
zxP8gMY3bgHXN9g50nsHadLdOyQBDa+HRjgPzG/DTPaim/SMoiA8K3WP2402/h6X
/wA1IjLiyP7G1GFdyeeCD3dsYZIGgI6rdPILTBEwseZVsKsTrXvVt4ikq9SIGk8D
9Z/kDDc1Cfr+B1PD
=/Dmz
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to