changeset 6243:c98d8d7eb559

Further updates to GMP and MPFR versions
author Phil Holmes <mail@philholmes.net>
date Tue, 21 Oct 2014 12:37:18 +0100
parents bc5e7ff7d734
children 6695d3a8e046 d02df78f9193
files gub/debian.py gub/specs/cygwin/gmp.py gub/specs/gmp.py gub/specs/mpfr.py
diffstat 4 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/gub/debian.py	Wed Oct 15 10:36:19 2014 +0100
+++ b/gub/debian.py	Tue Oct 21 12:37:18 2014 +0100
@@ -12,13 +12,13 @@
 
 # http://ftp.de.debian.org/debian/pool/main/l/linux-kernel-headers/
 
-gcc_version = '4.1.1'
+gcc_version = '4.8.2'
 glibc_version='2.3.2.ds1-22sarge4'
 linux_version = '2.5.999-test7-bk-17'
 def get_cross_build_dependencies (settings):
     global gcc_version, glibc_version, linux_version
     #FIXME too late
-    gcc_version = '4.1.1'
+    gcc_version = '4.8.2'
     if settings.debian_branch == 'stable':
         glibc_version='2.3.2.ds1-22sarge4'
         linux_version = '2.5.999-test7-bk-17'
--- a/gub/specs/cygwin/gmp.py	Wed Oct 15 10:36:19 2014 +0100
+++ b/gub/specs/cygwin/gmp.py	Tue Oct 21 12:37:18 2014 +0100
@@ -4,7 +4,7 @@
 from gub.specs import gmp
 
 class Gmp (gmp.Gmp):
-    source = 'http://ftp.gnu.org/pub/gnu/gmp/gmp-4.1.4.tar.gz'
-    patches = ['gmp-4.1.4-1.patch']
+    source = 'http://ftp.gnu.org/pub/gnu/gmp/gmp-4.2.1.tar.gz'
+    patches = []
     dependencies = gup.gub_to_distro_deps (gmp.Gmp.dependencies,
                                            cygwin.gub_to_distro_dict)
--- a/gub/specs/gmp.py	Wed Oct 15 10:36:19 2014 +0100
+++ b/gub/specs/gmp.py	Tue Oct 21 12:37:18 2014 +0100
@@ -6,7 +6,7 @@
 from gub import tools
 
 class Gmp (target.AutoBuild):
-    source = 'http://ftp.gnu.org/pub/gnu/gmp/gmp-5.1.3.tar.gz'
+    source = 'http://ftp.gnu.org/pub/gnu/gmp/gmp-4.2.4.tar.gz'
     def __init__ (self, settings, source):
         target.AutoBuild.__init__ (self, settings, source)
         if not self.settings.platform.startswith ('darwin'):
--- a/gub/specs/mpfr.py	Wed Oct 15 10:36:19 2014 +0100
+++ b/gub/specs/mpfr.py	Tue Oct 21 12:37:18 2014 +0100
@@ -1,5 +1,5 @@
 from gub import tools
 
 class Mpfr__tools (tools.AutoBuild):
-    source = 'http://www.mpfr.org/mpfr-3.1.2/mpfr-3.1.2.tar.gz'
+    source = 'http://www.mpfr.org/mpfr-2.4.2/mpfr-2.4.2.tar.gz'
     dependencies = ['libtool', 'gmp']