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

Bug#832799: marked as done ([gnat-6]: please update confirm_debian_bugs.py)



Your message dated Thu, 04 Aug 2016 07:05:13 +0000
with message-id <E1bVCiP-00073R-Uf@franck.debian.org>
and subject line Bug#832799: fixed in gcc-6 6.1.1-11
has caused the Debian Bug report #832799,
regarding [gnat-6]: please update confirm_debian_bugs.py
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.)


-- 
832799: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=832799
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: src:gcc-6
Version: 6.1.1-10
Severity: minor
Tags: patch

Hello.
Please consider this trivial patch.
Description: updates for gnat-6 the script reproducing most Ada-related bugs.
Author: Nicolas Boulenguez <nicolas@debian.org>

--- a/debian/ada/confirm_debian_bugs.py
+++ b/debian/ada/confirm_debian_bugs.py
@@ -14,13 +14,16 @@ os.environ ['LC_ALL'] = 'C'
 # If == new_version, "reassign" -> "found" and "retitle" -> "fixed".
 # Once the bug tracking system is informed,
 # please update this number.
-old_version = "4.8"
+old_version = "5"
 
 # The current version.
-new_version = "4.9"
-deb_version = \
-    subprocess.check_output (("dpkg", "--status", "gnat-" + new_version)) \
-    .split ("\n") [7] [len ("Version: "):]
+new_version = "6"
+
+for line in subprocess.check_output (("dpkg", "--status", "gnat-" + new_version)).split ("\n"):
+    if line.startswith ("Version: "):
+        deb_version = line [len ("Version: "):]
+        break
+# Will cause an error later if deb_version is not defined.
 
 # Each bug has its own subdirectory in WORKSPACE.
 # Every bug subdir is removed if the bug is confirmed,
@@ -97,13 +100,8 @@ def check_produces_a_faulty_executable (
         else:
             report_and_retitle (bug, "output of the trigger changed (bug fixed?)", output)
 
-def print_skipped (bug, message):
-    print ("# {} skipped: {}".format (bug, message))
-
 ######################################################################
 
-print_skipped (182360, "cannot be reproduced automatically.")
-
 check_reports_an_error_but_should_not (
     bug = 244936,
     make = ("gnatmake", "p"),
@@ -144,7 +142,7 @@ end pak5;
 check_reports_an_error_but_should_not (
     bug = 246187,
     make = ("gnatmake", "test_43"),
-    regex = "Error detected at system.ads:152:5",
+    regex = "Error detected at system.ads:156:5",
     sources = (
         ("test_43.ads", """package Test_43 is
   type T1 is private;
@@ -230,32 +228,6 @@ begin
 end Test_61;
 """),))
 
-check_reports_an_error_but_should_not (
-    bug = 247564,
-    make = ("gnatmake", "test_70"),
-    regex = "in gnat_to_gnu_entity, at ada/gcc-interface/decl\.c:568",
-    sources = (
-        ("test_70.adb", """procedure Test_70 is
-
-   package pak2 is
-      type t2(b2: boolean) is private;
-   private
-      type t2(b2: boolean) is null record;
-   end pak2;
-
-   package pak1 is
-      type T1(b1 : boolean) is private;
-   private
-      type T1(b1 : boolean) is new pak2.t2(b1);
-   end pak1;
-
-   x: pak1.t1(false);
-   b: boolean;
-begin
-   b := x.b1;
-end Test_70;
-"""),))
-
 check_produces_a_faulty_executable (
     bug = 247569,
     make = ("gnatmake", "test_75"),
@@ -508,22 +480,6 @@ end;
 """),))
 
 check_reports_an_error_but_should_not (
-    bug = 251265,
-    make = ("gnatmake", "test_106"),
-    regex = "in Case_Statement_to_gnu, at ada/gcc-interface/trans.c:2366",
-    sources = (
-        ("test_106.adb", """pragma Ada_83;
-procedure Test_106(x: integer) is
-begin
-   case x is
-      when integer'last +1 => null;
-      when 0               => null; -- line 5
-      when others          => null;
-   end case;
-end Test_106;
-"""),))
-
-check_reports_an_error_but_should_not (
     bug = 253737,
     make = ("gnatmake", "test_4"),
     regex = 'test_4.ads:.:01: "pak2" not declared in "pak1"',
@@ -864,7 +820,7 @@ check_reports_an_error_but_should_not (
     bug = 427108,
     make = ("gnatmake", "test1"),
 #     regex = "FAILED",
-    regex = "Program_Error exp_disp.adb:8462 explicit raise",
+    regex = "Program_Error exp_disp.adb:7842 explicit raise",
     sources = (
         ("test1.adb", """-- "For the execution of a call on an inherited subprogram,
 -- a call on the corresponding primitive subprogram of the
@@ -896,10 +852,6 @@ begin
 end Test1;
 """),))
 
-print_skipped (559447, "not handled by this script")
-
-print_skipped (569343, "not handled by this script")
-
 check_reports_an_error_but_should_not (
     bug = 660698,
     make = ("gnatmake", "proc.adb"),

--- End Message ---
--- Begin Message ---
Source: gcc-6
Source-Version: 6.1.1-11

We believe that the bug you reported is fixed in the latest version of
gcc-6, 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 832799@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Matthias Klose <doko@debian.org> (supplier of updated gcc-6 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: SHA256

Format: 1.8
Date: Wed, 03 Aug 2016 21:53:37 +0200
Source: gcc-6
Binary: gcc-6-base libgcc1 libgcc1-dbg libgcc2 libgcc2-dbg libgcc-6-dev libgcc4 libgcc4-dbg lib64gcc1 lib64gcc1-dbg lib64gcc-6-dev lib32gcc1 lib32gcc1-dbg lib32gcc-6-dev libn32gcc1 libn32gcc1-dbg libn32gcc-6-dev libx32gcc1 libx32gcc1-dbg libx32gcc-6-dev gcc-6 gcc-6-multilib gcc-6-test-results gcc-6-plugin-dev gcc-6-hppa64-linux-gnu cpp-6 gcc-6-locales g++-6 g++-6-multilib libgomp1 libgomp1-dbg lib32gomp1 lib32gomp1-dbg lib64gomp1 lib64gomp1-dbg libn32gomp1 libn32gomp1-dbg libx32gomp1 libx32gomp1-dbg libitm1 libitm1-dbg lib32itm1 lib32itm1-dbg lib64itm1 lib64itm1-dbg libx32itm1 libx32itm1-dbg libatomic1 libatomic1-dbg lib32atomic1 lib32atomic1-dbg lib64atomic1 lib64atomic1-dbg libn32atomic1 libn32atomic1-dbg libx32atomic1 libx32atomic1-dbg libasan3 libasan3-dbg lib32asan3 lib32asan3-dbg lib64asan3 lib64asan3-dbg libx32asan3 libx32asan3-dbg liblsan0 liblsan0-dbg lib32lsan0 lib32lsan0-dbg libx32lsan0 libx32lsan0-dbg libtsan0 libtsan0-dbg libubsan0 libubsan0-dbg lib32ubsan0
 lib32ubsan0-dbg lib64ubsan0 lib64ubsan0-dbg libx32ubsan0 libx32ubsan0-dbg libcilkrts5 libcilkrts5-dbg lib32cilkrts5 lib32cilkrts5-dbg lib64cilkrts5 lib64cilkrts5-dbg libx32cilkrts5 libx32cilkrts5-dbg libmpx2 libmpx2-dbg lib32mpx2 lib32mpx2-dbg lib64mpx2 lib64mpx2-dbg libquadmath0 libquadmath0-dbg lib32quadmath0 lib32quadmath0-dbg lib64quadmath0 lib64quadmath0-dbg libx32quadmath0 libx32quadmath0-dbg libcc1-0 libgccjit0 libgccjit0-dbg libgccjit-6-doc libgccjit-6-dev gobjc++-6 gobjc++-6-multilib gobjc-6 gobjc-6-multilib libobjc-6-dev lib64objc-6-dev lib32objc-6-dev libn32objc-6-dev libx32objc-6-dev libobjc4 libobjc4-dbg lib64objc4 lib64objc4-dbg lib32objc4 lib32objc4-dbg libn32objc4 libn32objc4-dbg libx32objc4 libx32objc4-dbg gfortran-6 gfortran-6-multilib libgfortran-6-dev lib64gfortran-6-dev lib32gfortran-6-dev libn32gfortran-6-dev libx32gfortran-6-dev libgfortran3 libgfortran3-dbg lib64gfortran3 lib64gfortran3-dbg lib32gfortran3 lib32gfortran3-dbg libn32gfortran3
 libn32gfortran3-dbg libx32gfortran3 libx32gfortran3-dbg gccgo-6 gccgo-6-multilib libgo9 libgo9-dbg lib64go9 lib64go9-dbg lib32go9 lib32go9-dbg libn32go9 libn32go9-dbg libx32go9 libx32go9-dbg gcj-6 gcj-6-jdk gcj-6-jre-headless gcj-6-jre libgcj17 gcj-6-jre-lib libgcj17-awt libgcj17-dev libgcj17-dbg gcj-6-source libgcj-doc libstdc++6 lib32stdc++6 lib64stdc++6 libn32stdc++6 libx32stdc++6 libstdc++-6-dev libstdc++-6-pic libstdc++6-6-dbg lib32stdc++-6-dev lib32stdc++6-6-dbg lib64stdc++-6-dev lib64stdc++6-6-dbg libn32stdc++-6-dev libn32stdc++6-6-dbg libx32stdc++-6-dev libx32stdc++6-6-dbg libstdc++-6-doc gnat-6 gnat-6-sjlj libgnat-6 libgnat-6-dbg libgnatvsn6-dev libgnatvsn6 libgnatvsn6-dbg libgnatprj6-dev libgnatprj6 libgnatprj6-dbg gdc-6 gdc-6-multilib libphobos-6-dev lib64phobos-6-dev lib32phobos-6-dev libx32phobos-6-dev fixincludes
 gcc-6-source
Architecture: source all
Version: 6.1.1-11
Distribution: unstable
Urgency: medium
Maintainer: Debian GCC Maintainers <debian-gcc@lists.debian.org>
Changed-By: Matthias Klose <doko@debian.org>
Description:
 cpp-6      - GNU C preprocessor
 fixincludes - Fix non-ANSI header files
 g++-6      - GNU C++ compiler
 g++-6-multilib - GNU C++ compiler (multilib support)
 gcc-6      - GNU C compiler
 gcc-6-base - GCC, the GNU Compiler Collection (base package)
 gcc-6-hppa64-linux-gnu - GNU C compiler (cross compiler for hppa64)
 gcc-6-locales - GCC, the GNU compiler collection (native language support files)
 gcc-6-multilib - GNU C compiler (multilib support)
 gcc-6-plugin-dev - Files for GNU GCC plugin development.
 gcc-6-source - Source of the GNU Compiler Collection
 gcc-6-test-results - Test results for the GCC test suite
 gccgo-6    - GNU Go compiler
 gccgo-6-multilib - GNU Go compiler (multilib support)
 gcj-6      - GCJ byte code and native compiler for Java(TM)
 gcj-6-jdk  - GCJ and Classpath development tools for Java(TM)
 gcj-6-jre  - Java runtime environment using GIJ/Classpath
 gcj-6-jre-headless - Java runtime environment using GIJ/Classpath (headless version)
 gcj-6-jre-lib - Java runtime library for use with gcj (jar files)
 gcj-6-source - GCJ java sources for use in IDEs like eclipse and netbeans
 gdc-6      - GNU D compiler (version 2)
 gdc-6-multilib - GNU D compiler (version 2, multilib support)
 gfortran-6 - GNU Fortran compiler
 gfortran-6-multilib - GNU Fortran compiler (multilib support)
 gnat-6     - GNU Ada compiler
 gnat-6-sjlj - GNU Ada compiler (setjump/longjump runtime library)
 gobjc++-6  - GNU Objective-C++ compiler
 gobjc++-6-multilib - GNU Objective-C++ compiler (multilib support)
 gobjc-6    - GNU Objective-C compiler
 gobjc-6-multilib - GNU Objective-C compiler (multilib support)
 lib32asan3 - AddressSanitizer -- a fast memory error detector (32bit)
 lib32asan3-dbg - AddressSanitizer -- a fast memory error detector (32 bit debug sy
 lib32atomic1 - support library providing __atomic built-in functions (32bit)
 lib32atomic1-dbg - support library providing __atomic built-in functions (32 bit deb
 lib32cilkrts5 - Intel Cilk Plus language extensions (32bit)
 lib32cilkrts5-dbg - Intel Cilk Plus language extensions (32 bit debug symbols)
 lib32gcc-6-dev - GCC support library (32 bit development files)
 lib32gcc1  - GCC support library (32 bit Version)
 lib32gcc1-dbg - GCC support library (debug symbols)
 lib32gfortran-6-dev - Runtime library for GNU Fortran applications (32bit development f
 lib32gfortran3 - Runtime library for GNU Fortran applications (32bit)
 lib32gfortran3-dbg - Runtime library for GNU Fortran applications (32 bit debug symbol
 lib32go9   - Runtime library for GNU Go applications (32bit)
 lib32go9-dbg - Runtime library for GNU Go applications (32 bit debug symbols)
 lib32gomp1 - GCC OpenMP (GOMP) support library (32bit)
 lib32gomp1-dbg - GCC OpenMP (GOMP) support library (32 bit debug symbols)
 lib32itm1  - GNU Transactional Memory Library (32bit)
 lib32itm1-dbg - GNU Transactional Memory Library (32 bit debug symbols)
 lib32lsan0 - LeakSanitizer -- a memory leak detector (32bit)
 lib32lsan0-dbg - LeakSanitizer -- a memory leak detector (32 bit debug symbols)
 lib32mpx2  - Intel memory protection extensions (32bit)
 lib32mpx2-dbg - Intel memory protection extensions (32 bit debug symbols)
 lib32objc-6-dev - Runtime library for GNU Objective-C applications (32bit developme
 lib32objc4 - Runtime library for GNU Objective-C applications (32bit)
 lib32objc4-dbg - Runtime library for GNU Objective-C applications (32 bit debug sy
 lib32phobos-6-dev - Phobos D standard library (64bit development files)
 lib32quadmath0 - GCC Quad-Precision Math Library (32bit)
 lib32quadmath0-dbg - GCC Quad-Precision Math Library (32 bit debug symbols)
 lib32stdc++-6-dev - GNU Standard C++ Library v3 (development files)
 lib32stdc++6 - GNU Standard C++ Library v3 (32 bit Version)
 lib32stdc++6-6-dbg - GNU Standard C++ Library v3 (debugging files)
 lib32ubsan0 - UBSan -- undefined behaviour sanitizer (32bit)
 lib32ubsan0-dbg - UBSan -- undefined behaviour sanitizer (32 bit debug symbols)
 lib64asan3 - AddressSanitizer -- a fast memory error detector (64bit)
 lib64asan3-dbg - AddressSanitizer -- a fast memory error detector (64bit debug sym
 lib64atomic1 - support library providing __atomic built-in functions (64bit)
 lib64atomic1-dbg - support library providing __atomic built-in functions (64bit debu
 lib64cilkrts5 - Intel Cilk Plus language extensions (64bit)
 lib64cilkrts5-dbg - Intel Cilk Plus language extensions (64bit debug symbols)
 lib64gcc-6-dev - GCC support library (64bit development files)
 lib64gcc1  - GCC support library (64bit)
 lib64gcc1-dbg - GCC support library (debug symbols)
 lib64gfortran-6-dev - Runtime library for GNU Fortran applications (64bit development f
 lib64gfortran3 - Runtime library for GNU Fortran applications (64bit)
 lib64gfortran3-dbg - Runtime library for GNU Fortran applications (64bit debug symbols
 lib64go9   - Runtime library for GNU Go applications (64bit)
 lib64go9-dbg - Runtime library for GNU Go applications (64bit debug symbols)
 lib64gomp1 - GCC OpenMP (GOMP) support library (64bit)
 lib64gomp1-dbg - GCC OpenMP (GOMP) support library (64bit debug symbols)
 lib64itm1  - GNU Transactional Memory Library (64bit)
 lib64itm1-dbg - GNU Transactional Memory Library (64bit debug symbols)
 lib64mpx2  - Intel memory protection extensions (64bit)
 lib64mpx2-dbg - Intel memory protection extensions (64bit debug symbols)
 lib64objc-6-dev - Runtime library for GNU Objective-C applications (64bit developme
 lib64objc4 - Runtime library for GNU Objective-C applications (64bit)
 lib64objc4-dbg - Runtime library for GNU Objective-C applications (64 bit debug sy
 lib64phobos-6-dev - Phobos D standard library (64bit development files)
 lib64quadmath0 - GCC Quad-Precision Math Library  (64bit)
 lib64quadmath0-dbg - GCC Quad-Precision Math Library  (64bit debug symbols)
 lib64stdc++-6-dev - GNU Standard C++ Library v3 (development files)
 lib64stdc++6 - GNU Standard C++ Library v3 (64bit)
 lib64stdc++6-6-dbg - GNU Standard C++ Library v3 (debugging files)
 lib64ubsan0 - UBSan -- undefined behaviour sanitizer (64bit)
 lib64ubsan0-dbg - UBSan -- undefined behaviour sanitizer (64bit debug symbols)
 libasan3   - AddressSanitizer -- a fast memory error detector
 libasan3-dbg - AddressSanitizer -- a fast memory error detector (debug symbols)
 libatomic1 - support library providing __atomic built-in functions
 libatomic1-dbg - support library providing __atomic built-in functions (debug symb
 libcc1-0   - GCC cc1 plugin for GDB
 libcilkrts5 - Intel Cilk Plus language extensions (runtime)
 libcilkrts5-dbg - Intel Cilk Plus language extensions (debug symbols)
 libgcc-6-dev - GCC support library (development files)
 libgcc1    - GCC support library
 libgcc1-dbg - GCC support library (debug symbols)
 libgcc2    - GCC support library
 libgcc2-dbg - GCC support library (debug symbols)
 libgcc4    - GCC support library
 libgcc4-dbg - GCC support library (debug symbols)
 libgccjit-6-dev - GCC just-in-time compilation (development files)
 libgccjit-6-doc - GCC just-in-time compilation (documentation)
 libgccjit0 - GCC just-in-time compilation (shared library)
 libgccjit0-dbg - GCC just-in-time compilation (debug information)
 libgcj-doc - libgcj API documentation and example programs
 libgcj17   - Java runtime library for use with gcj
 libgcj17-awt - AWT peer runtime libraries for use with gcj
 libgcj17-dbg - Debugging symbols for libraries provided in libgcj17-dev
 libgcj17-dev - Java development headers for use with gcj
 libgfortran-6-dev - Runtime library for GNU Fortran applications (development files)
 libgfortran3 - Runtime library for GNU Fortran applications
 libgfortran3-dbg - Runtime library for GNU Fortran applications (debug symbols)
 libgnat-6  - runtime for applications compiled with GNAT (shared library)
 libgnat-6-dbg - runtime for applications compiled with GNAT (debugging symbols)
 libgnatprj6 - GNU Ada compiler Project Manager (shared library)
 libgnatprj6-dbg - GNU Ada compiler Project Manager (debugging symbols)
 libgnatprj6-dev - GNU Ada compiler Project Manager (development files)
 libgnatvsn6 - GNU Ada compiler selected components (shared library)
 libgnatvsn6-dbg - GNU Ada compiler selected components (debugging symbols)
 libgnatvsn6-dev - GNU Ada compiler selected components (development files)
 libgo9     - Runtime library for GNU Go applications
 libgo9-dbg - Runtime library for GNU Go applications (debug symbols)
 libgomp1   - GCC OpenMP (GOMP) support library
 libgomp1-dbg - GCC OpenMP (GOMP) support library (debug symbols)
 libitm1    - GNU Transactional Memory Library
 libitm1-dbg - GNU Transactional Memory Library (debug symbols)
 liblsan0   - LeakSanitizer -- a memory leak detector (runtime)
 liblsan0-dbg - LeakSanitizer -- a memory leak detector (debug symbols)
 libmpx2    - Intel memory protection extensions (runtime)
 libmpx2-dbg - Intel memory protection extensions (debug symbols)
 libn32atomic1 - support library providing __atomic built-in functions (n32)
 libn32atomic1-dbg - support library providing __atomic built-in functions (n32 debug
 libn32gcc-6-dev - GCC support library (n32 development files)
 libn32gcc1 - GCC support library (n32)
 libn32gcc1-dbg - GCC support library (debug symbols)
 libn32gfortran-6-dev - Runtime library for GNU Fortran applications (n32 development fil
 libn32gfortran3 - Runtime library for GNU Fortran applications (n32)
 libn32gfortran3-dbg - Runtime library for GNU Fortran applications (n32 debug symbols)
 libn32go9  - Runtime library for GNU Go applications (n32)
 libn32go9-dbg - Runtime library for GNU Go applications (n32 debug symbols)
 libn32gomp1 - GCC OpenMP (GOMP) support library (n32)
 libn32gomp1-dbg - GCC OpenMP (GOMP) support library (n32 debug symbols)
 libn32objc-6-dev - Runtime library for GNU Objective-C applications (n32 development
 libn32objc4 - Runtime library for GNU Objective-C applications (n32)
 libn32objc4-dbg - Runtime library for GNU Objective-C applications (n32 debug symbo
 libn32stdc++-6-dev - GNU Standard C++ Library v3 (development files)
 libn32stdc++6 - GNU Standard C++ Library v3 (n32)
 libn32stdc++6-6-dbg - GNU Standard C++ Library v3 (debugging files)
 libobjc-6-dev - Runtime library for GNU Objective-C applications (development fil
 libobjc4   - Runtime library for GNU Objective-C applications
 libobjc4-dbg - Runtime library for GNU Objective-C applications (debug symbols)
 libphobos-6-dev - Phobos D standard library
 libquadmath0 - GCC Quad-Precision Math Library
 libquadmath0-dbg - GCC Quad-Precision Math Library (debug symbols)
 libstdc++-6-dev - GNU Standard C++ Library v3 (development files)
 libstdc++-6-doc - GNU Standard C++ Library v3 (documentation files)
 libstdc++-6-pic - GNU Standard C++ Library v3 (shared library subset kit)
 libstdc++6 - GNU Standard C++ Library v3
 libstdc++6-6-dbg - GNU Standard C++ Library v3 (debugging files)
 libtsan0   - ThreadSanitizer -- a Valgrind-based detector of data races (runti
 libtsan0-dbg - ThreadSanitizer -- a Valgrind-based detector of data races (debug
 libubsan0  - UBSan -- undefined behaviour sanitizer (runtime)
 libubsan0-dbg - UBSan -- undefined behaviour sanitizer (debug symbols)
 libx32asan3 - AddressSanitizer -- a fast memory error detector (x32)
 libx32asan3-dbg - AddressSanitizer -- a fast memory error detector (x32 debug symbo
 libx32atomic1 - support library providing __atomic built-in functions (x32)
 libx32atomic1-dbg - support library providing __atomic built-in functions (x32 debug
 libx32cilkrts5 - Intel Cilk Plus language extensions (x32)
 libx32cilkrts5-dbg - Intel Cilk Plus language extensions (x32 debug symbols)
 libx32gcc-6-dev - GCC support library (x32 development files)
 libx32gcc1 - GCC support library (x32)
 libx32gcc1-dbg - GCC support library (debug symbols)
 libx32gfortran-6-dev - Runtime library for GNU Fortran applications (x32 development fil
 libx32gfortran3 - Runtime library for GNU Fortran applications (x32)
 libx32gfortran3-dbg - Runtime library for GNU Fortran applications (x32 debug symbols)
 libx32go9  - Runtime library for GNU Go applications (x32)
 libx32go9-dbg - Runtime library for GNU Go applications (x32 debug symbols)
 libx32gomp1 - GCC OpenMP (GOMP) support library (x32)
 libx32gomp1-dbg - GCC OpenMP (GOMP) support library (x32 debug symbols)
 libx32itm1 - GNU Transactional Memory Library (x32)
 libx32itm1-dbg - GNU Transactional Memory Library (x32 debug symbols)
 libx32lsan0 - LeakSanitizer -- a memory leak detector (x32)
 libx32lsan0-dbg - LeakSanitizer -- a memory leak detector (x32 debug symbols)
 libx32objc-6-dev - Runtime library for GNU Objective-C applications (x32 development
 libx32objc4 - Runtime library for GNU Objective-C applications (x32)
 libx32objc4-dbg - Runtime library for GNU Objective-C applications (x32 debug symbo
 libx32phobos-6-dev - Phobos D standard library (x32 development files)
 libx32quadmath0 - GCC Quad-Precision Math Library (x32)
 libx32quadmath0-dbg - GCC Quad-Precision Math Library (x32 debug symbols)
 libx32stdc++-6-dev - GNU Standard C++ Library v3 (development files)
 libx32stdc++6 - GNU Standard C++ Library v3 (x32)
 libx32stdc++6-6-dbg - GNU Standard C++ Library v3 (debugging files)
 libx32ubsan0 - UBSan -- undefined behaviour sanitizer (x32)
 libx32ubsan0-dbg - UBSan -- undefined behaviour sanitizer (x32 debug symbols)
Closes: 832799
Changes:
 gcc-6 (6.1.1-11) unstable; urgency=medium
 .
   * Update to SVN 20160802 (r238981, 6.1.1) from the gcc-6-branch.
     - Fix PR target/72767 (AVR), PR target/71151 (AVR), PR c/7652,
       PR target/71216 (PPC), PR target/72103 (PPC), PR c++/72457, PR c++/71576,
       PR c++/71833, PR fortran/71883.
 .
   [ Nicolas Boulenguez ]
   * debian/ada/confirm_debian_bugs.py: Update for GCC 6. Closes: #832799.
 .
   [ Matthias Klose ]
   * Backport AArch64 Vulcan cost models (Dann Frazier). LP: #1603587.
Checksums-Sha1:
 8e375b54af21248309e17c5917418e0b502313a9 26154 gcc-6_6.1.1-11.dsc
 e58e470f5745b85b57967f22ce136ced636e5246 5866022 gcc-6_6.1.1-11.diff.gz
 dfd38cc2a1a96db894e18e9258500700e264725e 1271082 gcc-6-locales_6.1.1-11_all.deb
 bdf6be1bb13094e8fc61f8f58e38711018474816 83785088 gcc-6-source_6.1.1-11_all.deb
 64306ca76211f6136c18db8b3b28d8348cad9080 10350328 gcj-6-jre-lib_6.1.1-11_all.deb
 b722f60ddc115480e72a8ac914b5aa5cb2d56c3b 11660424 gcj-6-source_6.1.1-11_all.deb
 1b7a13c811b246a3d53c4ec3250f804c03de312f 96756 libgccjit-6-doc_6.1.1-11_all.deb
 3dde41d4118b8a902e1e424744acc7bc411681d3 18455016 libgcj-doc_6.1.1-11_all.deb
 513f0127d56111998d523f480452e2af5972d7b6 10016468 libstdc++-6-doc_6.1.1-11_all.deb
Checksums-Sha256:
 f43a09c4b00387b270f3be443ac90a583417340c6c10411f8358ec6398cbcb72 26154 gcc-6_6.1.1-11.dsc
 41e5557142272e47d822593664478a7d27b7e9c5cc97dda2a5e4caa88c4d2698 5866022 gcc-6_6.1.1-11.diff.gz
 bbe894240f32ee94719fbb4cef9af09260dc1040b7fd3d95d9dc4cbca6bf7da5 1271082 gcc-6-locales_6.1.1-11_all.deb
 4d29fd0045f53b8bb66e496290c07603c3a4de0dce7699ed1306b8b563faf0e4 83785088 gcc-6-source_6.1.1-11_all.deb
 1803c82da192987a024b57be4a38fea83a18ba0bd7a30f2274119e2d1bd2ace3 10350328 gcj-6-jre-lib_6.1.1-11_all.deb
 d4e32a7dafad144e70f74647ec470a0aa3fb2deddab82a454640ecbcd1187f06 11660424 gcj-6-source_6.1.1-11_all.deb
 766433e888b359e9f83967be4975946e8be5edcd9ef07d5d1a2249399ac04bbb 96756 libgccjit-6-doc_6.1.1-11_all.deb
 8aa25f192bada5c871ae9326dfe01553b4fb2363c304a70f162b2be5217812a8 18455016 libgcj-doc_6.1.1-11_all.deb
 3e4aecaf840472be4a082eb87551d8964352bd20512b12afad9f0077568984cc 10016468 libstdc++-6-doc_6.1.1-11_all.deb
Files:
 baaa21cbfe9da01ec66ac96267948609 26154 devel optional gcc-6_6.1.1-11.dsc
 787f0f56b3199764cf4a3e6c03b93a73 5866022 devel optional gcc-6_6.1.1-11.diff.gz
 00c41296811ee586f47b89d7e4fae5a9 1271082 devel optional gcc-6-locales_6.1.1-11_all.deb
 2a5f7909390e1dc6bc752c491c857f69 83785088 devel optional gcc-6-source_6.1.1-11_all.deb
 09633d5387e8a7da630a3a4032410da7 10350328 java optional gcj-6-jre-lib_6.1.1-11_all.deb
 320bc40868350f9bd38b4a3a884667e3 11660424 java optional gcj-6-source_6.1.1-11_all.deb
 408ddc1f8a392603e59f6150a2c18367 96756 doc extra libgccjit-6-doc_6.1.1-11_all.deb
 d1cdc165ab1059a296ed4af4d075e46c 18455016 doc optional libgcj-doc_6.1.1-11_all.deb
 af768ce33cf65cdb2f26a37129713b40 10016468 doc optional libstdc++-6-doc_6.1.1-11_all.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQIcBAEBCAAGBQJXouOIAAoJEL1+qmB3j6b1VUsP/2tTI1XgYICIfWEn9S6RYgj5
DUSmcgkKaO10ZZA00AWNoEfp7pUVvrfSlWrYcLy6m5o0MwhWCJ98EYGklnzD6bd6
6Nj/+GalKWrcD4yQ2NzZvCLcKpEtmv5MzfdNfM8o8mTNe8+euc4kxGTYK1O0DZiw
Y3AgEkSGUm0d9rrOgAanHrt5JDyDL2j7JItlg+9bhmHShAETpcyt5LO/4XR1vIO2
O3tN7ZtRE3HSyL5YdbhPDPCwx4wYS2PEvGNRLpN1ma7wqSMWNCHxbSWiJk1sJcR5
E+fXeSvmalalB8k5cF5tSWaomYOtGI1YhAvVP4LVSLldkkaW8ndfGLy29AjbffWX
pkKTuHhxU0NQUVUV9lBvFjRiSvIaYxbhKTs1tODbvMfJe+/GcGaU16K4hGgeBl+P
1zqr0+U/sOP27T7PdPLdfNal5MygQlisI1TQvyjkhd0S/1pbGBDmoT4YS/DoB4Ea
TLTQiGI2n2mXkVXGj+NJKiW6uDAPMgtclCfvdm5CE3Q5LuCWMFe59vN7KL9ySmqc
lPCV+T7D1ciOKFi+j8Pw0cUeQd1fEXZ8RAarfgLNuhT5nxC7y71ke+AJpJEkx+RW
1vrOJ2/YGa8oAswETmd+EOAI4uWgKC4yq0lH5ZUuizrk1vne2ZaXMEHgvWk7D46W
gwwLHmmhm+aoXbaVGEWt
=NkNx
-----END PGP SIGNATURE-----

--- End Message ---

Reply to: