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

Bug#758964: marked as done (gcc-4.9 assembler errors when building md5 code from fbb on arm64)



Your message dated Fri, 19 Sep 2014 21:56:20 +0000
with message-id <E1XV6A8-0005Mz-2p@franck.debian.org>
and subject line Bug#758964: fixed in gcc-4.9 4.9.1-15
has caused the Debian Bug report #758964,
regarding gcc-4.9 assembler errors when building md5 code from fbb on arm64
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.)


-- 
758964: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=758964
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: gcc-4.9
Version: 4.9.1-7
x-debbugs-cc: fbb@packages.debian.org
Control:| affects -1 fbb|

While building the latest version of fbb (the previous version built successfully) for arm64 the autobuilders (both on debian-ports and debian official) ran into the following error. They were using gcc-4.9 version 4.9.1-7

gcc -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wstrict-prototypes -O2 -g -funsigned-char  -D__LINUX__ -DPROTOTYPES -I../include -DUSE_NCURSES -D_FORTIFY_SOURCE=2  -c -o md5c.o md5c.c
/tmp/ccrwJ404.s: Assembler messages:
/tmp/ccrwJ404.s:609: Error: operand 1 should be an integer register -- `ldr v12,[x1]'
/tmp/ccrwJ404.s:610: Error: invalid use of vector register at operand 1 -- `eor v12,x6,v12'
<builtin>: recipe for target 'md5c.o' failed

I was able to reproducte this locally (under user mode qemu) with 4.9.1-8 and have prepared a reduced (though unfortunately stil fairly large) testcase.

root@debian:/# gcc -g -fstack-protector-strong -O2 -c -o test.o test.c
/tmp/ccap2vnU.s: Assembler messages:
/tmp/ccap2vnU.s:421: Error: operand 1 should be an integer register -- `ldr v7,[x0]' /tmp/ccap2vnU.s:422: Error: invalid use of vector register at operand 1 -- `eor v7,x8,v7'
root@debian:/#

It seems this bug can be worked around by adding -fno-inline-small-functions and -fno-inline-functions-called-once (note: the first of these is sufficient with the reduced testcase where I removed static to make reduction work easier, both are needed with the original code) or removing -fstack-protector-strong

I've also attatched the debdiff I used to test if fbb built successfully with the workaround, note that this is NOT suitable for uploading to debian in it's present form, if it was to be uploaded then you would want to wrap it in suitable conditional logic. Personally though I don't think it's worth uploading a workaround (a proper fix is another matter) for an arm64 build failure in a low popcon leaf package at this point.


//test code for compiler bug, don't expect this to do anything useful
   /****************************************************************
    Copyright (C) 1986-2000 by

    F6FBB - Jean-Paul ROUBELAT
    6, rue George Sand
    31120 - Roquettes - France
	jpr@f6fbb.org

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

    Parts of code have been taken from many other softwares.
    Thanks for the help.
    ****************************************************************/
/* MD5C.C - RSA Data Security, Inc., MD5 message-digest algorithm
 */

/* Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All
   rights reserved.

   License to copy and use this software is granted provided that it
   is identified as the "RSA Data Security, Inc. MD5 Message-Digest
   Algorithm" in all material mentioning or referencing this software
   or this function.

   License is also granted to make and use derivative works provided
   that such works are identified as "derived from the RSA Data
   Security, Inc. MD5 Message-Digest Algorithm" in all material
   mentioning or referencing the derived work.

   RSA Data Security, Inc. makes no representations concerning either
   the merchantability of this software or the suitability of this
   software for any particular purpose. It is provided "as is"
   without express or implied warranty of any kind.

   These notices must be retained in any copies of any part of this
   documentation and/or software.
 */

typedef unsigned char *POINTER;
typedef unsigned short int UINT2;
typedef unsigned long int UINT4;
#define uchar char
#define PROTO_LIST(list) list

//#include "global.h"
//#include "md5.h"

/* Constants for MD5Transform routine.
 */
#define S11 7
#define S12 12
#define S13 17
#define S14 22
#define S21 5
#define S22 9
#define S23 14
#define S24 20
#define S31 4
#define S32 11
#define S33 16
#define S34 23
#define S41 6
#define S42 10
#define S43 15
#define S44 21

void MD5Transform PROTO_LIST ((UINT4[4], uchar[64]));
void Encode PROTO_LIST
  ((uchar *, UINT4 *, unsigned int));
void Decode PROTO_LIST
  ((UINT4 *, uchar *, unsigned int));
void MD5_memcpy PROTO_LIST ((POINTER, POINTER, unsigned int));
void MD5_memset PROTO_LIST ((POINTER, int, unsigned int));

/* F, G, H and I are basic MD5 functions.
 */
#define F(x, y, z) (((x) & (y)) | ((~x) & (z)))
#define G(x, y, z) (((x) & (z)) | ((y) & (~z)))
#define H(x, y, z) ((x) ^ (y) ^ (z))
#define I(x, y, z) ((y) ^ ((x) | (~z)))

/* ROTATE_LEFT rotates x left n bits.
 */
#define ROTATE_LEFT(x, n) (((x) << (n)) | ((x) >> (32-(n))))

/* FF, GG, HH, and II transformations for rounds 1, 2, 3, and 4.
   Rotation is separate from addition to prevent recomputation.
 */
#define FF(a, b, c, d, x, s, ac) { \
 (a) += F ((b), (c), (d)) + (x) + (UINT4)(ac); \
 (a) = ROTATE_LEFT ((a), (s)); \
 (a) += (b); \
  }
#define GG(a, b, c, d, x, s, ac) { \
 (a) += G ((b), (c), (d)) + (x) + (UINT4)(ac); \
 (a) = ROTATE_LEFT ((a), (s)); \
 (a) += (b); \
  }
#define HH(a, b, c, d, x, s, ac) { \
 (a) += H ((b), (c), (d)) + (x) + (UINT4)(ac); \
 (a) = ROTATE_LEFT ((a), (s)); \
 (a) += (b); \
  }
#define II(a, b, c, d, x, s, ac) { \
 (a) += I ((b), (c), (d)) + (x) + (UINT4)(ac); \
 (a) = ROTATE_LEFT ((a), (s)); \
 (a) += (b); \
  }


/* MD5 basic transformation. Transforms state based on block.
 */
void MD5Transform (state, block)
	 UINT4 state[4];
	 uchar block[64];
{
	UINT4 a = state[0], b = state[1], c = state[2], d = state[3], x[16];

	Decode (x, block, 64);

	/* Round 1 */
	FF (a, b, c, d, x[0], S11, 0xd76aa478L);	/* 1 */
	FF (d, a, b, c, x[1], S12, 0xe8c7b756L);	/* 2 */
	FF (c, d, a, b, x[2], S13, 0x242070dbL);	/* 3 */
	FF (b, c, d, a, x[3], S14, 0xc1bdceeeL);	/* 4 */
	FF (a, b, c, d, x[4], S11, 0xf57c0fafL);	/* 5 */
	FF (d, a, b, c, x[5], S12, 0x4787c62aL);	/* 6 */
	FF (c, d, a, b, x[6], S13, 0xa8304613L);	/* 7 */
	FF (b, c, d, a, x[7], S14, 0xfd469501L);	/* 8 */
	FF (a, b, c, d, x[8], S11, 0x698098d8L);	/* 9 */
	FF (d, a, b, c, x[9], S12, 0x8b44f7afL);	/* 10 */
	FF (c, d, a, b, x[10], S13, 0xffff5bb1L);	/* 11 */
	FF (b, c, d, a, x[11], S14, 0x895cd7beL);	/* 12 */
	FF (a, b, c, d, x[12], S11, 0x6b901122L);	/* 13 */
	FF (d, a, b, c, x[13], S12, 0xfd987193L);	/* 14 */
	FF (c, d, a, b, x[14], S13, 0xa679438eL);	/* 15 */
	FF (b, c, d, a, x[15], S14, 0x49b40821L);	/* 16 */

	/* Round 2 */
	GG (a, b, c, d, x[1], S21, 0xf61e2562L);	/* 17 */
	GG (d, a, b, c, x[6], S22, 0xc040b340L);	/* 18 */
	GG (c, d, a, b, x[11], S23, 0x265e5a51L);	/* 19 */
	GG (b, c, d, a, x[0], S24, 0xe9b6c7aaL);	/* 20 */
	GG (a, b, c, d, x[5], S21, 0xd62f105dL);	/* 21 */
	GG (d, a, b, c, x[10], S22, 0x2441453L);	/* 22 */
	GG (c, d, a, b, x[15], S23, 0xd8a1e681L);	/* 23 */
	GG (b, c, d, a, x[4], S24, 0xe7d3fbc8L);	/* 24 */
	GG (a, b, c, d, x[9], S21, 0x21e1cde6L);	/* 25 */
	GG (d, a, b, c, x[14], S22, 0xc33707d6L);	/* 26 */
	GG (c, d, a, b, x[3], S23, 0xf4d50d87L);	/* 27 */
	GG (b, c, d, a, x[8], S24, 0x455a14edL);	/* 28 */
	GG (a, b, c, d, x[13], S21, 0xa9e3e905L);	/* 29 */
	GG (d, a, b, c, x[2], S22, 0xfcefa3f8L);	/* 30 */
	GG (c, d, a, b, x[7], S23, 0x676f02d9L);	/* 31 */
	GG (b, c, d, a, x[12], S24, 0x8d2a4c8aL);	/* 32 */

	/* Round 3 */
	HH (a, b, c, d, x[5], S31, 0xfffa3942L);	/* 33 */
	HH (d, a, b, c, x[8], S32, 0x8771f681L);	/* 34 */
	HH (c, d, a, b, x[11], S33, 0x6d9d6122L);	/* 35 */
	HH (b, c, d, a, x[14], S34, 0xfde5380cL);	/* 36 */
	HH (a, b, c, d, x[1], S31, 0xa4beea44L);	/* 37 */
	HH (d, a, b, c, x[4], S32, 0x4bdecfa9L);	/* 38 */
	HH (c, d, a, b, x[7], S33, 0xf6bb4b60L);	/* 39 */
	HH (b, c, d, a, x[10], S34, 0xbebfbc70L);	/* 40 */
	HH (a, b, c, d, x[13], S31, 0x289b7ec6L);	/* 41 */
	HH (d, a, b, c, x[0], S32, 0xeaa127faL);	/* 42 */
	HH (c, d, a, b, x[3], S33, 0xd4ef3085L);	/* 43 */
	HH (b, c, d, a, x[6], S34, 0x4881d05L);		/* 44 */
	HH (a, b, c, d, x[9], S31, 0xd9d4d039L);	/* 45 */
	HH (d, a, b, c, x[12], S32, 0xe6db99e5L);	/* 46 */
	HH (c, d, a, b, x[15], S33, 0x1fa27cf8L);	/* 47 */
	HH (b, c, d, a, x[2], S34, 0xc4ac5665L);	/* 48 */

	state[0] += a;
	state[1] += b;
	state[2] += c;
	state[3] += d;

	/* Zeroize sensitive information.
	 */
	MD5_memset ((POINTER) x, 0, sizeof (x));
}

////!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
/* Note: Replace "for loop" with standard memset if possible.
 */
void MD5_memset (output, value, len)
	 POINTER output;
	 int value;
	 unsigned int len;
{
	unsigned int i;

	for (i = 0; i < len; i++)
		((char *) output)[i] = (char) value;
}
diff -Nru fbb-7.05f/debian/changelog fbb-7.05f/debian/changelog
--- fbb-7.05f/debian/changelog	2014-08-20 08:24:20.000000000 +0000
+++ fbb-7.05f/debian/changelog	2014-08-23 08:32:12.000000000 +0000
@@ -1,3 +1,9 @@
+fbb (7.05f-1+test1) UNRELEASED; urgency=medium
+
+  * Use -fno-inline-small-functions and -fno-inline-functions-called-once to work arround compiler bug.
+
+ -- root <root@debian>  Sat, 23 Aug 2014 08:30:44 +0000
+
 fbb (7.05f-1) unstable; urgency=medium
 
   * Added myself to uploaders
diff -Nru fbb-7.05f/debian/rules fbb-7.05f/debian/rules
--- fbb-7.05f/debian/rules	2014-08-18 19:18:19.000000000 +0000
+++ fbb-7.05f/debian/rules	2014-08-23 09:13:15.000000000 +0000
@@ -5,6 +5,8 @@
 DPKG_EXPORT_BUILDFLAGS = 1
 include /usr/share/dpkg/buildflags.mk
 
+export CFLAGS += -fno-inline-small-functions -fno-inline-functions-called-once
+
 package=fbb
 
 build: build-arch build-indep

--- End Message ---
--- Begin Message ---
Source: gcc-4.9
Source-Version: 4.9.1-15

We believe that the bug you reported is fixed in the latest version of
gcc-4.9, 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 758964@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-4.9 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: SHA1

Format: 1.8
Date: Fri, 19 Sep 2014 20:17:27 +0200
Source: gcc-4.9
Binary: gcc-4.9-base libgcc1 libgcc1-dbg libgcc2 libgcc2-dbg libgcc-4.9-dev libgcc4 libgcc4-dbg lib64gcc1 lib64gcc1-dbg lib64gcc-4.9-dev lib32gcc1 lib32gcc1-dbg lib32gcc-4.9-dev libn32gcc1 libn32gcc1-dbg libn32gcc-4.9-dev libx32gcc1 libx32gcc1-dbg libx32gcc-4.9-dev gcc-4.9 gcc-4.9-multilib gcc-4.9-plugin-dev gcc-4.9-hppa64 cpp-4.9 gcc-4.9-locales g++-4.9 g++-4.9-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 libasan1 libasan1-dbg lib32asan1 lib32asan1-dbg lib64asan1 lib64asan1-dbg libx32asan1 libx32asan1-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 libquadmath0 libquadmath0-dbg lib32quadmath0 lib32quadmath0-dbg lib64quadmath0 lib64quadmath0-dbg libx32quadmath0 libx32quadmath0-dbg gobjc++-4.9 gobjc++-4.9-multilib gobjc-4.9 gobjc-4.9-multilib libobjc-4.9-dev lib64objc-4.9-dev lib32objc-4.9-dev libn32objc-4.9-dev libx32objc-4.9-dev libobjc4 libobjc4-dbg lib64objc4 lib64objc4-dbg lib32objc4 lib32objc4-dbg libn32objc4 libn32objc4-dbg libx32objc4 libx32objc4-dbg gfortran-4.9 gfortran-4.9-multilib libgfortran-4.9-dev lib64gfortran-4.9-dev lib32gfortran-4.9-dev libn32gfortran-4.9-dev libx32gfortran-4.9-dev libgfortran3 libgfortran3-dbg lib64gfortran3 lib64gfortran3-dbg lib32gfortran3 lib32gfortran3-dbg libn32gfortran3 libn32gfortran3-dbg libx32gfortran3 libx32gfortran3-dbg gccgo-4.9 gccgo-4.9-multilib libgo5 libgo5-dbg
 lib64go5 lib64go5-dbg lib32go5 lib32go5-dbg libn32go5 libn32go5-dbg libx32go5 libx32go5-dbg gcj-4.9 gcj-4.9-jdk gcj-4.9-jre-headless gcj-4.9-jre libgcj15 gcj-4.9-jre-lib libgcj15-awt libgcj15-dev libgcj15-dbg gcj-4.9-source libgcj-doc libstdc++6 lib32stdc++6 lib64stdc++6 libn32stdc++6 libx32stdc++6 libstdc++-4.9-dev libstdc++-4.9-pic libstdc++6-4.9-dbg lib32stdc++-4.9-dev lib32stdc++6-4.9-dbg lib64stdc++-4.9-dev lib64stdc++6-4.9-dbg libn32stdc++-4.9-dev libn32stdc++6-4.9-dbg libx32stdc++-4.9-dev libx32stdc++6-4.9-dbg libstdc++-4.9-doc gdc-4.9 libphobos-4.9-dev fixincludes
 gcc-4.9-source
Architecture: source all amd64
Version: 4.9.1-15
Distribution: unstable
Urgency: medium
Maintainer: Debian GCC Maintainers <debian-gcc@lists.debian.org>
Changed-By: Matthias Klose <doko@debian.org>
Description:
 cpp-4.9    - GNU C preprocessor
 fixincludes - Fix non-ANSI header files
 g++-4.9    - GNU C++ compiler
 g++-4.9-multilib - GNU C++ compiler (multilib files)
 gcc-4.9    - GNU C compiler
 gcc-4.9-base - GCC, the GNU Compiler Collection (base package)
 gcc-4.9-hppa64 - GNU C compiler (cross compiler for hppa64)
 gcc-4.9-locales - GCC, the GNU compiler collection (native language support files)
 gcc-4.9-multilib - GNU C compiler (multilib files)
 gcc-4.9-plugin-dev - Files for GNU GCC plugin development.
 gcc-4.9-source - Source of the GNU Compiler Collection
 gccgo-4.9  - GNU Go compiler
 gccgo-4.9-multilib - GNU Go compiler (multilib files)
 gcj-4.9    - GCJ byte code and native compiler for Java(TM)
 gcj-4.9-jdk - GCJ and Classpath development tools for Java(TM)
 gcj-4.9-jre - Java runtime environment using GIJ/Classpath
 gcj-4.9-jre-headless - Java runtime environment using GIJ/Classpath (headless version)
 gcj-4.9-jre-lib - Java runtime library for use with gcj (jar files)
 gcj-4.9-source - GCJ java sources for use in IDEs like eclipse and netbeans
 gdc-4.9    - GNU D compiler (version 2), based on the GCC backend
 gfortran-4.9 - GNU Fortran compiler
 gfortran-4.9-multilib - GNU Fortran compiler (multilib files)
 gobjc++-4.9 - GNU Objective-C++ compiler
 gobjc++-4.9-multilib - GNU Objective-C++ compiler (multilib files)
 gobjc-4.9  - GNU Objective-C compiler
 gobjc-4.9-multilib - GNU Objective-C compiler (multilib files)
 lib32asan1 - AddressSanitizer -- a fast memory error detector (32bit)
 lib32asan1-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-4.9-dev - GCC support library (32 bit development files)
 lib32gcc1  - GCC support library (32 bit Version)
 lib32gcc1-dbg - GCC support library (debug symbols)
 lib32gfortran-4.9-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
 lib32go5   - Runtime library for GNU Go applications (32bit)
 lib32go5-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)
 lib32objc-4.9-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
 lib32quadmath0 - GCC Quad-Precision Math Library (32bit)
 lib32quadmath0-dbg - GCC Quad-Precision Math Library (32 bit debug symbols)
 lib32stdc++-4.9-dev - GNU Standard C++ Library v3 (development files)
 lib32stdc++6 - GNU Standard C++ Library v3 (32 bit Version)
 lib32stdc++6-4.9-dbg - GNU Standard C++ Library v3 (debugging files)
 lib32ubsan0 - UBSan -- undefined behaviour sanitizer (32bit)
 lib32ubsan0-dbg - UBSan -- undefined behaviour sanitizer (32 bit debug symbols)
 lib64asan1 - AddressSanitizer -- a fast memory error detector (64bit)
 lib64asan1-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-4.9-dev - GCC support library (64bit development files)
 lib64gcc1  - GCC support library (64bit)
 lib64gcc1-dbg - GCC support library (debug symbols)
 lib64gfortran-4.9-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
 lib64go5   - Runtime library for GNU Go applications (64bit)
 lib64go5-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)
 lib64objc-4.9-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
 lib64quadmath0 - GCC Quad-Precision Math Library  (64bit)
 lib64quadmath0-dbg - GCC Quad-Precision Math Library  (64bit debug symbols)
 lib64stdc++-4.9-dev - GNU Standard C++ Library v3 (development files)
 lib64stdc++6 - GNU Standard C++ Library v3 (64bit)
 lib64stdc++6-4.9-dbg - GNU Standard C++ Library v3 (debugging files)
 lib64ubsan0 - UBSan -- undefined behaviour sanitizer (64bit)
 lib64ubsan0-dbg - UBSan -- undefined behaviour sanitizer (64bit debug symbols)
 libasan1   - AddressSanitizer -- a fast memory error detector
 libasan1-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
 libcilkrts5 - Intel Cilk Plus language extensions (runtime)
 libcilkrts5-dbg - Intel Cilk Plus language extensions (debug symbols)
 libgcc-4.9-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)
 libgcj-doc - libgcj API documentation and example programs
 libgcj15   - Java runtime library for use with gcj
 libgcj15-awt - AWT peer runtime libraries for use with gcj
 libgcj15-dbg - Debugging symbols for libraries provided in libgcj15-dev
 libgcj15-dev - Java development headers for use with gcj
 libgfortran-4.9-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)
 libgo5     - Runtime library for GNU Go applications
 libgo5-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)
 libn32atomic1 - support library providing __atomic built-in functions (n32)
 libn32atomic1-dbg - support library providing __atomic built-in functions (n32 debug
 libn32gcc-4.9-dev - GCC support library (n32 development files)
 libn32gcc1 - GCC support library (n32)
 libn32gcc1-dbg - GCC support library (debug symbols)
 libn32gfortran-4.9-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)
 libn32go5  - Runtime library for GNU Go applications (n32)
 libn32go5-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-4.9-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++-4.9-dev - GNU Standard C++ Library v3 (development files)
 libn32stdc++6 - GNU Standard C++ Library v3 (n32)
 libn32stdc++6-4.9-dbg - GNU Standard C++ Library v3 (debugging files)
 libobjc-4.9-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-4.9-dev - Phobos D standard library
 libquadmath0 - GCC Quad-Precision Math Library
 libquadmath0-dbg - GCC Quad-Precision Math Library (debug symbols)
 libstdc++-4.9-dev - GNU Standard C++ Library v3 (development files)
 libstdc++-4.9-doc - GNU Standard C++ Library v3 (documentation files)
 libstdc++-4.9-pic - GNU Standard C++ Library v3 (shared library subset kit)
 libstdc++6 - GNU Standard C++ Library v3
 libstdc++6-4.9-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)
 libx32asan1 - AddressSanitizer -- a fast memory error detector (x32)
 libx32asan1-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-4.9-dev - GCC support library (x32 development files)
 libx32gcc1 - GCC support library (x32)
 libx32gcc1-dbg - GCC support library (debug symbols)
 libx32gfortran-4.9-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)
 libx32go5  - Runtime library for GNU Go applications (x32)
 libx32go5-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-4.9-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
 libx32quadmath0 - GCC Quad-Precision Math Library (x32)
 libx32quadmath0-dbg - GCC Quad-Precision Math Library (x32 debug symbols)
 libx32stdc++-4.9-dev - GNU Standard C++ Library v3 (development files)
 libx32stdc++6 - GNU Standard C++ Library v3 (x32)
 libx32stdc++6-4.9-dbg - GNU Standard C++ Library v3 (debugging files)
 libx32ubsan0 - UBSan -- undefined behaviour sanitizer (x32)
 libx32ubsan0-dbg - UBSan -- undefined behaviour sanitizer (x32 debug symbols)
Closes: 758964
Changes:
 gcc-4.9 (4.9.1-15) unstable; urgency=medium
 .
   * Update to SVN 20140919 (r215401) from the gcc-4_9-branch.
 .
   [ Matthias Klose ]
   * Extend the fix for PR target/63190 (AArch64). Closes: #758964.
   * Apply proposed fix for Linaro #331, LP: #1353729 (AArch64).
 .
   [ Aurelien Jarno ]
   * Default to mips64 ISA on mips64el, with tuning for mips64r2.
Checksums-Sha1:
 de394a76a63955cc33dcad682123eed67b036bec 18582 gcc-4.9_4.9.1-15.dsc
 2dd4f5a0797bcc63a2b6b21e1454e6dcf3e0d56b 915543 gcc-4.9_4.9.1-15.diff.gz
 c27835f50712e879aced4ed4c7e02a83576fe024 74267154 gcc-4.9-source_4.9.1-15_all.deb
 0027dd530cf828ee97fc23f21043db4b14978804 10348888 gcj-4.9-jre-lib_4.9.1-15_all.deb
 6e76b3b459c6f73f989e0ce9a129eff2bc79e585 11661634 gcj-4.9-source_4.9.1-15_all.deb
 e2b464f8df97ef354438798b9e9d0a650f496628 18868276 libgcj-doc_4.9.1-15_all.deb
 f949b75d384299419c11ec36d53349fcc8d45340 8006138 libstdc++-4.9-doc_4.9.1-15_all.deb
 8adf47ee49f2865d25111d23961125b26d5b70fa 1443830 gcc-4.9-locales_4.9.1-15_all.deb
 cc88d62da912db43eb4821c1211f138559bc4853 157572 gcc-4.9-base_4.9.1-15_amd64.deb
 854164a6c9ea333fac4f051e1dc39c263aa28cff 39462 libgcc1_4.9.1-15_amd64.deb
 d0c12007ef41df50109f914692d539cd65c637a1 85564 libgcc1-dbg_4.9.1-15_amd64.deb
 cc31ca0816dac3538b7045fdb832b7bcbc10e826 2061970 libgcc-4.9-dev_4.9.1-15_amd64.deb
 f9be92d64ed4c41c85b3d86aa699cdfed1dfed51 47992 lib32gcc1_4.9.1-15_amd64.deb
 e87873c1a2f53d4c75ca2d609f2bc9d22e8f0e1b 84416 lib32gcc1-dbg_4.9.1-15_amd64.deb
 4ddf1a276dfdc46957dda083fe52a368c6639854 1911918 lib32gcc-4.9-dev_4.9.1-15_amd64.deb
 95dcd69e7bc240e47a9c8580f7129a250bc2b846 38650 libx32gcc1_4.9.1-15_amd64.deb
 97b714e16febd3612a48d0d75f203d499eefb406 83312 libx32gcc1-dbg_4.9.1-15_amd64.deb
 e873785d8df58f9132e8599b8efe18421e2943f5 1775960 libx32gcc-4.9-dev_4.9.1-15_amd64.deb
 65487dd9839ccc7aa931d6afd5f28666540e8dcc 129082 libquadmath0_4.9.1-15_amd64.deb
 21839b5af6e8df96200c4d4579928b2eca12da47 146634 libquadmath0-dbg_4.9.1-15_amd64.deb
 f6a835c0643e61327f08fb983a3c6eade3648d47 193218 lib32quadmath0_4.9.1-15_amd64.deb
 ef2b4593c3157a812cf080af3c78bacf06896c55 153836 lib32quadmath0-dbg_4.9.1-15_amd64.deb
 bc8e64dacc377f7897211fb24633814810e537b5 131818 libx32quadmath0_4.9.1-15_amd64.deb
 552639f7baea07bca9eeb41473dc6d56ab024c01 149656 libx32quadmath0-dbg_4.9.1-15_amd64.deb
 32b09b0cf97ca7e37697fd3f3c06590cf6d5c21e 37804 libgomp1_4.9.1-15_amd64.deb
 ddee66ebd32b953b515242fa05a884017c4f02a0 86398 libgomp1-dbg_4.9.1-15_amd64.deb
 574d79153ccd81447b65a496c080f61ebf2ea3f9 40422 lib32gomp1_4.9.1-15_amd64.deb
 784fb51f3d2e2b7e367da15fbce3250f71159144 84268 lib32gomp1-dbg_4.9.1-15_amd64.deb
 ea0baa3468e2134247c37211a3f82752ff532ce4 37006 libx32gomp1_4.9.1-15_amd64.deb
 4c710fe658b0c31916fc535822c609ccad3a9278 84052 libx32gomp1-dbg_4.9.1-15_amd64.deb
 5d4016c8feb2627eac9dff2065ded931a97166b5 29246 libitm1_4.9.1-15_amd64.deb
 7f51bbcccd51ebf0bceacd8c05c6c86ccd9d0171 191400 libitm1-dbg_4.9.1-15_amd64.deb
 f2acc7704a4e915354a9cbdb3b134a0766e51bf6 31620 lib32itm1_4.9.1-15_amd64.deb
 f9ad80d1b89ecd35e99b497e270f3cbc756bb638 183074 lib32itm1-dbg_4.9.1-15_amd64.deb
 3a5cc9c3bda268addb576673d6ee4288274e324c 28712 libx32itm1_4.9.1-15_amd64.deb
 0a862f42be246f1d857db1cbe32d4d55fc5c4070 181084 libx32itm1-dbg_4.9.1-15_amd64.deb
 368f3e52d8febab6cacbf20ea968adffc75ebb69 8998 libatomic1_4.9.1-15_amd64.deb
 f6c7f375526e1fedee5a0069614639f344c6f524 16082 libatomic1-dbg_4.9.1-15_amd64.deb
 c7968dfcaca1090bbddcfc177ad9612fa54d81da 8592 lib32atomic1_4.9.1-15_amd64.deb
 9a7e342ff919351258320c21b06534a7ad8c121a 13412 lib32atomic1-dbg_4.9.1-15_amd64.deb
 e187d9aaf4da766ee136b4dcdcca91472820232f 8986 libx32atomic1_4.9.1-15_amd64.deb
 00c52975be55d7fe803a8ac676690c20a39c22bd 15552 libx32atomic1-dbg_4.9.1-15_amd64.deb
 76cd04028cd4d75d1779596d3b244b45b03c87c6 5156944 cpp-4.9_4.9.1-15_amd64.deb
 32ec11b8fa9af3037a012425c8e1ddb2ed3017ab 58042 fixincludes_4.9.1-15_amd64.deb
 a978633c410d427a9db6b5ca2cd595be45accb2a 974 gobjc++-4.9-multilib_4.9.1-15_amd64.deb
 bdbccadb79da1de155951cd7e68ddf0f0ef058c7 5392202 gobjc++-4.9_4.9.1-15_amd64.deb
 b0f2d9737c3adeb15357d0f9a8ad29f5c82c7196 974 gobjc-4.9-multilib_4.9.1-15_amd64.deb
 c2e517736af88ff8fe5fb4402fd190c40515fee7 4978222 gobjc-4.9_4.9.1-15_amd64.deb
 d835a727e9dea4fd9c9d8234d7b5391ef3565cae 112072 libobjc4_4.9.1-15_amd64.deb
 79cdd29b904859a9ede968cb7d2b2706be2a37dc 208082 libobjc4-dbg_4.9.1-15_amd64.deb
 f6a74cf636b990f0ea7c8ba6d96bd1943c6c7e19 372200 libobjc-4.9-dev_4.9.1-15_amd64.deb
 c0e685932b7a590ecd2c5df25f7ed292e57369d4 117138 lib32objc4_4.9.1-15_amd64.deb
 d1ca92776ef7f9759cfd669d109ff5b2caea341f 182038 lib32objc4-dbg_4.9.1-15_amd64.deb
 7c62e8558d19e21c5118f1cbbf19cc5e96325f25 327638 lib32objc-4.9-dev_4.9.1-15_amd64.deb
 6c5975d4f69837ddbc3099c8fe2fa0492ba28ec1 104676 libx32objc4_4.9.1-15_amd64.deb
 d7abab5cce1cefad0da6de036295688e384e8ae2 196408 libx32objc4-dbg_4.9.1-15_amd64.deb
 45ce024574a01f5fd2837e859748815b50bbf13e 338916 libx32objc-4.9-dev_4.9.1-15_amd64.deb
 633f6c805b58cdae6b014b244a64466bc451176a 2462042 libgo5_4.9.1-15_amd64.deb
 acb9a7cad7df4289820b15a342b2209607a8f0df 2937346 libgo5-dbg_4.9.1-15_amd64.deb
 2a933234f897276466ace4d0975ba8dfd52b72c5 2461642 lib32go5_4.9.1-15_amd64.deb
 8287bbcdd4c8a0933a0ac33ef802ed0deac623c7 1831692 lib32go5-dbg_4.9.1-15_amd64.deb
 16bdea539ef606c9aa86889c17a684ae5a162e89 2403970 libx32go5_4.9.1-15_amd64.deb
 d854205fbb6970919b6398f09a07302a53d225d6 2850232 libx32go5-dbg_4.9.1-15_amd64.deb
 f748e5b31af1f46dd5325688601a0168ea7f9ced 8531614 gccgo-4.9_4.9.1-15_amd64.deb
 6e2ededb74ca8e66f67a18d6ede18a430fcf06e3 6505340 gccgo-4.9-multilib_4.9.1-15_amd64.deb
 bbd653d8d40e2f4739bbfc073103dcd510235d66 49428 gcj-4.9-jre-headless_4.9.1-15_amd64.deb
 619cef78cbd38bb24ddfa4ed8da202c0fdb86419 9237848 libgcj15_4.9.1-15_amd64.deb
 d18c93daa00bdfe897cb671457743f16ee23f921 62244 libgcj15-awt_4.9.1-15_amd64.deb
 05ba8f80fe76efdb69d3f95125bdebc0cea90b12 1260 gcj-4.9-jre_4.9.1-15_amd64.deb
 48c2c4df136016f3b5f3e771bafa25a8c18d73f7 457158 gcj-4.9-jdk_4.9.1-15_amd64.deb
 b4971ad652d8c80e6c90dcbea0192d3a0317fbdb 607104 libgcj15-dev_4.9.1-15_amd64.deb
 4048c4b3f735ed4f5a338650ea30a2e10059f705 16510078 libgcj15-dbg_4.9.1-15_amd64.deb
 3e651868e1ea9fad2fe04c853574d8a0409a56da 4945604 gcj-4.9_4.9.1-15_amd64.deb
 05c304215e763d5eab22803e57f9723cdd9c9ff1 990 g++-4.9-multilib_4.9.1-15_amd64.deb
 6e1f88ebf3b92b915288dc696ee179ae003984e0 21499194 g++-4.9_4.9.1-15_amd64.deb
 523cd0c9778598602b1335fbbf0eb214e9dc9990 273142 libstdc++6_4.9.1-15_amd64.deb
 8fb1883af49ecc3c1e3c3c6e82fc35e6a59f664b 279370 lib32stdc++6_4.9.1-15_amd64.deb
 2fee14ef14dfa7d1c7e313dca3cdaa34c5693376 357880 lib32stdc++-4.9-dev_4.9.1-15_amd64.deb
 09cc4c247808f238dcecb723b412e6d7ef74fb44 3538918 lib32stdc++6-4.9-dbg_4.9.1-15_amd64.deb
 62c91629feb59dad84ed800020d0a385344422a1 244154 libx32stdc++6_4.9.1-15_amd64.deb
 b2e37680ba0720d69c61bbb36d8f94f70780ec7c 347744 libx32stdc++-4.9-dev_4.9.1-15_amd64.deb
 16adaef2f01db3d9bc063b7a3404ada9c09d2ee2 3619382 libx32stdc++6-4.9-dbg_4.9.1-15_amd64.deb
 34c712acdf324aea8c50fb1fa81ac147cac67420 1119402 libstdc++-4.9-dev_4.9.1-15_amd64.deb
 e88ab8046cf922157b5734824f5a55dcedfb9861 325960 libstdc++-4.9-pic_4.9.1-15_amd64.deb
 5c67d36bfcc27dcb6879a389604f284780958101 2342422 libstdc++6-4.9-dbg_4.9.1-15_amd64.deb
 f4a47ea649c7211d6addc63d18606255cffbe3d4 195396 libasan1_4.9.1-15_amd64.deb
 b63dd5f2f8ce09d8d6fdce0b57602f5635e206ff 680028 libasan1-dbg_4.9.1-15_amd64.deb
 cdbd5ac3469b928b9c06a83bbc6c5f2cefb5ae68 184974 lib32asan1_4.9.1-15_amd64.deb
 3be946522eaa8577fa26868d0ee2da6099c7e639 570510 lib32asan1-dbg_4.9.1-15_amd64.deb
 a5c63a1292e7f15f46c22eea06c86e50baa431b9 187016 libx32asan1_4.9.1-15_amd64.deb
 5f46504e6caa6a8d283055e0fc400bb37d7e8724 657982 libx32asan1-dbg_4.9.1-15_amd64.deb
 42d052791d8586a7f36e630afd36630e2dcc13fd 92666 liblsan0_4.9.1-15_amd64.deb
 a4c2c42849effafa3fd39672ce01e608b461d245 303188 liblsan0-dbg_4.9.1-15_amd64.deb
 0b9b55a9ef7cb9c1bc90ec136895e61637bf89b5 908 lib32lsan0_4.9.1-15_amd64.deb
 ee85ddbe013556fa12709b3fdedba83a8b312f0d 894 lib32lsan0-dbg_4.9.1-15_amd64.deb
 c619ba0fdd357ab7d83f4237fae41f1c1c43abf2 886 libx32lsan0_4.9.1-15_amd64.deb
 60b93a70accf3a4794c03b84079c9c9ed363948b 898 libx32lsan0-dbg_4.9.1-15_amd64.deb
 4feba81032ab40665d67578457f2b8127aa66862 212490 libtsan0_4.9.1-15_amd64.deb
 4b0d73d3f83189faa46f498ca197cbeff16064e6 752348 libtsan0-dbg_4.9.1-15_amd64.deb
 7effcfdbb56dceceaaecf772f8ce875301db9ebc 82574 libubsan0_4.9.1-15_amd64.deb
 a71845f40fdcb071a6c59fdaf1b6e3dd06f2c526 262970 libubsan0-dbg_4.9.1-15_amd64.deb
 b711d9eb6017c0147aef5d95b5d7758f74adf08b 88164 lib32ubsan0_4.9.1-15_amd64.deb
 51f16259ac93b603918a2dcc025f06f2ed04ff69 212090 lib32ubsan0-dbg_4.9.1-15_amd64.deb
 7f49e50136754200bca6bf1f784d6112ecbbd215 82078 libx32ubsan0_4.9.1-15_amd64.deb
 a7a9980b0437456c6e4f65b2ec37eb653071eca4 255630 libx32ubsan0-dbg_4.9.1-15_amd64.deb
 a15f3c6686c010f93333a8b33a9cc049c4c7bfa9 40004 libcilkrts5_4.9.1-15_amd64.deb
 0ba9cdd2bccf065b1ddce6e0327f45d89c13225a 104184 libcilkrts5-dbg_4.9.1-15_amd64.deb
 0995abdf1c17cdd7e30c57c4468d0d9780714e99 42900 lib32cilkrts5_4.9.1-15_amd64.deb
 78d1d1f5d58080cf752d24d3c47ea17d4c8bee01 91866 lib32cilkrts5-dbg_4.9.1-15_amd64.deb
 5666e1e5ea573769938b8970eb903f5bba2a2d5b 39204 libx32cilkrts5_4.9.1-15_amd64.deb
 a2c76a4f9294e86fe595817d871c1e450b98bb4d 103344 libx32cilkrts5-dbg_4.9.1-15_amd64.deb
 d7740b79c6d35ef71c71d08cb9f8d8b9f2e4ef72 254314 libgfortran3_4.9.1-15_amd64.deb
 37c386d784cf1bee8463ddf85009960c4e1cbe75 601076 libgfortran3-dbg_4.9.1-15_amd64.deb
 3954fa429c73b549f410c5116d09ccca7f682e61 281490 libgfortran-4.9-dev_4.9.1-15_amd64.deb
 c546cceff3ce40b8980197ef9985b7155fa47dc1 235668 lib32gfortran3_4.9.1-15_amd64.deb
 d9d1db79721bc7e13a8615f464f5d46d5b7fc3b9 462332 lib32gfortran3-dbg_4.9.1-15_amd64.deb
 bde649dff75c66ce5e61fe0dd1777dcbee22432a 262048 lib32gfortran-4.9-dev_4.9.1-15_amd64.deb
 496035cdef7b6ffe1304b75e4af45220a516e925 251514 libx32gfortran3_4.9.1-15_amd64.deb
 8f559916e6e61c600ac8d3fc828bfce01331de80 567154 libx32gfortran3-dbg_4.9.1-15_amd64.deb
 e535f678b36788ebb3965c50518a821f7e192f40 282138 libx32gfortran-4.9-dev_4.9.1-15_amd64.deb
 3afd186a3bd5c142da8f00091620977a47df072a 978 gfortran-4.9-multilib_4.9.1-15_amd64.deb
 1413c28c94fcb71d9eb61b68d18184d62c42dfcb 5454280 gfortran-4.9_4.9.1-15_amd64.deb
 74099ccd672aecd3bff16632969348e2075c8169 5663804 gdc-4.9_4.9.1-15_amd64.deb
 aa82f737f33666af2120b9ff29064d26dce4cce7 6563090 libphobos-4.9-dev_4.9.1-15_amd64.deb
 39a474862576925ae08e8fab35ae082a32a5fb20 974 gcc-4.9-multilib_4.9.1-15_amd64.deb
 8a01a7b3ca4a18594efd071133572bdf782de0f6 803104 gcc-4.9-plugin-dev_4.9.1-15_amd64.deb
 dfe2d8b466f08c602f8a1da67f793d3b270df2b6 5335906 gcc-4.9_4.9.1-15_amd64.deb
Checksums-Sha256:
 745b6ba66fff54f879755075fa0ef54a7d27f39095c374c06e0e369351b3ece2 18582 gcc-4.9_4.9.1-15.dsc
 0aa57d190ab1df099a96ef1b4e05604634ddd11c37382917483f52156e78f73c 915543 gcc-4.9_4.9.1-15.diff.gz
 7d4e7fee504acfe3cab5ca3a96e7b43212825b691ecd663e6c7cfe1727d33450 74267154 gcc-4.9-source_4.9.1-15_all.deb
 020e68c3b9982a503eac29b4f7205c5189d29b0b2a00c46f438823a8c4d6d617 10348888 gcj-4.9-jre-lib_4.9.1-15_all.deb
 9c740cafb826ce467c4495718199c1d6744bbcb236666964055b455679caafb0 11661634 gcj-4.9-source_4.9.1-15_all.deb
 874a1cab9b1cccd1fe32bec00f47dc3085d82fb24c3956b39c43cb14ccdaca54 18868276 libgcj-doc_4.9.1-15_all.deb
 36f4221efa34a4795d2bfcc9473fe64ee9386b86ed8e8e0ccd5d2dec57322435 8006138 libstdc++-4.9-doc_4.9.1-15_all.deb
 358567ca1b05edb1d4026248e1da7ab97faff303867f20007856649a49d31926 1443830 gcc-4.9-locales_4.9.1-15_all.deb
 0fd2506306d85072f97b93f953b76cc6a4e99d85b7174ef2db506b8395b29052 157572 gcc-4.9-base_4.9.1-15_amd64.deb
 12a07b72b1c75b0ac2f16626e2a31e76e15c4620059a50fefc0987cba8f3b63a 39462 libgcc1_4.9.1-15_amd64.deb
 94ba5bef0de0e29e55939b705fba8e5a9d3a2e38d7731af9f4b04dc3aca8d790 85564 libgcc1-dbg_4.9.1-15_amd64.deb
 47cda01440f339a3a1a040e287fae493421daa1550668ae9305d960cd5d482d5 2061970 libgcc-4.9-dev_4.9.1-15_amd64.deb
 049f70a8b37dcef0d0a70be0ebd231b21f3c5185e8d7d52fe60e269f8579104d 47992 lib32gcc1_4.9.1-15_amd64.deb
 3896804d182f26ccad56ec9983ce6bb3442f8c9f5bb8c7c15e62744e21c50b00 84416 lib32gcc1-dbg_4.9.1-15_amd64.deb
 28a6f8602d9142021583049419a2ae0fc3732f9265cdc798b03605ad15151772 1911918 lib32gcc-4.9-dev_4.9.1-15_amd64.deb
 c64d07624cfda07f98364587df3cb14e39d15ecc687d02b2959bc32ca5b916d3 38650 libx32gcc1_4.9.1-15_amd64.deb
 e11d231bd135d3d1ed1fb0327254c8b509a4a18ddf09bfb4c321ec309211d5c5 83312 libx32gcc1-dbg_4.9.1-15_amd64.deb
 cf70f7d262bb396193ed62eafe2fdbd1ba77c5a33ab3ed4b2eefab8f37b50c00 1775960 libx32gcc-4.9-dev_4.9.1-15_amd64.deb
 5ad46b5b6e6e24459e87bef22c00da1c964269abd2e32f283e780eea7878f393 129082 libquadmath0_4.9.1-15_amd64.deb
 baa0f178045a6494fab9fee34f6def576a34a2a38cb77dc00787cf173397a034 146634 libquadmath0-dbg_4.9.1-15_amd64.deb
 b511d28a12ece1da1d6afb5f5a4deae3f0bbbf02a66c01fe13f308c471282c46 193218 lib32quadmath0_4.9.1-15_amd64.deb
 ba6dd313ce7361af61f36154b5681741d03ec862d706d8b9d2eb886c41181de7 153836 lib32quadmath0-dbg_4.9.1-15_amd64.deb
 3f4d5a23b4f1bfa46b56b760513bba64b4d35e4cc7a2daa841c9300a07c92649 131818 libx32quadmath0_4.9.1-15_amd64.deb
 1dd21c82ec5b18a13049412f2b8f08250f9bc31e26e0a0e9de342dc67f9e2a04 149656 libx32quadmath0-dbg_4.9.1-15_amd64.deb
 5748cf0436650d719388f51e35d009efb1b12c6bcc889c507090a20d749dfe12 37804 libgomp1_4.9.1-15_amd64.deb
 26530296362d559833ca111ca77a04fd5f4d4b176bfc87a39d21d490f05bb423 86398 libgomp1-dbg_4.9.1-15_amd64.deb
 a29ac643ede2a39c53581db678daf3d3319cd66886c77dcd0a629cde2aa96656 40422 lib32gomp1_4.9.1-15_amd64.deb
 06d3fe15bbe0bff9106a97d5ad4e150af831115e4ad4855afc529dd7b42552f8 84268 lib32gomp1-dbg_4.9.1-15_amd64.deb
 b8aca83285ffbfb936e8f1a5faefb4096647458f83a878c46cd15cf6e1152dfc 37006 libx32gomp1_4.9.1-15_amd64.deb
 801970909fd70626f410f435a97ab8a8cf18b5ed968fef4992e059907741db37 84052 libx32gomp1-dbg_4.9.1-15_amd64.deb
 2d433c0c699e499c4187c4eab06bda5ee77975089aa5b8fff9f71a772907d7fd 29246 libitm1_4.9.1-15_amd64.deb
 8235c79fc67309b9a30c08809c3d913f5491f80ed6bacea2096b3cb79863d04b 191400 libitm1-dbg_4.9.1-15_amd64.deb
 f9fc100b56a0b6a0627ab206a1829dad9693634096108b52638907812ddcf60d 31620 lib32itm1_4.9.1-15_amd64.deb
 c88f9ebafcd909d0616fe574b291b7ee5dc217f900a6248a7e47d3812cb6869f 183074 lib32itm1-dbg_4.9.1-15_amd64.deb
 7590cca3dd1d2e3a375c57ab4d413d44b0fe87706fdd17b1feb47db2c29e7344 28712 libx32itm1_4.9.1-15_amd64.deb
 60f4776325d8a109ccc5a892d6d38973c1f116b89b4c409e5f32815db70504c9 181084 libx32itm1-dbg_4.9.1-15_amd64.deb
 56f0350cd97186d128c44c3b4e2ecac3e8b37fd7a7c3bbc04a958f1ae0f4dcfe 8998 libatomic1_4.9.1-15_amd64.deb
 435f17d39e34e6ac706e1a26cb892902516c94cd79d8348231a17ec4ec11bb57 16082 libatomic1-dbg_4.9.1-15_amd64.deb
 b7041f5f887727eeb16522d7e4b0e5ced89e25050499c12527026d20902cdb6b 8592 lib32atomic1_4.9.1-15_amd64.deb
 22d98e885c5635c28ac1b8a80e60c96d09b5511213e308d0234efcd1ae47ec6f 13412 lib32atomic1-dbg_4.9.1-15_amd64.deb
 998b9aa9a91cd5af8355a261814383a6f9748a723b9f1b77e3d305db378327c3 8986 libx32atomic1_4.9.1-15_amd64.deb
 791ce17ce1b53eebb49e88c46b5b5e8138a943a2364ceb96f1be56c87b04983c 15552 libx32atomic1-dbg_4.9.1-15_amd64.deb
 add1de8d190e47ef78bd38d710e93e6d449bf5f70b5d842f8d5ba50c11171b10 5156944 cpp-4.9_4.9.1-15_amd64.deb
 629ee0c6759886e4fc5b64a5a5f647b7a8389a1bdfe272604e33384c9de3e59a 58042 fixincludes_4.9.1-15_amd64.deb
 1cc128f80c47faae5be424db973578ec586c727b328a866b3b3f8bc9cdc78710 974 gobjc++-4.9-multilib_4.9.1-15_amd64.deb
 812b8e2bbd3b8e23f9e3391054dec07356e66e830918ff6ca5f95e69a939de50 5392202 gobjc++-4.9_4.9.1-15_amd64.deb
 e044a8fa77d04b7dabf5a1970731f050e57fdd4ef46156e660bdb8e72518e218 974 gobjc-4.9-multilib_4.9.1-15_amd64.deb
 514e207aa7945fb778c694da23e3f4f50fb858f309cd10e5efcfd5261ac4a19d 4978222 gobjc-4.9_4.9.1-15_amd64.deb
 81e1523f23493d079ff2a8a790300a697f487c0ae54841867a79fb2c675c63fe 112072 libobjc4_4.9.1-15_amd64.deb
 e50fb366b516e35ec34df8a48d7e4f2085840ef2499acccd766c980aab7d92ec 208082 libobjc4-dbg_4.9.1-15_amd64.deb
 e50c54b510338e32157fab13802a2dc2da3ca086b789e9edaf4a1ee7dc440294 372200 libobjc-4.9-dev_4.9.1-15_amd64.deb
 b36e819af82d57c5ec99f9533af0ec850a21670e9f10e2b379b0313288ed6589 117138 lib32objc4_4.9.1-15_amd64.deb
 85084545aa451e4b3915d15ae4718c8a6647b82d1e71f946cffba40a8355fa6a 182038 lib32objc4-dbg_4.9.1-15_amd64.deb
 2354b4e980b2959cf83caa3b35aaf94293aa08dd98c5b8a7c9c56f9e8efff6bc 327638 lib32objc-4.9-dev_4.9.1-15_amd64.deb
 1d6db1c60d5b8853ce0755089eb1cdd7f90b625e43605e4ee3e6022ef4301a7d 104676 libx32objc4_4.9.1-15_amd64.deb
 1d16b516807ab7b71adbb06434d4d198ff40b37879fd9eedf99f3a1834fd8b14 196408 libx32objc4-dbg_4.9.1-15_amd64.deb
 3c8087493ba35434be7a9e568911f05f83437b1bc4a3bcbbeab9f032fd909b96 338916 libx32objc-4.9-dev_4.9.1-15_amd64.deb
 2fefc9d6d25b62f24c27e45755a8876b025656f9f1dea367efedbe08c87d95df 2462042 libgo5_4.9.1-15_amd64.deb
 2b9dd4e8390024b0c7f03ca2d3afe0c8444b3539cbcf98eac08e7da89d989362 2937346 libgo5-dbg_4.9.1-15_amd64.deb
 d361c3496bf87125b920a9e3f23b70045f387f8eeef2d8986715d8b8bf66e57f 2461642 lib32go5_4.9.1-15_amd64.deb
 8b566828ce035c7f93e34b88de64fa557958d2de3099bc11a11f514c390e3ce8 1831692 lib32go5-dbg_4.9.1-15_amd64.deb
 33869d0e7011d1e43ee142e2faf8d00595d3a48e649ff7c42f13aeeeb7fa4ca1 2403970 libx32go5_4.9.1-15_amd64.deb
 f0e88a6e5fd96ecd961bd56e835caf31cb2ed941c51d683c5018ec6c420a8e3f 2850232 libx32go5-dbg_4.9.1-15_amd64.deb
 8f94e5f964ce7e9914ebf8ede5c490d464f4d27a29129da5ef10fdd2c05332b7 8531614 gccgo-4.9_4.9.1-15_amd64.deb
 50120e9317fb371b2dcd3d36f0431f13782c7f161954d5575387e749e7ebaaa6 6505340 gccgo-4.9-multilib_4.9.1-15_amd64.deb
 cf23bfe6519e3047daaf6c241ab44e65f37aaf0df4f83cb4f8edd3e74354af11 49428 gcj-4.9-jre-headless_4.9.1-15_amd64.deb
 cdd954a0df9a2dad9b8b2e6a45a0bad2b73f5463819a1acd14ae3c90bba4ab98 9237848 libgcj15_4.9.1-15_amd64.deb
 e80c934b3730a254f09201764cf220c9aa9562cec0a08c360fdf7ac3e9d95e46 62244 libgcj15-awt_4.9.1-15_amd64.deb
 70f80d9164d84fbcfae5024de8465bc7160ce1fa70d37187c703f94263e7bb36 1260 gcj-4.9-jre_4.9.1-15_amd64.deb
 40d1e73cb9cf5ae3acdd4e855ef86f47bc9cf86f1ab4bc10a8cebd8d400c3bc9 457158 gcj-4.9-jdk_4.9.1-15_amd64.deb
 c762a5817fd639bab5639770173566511729256ee3442515313f2fbb5364fdfc 607104 libgcj15-dev_4.9.1-15_amd64.deb
 b097df92aa3c62dc558f1b08e3a8887206f06f26b08551b8569cfdaf74a62088 16510078 libgcj15-dbg_4.9.1-15_amd64.deb
 443199699698aa24f053aac7b44c52b9125013886e41949e298cff0a8afca23d 4945604 gcj-4.9_4.9.1-15_amd64.deb
 3f2c548f9504003953c5a451f88ce0a19fc1fec5858417bb95e6488ab92ebe51 990 g++-4.9-multilib_4.9.1-15_amd64.deb
 26491dad4ae223f31ec6c4110c478afa3d882174ba7e51d31ff782bdb6557a35 21499194 g++-4.9_4.9.1-15_amd64.deb
 d16d519bc919eb13c457c474a9c56738e0dc5a44d460ed20fdf8648178e78720 273142 libstdc++6_4.9.1-15_amd64.deb
 57f67f733f66f9923a6b32bdb7d75879b40e35f71b75fd4e57c257bb07ff9107 279370 lib32stdc++6_4.9.1-15_amd64.deb
 0571305935b284086fc914c220868bf6c4bdbb311813946941c410f7b974af67 357880 lib32stdc++-4.9-dev_4.9.1-15_amd64.deb
 f4a59900ac77fefe549f3cc432690b20774c021cdddf5a51165b4c5f42257638 3538918 lib32stdc++6-4.9-dbg_4.9.1-15_amd64.deb
 4259b2647920f55b5783b75b28941cf6e812b7a795304402f75d4fcdfd3b5355 244154 libx32stdc++6_4.9.1-15_amd64.deb
 413984a38391c919b8a72e1052383e28fe8d905663732179bcfa7974ebdbf6f2 347744 libx32stdc++-4.9-dev_4.9.1-15_amd64.deb
 7234ee67b65936cb56bac4de74f1d0b8e2c54acdb7a2a4bbac17340aa59d82ff 3619382 libx32stdc++6-4.9-dbg_4.9.1-15_amd64.deb
 90d122f9263d2c520b50db01e3f88d42d5b90a273bb9d733e61284215b2b583c 1119402 libstdc++-4.9-dev_4.9.1-15_amd64.deb
 c9191f85cfa4f12fc996415d52e0ec51df384bebdcf78ff251dd8132b6f505e9 325960 libstdc++-4.9-pic_4.9.1-15_amd64.deb
 5e0ea05f32e9fa017d8c6aef9ee5a1560e78e931927130f5784b00f94f365f33 2342422 libstdc++6-4.9-dbg_4.9.1-15_amd64.deb
 d709bae3ffee4e56d78dfe1db604209df395be20bd50916220bc19a796fe524e 195396 libasan1_4.9.1-15_amd64.deb
 19efb808be71ec9df0dd7ace5c237687a8e1b9d967f6440168c6b091e13c72c3 680028 libasan1-dbg_4.9.1-15_amd64.deb
 b852e9c6674ad44259e77067b7fade8076816145397af48d035ca8ddd6714e4f 184974 lib32asan1_4.9.1-15_amd64.deb
 ed3e741385aec239414aa18d2a9bbe6458b1ed306848cf1118d0a7a6084e66b7 570510 lib32asan1-dbg_4.9.1-15_amd64.deb
 fc6367c3eb1c5877f77e474f1d4f2807035c4dd604ab4e9de8b482f5c2d28da9 187016 libx32asan1_4.9.1-15_amd64.deb
 b86fc33ef6bd631bfbb18cc2add3a568a64b7300b04e884b72afdbddc5ad253d 657982 libx32asan1-dbg_4.9.1-15_amd64.deb
 49329c006779aafc18aadbfe452ea046b7a25ccfced1639a5b845a7e38b9b1ad 92666 liblsan0_4.9.1-15_amd64.deb
 1ba7aaea09290c31a38d9b54a91a63c280e13eab70f3e2abe22630de8fa459f0 303188 liblsan0-dbg_4.9.1-15_amd64.deb
 840916eaff33203fd4af94c2cd69a811e4eda690fcd2bd2f688bebbaa0591918 908 lib32lsan0_4.9.1-15_amd64.deb
 35b5ac7f741756a69b7f86f5942a20bed53da0fe1719688046117a83810d7129 894 lib32lsan0-dbg_4.9.1-15_amd64.deb
 9655d6b63ef56427b8c52633ec394afb6b070024b5210becf9a442e555e25d91 886 libx32lsan0_4.9.1-15_amd64.deb
 51f16470c97078390a7976de6abb17d48d6b7513230baf7a91271fe1f67b9dfd 898 libx32lsan0-dbg_4.9.1-15_amd64.deb
 bd215142906d2e037f00f6b52b9956375142f86480caf2c660f4333ad3a39930 212490 libtsan0_4.9.1-15_amd64.deb
 cea11499ed07a4b50a2394fec766caf40aa9e527209d1ef6f352fe09a161d1cf 752348 libtsan0-dbg_4.9.1-15_amd64.deb
 a35e308e366af64b3a66a0743860162334f7dd345fef1ab63fb709a8cbe5cffa 82574 libubsan0_4.9.1-15_amd64.deb
 95b1cdcfcc9f5c3fc8f87167ad77dabb262f0f6d3d1a30b732f6e526b7e4daf7 262970 libubsan0-dbg_4.9.1-15_amd64.deb
 6a948ee374ff4cfa48184f1b3bc6ccaf151cdaccac570de0a521584f74149bea 88164 lib32ubsan0_4.9.1-15_amd64.deb
 60ab1af7e882615057a02dd50ab2ff41a4449ec04126d7bbbc48d9454adbaa17 212090 lib32ubsan0-dbg_4.9.1-15_amd64.deb
 8f8c213e43a80539613f08974e336920496312c14f9d9a34f90b6c277c89dace 82078 libx32ubsan0_4.9.1-15_amd64.deb
 7865869ac17fb6c245e40de6a6c72c0af0a482a89b1273d52e813516ac25c00c 255630 libx32ubsan0-dbg_4.9.1-15_amd64.deb
 3a909294de0c37162c7321ee8f833203c82100e8055f63e2d1a085efd7512926 40004 libcilkrts5_4.9.1-15_amd64.deb
 2850001265cc2d5577630c10cc541ba0980468035cb04a4a375196ac33f7d944 104184 libcilkrts5-dbg_4.9.1-15_amd64.deb
 42bb8898ccb5a820628303a883405eb19fbc70fc2c9e111bae397bf1adb2748c 42900 lib32cilkrts5_4.9.1-15_amd64.deb
 d5b1a3f559f395bb3d6600939ba5866b9fec628ad551d3cdfe274e38f3e265dc 91866 lib32cilkrts5-dbg_4.9.1-15_amd64.deb
 81f64e182e761437c7437a3b2ccafa9f47457b9a4e4dfc1236df98e4257e6503 39204 libx32cilkrts5_4.9.1-15_amd64.deb
 6174a7087c330e7371aa3d6cb40889c16f56b5d71800c8b62adbc058e7c3f461 103344 libx32cilkrts5-dbg_4.9.1-15_amd64.deb
 9a35489f3fb05ef1d670acf962023dd796e08e2d58fd606cfc4039cc587edc16 254314 libgfortran3_4.9.1-15_amd64.deb
 abee36e7b6619c1006305932daa0821ce41cd84d0d5313d2be2ccc92682cf021 601076 libgfortran3-dbg_4.9.1-15_amd64.deb
 fdd9b5cbaab1b025d0313ba7e53dffd26b5ad161c416203541ab8375237716f4 281490 libgfortran-4.9-dev_4.9.1-15_amd64.deb
 d079f3e3f64f4514c5570d4be0e9db5252ef3345a7f121a301505aa76f818585 235668 lib32gfortran3_4.9.1-15_amd64.deb
 554574e262be690ec307f27f1dd3f059cb5eb4031b4a5930891ea7919d357c6d 462332 lib32gfortran3-dbg_4.9.1-15_amd64.deb
 f80c56181bfe1d9cf547569e3cd059275f372ce0f207f961b0ec766d17cd3886 262048 lib32gfortran-4.9-dev_4.9.1-15_amd64.deb
 a53885ba0825f5672ed773fdfe8c5224ffee820219f7aabc9f5733b4a7f71063 251514 libx32gfortran3_4.9.1-15_amd64.deb
 13a22392967424f43d4676ebd1826a94a4ebc5ef4b013b96576c9d09796fa731 567154 libx32gfortran3-dbg_4.9.1-15_amd64.deb
 73549df79595d029b00e0ba82c912111c23bcb51a78b9eec91b984970b9b7b43 282138 libx32gfortran-4.9-dev_4.9.1-15_amd64.deb
 6666b9a01b9cc54ef40ed765aeddcff4b46a6603f2190efd68055ede03e0598f 978 gfortran-4.9-multilib_4.9.1-15_amd64.deb
 9b57a5d8c11d53be9513a46d32f943a1e1ec882a56f981d47b7e583377d436aa 5454280 gfortran-4.9_4.9.1-15_amd64.deb
 b0fac90269e62058272c3a915784b640dbf2c05bf57321ab16973a3f1b72cb20 5663804 gdc-4.9_4.9.1-15_amd64.deb
 6d97fdd2957355d32775682f034e02276137289d03ada66d89299c914f969d88 6563090 libphobos-4.9-dev_4.9.1-15_amd64.deb
 0389f2e18c6c38a32ba183226de90c4638680fa10d23771fb7482d9478ce4bdc 974 gcc-4.9-multilib_4.9.1-15_amd64.deb
 8dc14791c577c879fa067ade509f9ed940fb56dc4cde80f89db0b672231cba9a 803104 gcc-4.9-plugin-dev_4.9.1-15_amd64.deb
 72a1532931fb77a1dd2052fd2453d88c833d42f17fd3d4675208f76c583efe85 5335906 gcc-4.9_4.9.1-15_amd64.deb
Files:
 28c90d5898b3acd5a1c711e0f585f69a 74267154 devel optional gcc-4.9-source_4.9.1-15_all.deb
 428a060af024477ec035cc84346edebe 10348888 java optional gcj-4.9-jre-lib_4.9.1-15_all.deb
 b73404001c6836eca1bf54840ab84d86 11661634 java optional gcj-4.9-source_4.9.1-15_all.deb
 3381b28bb4c07c69e4899ef00b2eecad 18868276 doc optional libgcj-doc_4.9.1-15_all.deb
 9e964288fc46ecc23b232d4ca00ed6b6 8006138 doc optional libstdc++-4.9-doc_4.9.1-15_all.deb
 ae3abad7eb3d41f4d73b19a0f06806bf 1443830 devel optional gcc-4.9-locales_4.9.1-15_all.deb
 c7644814323bc1fbf2f8415958873ca6 157572 libs required gcc-4.9-base_4.9.1-15_amd64.deb
 be12a0cfcbb4dd8c2a2e88ae63c82e90 39462 libs required libgcc1_4.9.1-15_amd64.deb
 46f653801817eb57a8b566d02eb89447 85564 debug extra libgcc1-dbg_4.9.1-15_amd64.deb
 ac60d6afc788f49bd9280412aba56f12 2061970 libdevel optional libgcc-4.9-dev_4.9.1-15_amd64.deb
 9dfdf4ef1683a495a728b4dbbfbebfa2 47992 libs optional lib32gcc1_4.9.1-15_amd64.deb
 309236c75eaadd25473b2edb53287457 84416 debug extra lib32gcc1-dbg_4.9.1-15_amd64.deb
 710c0c265e06c5aa68feac67bad93e36 1911918 libdevel optional lib32gcc-4.9-dev_4.9.1-15_amd64.deb
 1dd9332ff0b8c7c0fdba5f0ab0057ced 38650 libs optional libx32gcc1_4.9.1-15_amd64.deb
 cd853b2eaead230f9123ba6fa7457871 83312 debug extra libx32gcc1-dbg_4.9.1-15_amd64.deb
 b79c78609c4de1a91475edf363e900fa 1775960 libdevel optional libx32gcc-4.9-dev_4.9.1-15_amd64.deb
 7bab07a9c05b5496cd2acaeabf5e90e9 129082 libs optional libquadmath0_4.9.1-15_amd64.deb
 e67c62be9203b298b172e8656ee49d27 146634 debug extra libquadmath0-dbg_4.9.1-15_amd64.deb
 44b9be9ef397a183e3289dd478cc4a97 193218 libs optional lib32quadmath0_4.9.1-15_amd64.deb
 5fd844b6325c06cb380fe6e820d18557 153836 debug extra lib32quadmath0-dbg_4.9.1-15_amd64.deb
 312cc1fda3d6925e53b7f5591670c364 131818 libs optional libx32quadmath0_4.9.1-15_amd64.deb
 53ce591928a57432c8e4b5cb0f8a1a72 149656 debug extra libx32quadmath0-dbg_4.9.1-15_amd64.deb
 ed410013eab348855446241a82800976 37804 libs optional libgomp1_4.9.1-15_amd64.deb
 2baeba2e1f512079173fcfe249e159a2 86398 debug extra libgomp1-dbg_4.9.1-15_amd64.deb
 b74afd2f047c4aa4f35f2cc417dab72b 40422 libs optional lib32gomp1_4.9.1-15_amd64.deb
 1b5ff1f8c928fa936adf235b93a01e36 84268 debug extra lib32gomp1-dbg_4.9.1-15_amd64.deb
 2b6b7d71dbc7ba3048027ac66ad98cea 37006 libs optional libx32gomp1_4.9.1-15_amd64.deb
 79565be1da0939c9343f25fd8d804c40 84052 debug extra libx32gomp1-dbg_4.9.1-15_amd64.deb
 f67b2a71b3e7b0e8a01f385f54b2855e 29246 libs optional libitm1_4.9.1-15_amd64.deb
 c4621b9d081d7438461265f52b49886b 191400 debug extra libitm1-dbg_4.9.1-15_amd64.deb
 2a9d3b3a93591584346e6ac8096fab39 31620 libs optional lib32itm1_4.9.1-15_amd64.deb
 f366960d7b1fa35b738cdaa685dba568 183074 debug extra lib32itm1-dbg_4.9.1-15_amd64.deb
 317b089b3af03a1d74eb3113e52010db 28712 libs optional libx32itm1_4.9.1-15_amd64.deb
 90e0540e3e0f5371b8eca097bc724a72 181084 debug extra libx32itm1-dbg_4.9.1-15_amd64.deb
 e981ef24c7a59432ce68e31d1070f536 8998 libs optional libatomic1_4.9.1-15_amd64.deb
 70cdfd807a32f490a3155857874e2798 16082 debug extra libatomic1-dbg_4.9.1-15_amd64.deb
 626e3843c553390866df0b52195f3a5c 8592 libs optional lib32atomic1_4.9.1-15_amd64.deb
 48a621565e841bf6bd3bb648bcf61c76 13412 debug extra lib32atomic1-dbg_4.9.1-15_amd64.deb
 d166e703fa19a937044e2bac8c19a7a8 8986 libs optional libx32atomic1_4.9.1-15_amd64.deb
 53c2fba3a54283dca1a30b58d4d0d1fa 15552 debug extra libx32atomic1-dbg_4.9.1-15_amd64.deb
 6fc889b7aa4d9da6f329c2f92cf59c31 5156944 interpreters optional cpp-4.9_4.9.1-15_amd64.deb
 a245c9686483082912ea52665b89aaeb 58042 devel optional fixincludes_4.9.1-15_amd64.deb
 fc5956fd8d1c7910346a0211af6d716d 974 devel optional gobjc++-4.9-multilib_4.9.1-15_amd64.deb
 3cfad97c16f341c876a30b27bd80e646 5392202 devel optional gobjc++-4.9_4.9.1-15_amd64.deb
 11cdd641ec547c74583c5982e303bcd7 974 devel optional gobjc-4.9-multilib_4.9.1-15_amd64.deb
 8273825dfa7458ddde3ba3962ce386ff 4978222 devel optional gobjc-4.9_4.9.1-15_amd64.deb
 fc583373f75bbfba7eff23fc8373236a 112072 libs optional libobjc4_4.9.1-15_amd64.deb
 230b96fdac2b0e60521a503d5dae73e2 208082 debug extra libobjc4-dbg_4.9.1-15_amd64.deb
 30c51db6342988f5122e78c9ab9a4aaa 372200 libdevel optional libobjc-4.9-dev_4.9.1-15_amd64.deb
 b460e3bf03d0fa56826a42311502a5ec 117138 libs optional lib32objc4_4.9.1-15_amd64.deb
 ad23ac09eff4410fad44cf807eeb5199 182038 debug extra lib32objc4-dbg_4.9.1-15_amd64.deb
 e124d7ee578e190dd68c43bda9e3f4e3 327638 libdevel optional lib32objc-4.9-dev_4.9.1-15_amd64.deb
 90077254b3f31f855df4d024e2d12a2a 104676 libs optional libx32objc4_4.9.1-15_amd64.deb
 c6826ba8bc49cd6d138eb0f0475437cb 196408 debug extra libx32objc4-dbg_4.9.1-15_amd64.deb
 b7b01227ca3f070f8f3ce0601c4c62f3 338916 libdevel optional libx32objc-4.9-dev_4.9.1-15_amd64.deb
 1ff5d31654cf658ee2545eeec9fe1b35 2462042 libs optional libgo5_4.9.1-15_amd64.deb
 ee621dc0a6f68d8fabeae496501cddab 2937346 debug extra libgo5-dbg_4.9.1-15_amd64.deb
 a1ae99e31e53c66814d3ad1f071545db 2461642 libs optional lib32go5_4.9.1-15_amd64.deb
 e4c304ecd88a7700bb112eeae97493c1 1831692 debug extra lib32go5-dbg_4.9.1-15_amd64.deb
 f94b5d641a98a0c1eaeb153ddd6940f2 2403970 libs optional libx32go5_4.9.1-15_amd64.deb
 6c37d249257c4a2a27d2ae42e0dcc77e 2850232 debug extra libx32go5-dbg_4.9.1-15_amd64.deb
 06ba2b1f33130e5569aab87dc612ea5f 8531614 devel optional gccgo-4.9_4.9.1-15_amd64.deb
 736c398d565f33b081618548afdcdb65 6505340 devel optional gccgo-4.9-multilib_4.9.1-15_amd64.deb
 c6ffee5c763b369e4abcd801402dfaec 49428 java optional gcj-4.9-jre-headless_4.9.1-15_amd64.deb
 94779fa383715c0ad880b405ece9b7b9 9237848 libs optional libgcj15_4.9.1-15_amd64.deb
 fd5bcfbfaddee2d810cae9062c98ef8e 62244 libs optional libgcj15-awt_4.9.1-15_amd64.deb
 f02833072bb6c7d8bccebb1aa8a57704 1260 java optional gcj-4.9-jre_4.9.1-15_amd64.deb
 559992a2d48e211f9c39c95c5d9ca0c2 457158 java optional gcj-4.9-jdk_4.9.1-15_amd64.deb
 b63d8a2023f10d4b2094a925cea36dc1 607104 libdevel optional libgcj15-dev_4.9.1-15_amd64.deb
 98bc3bda60d8bee0b88398aca95fc5e1 16510078 debug extra libgcj15-dbg_4.9.1-15_amd64.deb
 6dacf060572365439adf82c7f02ad595 4945604 java optional gcj-4.9_4.9.1-15_amd64.deb
 55bb839fb1b5cdd2c64879865de0dc9e 990 devel optional g++-4.9-multilib_4.9.1-15_amd64.deb
 1c7a1d799175dc39f6dafd53a6a2d822 21499194 devel optional g++-4.9_4.9.1-15_amd64.deb
 fba1423a413add711592f4449749030d 273142 libs important libstdc++6_4.9.1-15_amd64.deb
 591a749b27d7ea9b977b4bff220550c8 279370 libs extra lib32stdc++6_4.9.1-15_amd64.deb
 fff41d22d3da953f3735471cb7eb3d38 357880 libdevel optional lib32stdc++-4.9-dev_4.9.1-15_amd64.deb
 b5ab9038516320a3e139c43eb8f91dbc 3538918 debug extra lib32stdc++6-4.9-dbg_4.9.1-15_amd64.deb
 5a8009281ae223f4f19f12b1ebc3c60b 244154 libs optional libx32stdc++6_4.9.1-15_amd64.deb
 658c4804a15132fd8e3ae0960609f255 347744 libdevel optional libx32stdc++-4.9-dev_4.9.1-15_amd64.deb
 d6355c327f190b40859b04530edb6339 3619382 debug extra libx32stdc++6-4.9-dbg_4.9.1-15_amd64.deb
 b97b5e1e6fa34d7bd22ab36cfb6f845d 1119402 libdevel optional libstdc++-4.9-dev_4.9.1-15_amd64.deb
 8ed30e883da9f1bedb74f3acc55418a1 325960 libdevel extra libstdc++-4.9-pic_4.9.1-15_amd64.deb
 d93033048aa52a0ed2f89bd864c11f85 2342422 debug extra libstdc++6-4.9-dbg_4.9.1-15_amd64.deb
 4b78a0a6fb9884f5dc087939ec877465 195396 libs optional libasan1_4.9.1-15_amd64.deb
 f39bc38a3f299826bd06e63bc5ee1cf8 680028 debug extra libasan1-dbg_4.9.1-15_amd64.deb
 7abbe1bb83e4f0a3370756ec7c7c24ac 184974 libs optional lib32asan1_4.9.1-15_amd64.deb
 33028d6842f62296300162a155e2ea5a 570510 debug extra lib32asan1-dbg_4.9.1-15_amd64.deb
 5e78e28da5bdba78796821e0c22c26e8 187016 libs optional libx32asan1_4.9.1-15_amd64.deb
 60b8b39302f7b58938a66dd7ebaddbf8 657982 debug extra libx32asan1-dbg_4.9.1-15_amd64.deb
 90fc3c93fa819c941e5e00615ada3f79 92666 libs optional liblsan0_4.9.1-15_amd64.deb
 aef9ff49ecaaee1001b60918b9a3b3d0 303188 debug extra liblsan0-dbg_4.9.1-15_amd64.deb
 98d6bf95a4c758ff963e3230f7461e8a 908 libs optional lib32lsan0_4.9.1-15_amd64.deb
 a68b9dc1b3805c43fbd56822d6d06f69 894 debug extra lib32lsan0-dbg_4.9.1-15_amd64.deb
 bb3184e64c3c383d051d60f520b1f7a2 886 libs optional libx32lsan0_4.9.1-15_amd64.deb
 95b99dbcc5f23b93e5bc08361e7da607 898 debug extra libx32lsan0-dbg_4.9.1-15_amd64.deb
 938d6a70472dc37a2d00a8789d9b87ea 212490 libs optional libtsan0_4.9.1-15_amd64.deb
 484bff197a120812ce2eb6be82d50ca0 752348 debug extra libtsan0-dbg_4.9.1-15_amd64.deb
 a3e9fb8f38ea7d7a712352b64b5963ab 82574 libs optional libubsan0_4.9.1-15_amd64.deb
 97e93ea722e11273434b553fca515f1c 262970 debug extra libubsan0-dbg_4.9.1-15_amd64.deb
 067cc0fc12f285cac33a7474b8bc4e5f 88164 libs optional lib32ubsan0_4.9.1-15_amd64.deb
 d01c4c51791ff9d63e5266762c379571 212090 debug extra lib32ubsan0-dbg_4.9.1-15_amd64.deb
 c0542c3a264228f75b9ae67442ee6171 82078 libs optional libx32ubsan0_4.9.1-15_amd64.deb
 caf1c4c1b0b1fae9bfd77d1f2db03c0e 255630 debug extra libx32ubsan0-dbg_4.9.1-15_amd64.deb
 580beb52d28e9d4a0762f0a5c772a848 40004 libs optional libcilkrts5_4.9.1-15_amd64.deb
 995ebcfaf0ba126706de9c3a291b30a8 104184 debug extra libcilkrts5-dbg_4.9.1-15_amd64.deb
 02f30d604f4c2b25d06d6d6c24572a7f 42900 libs optional lib32cilkrts5_4.9.1-15_amd64.deb
 7e774e55341372d96cfe916c91c42c62 91866 debug extra lib32cilkrts5-dbg_4.9.1-15_amd64.deb
 6a519824927c5a63983229ca4fd0e9b7 39204 libs optional libx32cilkrts5_4.9.1-15_amd64.deb
 4a66aed06cfe5f5e62e78397a01aca6a 103344 debug extra libx32cilkrts5-dbg_4.9.1-15_amd64.deb
 d1baf951a6fb878d63e377292b7e11b8 254314 libs optional libgfortran3_4.9.1-15_amd64.deb
 ad0da20aa60a41791476a4c2c4e43c68 601076 debug extra libgfortran3-dbg_4.9.1-15_amd64.deb
 149df1ca7554cf21767279cf5d28049f 281490 libdevel optional libgfortran-4.9-dev_4.9.1-15_amd64.deb
 15bfc96fe11d75a66d3da5a177675a16 235668 libs optional lib32gfortran3_4.9.1-15_amd64.deb
 3419d37839ff410985f1325165e58525 462332 debug extra lib32gfortran3-dbg_4.9.1-15_amd64.deb
 1d8ca5b0e406e13603b54b13ff1919c1 262048 libdevel optional lib32gfortran-4.9-dev_4.9.1-15_amd64.deb
 36c391bfea4c36b221afdd755f0e89b4 251514 libs optional libx32gfortran3_4.9.1-15_amd64.deb
 f72050f04825e75802529fdc0686e6ba 567154 debug extra libx32gfortran3-dbg_4.9.1-15_amd64.deb
 962b5477af8c0d384f2d4210fafbf1d7 282138 libdevel optional libx32gfortran-4.9-dev_4.9.1-15_amd64.deb
 a1efd421c67526b1aa21337ac57a7141 978 devel optional gfortran-4.9-multilib_4.9.1-15_amd64.deb
 c9226768bc78c46beb90a8f7bf9db19a 5454280 devel optional gfortran-4.9_4.9.1-15_amd64.deb
 18e8bc4b9d6fb92c1874c4593a196861 5663804 devel optional gdc-4.9_4.9.1-15_amd64.deb
 daf6fbdbb44092534419e7a963cb3145 6563090 libdevel optional libphobos-4.9-dev_4.9.1-15_amd64.deb
 150274d433994db693ad83c60b1e51f2 974 devel optional gcc-4.9-multilib_4.9.1-15_amd64.deb
 9cef013ec2214199cd0bde0da9f46236 803104 devel optional gcc-4.9-plugin-dev_4.9.1-15_amd64.deb
 2d32f42c07b9a5e5ec3cb22c76b07a9e 5335906 devel optional gcc-4.9_4.9.1-15_amd64.deb
 adec6619fba6f726dcfd5348e042afeb 18582 devel optional gcc-4.9_4.9.1-15.dsc
 173ce115633433e4a1961ccc0e99d169 915543 devel optional gcc-4.9_4.9.1-15.diff.gz

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

iEYEARECAAYFAlQcof4ACgkQStlRaw+TLJw8igCfaIqTmS/AarIV7RRNtoBtg8a/
Y9kAnjDJm6xeHIydbmJwvl/g0t/hYAtW
=1Xue
-----END PGP SIGNATURE-----

--- End Message ---

Reply to: