diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2016-03-15 21:53:39 +0000 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2016-03-15 22:01:32 +0000 |
commit | 39a2ed4121c53aafd5a1178bb8f1526f8f71608a (patch) | |
tree | 61e2c567a251913bfba8aa1d955c2ab9d652843d /dev-lang/ghc/files | |
parent | dev-libs/qoauth: Add Qt5 compat snapshot (diff) | |
download | gentoo-39a2ed4121c53aafd5a1178bb8f1526f8f71608a.tar.gz gentoo-39a2ed4121c53aafd5a1178bb8f1526f8f71608a.tar.bz2 gentoo-39a2ed4121c53aafd5a1178bb8f1526f8f71608a.zip |
dev-lang/ghc: bump up to 7.10.3, added binaries for x86, amd64
Package-Manager: portage-2.2.28
Diffstat (limited to 'dev-lang/ghc/files')
-rw-r--r-- | dev-lang/ghc/files/ghc-7.10.3-hardfloat.patch | 26 | ||||
-rw-r--r-- | dev-lang/ghc/files/ghc-7.10.3-relnotes.patch | 45 |
2 files changed, 71 insertions, 0 deletions
diff --git a/dev-lang/ghc/files/ghc-7.10.3-hardfloat.patch b/dev-lang/ghc/files/ghc-7.10.3-hardfloat.patch new file mode 100644 index 000000000000..106d07aa31c8 --- /dev/null +++ b/dev-lang/ghc/files/ghc-7.10.3-hardfloat.patch @@ -0,0 +1,26 @@ +commit 5cc08ebf2f346992a0abd4440252165c90b5ec05 +Author: Sergei Trofimovich <siarheit@google.com> +Date: Sat Jun 20 12:23:00 2015 +0100 + + Recognise 'hardhloat' as a valid vendor in a host tuple + + Observed on a tuple armv7a-hardfloat-linux-gnueabi: + > Unknown vendor hardfloat + + Reported-by: Sergey Alirzaev + Signed-off-by: Sergei Trofimovich <siarheit@google.com> + +diff --git a/aclocal.m4 b/aclocal.m4 +index 590edb0..958622c 100644 +--- a/aclocal.m4 ++++ b/aclocal.m4 +@@ -1966,6 +1966,9 @@ AC_DEFUN([GHC_CONVERT_VENDOR],[ + softfloat) # like armv5tel-softfloat-linux-gnueabi + $2="unknown" + ;; ++ hardfloat) # like armv7a-hardfloat-linux-gnueabi ++ $2="unknown" ++ ;; + *) + #pass thru by default + $2="$1" diff --git a/dev-lang/ghc/files/ghc-7.10.3-relnotes.patch b/dev-lang/ghc/files/ghc-7.10.3-relnotes.patch new file mode 100644 index 000000000000..675037946e75 --- /dev/null +++ b/dev-lang/ghc/files/ghc-7.10.3-relnotes.patch @@ -0,0 +1,45 @@ +diff --git a/ANNOUNCE b/ANNOUNCE +index 7812eba..0018b37 100644 +--- a/ANNOUNCE ++++ b/ANNOUNCE +@@ -1,6 +1,6 @@ + + ============================================================== +- The (Interactive) Glasgow Haskell Compiler -- version 7.10.2 ++ The (Interactive) Glasgow Haskell Compiler -- version 7.10.3 + ============================================================== + + The GHC Team is pleased to announce a new minor release of GHC. This is a +@@ -29,7 +29,7 @@ bug-fix release and contains a number of important fixes, + A more thorough list of the changes in the release can be found in the release + notes, + +- http://haskell.org/ghc/docs/7.10.2/html/users_guide/release-7-10-2.html ++ http://haskell.org/ghc/docs/7.10.3/html/users_guide/release-7-10-3.html + + + How to get it +diff --git a/docs/users_guide/intro.xml b/docs/users_guide/intro.xml +index 3292334..fb7116e 100644 +--- a/docs/users_guide/intro.xml ++++ b/docs/users_guide/intro.xml +@@ -309,6 +309,7 @@ + + &relnotes1; + &relnotes2; ++&relnotes3; + + </chapter> + +diff --git a/docs/users_guide/ug-ent.xml.in b/docs/users_guide/ug-ent.xml.in +index b696aad..3629e93 100644 +--- a/docs/users_guide/ug-ent.xml.in ++++ b/docs/users_guide/ug-ent.xml.in +@@ -5,6 +5,7 @@ + <!ENTITY intro SYSTEM "intro.xml" > + <!ENTITY relnotes1 SYSTEM "7.10.1-notes.xml" > + <!ENTITY relnotes2 SYSTEM "7.10.2-notes.xml" > ++<!ENTITY relnotes3 SYSTEM "7.10.3-notes.xml" > + <!ENTITY using SYSTEM "using.xml" > + <!ENTITY code-gens SYSTEM "codegens.xml" > + <!ENTITY runtime SYSTEM "runtime_control.xml" > |