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

Bug#579780: marked as done (powerpcspe: Preliminary architecture port and minor bugfix)



Your message dated Wed, 19 May 2010 16:35:13 +0000
with message-id <E1OEmEj-0003p6-32@ries.debian.org>
and subject line Bug#579780: fixed in gcc-4.5 4.5.0-3
has caused the Debian Bug report #579780,
regarding powerpcspe: Preliminary architecture port and minor bugfix
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.)


-- 
579780: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=579780
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: gcc-4.4
Version: 4.4.2-9
Severity: normal
Tags: sid patch

The 'powerpcspe' architecture is a binary-incompatible variant of
PowerPC/POWER designed and supported by FreeScale and IBM.  It is also
known under the trade names "e500"/"MPC8500" and "e200"/"MPC5xx".

This architecture was added to dpkg in commit feb5792 on 2010/04/30:
  http://git.debian.org/?p=dpkg/dpkg.git;a=commitdiff;h=feb5792

Additional information can be found at:
  http://en.wikipedia.org/wiki/PowerPC_e500
  http://en.wikipedia.org/wiki/PowerPC_e200

In particular, the 'powerpcspe' architecture lacks the classic FPU with
dedicated FPRs found on most other PowerPC systems.  It is replaced with
a set of "SPE" instructions which perform floating-point operations on
the integer registers.

In an unfortunate choice of architecture design, the instructions used
for the "SPE" operations overlap with those for the AltiVec unit on most
other modern PowerPC cores.

The "e500v2"-series chips have 64-bit GPRs, where the high 32-bits are
accesible only via the special "SPE" instructions, allowing them to make
efficient use of the "double" datatype.

The relative rare "e500v1"-series chips have only 32-bit GPRs, and
require software traps and emulation to support native "double".

The "e200z3" and "e200z6" chips have no support for floating point at
all, but with software traps and emulation are binary-compatible with
the "e500"-series chips.

The Debian port to this architecture specifically chooses to optimize
for the higher-end chips (e500v2), as most of the others are targeted at
automotive applications or no longer in production.

GCC by default builds correctly with full support for the e500v2 as long
as the following options are passed to "configure":
  --with-cpu=8548
  --enable-e500_double
  --with-long-double-128

The only changes needed are to extend a few matches on "powerpc ppc64"
to also match "powerpcspe" to ensure that we include essential headers.
One of those headers in particular (spe.h) is necessary to successfully
build EGLIBC's floating-point support.

At this time the 'powerpcspe' architecture port is still very much an
unofficial port.  While we hope that will change in the future, it is
entirely possible that the embedded niche of the processor will make
such an official Debian port problematic.

Signed-off-by: Kyle Moffett <Kyle.D.Moffett@boeing.com>
---
 debian/rules.d/binary-gcc-cross.mk |    4 ++--
 debian/rules.d/binary-gcc.mk       |    2 +-
 debian/rules.d/binary-java.mk      |    2 +-
 debian/rules2                      |    4 ++++
 4 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/debian/rules.d/binary-gcc-cross.mk b/debian/rules.d/binary-gcc-cross.mk
index a39e84f..b642ba2 100644
--- a/debian/rules.d/binary-gcc-cross.mk
+++ b/debian/rules.d/binary-gcc-cross.mk
@@ -71,8 +71,8 @@ ifeq ($(DEB_TARGET_ARCH),m68k)
     files_gcc += $(gcc_lib_dir)/include/math-68881.h
 endif
 
-ifeq ($(DEB_TARGET_ARCH),$(findstring $(DEB_TARGET_ARCH),powerpc ppc64))
-    files_gcc += $(gcc_lib_dir)/include/{altivec.h,ppc-asm.h}
+ifeq ($(DEB_TARGET_ARCH),$(findstring $(DEB_TARGET_ARCH),powerpc ppc64 powerpcspe))
+    files_gcc += $(gcc_lib_dir)/include/{altivec.h,ppc-asm.h,spe.h}
 endif
 
 usr_doc_files = debian/README.Bugs \
diff --git a/debian/rules.d/binary-gcc.mk b/debian/rules.d/binary-gcc.mk
index 55af73b..20e36ff 100644
--- a/debian/rules.d/binary-gcc.mk
+++ b/debian/rules.d/binary-gcc.mk
@@ -74,7 +74,7 @@ ifeq ($(DEB_HOST_ARCH),m68k)
     files_gcc += $(gcc_lib_dir)/include/math-68881.h
 endif
 
-ifeq ($(DEB_TARGET_ARCH),$(findstring $(DEB_TARGET_ARCH),powerpc ppc64))
+ifeq ($(DEB_TARGET_ARCH),$(findstring $(DEB_TARGET_ARCH),powerpc ppc64 powerpcspe))
     files_gcc += $(gcc_lib_dir)/include/{altivec.h,ppc-asm.h,spe.h}
 endif
 
diff --git a/debian/rules.d/binary-java.mk b/debian/rules.d/binary-java.mk
index 7f0249a..f2b9f94 100644
--- a/debian/rules.d/binary-java.mk
+++ b/debian/rules.d/binary-java.mk
@@ -236,7 +236,7 @@ ifeq ($(with_standalone_gcj),yes)
     files_gcj += $(gcc_lib_dir)/include/math-68881.h
   endif
 
-  ifeq ($(DEB_TARGET_ARCH),$(findstring $(DEB_TARGET_ARCH),powerpc ppc64))
+  ifeq ($(DEB_TARGET_ARCH),$(findstring $(DEB_TARGET_ARCH),powerpc ppc64 powerpcspe))
     files_gcj += $(gcc_lib_dir)/include/{altivec.h,ppc-asm.h,spe.h}
   endif
 
diff --git a/debian/rules2 b/debian/rules2
index 252c671..01bbbca 100644
--- a/debian/rules2
+++ b/debian/rules2
@@ -260,6 +260,10 @@ ifneq (,$(findstring powerpc-linux,$(DEB_TARGET_GNU_TYPE)))
     endif
 endif
 
+ifeq ($(findstring powerpcspe,$(DEB_TARGET_ARCH)),powerpcspe)
+  CONFARGS += --with-cpu=8548 --enable-e500_double --with-long-double-128
+endif
+
 ifneq (,$(findstring softfloat,$(DEB_TARGET_GNU_CPU)))
   CONFARGS += --with-float=soft
 endif
-- 
1.7.0
--- Begin Message ---
The 'powerpcspe' architecture is a binary-incompatible variant of
PowerPC/POWER designed and supported by FreeScale and IBM.  It is also
known under the trade names "e500"/"MPC8500" and "e200"/"MPC5xx".

This architecture was added to dpkg in commit feb5792 on 2010/04/30:
  http://git.debian.org/?p=dpkg/dpkg.git;a=commitdiff;h=feb5792

Additional information can be found at:
  http://en.wikipedia.org/wiki/PowerPC_e500
  http://en.wikipedia.org/wiki/PowerPC_e200

In particular, the 'powerpcspe' architecture lacks the classic FPU with
dedicated FPRs found on most other PowerPC systems.  It is replaced with
a set of "SPE" instructions which perform floating-point operations on
the integer registers.

In an unfortunate choice of architecture design, the instructions used
for the "SPE" operations overlap with those for the AltiVec unit on most
other modern PowerPC cores.

The "e500v2"-series chips have 64-bit GPRs, where the high 32-bits are
accesible only via the special "SPE" instructions, allowing them to make
efficient use of the "double" datatype.

The relative rare "e500v1"-series chips have only 32-bit GPRs, and
require software traps and emulation to support native "double".

The "e200z3" and "e200z6" chips have no support for floating point at
all, but with software traps and emulation are binary-compatible with
the "e500"-series chips.

The Debian port to this architecture specifically chooses to optimize
for the higher-end chips (e500v2), as most of the others are targeted at
automotive applications or no longer in production.

GCC by default builds correctly with full support for the e500v2 as long
as the following options are passed to "configure":
  --with-cpu=8548
  --enable-e500_double
  --with-long-double-128

The only changes needed are to extend a few matches on "powerpc ppc64"
to also match "powerpcspe" to ensure that we include essential headers.
One of those headers in particular (spe.h) is necessary to successfully
build EGLIBC's floating-point support.

At this time the 'powerpcspe' architecture port is still very much an
unofficial port.  While we hope that will change in the future, it is
entirely possible that the embedded niche of the processor will make
such an official Debian port problematic.

Signed-off-by: Kyle Moffett <Kyle.D.Moffett@boeing.com>
---
 debian/rules.d/binary-gcc-cross.mk |    4 ++--
 debian/rules.d/binary-gcc.mk       |    2 +-
 debian/rules.d/binary-java.mk      |    2 +-
 debian/rules2                      |    4 ++++
 4 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/debian/rules.d/binary-gcc-cross.mk b/debian/rules.d/binary-gcc-cross.mk
index a39e84f..b642ba2 100644
--- a/debian/rules.d/binary-gcc-cross.mk
+++ b/debian/rules.d/binary-gcc-cross.mk
@@ -71,8 +71,8 @@ ifeq ($(DEB_TARGET_ARCH),m68k)
     files_gcc += $(gcc_lib_dir)/include/math-68881.h
 endif
 
-ifeq ($(DEB_TARGET_ARCH),$(findstring $(DEB_TARGET_ARCH),powerpc ppc64))
-    files_gcc += $(gcc_lib_dir)/include/{altivec.h,ppc-asm.h}
+ifeq ($(DEB_TARGET_ARCH),$(findstring $(DEB_TARGET_ARCH),powerpc ppc64 powerpcspe))
+    files_gcc += $(gcc_lib_dir)/include/{altivec.h,ppc-asm.h,spe.h}
 endif
 
 usr_doc_files = debian/README.Bugs \
diff --git a/debian/rules.d/binary-gcc.mk b/debian/rules.d/binary-gcc.mk
index 55af73b..20e36ff 100644
--- a/debian/rules.d/binary-gcc.mk
+++ b/debian/rules.d/binary-gcc.mk
@@ -74,7 +74,7 @@ ifeq ($(DEB_HOST_ARCH),m68k)
     files_gcc += $(gcc_lib_dir)/include/math-68881.h
 endif
 
-ifeq ($(DEB_TARGET_ARCH),$(findstring $(DEB_TARGET_ARCH),powerpc ppc64))
+ifeq ($(DEB_TARGET_ARCH),$(findstring $(DEB_TARGET_ARCH),powerpc ppc64 powerpcspe))
     files_gcc += $(gcc_lib_dir)/include/{altivec.h,ppc-asm.h,spe.h}
 endif
 
diff --git a/debian/rules.d/binary-java.mk b/debian/rules.d/binary-java.mk
index 7f0249a..f2b9f94 100644
--- a/debian/rules.d/binary-java.mk
+++ b/debian/rules.d/binary-java.mk
@@ -236,7 +236,7 @@ ifeq ($(with_standalone_gcj),yes)
     files_gcj += $(gcc_lib_dir)/include/math-68881.h
   endif
 
-  ifeq ($(DEB_TARGET_ARCH),$(findstring $(DEB_TARGET_ARCH),powerpc ppc64))
+  ifeq ($(DEB_TARGET_ARCH),$(findstring $(DEB_TARGET_ARCH),powerpc ppc64 powerpcspe))
     files_gcj += $(gcc_lib_dir)/include/{altivec.h,ppc-asm.h,spe.h}
   endif
 
diff --git a/debian/rules2 b/debian/rules2
index 252c671..01bbbca 100644
--- a/debian/rules2
+++ b/debian/rules2
@@ -260,6 +260,10 @@ ifneq (,$(findstring powerpc-linux,$(DEB_TARGET_GNU_TYPE)))
     endif
 endif
 
+ifeq ($(findstring powerpcspe,$(DEB_TARGET_ARCH)),powerpcspe)
+  CONFARGS += --with-cpu=8548 --enable-e500_double --with-long-double-128
+endif
+
 ifneq (,$(findstring softfloat,$(DEB_TARGET_GNU_CPU)))
   CONFARGS += --with-float=soft
 endif
-- 
1.7.0


--- End Message ---

--- End Message ---
--- Begin Message ---
Source: gcc-4.5
Source-Version: 4.5.0-3

We believe that the bug you reported is fixed in the latest version of
gcc-4.5, which is due to be installed in the Debian FTP archive:

cpp-4.5_4.5.0-3_i386.deb
  to main/g/gcc-4.5/cpp-4.5_4.5.0-3_i386.deb
fixincludes_4.5.0-3_i386.deb
  to main/g/gcc-4.5/fixincludes_4.5.0-3_i386.deb
g++-4.5-multilib_4.5.0-3_i386.deb
  to main/g/gcc-4.5/g++-4.5-multilib_4.5.0-3_i386.deb
g++-4.5_4.5.0-3_i386.deb
  to main/g/gcc-4.5/g++-4.5_4.5.0-3_i386.deb
gcc-4.5-base_4.5.0-3_i386.deb
  to main/g/gcc-4.5/gcc-4.5-base_4.5.0-3_i386.deb
gcc-4.5-locales_4.5.0-3_all.deb
  to main/g/gcc-4.5/gcc-4.5-locales_4.5.0-3_all.deb
gcc-4.5-multilib_4.5.0-3_i386.deb
  to main/g/gcc-4.5/gcc-4.5-multilib_4.5.0-3_i386.deb
gcc-4.5-plugin-dev_4.5.0-3_i386.deb
  to main/g/gcc-4.5/gcc-4.5-plugin-dev_4.5.0-3_i386.deb
gcc-4.5-source_4.5.0-3_all.deb
  to main/g/gcc-4.5/gcc-4.5-source_4.5.0-3_all.deb
gcc-4.5_4.5.0-3.diff.gz
  to main/g/gcc-4.5/gcc-4.5_4.5.0-3.diff.gz
gcc-4.5_4.5.0-3.dsc
  to main/g/gcc-4.5/gcc-4.5_4.5.0-3.dsc
gcc-4.5_4.5.0-3_i386.deb
  to main/g/gcc-4.5/gcc-4.5_4.5.0-3_i386.deb
gcj-4.5-base_4.5.0-3_i386.deb
  to main/g/gcc-4.5/gcj-4.5-base_4.5.0-3_i386.deb
gcj-4.5-jdk_4.5.0-3_i386.deb
  to main/g/gcc-4.5/gcj-4.5-jdk_4.5.0-3_i386.deb
gcj-4.5-jre-headless_4.5.0-3_i386.deb
  to main/g/gcc-4.5/gcj-4.5-jre-headless_4.5.0-3_i386.deb
gcj-4.5-jre-lib_4.5.0-3_all.deb
  to main/g/gcc-4.5/gcj-4.5-jre-lib_4.5.0-3_all.deb
gcj-4.5-jre_4.5.0-3_i386.deb
  to main/g/gcc-4.5/gcj-4.5-jre_4.5.0-3_i386.deb
gcj-4.5-source_4.5.0-3_all.deb
  to main/g/gcc-4.5/gcj-4.5-source_4.5.0-3_all.deb
gfortran-4.5-multilib_4.5.0-3_i386.deb
  to main/g/gcc-4.5/gfortran-4.5-multilib_4.5.0-3_i386.deb
gfortran-4.5_4.5.0-3_i386.deb
  to main/g/gcc-4.5/gfortran-4.5_4.5.0-3_i386.deb
gobjc++-4.5-multilib_4.5.0-3_i386.deb
  to main/g/gcc-4.5/gobjc++-4.5-multilib_4.5.0-3_i386.deb
gobjc++-4.5_4.5.0-3_i386.deb
  to main/g/gcc-4.5/gobjc++-4.5_4.5.0-3_i386.deb
gobjc-4.5-multilib_4.5.0-3_i386.deb
  to main/g/gcc-4.5/gobjc-4.5-multilib_4.5.0-3_i386.deb
gobjc-4.5_4.5.0-3_i386.deb
  to main/g/gcc-4.5/gobjc-4.5_4.5.0-3_i386.deb
lib64gcc1-dbg_4.5.0-3_i386.deb
  to main/g/gcc-4.5/lib64gcc1-dbg_4.5.0-3_i386.deb
lib64gcc1_4.5.0-3_i386.deb
  to main/g/gcc-4.5/lib64gcc1_4.5.0-3_i386.deb
lib64gfortran3-dbg_4.5.0-3_i386.deb
  to main/g/gcc-4.5/lib64gfortran3-dbg_4.5.0-3_i386.deb
lib64gfortran3_4.5.0-3_i386.deb
  to main/g/gcc-4.5/lib64gfortran3_4.5.0-3_i386.deb
lib64gomp1-dbg_4.5.0-3_i386.deb
  to main/g/gcc-4.5/lib64gomp1-dbg_4.5.0-3_i386.deb
lib64gomp1_4.5.0-3_i386.deb
  to main/g/gcc-4.5/lib64gomp1_4.5.0-3_i386.deb
lib64mudflap0-dbg_4.5.0-3_i386.deb
  to main/g/gcc-4.5/lib64mudflap0-dbg_4.5.0-3_i386.deb
lib64mudflap0_4.5.0-3_i386.deb
  to main/g/gcc-4.5/lib64mudflap0_4.5.0-3_i386.deb
lib64objc2-dbg_4.5.0-3_i386.deb
  to main/g/gcc-4.5/lib64objc2-dbg_4.5.0-3_i386.deb
lib64objc2_4.5.0-3_i386.deb
  to main/g/gcc-4.5/lib64objc2_4.5.0-3_i386.deb
lib64stdc++6-4.5-dbg_4.5.0-3_i386.deb
  to main/g/gcc-4.5/lib64stdc++6-4.5-dbg_4.5.0-3_i386.deb
lib64stdc++6_4.5.0-3_i386.deb
  to main/g/gcc-4.5/lib64stdc++6_4.5.0-3_i386.deb
libgcc1-dbg_4.5.0-3_i386.deb
  to main/g/gcc-4.5/libgcc1-dbg_4.5.0-3_i386.deb
libgcc1_4.5.0-3_i386.deb
  to main/g/gcc-4.5/libgcc1_4.5.0-3_i386.deb
libgcj-doc_4.5.0-3_all.deb
  to main/g/gcc-4.5/libgcj-doc_4.5.0-3_all.deb
libgcj11-awt_4.5.0-3_i386.deb
  to main/g/gcc-4.5/libgcj11-awt_4.5.0-3_i386.deb
libgcj11-dbg_4.5.0-3_i386.deb
  to main/g/gcc-4.5/libgcj11-dbg_4.5.0-3_i386.deb
libgcj11-dev_4.5.0-3_i386.deb
  to main/g/gcc-4.5/libgcj11-dev_4.5.0-3_i386.deb
libgcj11_4.5.0-3_i386.deb
  to main/g/gcc-4.5/libgcj11_4.5.0-3_i386.deb
libgfortran3-dbg_4.5.0-3_i386.deb
  to main/g/gcc-4.5/libgfortran3-dbg_4.5.0-3_i386.deb
libgfortran3_4.5.0-3_i386.deb
  to main/g/gcc-4.5/libgfortran3_4.5.0-3_i386.deb
libgomp1-dbg_4.5.0-3_i386.deb
  to main/g/gcc-4.5/libgomp1-dbg_4.5.0-3_i386.deb
libgomp1_4.5.0-3_i386.deb
  to main/g/gcc-4.5/libgomp1_4.5.0-3_i386.deb
libmudflap0-4.5-dev_4.5.0-3_i386.deb
  to main/g/gcc-4.5/libmudflap0-4.5-dev_4.5.0-3_i386.deb
libmudflap0-dbg_4.5.0-3_i386.deb
  to main/g/gcc-4.5/libmudflap0-dbg_4.5.0-3_i386.deb
libmudflap0_4.5.0-3_i386.deb
  to main/g/gcc-4.5/libmudflap0_4.5.0-3_i386.deb
libobjc2-dbg_4.5.0-3_i386.deb
  to main/g/gcc-4.5/libobjc2-dbg_4.5.0-3_i386.deb
libobjc2_4.5.0-3_i386.deb
  to main/g/gcc-4.5/libobjc2_4.5.0-3_i386.deb
libstdc++6-4.5-dbg_4.5.0-3_i386.deb
  to main/g/gcc-4.5/libstdc++6-4.5-dbg_4.5.0-3_i386.deb
libstdc++6-4.5-dev_4.5.0-3_i386.deb
  to main/g/gcc-4.5/libstdc++6-4.5-dev_4.5.0-3_i386.deb
libstdc++6-4.5-doc_4.5.0-3_all.deb
  to main/g/gcc-4.5/libstdc++6-4.5-doc_4.5.0-3_all.deb
libstdc++6-4.5-pic_4.5.0-3_i386.deb
  to main/g/gcc-4.5/libstdc++6-4.5-pic_4.5.0-3_i386.deb
libstdc++6_4.5.0-3_i386.deb
  to main/g/gcc-4.5/libstdc++6_4.5.0-3_i386.deb



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 579780@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.5 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@debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.8
Date: Wed, 19 May 2010 09:48:20 +0200
Source: gcc-4.5
Binary: gcc-4.5-base gcj-4.5-base libgcc1 libgcc1-dbg libgcc2 libgcc2-dbg libgcc4 libgcc4-dbg lib64gcc1 lib64gcc1-dbg lib32gcc1 lib32gcc1-dbg libn32gcc1 libn32gcc1-dbg gcc-4.5 gcc-4.5-multilib gcc-4.5-plugin-dev gcc-4.5-hppa64 gcc-4.5-spu g++-4.5-spu gfortran-4.5-spu cpp-4.5 gcc-4.5-locales g++-4.5 g++-4.5-multilib libmudflap0 libmudflap0-dbg lib32mudflap0 lib32mudflap0-dbg lib64mudflap0 lib64mudflap0-dbg libn32mudflap0 libn32mudflap0-dbg libmudflap0-4.5-dev libgomp1 libgomp1-dbg lib32gomp1 lib32gomp1-dbg lib64gomp1 lib64gomp1-dbg libn32gomp1 libn32gomp1-dbg gobjc++-4.5 gobjc++-4.5-multilib gobjc-4.5 gobjc-4.5-multilib libobjc2 libobjc2-dbg lib64objc2 lib64objc2-dbg lib32objc2 lib32objc2-dbg libn32objc2 libn32objc2-dbg gfortran-4.5 gfortran-4.5-multilib libgfortran3 libgfortran3-dbg lib64gfortran3 lib64gfortran3-dbg lib32gfortran3 lib32gfortran3-dbg libn32gfortran3 libn32gfortran3-dbg gcj-4.5-jdk gcj-4.5-jre-headless gcj-4.5-jre libgcj11 gcj-4.5-jre-lib libgcj11-awt
 libgcj11-dev libgcj11-dbg gcj-4.5-source libgcj-doc libstdc++6 lib32stdc++6 lib64stdc++6 libn32stdc++6 libstdc++6-4.5-dev libstdc++6-4.5-pic libstdc++6-4.5-dbg lib32stdc++6-4.5-dbg lib64stdc++6-4.5-dbg libn32stdc++6-4.5-dbg libstdc++6-4.5-doc gcc-4.5-soft-float fixincludes
 gcc-4.5-source
Architecture: source all i386
Version: 4.5.0-3
Distribution: experimental
Urgency: low
Maintainer: Debian GCC Maintainers <debian-gcc@lists.debian.org>
Changed-By: Matthias Klose <doko@debian.org>
Description: 
 cpp-4.5    - The GNU C preprocessor
 fixincludes - Fix non-ANSI header files
 g++-4.5    - The GNU C++ compiler
 g++-4.5-multilib - The GNU C++ compiler (multilib files)
 g++-4.5-spu - SPU cross-compiler (C++ compiler)
 gcc-4.5    - The GNU C compiler
 gcc-4.5-base - The GNU Compiler Collection (base package)
 gcc-4.5-hppa64 - The GNU C compiler (cross compiler for hppa64)
 gcc-4.5-locales - The GNU C compiler (native language support files)
 gcc-4.5-multilib - The GNU C compiler (multilib files)
 gcc-4.5-plugin-dev - Files for GNU GCC plugin development.
 gcc-4.5-soft-float - The soft-floating-point gcc libraries (arm)
 gcc-4.5-source - Source of the GNU Compiler Collection
 gcc-4.5-spu - SPU cross-compiler (preprocessor and C compiler)
 gcj-4.5-base - The GNU Compiler Collection (gcj base package)
 gcj-4.5-jdk - gcj and classpath development tools for Java(TM)
 gcj-4.5-jre - Java runtime environment using GIJ/classpath
 gcj-4.5-jre-headless - Java runtime environment using GIJ/classpath (headless version)
 gcj-4.5-jre-lib - Java runtime library for use with gcj (jar files)
 gcj-4.5-source - GCJ java sources for use in IDEs like eclipse and netbeans
 gfortran-4.5 - The GNU Fortran 95 compiler
 gfortran-4.5-multilib - The GNU Fortran 95 compiler (multilib files)
 gfortran-4.5-spu - SPU cross-compiler (Fortran compiler)
 gobjc++-4.5 - The GNU Objective-C++ compiler
 gobjc++-4.5-multilib - The GNU Objective-C++ compiler (multilib files)
 gobjc-4.5  - The GNU Objective-C compiler
 gobjc-4.5-multilib - The GNU Objective-C compiler (multilib files)
 lib32gcc1  - GCC support library (32 bit Version)
 lib32gcc1-dbg - GCC support library (debug symbols)
 lib32gfortran3 - Runtime library for GNU Fortran applications (32bit)
 lib32gfortran3-dbg - Runtime library for GNU Fortran applications (32 bit debug symbol
 lib32gomp1 - GCC OpenMP (GOMP) support library (32bit)
 lib32gomp1-dbg - GCC OpenMP (GOMP) support library (32 bit debug symbols)
 lib32mudflap0 - GCC mudflap shared support libraries (32bit)
 lib32mudflap0-dbg - GCC mudflap shared support libraries (32 bit debug symbols)
 lib32objc2 - Runtime library for GNU Objective-C applications (32bit)
 lib32objc2-dbg - Runtime library for GNU Objective-C applications (32 bit debug sy
 lib32stdc++6 - The GNU Standard C++ Library v3 (32 bit Version)
 lib32stdc++6-4.5-dbg - The GNU Standard C++ Library v3 (debugging files)
 lib64gcc1  - GCC support library (64bit)
 lib64gcc1-dbg - GCC support library (debug symbols)
 lib64gfortran3 - Runtime library for GNU Fortran applications (64bit)
 lib64gfortran3-dbg - Runtime library for GNU Fortran applications (64bit debug symbols
 lib64gomp1 - GCC OpenMP (GOMP) support library (64bit)
 lib64gomp1-dbg - GCC OpenMP (GOMP) support library (64bit debug symbols)
 lib64mudflap0 - GCC mudflap shared support libraries (64bit)
 lib64mudflap0-dbg - GCC mudflap shared support libraries (64 bit debug symbols)
 lib64objc2 - Runtime library for GNU Objective-C applications (64bit)
 lib64objc2-dbg - Runtime library for GNU Objective-C applications (64 bit debug sy
 lib64stdc++6 - The GNU Standard C++ Library v3 (64bit)
 lib64stdc++6-4.5-dbg - The GNU Standard C++ Library v3 (debugging 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
 libgcj11   - Java runtime library for use with gcj
 libgcj11-awt - AWT peer runtime libraries for use with gcj
 libgcj11-dbg - Debugging symbols for libraries provided in libgcj11-dev
 libgcj11-dev - Java development headers for use with gcj
 libgfortran3 - Runtime library for GNU Fortran applications
 libgfortran3-dbg - Runtime library for GNU Fortran applications (debug symbols)
 libgomp1   - GCC OpenMP (GOMP) support library
 libgomp1-dbg - GCC OpenMP (GOMP) support library (debug symbols)
 libmudflap0 - GCC mudflap shared support libraries
 libmudflap0-4.5-dev - GCC mudflap support libraries (development files)
 libmudflap0-dbg - GCC mudflap shared support libraries (debug symbols)
 libn32gcc1 - GCC support library (n32)
 libn32gcc1-dbg - GCC support library (debug symbols)
 libn32gfortran3 - Runtime library for GNU Fortran applications (n32)
 libn32gfortran3-dbg - Runtime library for GNU Fortran applications (n32 debug symbols)
 libn32gomp1 - GCC OpenMP (GOMP) support library (n32)
 libn32gomp1-dbg - GCC OpenMP (GOMP) support library (n32 debug symbols)
 libn32mudflap0 - GCC mudflap shared support libraries (n32)
 libn32mudflap0-dbg - GCC mudflap shared support libraries (n32 debug symbols)
 libn32objc2 - Runtime library for GNU Objective-C applications (n32)
 libn32objc2-dbg - Runtime library for GNU Objective-C applications (n32 debug symbo
 libn32stdc++6 - The GNU Standard C++ Library v3 (n32)
 libn32stdc++6-4.5-dbg - The GNU Standard C++ Library v3 (debugging files)
 libobjc2   - Runtime library for GNU Objective-C applications
 libobjc2-dbg - Runtime library for GNU Objective-C applications (debug symbols)
 libstdc++6 - The GNU Standard C++ Library v3
 libstdc++6-4.5-dbg - The GNU Standard C++ Library v3 (debugging files)
 libstdc++6-4.5-dev - The GNU Standard C++ Library v3 (development files)
 libstdc++6-4.5-doc - The GNU Standard C++ Library v3 (documentation files)
 libstdc++6-4.5-pic - The GNU Standard C++ Library v3 (shared library subset kit)
Closes: 579780
Changes: 
 gcc-4.5 (4.5.0-3) experimental; urgency=low
 .
   * Update to SVN 20100519 (r159556) from the gcc-4_5-branch. Fixes:
     PR c++/43704, PR fortran/43339, PR middle-end/43337, PR target/43635,
     PR tree-optimization/43783, PR tree-optimization/43796, PR middle-end/43570,
     PR libgomp/43706, PR libgomp/43569, PR middle-end/43835, PR c/43893,
     PR tree-optimization/43572, PR tree-optimization/43845, PR libgcj/40860,
     PR target/43744, PR debug/43370, PR c++/43880, PR middle-end/43671,
     PR debug/43972, PR target/43921, PR c++/38064, PR c++/43953,
     PR fortran/43985, PR fortran/43592, PR fortran/40539, PR c++/43787,
     PR middle-end/44085, PR middle-end/44071, PR middle-end/43812,
     PR debug/44028, PR rtl-optimization/44012, PR target/44046,
     PR documentation/44016, PR fortran/44036, PR fortran/40728,
     PR libstdc++/44014, PR lto/44184, PR bootstrap/42347, PR middle-end/44102,
     PR c++/44127, PR debug/44136, PR target/44088, PR tree-optimization/44124,
     PR fortran/43591, PR fortran/44135, PR libstdc++/43259.
 .
   [ Matthias Klose ]
   * Revert gcj-arm-no-merge-exidx-entries patch, fixed by PR libgcj/40860.
   * Don't run the libstdc++-v3 testsuite on the ia64 buildds. Timeouts.
   * Backport two libjava fixes from the trunk to run josm with gcj.
   * Ubuntu only:
     - Pass --hash-style=gnu instead of --hash-style=both to the linker.
   * Preliminary architecture port for powerpcspe (Kyle Moffett).
     Closes: #579780.
   * Update configury to be able to target i686 instead of i486 on i386.
 .
   [ Aurelien Jarno]
   * Don't link with --hash-style=both on mips/mipsel as GNU hash is not
     compatible with the MIPS ABI.
   * Default to -mplt on mips(el), -march=mips2 and -mtune=mips32 on 32-bit
     mips(el), -march=mips3 and -mtune=mips64 on 64-bit mips(el).
Checksums-Sha1: 
 054de800a7c09daefc653fd6c5aa482503d15dae 4449 gcc-4.5_4.5.0-3.dsc
 fa89d0eda7b784e794688d6ca272e678cea375e6 3006841 gcc-4.5_4.5.0-3.diff.gz
 b8a953604064f76ac26eb9851e055c0a2b4a19b2 54805658 gcc-4.5-source_4.5.0-3_all.deb
 ac3a7312f1ba06ed3fe25efbf0ac4f585076b85b 10478250 gcj-4.5-jre-lib_4.5.0-3_all.deb
 44ba8a175495fbaab66b5539020fca06d1b90b9e 12328904 gcj-4.5-source_4.5.0-3_all.deb
 cc343a8b484adbad78c763e5b38914c5b6418417 43817758 libgcj-doc_4.5.0-3_all.deb
 bd04c9b729a159aadfc615de953cbc10f963c0a6 3554248 libstdc++6-4.5-doc_4.5.0-3_all.deb
 04889e6ec4cd6c1a0eb77dc58e0a46f2d0d7632c 2310250 gcc-4.5-locales_4.5.0-3_all.deb
 c78c233797d6a67a26385856518d57e1d0a59c07 116356 gcc-4.5-base_4.5.0-3_i386.deb
 8a694549e77cc71d6e00956658a274f0169c6757 52314 libgcc1_4.5.0-3_i386.deb
 322d727f6f2e8a07c1b2aa528bc8fa14a79143de 101628 libgcc1-dbg_4.5.0-3_i386.deb
 9302f2b7558059fcbdcf6d3461d3b598ee1a3d7e 43414 lib64gcc1_4.5.0-3_i386.deb
 39c641fe942bfd08577dbba5b626a50931752f29 98040 lib64gcc1-dbg_4.5.0-3_i386.deb
 71b2c055c6889eb3f880512e1f4bd5860cdc3860 23514 libgomp1_4.5.0-3_i386.deb
 1ed1c28b2dbc41a560ba710e389cb752ee1f3945 66922 libgomp1-dbg_4.5.0-3_i386.deb
 aaa50c6953dad3cbe6a8c672fdab124dacd9a2c8 25776 lib64gomp1_4.5.0-3_i386.deb
 55d59d8e9eb238d35379bf64fdd7830969128cc7 64962 lib64gomp1-dbg_4.5.0-3_i386.deb
 da50a60b56a19ff3bf76950960012bb2619ace70 4722972 cpp-4.5_4.5.0-3_i386.deb
 037482a1aa7e0f2da4caec87c2e52cf034d53f76 59848 fixincludes_4.5.0-3_i386.deb
 89b03cc02a5ed1ec75b96816474d86e6b3d8c9f0 214386 libmudflap0-4.5-dev_4.5.0-3_i386.deb
 11a24233c6a29e1e3b08b06cc08722aed889e60f 81808 libmudflap0_4.5.0-3_i386.deb
 b10e09aa38cdf7020424b302a929185e5d77b716 127320 libmudflap0-dbg_4.5.0-3_i386.deb
 512fcd2f1f685483519e8d8a99c7f5c8871f29c0 98842 lib64mudflap0_4.5.0-3_i386.deb
 de33a87d50d944877b7c419db3daf7f1d9f8aeea 136150 lib64mudflap0-dbg_4.5.0-3_i386.deb
 ea8b6945be470ea9fec80068ce6b09029b51fcaf 866 gobjc++-4.5-multilib_4.5.0-3_i386.deb
 c283c1c1eb5f5db5e5d17a938486340a1555b231 5393822 gobjc++-4.5_4.5.0-3_i386.deb
 b7a2b91837a5dc4d73c1c70bd43c0770c98051f5 194910 gobjc-4.5-multilib_4.5.0-3_i386.deb
 e646b9b9b28215718ef04d21c1328630d750d174 4889762 gobjc-4.5_4.5.0-3_i386.deb
 5fce40b1dc5d419ab04edee261b0fa63d7e25a09 160022 libobjc2_4.5.0-3_i386.deb
 f5b348601d693ba00fbc603d7b7de3b5d5cc19ad 306872 libobjc2-dbg_4.5.0-3_i386.deb
 dd48d9d74ce46ffec817efed4a8a6dc4a397e6c8 167492 lib64objc2_4.5.0-3_i386.deb
 ae143a253abce6638a3012da9599df19d302a651 333356 lib64objc2-dbg_4.5.0-3_i386.deb
 6c15d3546281f599b270d11ddba50dcdb4e17598 112832 gcj-4.5-base_4.5.0-3_i386.deb
 257ff03ee51e6cae4a6ded19e4a8b7132725ba28 48530 gcj-4.5-jre-headless_4.5.0-3_i386.deb
 d9571c86f64f99be9d6c4befd43177558b9dbee6 11656850 libgcj11_4.5.0-3_i386.deb
 33fa668933b6d4cc5bbbe29d4b1aed9f20239c9d 83074 libgcj11-awt_4.5.0-3_i386.deb
 039e740e43585d4365a7a05dfe9387cc540d8b84 1008 gcj-4.5-jre_4.5.0-3_i386.deb
 bf8617dddaf5b1113e6cbbfb35421dde317eba97 765594 libgcj11-dev_4.5.0-3_i386.deb
 f36fa8980b6580d390cac97cec6f41c64f1a198a 23093578 libgcj11-dbg_4.5.0-3_i386.deb
 a52ad4fa955dc883d0a58fe8f701b5d299201b5d 4923272 gcj-4.5-jdk_4.5.0-3_i386.deb
 954f13d6e0454e7095775916e5417ba2a73559e3 1042670 g++-4.5-multilib_4.5.0-3_i386.deb
 3e9997c5d9c3a445b2ae7e48fc7e39b734d55484 6984082 g++-4.5_4.5.0-3_i386.deb
 d1bb6ff59b84ad53e55742368fd007ffdc1f1c51 344784 libstdc++6_4.5.0-3_i386.deb
 835002452e4da32474dd93c793b6df3944778135 337200 lib64stdc++6_4.5.0-3_i386.deb
 5092a6db3fbb5096017164a96dd3f39baac13039 6933078 lib64stdc++6-4.5-dbg_4.5.0-3_i386.deb
 b71d0db6a7f72ad146726bf7e80dafcdc693f3f5 1587072 libstdc++6-4.5-dev_4.5.0-3_i386.deb
 b7b5a1d83d42dc57c14e72efe9497f5ee86aa059 498652 libstdc++6-4.5-pic_4.5.0-3_i386.deb
 17ded653cdb1bfd17e4d2abf12f64c3addeb4b3e 4139388 libstdc++6-4.5-dbg_4.5.0-3_i386.deb
 b25574d1cb13c21caf8f5ae43f0819bb72a8742b 243698 libgfortran3_4.5.0-3_i386.deb
 75468c13254d21471e1ea9fd769570362631bc26 524550 libgfortran3-dbg_4.5.0-3_i386.deb
 c56910f02ad2972b33d5c7484953b1f4c63f5657 289272 lib64gfortran3_4.5.0-3_i386.deb
 f4018d8f796430f7a053380b5d0b2c544d5c19ae 696252 lib64gfortran3-dbg_4.5.0-3_i386.deb
 a0f04e1af27f7b7b069c8e5a5a84997cae902f6f 365594 gfortran-4.5-multilib_4.5.0-3_i386.deb
 cf9ca0ee4ee4a474901c268002475fe57e30f0ae 5221292 gfortran-4.5_4.5.0-3_i386.deb
 67a6c76bd993ff5915e5e94cb06bd85132e975eb 2219126 gcc-4.5-multilib_4.5.0-3_i386.deb
 33e7fd4836c94486fb8dd12ef0a451467ffd5fe2 585402 gcc-4.5-plugin-dev_4.5.0-3_i386.deb
 1f0a5034dc1e65fe7eca1d74bf17d5fea876f005 7166496 gcc-4.5_4.5.0-3_i386.deb
Checksums-Sha256: 
 e6b012e85ad68a0e998dad4222ab307ec5f58a33befc2807a8a823e3ae6705cf 4449 gcc-4.5_4.5.0-3.dsc
 2f40a3529647cba60c0824428e22f66f41d7d0810b0990fd1b917db2b6cb07e6 3006841 gcc-4.5_4.5.0-3.diff.gz
 7a4ce8562388d3b5a6ea428171f3a6cfe90d6b784e7f5c77cd979d81ef0d349f 54805658 gcc-4.5-source_4.5.0-3_all.deb
 ece2742580d1508d7c31f6f7e7a943e72c5cf60cf01bf2e11ca31afd8dd23823 10478250 gcj-4.5-jre-lib_4.5.0-3_all.deb
 5532e832d6ef57ffa7d1ff1fd37fe4666b96bdada7b507e7999f7110299a1f5e 12328904 gcj-4.5-source_4.5.0-3_all.deb
 094953c5c72dd18f27545129451f47617013286ea9eb3a8a92fd5eecb1d10a45 43817758 libgcj-doc_4.5.0-3_all.deb
 2a1d2246270675355936fc6d2e92041630ed4a1b17b93d0251ea2bae8daeae0a 3554248 libstdc++6-4.5-doc_4.5.0-3_all.deb
 d7167edb482a6f799952710e3a89f62ed1b63a1c9d4d29ca539536acec5611a2 2310250 gcc-4.5-locales_4.5.0-3_all.deb
 d79bd0a54698866a4abad68465282e30c0e72001f1c3519a4b17869f3330126d 116356 gcc-4.5-base_4.5.0-3_i386.deb
 04bb9b4e13453aea88bd5bc1c0c1f1f06cf09036f270eef7c1ee30fdf37e43f3 52314 libgcc1_4.5.0-3_i386.deb
 1d94c9a150e10d653f821ffa7387de84e66c0fc89604e47a2a433d8173773e44 101628 libgcc1-dbg_4.5.0-3_i386.deb
 b25bd909b384acfad2d9536816d0dd3b61758f0d61a64b846b8a5331bbf9e706 43414 lib64gcc1_4.5.0-3_i386.deb
 3630fd6ed2f07f435f144060c4f7c57c0a9f6a14afffa562f02e864f26e93e40 98040 lib64gcc1-dbg_4.5.0-3_i386.deb
 ab914ed001cd5540e05b707c3bc7f9f81fe76bac2dfe6513cd39c3a5308de5f7 23514 libgomp1_4.5.0-3_i386.deb
 9e47c2f2f6ab9da7f39620ee59a790f933f70527d1c1ac95e4b2a12b0e3b76b0 66922 libgomp1-dbg_4.5.0-3_i386.deb
 4b2f120944eebefc3897be856cda5407a16b225ee1be6c161472e8db21705e05 25776 lib64gomp1_4.5.0-3_i386.deb
 771e714cf9145ed4af2bd560f17fbe6ae5665537673425aa0f0455f54992c3de 64962 lib64gomp1-dbg_4.5.0-3_i386.deb
 476c92dec33368414a56d09b583120b8ea66adb3938cdf3dbf3e56fcb5b72fcd 4722972 cpp-4.5_4.5.0-3_i386.deb
 b4319d50cc517affc8adaa5a165ee756ea04ddfecc557310daad8cdbaa211c5a 59848 fixincludes_4.5.0-3_i386.deb
 08a142c50a5226dea943d129c161169440c7e4f31b82619da19971fcecb2db61 214386 libmudflap0-4.5-dev_4.5.0-3_i386.deb
 f659b16e681dceaed20ea652729afd700c5de38a27a459f48ed05505c3bf7e92 81808 libmudflap0_4.5.0-3_i386.deb
 a2a94770bbb1c063a0631a82d8263e8b6d342a7f348c59f07d6421a1187c1708 127320 libmudflap0-dbg_4.5.0-3_i386.deb
 91da8233d76d1e27624606726c478e66ccb0f3182140779c118e912e483c0f03 98842 lib64mudflap0_4.5.0-3_i386.deb
 a518d487f9fa3c9a41f809d9170aea0de14d8fbd9444bbc6daecf9a550844f81 136150 lib64mudflap0-dbg_4.5.0-3_i386.deb
 7a9ee3fb18b27b5b0fc4116deb9b74d1b677e5bdafb550d1d6b74a2f3388a4fd 866 gobjc++-4.5-multilib_4.5.0-3_i386.deb
 0a3fb3650ea29de6725a4ae721c051ca372e78e43a19460a88bbfe09efda737a 5393822 gobjc++-4.5_4.5.0-3_i386.deb
 5fb9ad44dc11fc27ed7851c20ea08e1e777711f3f0f6f3253354bd210a342c0a 194910 gobjc-4.5-multilib_4.5.0-3_i386.deb
 fc739ee8466c3d7007ae785e483006501e47ebd4042caaeddbacb6e4139f9620 4889762 gobjc-4.5_4.5.0-3_i386.deb
 81e94f5464b5da28d89dffb5ca48960c7f7c07f11787e61e4d1d39fe540859eb 160022 libobjc2_4.5.0-3_i386.deb
 cdb9abc28e6b7258e2e18637132c60b0bb405c96f6465f8453d71e42084a54fd 306872 libobjc2-dbg_4.5.0-3_i386.deb
 d07a3d7fa9c9ea0ed02bf7c283bcc2e49e86bfc6c7994fbcf2cd83e8f74407e0 167492 lib64objc2_4.5.0-3_i386.deb
 b93e1dcadc8df7a504ef809c5f090f086a2f621a6b7620a6a5e7980051cba524 333356 lib64objc2-dbg_4.5.0-3_i386.deb
 bf2d2b102d803ebfb3f94564016bb227978022c4edfe54215b74ab3dde4b54ab 112832 gcj-4.5-base_4.5.0-3_i386.deb
 432bbe997b563b1698be14d7245eb385c5ff7b2f528d36ae4b6a15f071bdd495 48530 gcj-4.5-jre-headless_4.5.0-3_i386.deb
 77076e19ae7e1351e9a7505e150fc3350cd1b91e48c43b496a6412dca702311c 11656850 libgcj11_4.5.0-3_i386.deb
 04ea546b2bad027abce4a6c7ca452bb88251b2b44c0fe5752dfe29420b41dc60 83074 libgcj11-awt_4.5.0-3_i386.deb
 3540eaacd05b97d00959cb677d46547cf121203661765bc193779b2b98607b73 1008 gcj-4.5-jre_4.5.0-3_i386.deb
 51e1ae32029f12b8e7e57693310f1252d4b453af4ca6cdfff2210056fd00d285 765594 libgcj11-dev_4.5.0-3_i386.deb
 e19f09307b59fe65e3b105017cee00b74784665fe460851fdca77edda603f534 23093578 libgcj11-dbg_4.5.0-3_i386.deb
 df7151088aaceee8cb8febd09ebf9c790dc950fa8337072ce0289dbdbd65e31c 4923272 gcj-4.5-jdk_4.5.0-3_i386.deb
 db7998aac4313a40144c44699b7c842d5e248f08c8f3aff5d89a842ff0befd2e 1042670 g++-4.5-multilib_4.5.0-3_i386.deb
 86e0af1bb5b1fdd87ce4e16fe39090e27814252c25dc77d743bd5f70cdc22d27 6984082 g++-4.5_4.5.0-3_i386.deb
 782d5cb374a5491bb36913a435c13e851f1c875a94a67cea1fb494a6c28e2091 344784 libstdc++6_4.5.0-3_i386.deb
 352df00492e7ea49c3fc71cc7dd405c35da2f07446b2e51188eab77c87393e60 337200 lib64stdc++6_4.5.0-3_i386.deb
 b4806ffff5dc4784fc9760276afc91ab92ac932f0ebeaf5faf3203176ad0c326 6933078 lib64stdc++6-4.5-dbg_4.5.0-3_i386.deb
 2f8ceca9aa36e74c556977a5aa083a1652ca2f782ebb69a9b4952ba096f9329e 1587072 libstdc++6-4.5-dev_4.5.0-3_i386.deb
 b6a6c0dab20e9adedb3189f8905e74c2c25f323dc38b37584807a71dc8e35231 498652 libstdc++6-4.5-pic_4.5.0-3_i386.deb
 2b281307834d83768a05762db4c2dd019e3617928c517df723870e82976373e8 4139388 libstdc++6-4.5-dbg_4.5.0-3_i386.deb
 6a39106e85af77e945fe05888a3196d183231a9883d9d1e54e8aaec1c67b3a22 243698 libgfortran3_4.5.0-3_i386.deb
 165024c6549a19fa2a9ee1c572cda4c1d9a7203be9d44f832183f659b78decde 524550 libgfortran3-dbg_4.5.0-3_i386.deb
 ab4af0864a038ff377ea89efb733924859dfded1a2be33eff5f8e508a735323b 289272 lib64gfortran3_4.5.0-3_i386.deb
 aacac25d36c9b67272b52b0bd110eaa831eba92aa7104bec3a2bbe32002daecb 696252 lib64gfortran3-dbg_4.5.0-3_i386.deb
 eee8320d1fa36e026a0212e3f6936ef3ff7f8648b5b4e224089a26de2cd6d227 365594 gfortran-4.5-multilib_4.5.0-3_i386.deb
 c3e3abcff78af21797d16dabe80f2b303901c1c6121e49f4617cd5c842c6c842 5221292 gfortran-4.5_4.5.0-3_i386.deb
 86c938878bff77eef4fc8836e525beee8895a3a3acc9be9fdab5cfb847a7303b 2219126 gcc-4.5-multilib_4.5.0-3_i386.deb
 9e749786f50821fc4c18f32ba4bf7739b5087c8f7e2fed367ff8d12b4bbcc8bb 585402 gcc-4.5-plugin-dev_4.5.0-3_i386.deb
 147f4cc6f01c064a5d1e16e888bce172eb57263ae1cc21603675407682ee6256 7166496 gcc-4.5_4.5.0-3_i386.deb
Files: 
 46f46ec0abff5227256cf249e19e764c 4449 devel optional gcc-4.5_4.5.0-3.dsc
 61e8749c583ec48039814cc0ffdc6d64 3006841 devel optional gcc-4.5_4.5.0-3.diff.gz
 ed70670610eb499ab27ba95979e59d6a 54805658 devel optional gcc-4.5-source_4.5.0-3_all.deb
 ff7e339f306ba2736a2159b845288f2e 10478250 java optional gcj-4.5-jre-lib_4.5.0-3_all.deb
 77283fc3553bbee484ed2c8279e09926 12328904 java optional gcj-4.5-source_4.5.0-3_all.deb
 041c8bf98ce62d4c10ff0c68c945427e 43817758 doc optional libgcj-doc_4.5.0-3_all.deb
 5d2db1aa367984f9adc2a04e9914f538 3554248 doc optional libstdc++6-4.5-doc_4.5.0-3_all.deb
 36d04d50745f62ba9879e50915319092 2310250 devel optional gcc-4.5-locales_4.5.0-3_all.deb
 d47a5a7d88892ff097d58cc050c8f71a 116356 libs required gcc-4.5-base_4.5.0-3_i386.deb
 b42a667461eb8d8ffbbb5cf9abebbf8e 52314 libs required libgcc1_4.5.0-3_i386.deb
 fa74dee633b2e8e24c5ea08b4f9bd357 101628 debug extra libgcc1-dbg_4.5.0-3_i386.deb
 84bc8e798353612956b66756e28d7124 43414 libs optional lib64gcc1_4.5.0-3_i386.deb
 9f615df9d29de245fedf54a2920330af 98040 debug extra lib64gcc1-dbg_4.5.0-3_i386.deb
 f2df542e4f62dc073ea12cc866a88cfd 23514 libs optional libgomp1_4.5.0-3_i386.deb
 3a3ecfa3596378ac690aa6440c219dc5 66922 debug extra libgomp1-dbg_4.5.0-3_i386.deb
 d4b96e73a66dea25f680bf31f5095054 25776 libs optional lib64gomp1_4.5.0-3_i386.deb
 aa2d04ab56eca6c1da9921efc0e39bee 64962 debug extra lib64gomp1-dbg_4.5.0-3_i386.deb
 7d39c40fcc955cd87da0dba47bbe7975 4722972 interpreters optional cpp-4.5_4.5.0-3_i386.deb
 342a82affaa4b574948beb0f752c92c7 59848 devel optional fixincludes_4.5.0-3_i386.deb
 1f969489ebe3d98dc04b1c488f0d56f9 214386 libdevel optional libmudflap0-4.5-dev_4.5.0-3_i386.deb
 3d33c86386e8cc8a24ad7e969977b655 81808 libs optional libmudflap0_4.5.0-3_i386.deb
 aa4fe8ac85bd3023a381e456e9bee5e3 127320 debug extra libmudflap0-dbg_4.5.0-3_i386.deb
 e6cd6e620cf33e452de0d4860224ad1c 98842 libs optional lib64mudflap0_4.5.0-3_i386.deb
 ce5ece93b01c0fda613c2092709077cd 136150 debug extra lib64mudflap0-dbg_4.5.0-3_i386.deb
 0594346cb62365fa1ec58d5382809c4c 866 devel optional gobjc++-4.5-multilib_4.5.0-3_i386.deb
 6a66eb1264a844ea225bde9d36f59da7 5393822 devel optional gobjc++-4.5_4.5.0-3_i386.deb
 5de9f2974ff40ff8a0a5ac74c2e20244 194910 devel optional gobjc-4.5-multilib_4.5.0-3_i386.deb
 524f9d091a87cc652825085b3a88910f 4889762 devel optional gobjc-4.5_4.5.0-3_i386.deb
 322caba4f02e2def3505bfd62ae534f8 160022 libs optional libobjc2_4.5.0-3_i386.deb
 71054dbdeff46fdaa09550d56bb67ed3 306872 debug extra libobjc2-dbg_4.5.0-3_i386.deb
 1caabd2041ceaf8a66d34c48f161793f 167492 libs optional lib64objc2_4.5.0-3_i386.deb
 8d3c30ba924efda894182eb5f7d3bb79 333356 debug extra lib64objc2-dbg_4.5.0-3_i386.deb
 6cef31cb4b244629e3d29f5228a6f2fe 112832 libs optional gcj-4.5-base_4.5.0-3_i386.deb
 bef64c405fb54933e01887ab6e4595ba 48530 java optional gcj-4.5-jre-headless_4.5.0-3_i386.deb
 6133067ba6b239adb4f1d2c20617c83a 11656850 libs optional libgcj11_4.5.0-3_i386.deb
 33babeb14db62afc639e3025dbf0187d 83074 libs optional libgcj11-awt_4.5.0-3_i386.deb
 f30cc0058da9801a20cdcb48c6489db6 1008 java optional gcj-4.5-jre_4.5.0-3_i386.deb
 875f8fc6c453093553dac40382117780 765594 libdevel optional libgcj11-dev_4.5.0-3_i386.deb
 e3de981cb544315aa6c437f3681807be 23093578 debug extra libgcj11-dbg_4.5.0-3_i386.deb
 b0e7012cbf9d3c26225df20b7279295a 4923272 java optional gcj-4.5-jdk_4.5.0-3_i386.deb
 ce1cdeb3f90f6aa158ead945bb31ecb2 1042670 devel optional g++-4.5-multilib_4.5.0-3_i386.deb
 a7bdbd9263188c288f5da07acd167b86 6984082 devel optional g++-4.5_4.5.0-3_i386.deb
 78e617bce86813762f9e5b0de0978dd8 344784 libs required libstdc++6_4.5.0-3_i386.deb
 559f933cab9e65e9d8ac300ef5b4e35f 337200 libs optional lib64stdc++6_4.5.0-3_i386.deb
 35b4607d590cd76932133efdda9d4a68 6933078 debug extra lib64stdc++6-4.5-dbg_4.5.0-3_i386.deb
 f7dd8b6247202dee86e28fe1fc73911b 1587072 libdevel optional libstdc++6-4.5-dev_4.5.0-3_i386.deb
 f45041ca58c09da89a8ee047678ee07a 498652 libdevel extra libstdc++6-4.5-pic_4.5.0-3_i386.deb
 81d0b9a29b41b81d1b22572359c7dc42 4139388 debug extra libstdc++6-4.5-dbg_4.5.0-3_i386.deb
 f520c8207a5f16384977a122a20a7e61 243698 libs optional libgfortran3_4.5.0-3_i386.deb
 e26ad6c903d5985b290ba0bebd82cf51 524550 debug extra libgfortran3-dbg_4.5.0-3_i386.deb
 47333f52bc2bc90e144df2ac930a0d90 289272 libs optional lib64gfortran3_4.5.0-3_i386.deb
 d3f626a26fd081690a7ffb2e70ad3446 696252 debug extra lib64gfortran3-dbg_4.5.0-3_i386.deb
 c7007f9c2d180b68001bfee831f60f2e 365594 devel optional gfortran-4.5-multilib_4.5.0-3_i386.deb
 710758129567ecdab2134bcb02c57a10 5221292 devel optional gfortran-4.5_4.5.0-3_i386.deb
 94e96d8a18bf783bfb100950dc658c26 2219126 devel optional gcc-4.5-multilib_4.5.0-3_i386.deb
 f85beb158f63925887b63b68ade48e71 585402 devel optional gcc-4.5-plugin-dev_4.5.0-3_i386.deb
 7c59025648a6a83fbe94b780a1533b76 7166496 devel optional gcc-4.5_4.5.0-3_i386.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEARECAAYFAkv0CDkACgkQStlRaw+TLJxqmwCgiysmKRXSfFCCxiXKVOPCuJah
fdAAn2vxL3ejUQ6Lgt1dsH8MKEwYGt4j
=T/hu
-----END PGP SIGNATURE-----



--- End Message ---

Reply to: