diff options
author | Herbert Valerio Riedel <hvr@gnu.org> | 2015-12-19 19:02:15 +0100 |
---|---|---|
committer | Herbert Valerio Riedel <hvr@gnu.org> | 2015-12-19 19:02:15 +0100 |
commit | 7b8a8222e8f0ac1059b57cfba25294b6d55d1d65 (patch) | |
tree | 0c5e138fe29522ab9db9fe8c18917c52b3453911 /libraries/ghc-boot | |
parent | 59de6e84ff022ddca540724ab1aa0577c6aa2363 (diff) | |
download | haskell-7b8a8222e8f0ac1059b57cfba25294b6d55d1d65.tar.gz |
Make ghc-boot Hackage-ready
GHC 7.8 / base-4.7 is the oldest GHC/base version compatible with this
package, so let's declare this properly in the cabal file.
Diffstat (limited to 'libraries/ghc-boot')
-rw-r--r-- | libraries/ghc-boot/GHC/Serialized.hs | 2 | ||||
-rw-r--r-- | libraries/ghc-boot/changelog.md | 5 | ||||
-rw-r--r-- | libraries/ghc-boot/ghc-boot.cabal | 20 |
3 files changed, 15 insertions, 12 deletions
diff --git a/libraries/ghc-boot/GHC/Serialized.hs b/libraries/ghc-boot/GHC/Serialized.hs index 39fa6a72f3..fbb96849fb 100644 --- a/libraries/ghc-boot/GHC/Serialized.hs +++ b/libraries/ghc-boot/GHC/Serialized.hs @@ -1,4 +1,4 @@ -{-# LANGUAGE CPP, RankNTypes, ScopedTypeVariables #-} +{-# LANGUAGE RankNTypes, ScopedTypeVariables #-} {-# OPTIONS_GHC -fno-warn-name-shadowing #-} -- diff --git a/libraries/ghc-boot/changelog.md b/libraries/ghc-boot/changelog.md new file mode 100644 index 0000000000..f429a84617 --- /dev/null +++ b/libraries/ghc-boot/changelog.md @@ -0,0 +1,5 @@ +## 0.0.0.0 *Feb 2016* + + * Bundled with GHC 7.10.1 + + * Initial version diff --git a/libraries/ghc-boot/ghc-boot.cabal b/libraries/ghc-boot/ghc-boot.cabal index 4439153211..f9516b6060 100644 --- a/libraries/ghc-boot/ghc-boot.cabal +++ b/libraries/ghc-boot/ghc-boot.cabal @@ -1,8 +1,10 @@ name: ghc-boot version: 0.0.0.0 license: BSD3 +license-file: LICENSE +category: GHC maintainer: ghc-devs@haskell.org -bug-reports: glasgow-haskell-bugs@haskell.org +bug-reports: https://ghc.haskell.org/trac/ghc/newticket synopsis: Shared functionality between GHC and its boot libraries description: This library is shared between GHC, ghc-pkg, and other boot libraries. @@ -18,6 +20,7 @@ description: This library is shared between GHC, ghc-pkg, and other boot and program do not have to depend on Cabal. cabal-version: >=1.10 build-type: Simple +extra-source-files: changelog.md source-repository head type: git @@ -26,12 +29,7 @@ source-repository head Library default-language: Haskell2010 - other-extensions: - GeneralizedNewtypeDeriving - RecordWildCards - StandaloneDeriving - Trustworthy - TypeSynonymInstances + other-extensions: DeriveGeneric, RankNTypes, ScopedTypeVariables exposed-modules: GHC.Lexeme @@ -39,9 +37,9 @@ Library GHC.LanguageExtensions GHC.Serialized - build-depends: base >= 4 && < 5, + build-depends: base >= 4.7 && < 4.10, binary == 0.8.*, - bytestring >= 0.9 && < 1, - directory >= 1 && < 1.3, - filepath + bytestring == 0.10.*, + directory == 1.2.*, + filepath >= 1.3 && < 1.5 |