[Git][ghc/ghc][wip/andreask/tools_unlines] 2 commits: integer-gmp: Bump version and add changelog entry
Andreas Klebinger
gitlab at gitlab.haskell.org
Tue Mar 31 12:48:52 UTC 2020
Andreas Klebinger pushed to branch wip/andreask/tools_unlines at Glasgow Haskell Compiler / GHC
Commits:
904b9a8b by Ben Gamari at 2020-03-30T16:12:04+02:00
integer-gmp: Bump version and add changelog entry
- - - - -
27afb40e by Andreas Klebinger at 2020-03-31T14:48:36+02:00
Turn newlines into spaces for hadrian/ghci.
The newlines break the command on windows.
- - - - -
4 changed files:
- hadrian/ghci-cabal
- hadrian/ghci-stack
- libraries/integer-gmp/changelog.md
- libraries/integer-gmp/integer-gmp.cabal
Changes:
=====================================
hadrian/ghci-cabal
=====================================
@@ -2,5 +2,6 @@
set -e
-GHC_FLAGS="$GHC_FLAGS $(TERM=dumb CABFLAGS=-v0 "hadrian/build-cabal" tool-args -q --build-root=.hadrian_ghci --flavour=ghc-in-ghci "$@")"
+# Replace newlines with spaces, as these otherwise break the ghci invocation on windows.
+GHC_FLAGS="$GHC_FLAGS $(TERM=dumb CABFLAGS=-v0 "hadrian/build-cabal" tool-args -q --build-root=.hadrian_ghci --flavour=ghc-in-ghci "$@" | tr '\n\r' ' ')"
ghci $GHC_FLAGS "$@" -fno-code -fwrite-interface -hidir=.hadrian_ghci/interface -O0 ghc/Main.hs +RTS -A128m
=====================================
hadrian/ghci-stack
=====================================
@@ -2,5 +2,6 @@
set -e
-GHC_FLAGS="$GHC_FLAGS $(TERM=dumb CABFLAGS=-v0 "hadrian/build-stack" tool-args -q --build-root=.hadrian_ghci --flavour=ghc-in-ghci "$@")"
+# Replace newlines with spaces, as these otherwise break the ghci invocation on windows.
+GHC_FLAGS="$GHC_FLAGS $(TERM=dumb CABFLAGS=-v0 "hadrian/build-stack" tool-args -q --build-root=.hadrian_ghci --flavour=ghc-in-ghci "$@" | tr '\n\r' ' ')"
stack exec -- ghci $GHC_FLAGS "$@" -fno-code -fwrite-interface -hidir=.hadrian_ghci/interface -O0 ghc/Main.hs +RTS -A128m
=====================================
libraries/integer-gmp/changelog.md
=====================================
@@ -1,5 +1,11 @@
# Changelog for [`integer-gmp` package](http://hackage.haskell.org/package/integer-gmp)
+## 1.0.3.0 *January 2019*
+
+ * Bundled with GHC 8.10.1
+
+ * Documentation changes
+
## 1.0.2.0 *April 2018*
* Bundled with GHC 8.4.2
=====================================
libraries/integer-gmp/integer-gmp.cabal
=====================================
@@ -1,6 +1,6 @@
cabal-version: 2.0
name: integer-gmp
-version: 1.0.2.0
+version: 1.0.3.0
synopsis: Integer library based on GMP
license: BSD3
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/compare/4a8d552c133af58f2f609513c867a44969f7c436...27afb40e8b75d81171ce8f8ab916ef90e0de605c
--
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/compare/4a8d552c133af58f2f609513c867a44969f7c436...27afb40e8b75d81171ce8f8ab916ef90e0de605c
You're receiving this email because of your account on gitlab.haskell.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.haskell.org/pipermail/ghc-commits/attachments/20200331/e3a01566/attachment-0001.html>
More information about the ghc-commits
mailing list