Your message dated Tue, 08 Aug 2023 06:03:51 +0000
with message-id <[email protected]>
and subject line Bug#1043025: fixed in ivar 1.4.2+dfsg-2
has caused the Debian Bug report #1043025,
regarding ivar: autopkgtest failure on i386
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.)


-- 
1043025: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1043025
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: ivar
Version: 1.4.2+dfsg-1
Severity: serious
Tags: patch
Control: block 1037700 by -1

https://ci.debian.net/data/autopkgtest/testing/i386/i/ivar/36393644/log.gz

...
 29s 132,133c132,133
 29s < Consensus_ZI-27_threshold_0_quality_20   130     N       G       0       
0       0       7       6       37      1       7       0.000582751     TRUE    
NA      NA      NA      NA      NA      NA
 29s < Consensus_ZI-27_threshold_0_quality_20   131     N       A       0       
0       0       7       6       37      1       7       0.000582751     TRUE    
NA      NA      NA      NA      NA      NA
 29s ---
 29s > Consensus_ZI-27_threshold_0_quality_20   130     N       G       0       
0       0       7       6       38      1       7       0.000582751     TRUE    
NA      NA      NA      NA      NA      NA
 29s > Consensus_ZI-27_threshold_0_quality_20   131     N       A       0       
0       0       7       6       38      1       7       0.000582751     TRUE    
NA      NA      NA      NA      NA      NA
 29s 169c169
 29s < Consensus_ZI-27_threshold_0_quality_20   165     N       T       0       
0       0       7       6       37      1       7       0.000582751     TRUE    
NA      NA      NA      NA      NA      NA
 29s ---
 29s > Consensus_ZI-27_threshold_0_quality_20   165     N       T       0       
0       0       7       6       38      1       7       0.000582751     TRUE    
NA      NA      NA      NA      NA      NA
 29s 174c174
 29s < Consensus_ZI-27_threshold_0_quality_20   170     N       G       0       
0       0       7       6       37      1       7       0.000582751     TRUE    
NA      NA      NA      NA      NA      NA
 29s ---
 29s > Consensus_ZI-27_threshold_0_quality_20   170     N       G       0       
0       0       7       6       38      1       7       0.000582751     TRUE    
NA      NA      NA      NA      NA      NA
 29s 205c205
 29s < Consensus_ZI-27_threshold_0_quality_20   201     N       A       0       
0       0       7       6       37      1       7       0.000582751     TRUE    
NA      NA      NA      NA      NA      NA
 29s ---
 29s > Consensus_ZI-27_threshold_0_quality_20   201     N       A       0       
0       0       7       6       38      1       7       0.000582751     TRUE    
NA      NA      NA      NA      NA      NA
 29s 4376c4376
 29s < Consensus_ZI-27_threshold_0_quality_20   7015    N       G       0       
0       0       8       1       37      1       8       0.0001554       TRUE    
NA      NA      NA      NA      NA      NA
 29s ---
 29s > Consensus_ZI-27_threshold_0_quality_20   7015    N       G       0       
0       0       8       1       38      1       8       0.0001554       TRUE    
NA      NA      NA      NA      NA      NA
 29s 4379c4379
 29s < Consensus_ZI-27_threshold_0_quality_20   7018    N       G       0       
0       0       8       1       36      1       8       0.0001554       TRUE    
NA      NA      NA      NA      NA      NA
 29s ---
 29s > Consensus_ZI-27_threshold_0_quality_20   7018    N       G       0       
0       0       8       1       37      1       8       0.0001554       TRUE    
NA      NA      NA      NA      NA      NA
 29s 4405c4405
 29s < Consensus_ZI-27_threshold_0_quality_20   7044    N       A       0       
0       0       8       1       37      1       8       0.0001554       TRUE    
NA      NA      NA      NA      NA      NA
 29s ---
 29s > Consensus_ZI-27_threshold_0_quality_20   7044    N       A       0       
0       0       8       1       38      1       8       0.0001554       TRUE    
NA      NA      NA      NA      NA      NA
 29s 4447c4447
 29s < Consensus_ZI-27_threshold_0_quality_20   7086    N       A       0       
0       0       8       2       35      1       8       0.0001554       TRUE    
NA      NA      NA      NA      NA      NA
 29s ---
 29s > Consensus_ZI-27_threshold_0_quality_20   7086    N       A       0       
0       0       8       2       36      1       8       0.0001554       TRUE    
NA      NA      NA      NA      NA      NA
 29s autopkgtest [15:35:51]: test run-unit-test: -----------------------]
 29s run-unit-test        FAIL non-zero exit status 1



The fix is attached.

For background see the first bullet point in the C++ section of
  https://gcc.gnu.org/gcc-13/changes.html
Description: Remove -std=c++11 to fix autopkgtest failure with gcc 13

--- ivar-1.4.2+dfsg.orig/src/Makefile.am
+++ ivar-1.4.2+dfsg/src/Makefile.am
@@ -1,6 +1,6 @@
 LIBS = -lhts -lz -lpthread
 
-CXXFLAGS += -v -g -std=c++11 -Wall -Wextra -Werror
+CXXFLAGS += -v -g -Wall -Wextra -Werror
 
 # this lists the binaries to produce, the (non-PHONY, binary) targets in
 # the previous manual Makefile
--- ivar-1.4.2+dfsg.orig/tests/Makefile.am
+++ ivar-1.4.2+dfsg/tests/Makefile.am
@@ -1,6 +1,6 @@
 LIBS = -lhts -lz -lpthread
 
-CXXFLAGS += -g -std=c++11 -Wall -Wextra -Werror
+CXXFLAGS += -g -Wall -Wextra -Werror
 
 TESTS = check_primer_trim check_trim check_quality_trim check_consensus 
check_allele_depth check_consensus_threshold check_consensus_min_depth 
check_consensus_seq_id check_primer_bed check_getmasked check_removereads 
check_variants check_common_variants check_unpaired_trim 
check_primer_trim_edge_cases check_isize_trim check_interval_tree 
check_amplicon_search check_consensus_min_insert_threshold
 check_PROGRAMS = check_primer_trim check_trim check_quality_trim 
check_consensus check_allele_depth check_consensus_threshold 
check_consensus_min_depth check_consensus_seq_id check_primer_bed 
check_getmasked check_removereads check_variants check_common_variants 
check_unpaired_trim check_primer_trim_edge_cases check_isize_trim 
check_interval_tree check_amplicon_search check_consensus_min_insert_threshold

--- End Message ---
--- Begin Message ---
Source: ivar
Source-Version: 1.4.2+dfsg-2
Done: Andreas Tille <[email protected]>

We believe that the bug you reported is fixed in the latest version of
ivar, 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.
Andreas Tille <[email protected]> (supplier of updated ivar 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, 08 Aug 2023 07:50:30 +0200
Source: ivar
Architecture: source
Version: 1.4.2+dfsg-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
<[email protected]>
Changed-By: Andreas Tille <[email protected]>
Closes: 1043025
Changes:
 ivar (1.4.2+dfsg-2) unstable; urgency=medium
 .
   [ Adrian Bunk ]
   * Remove -std=c++11 to fix autopkgtest failure with gcc 13
     Closes: #1043025
Checksums-Sha1:
 a4a5eecc834a3c6f68adb0e1f7b357055e98b5e8 2086 ivar_1.4.2+dfsg-2.dsc
 60864a03e9005465b34317bd06fef90160158af8 46116 ivar_1.4.2+dfsg-2.debian.tar.xz
 77de1a076446227a0253c25bf48b46da193abcf7 7253 ivar_1.4.2+dfsg-2_amd64.buildinfo
Checksums-Sha256:
 7a9439069e174f2c4cb3d0de085b7604ea1c1d2d776dc3829626e31251f0962c 2086 
ivar_1.4.2+dfsg-2.dsc
 0111a5f982809c03f3e84efd205aa14c3177a1333ba7607582ff7e000bb7725f 46116 
ivar_1.4.2+dfsg-2.debian.tar.xz
 fd392c0bbf25ee304358141a30764a87d6502d058b4b6410e89d340a0985413d 7253 
ivar_1.4.2+dfsg-2_amd64.buildinfo
Files:
 a876f8cb1cf350fcdfa03d8e1b3554ed 2086 science optional ivar_1.4.2+dfsg-2.dsc
 16c39452cf7ff211559820070906abdd 46116 science optional 
ivar_1.4.2+dfsg-2.debian.tar.xz
 b7284ac72592ddc0eefab4c24df6cf7b 7253 science optional 
ivar_1.4.2+dfsg-2_amd64.buildinfo

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

iQJFBAEBCAAvFiEE8fAHMgoDVUHwpmPKV4oElNHGRtEFAmTR2H0RHHRpbGxlQGRl
Ymlhbi5vcmcACgkQV4oElNHGRtESHxAAkSDZ69MyXmmzchFesqyessqWJvtqhBtu
A+4fOuwtWbZKAV9JrIV2II4uXupeymVYMjE1fZyKj0vq1q8VHwtAGbXHB7sWDuZf
ckIkxOtCOvIV4ZgJ+4+VnlPgF3WyojGrewbBaLaTZPVJt2BXa0mRadVbv3j7/pCb
9B10QwwnaoTZlNF2FfkH+/pbATUZP6RmLteycqQeJ/bqyJJmHruNuWUBjJNBKyOU
jH05MuP1rQiCqjYJcRvsV8SgEmMBCRn98rOu+zQkgJZF4t2e5tlJQ0AduOjLOeR3
g6MKIpUpAxq12tzb8CoyFqi6yRZ2MuKWDTuGzfSDL8j9PXC9naAtjNcG3y3DYHTc
fb/bnFldqJJh47gCdyo6D+V9HlJ/0jTHZJyuMIkmnEGXLqogjjaLvlH5/sQd/IlH
Wkpxu0TT3RUxH/05perkfyeRIlkaX3QNZVknU1kTW4Y8jzcVWn9D5nb0xTCBDD9T
Xji4R7g7tXT2aCpT8qZfIEYeEQF1zmGYJGyjJmLodgWsOTjhjxRnO8WPkQglHOVh
e3Idy8v4bZswBt4VB9ehd9ZzDmU2zBEHiVWIn+QCFh+EB7ZHhObxHlPuDqSOiK45
FybKbCc8eGDHh7sxep3twFaPZRQ9xdirHRxEWAeogZv7tGz5PUr2P649Q885/Zyt
KTJnKRoENrs=
=Hh/j
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to