Support GHC-8.2

This commit is contained in:
Oleg Grenrus 2017-06-17 00:16:43 +03:00
parent 2107a0588b
commit 18a290424c
3 changed files with 14 additions and 4 deletions

2
.gitignore vendored
View File

@ -14,6 +14,8 @@ examples/TextSize
examples/Temp.hs examples/Temp.hs
dist dist
dist-newstyle
.ghc.environment*
cabal-dev cabal-dev
*.o *.o
*.hi *.hi

View File

@ -1,4 +1,5 @@
language: haskell language: generic
sudo: required
env: env:
matrix: matrix:
@ -6,7 +7,9 @@ env:
- HPVER=2014.2.0.0 CABALVER=1.18 - HPVER=2014.2.0.0 CABALVER=1.18
- GHCVER=7.6.3 CABALVER=1.18 - GHCVER=7.6.3 CABALVER=1.18
- GHCVER=7.8.4 CABALVER=1.18 - GHCVER=7.8.4 CABALVER=1.18
- GHCVER=7.10.2 CABALVER=1.22 - GHCVER=7.10.3 CABALVER=1.22
- GHCVER=8.0.2 CABALVER=1.24
- GHCVER=8.2.1 CABALVER=2.0
- GHCVER=head CABALVER=head - GHCVER=head CABALVER=head
matrix: matrix:

View File

@ -1,8 +1,9 @@
name: svg-builder name: svg-builder
version: 0.1.0.2 version: 0.1.0.2
x-revision: 1
synopsis: DSL for building SVG. synopsis: DSL for building SVG.
description: Fast, easy to write SVG. description: Fast, easy to write SVG.
homepage: http://github.com/jeffreyrosenbluth/svg-builder.git homepage: https://github.com/diagrams/svg-builder.git
license: BSD3 license: BSD3
license-file: LICENSE license-file: LICENSE
author: Jeffrey Rosenbluth author: Jeffrey Rosenbluth
@ -13,6 +14,10 @@ build-type: Simple
extra-source-files: README.md extra-source-files: README.md
cabal-version: >=1.10 cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/diagrams/svg-builder.git
library library
ghc-options: -Wall -fsimpl-tick-factor=200 ghc-options: -Wall -fsimpl-tick-factor=200
exposed-modules: Graphics.Svg, exposed-modules: Graphics.Svg,
@ -20,7 +25,7 @@ library
Graphics.Svg.Path, Graphics.Svg.Path,
Graphics.Svg.Elements, Graphics.Svg.Elements,
Graphics.Svg.Attributes Graphics.Svg.Attributes
build-depends: base >= 4.5 && < 4.10, build-depends: base >= 4.5 && < 4.11,
blaze-builder >= 0.4 && < 0.5, blaze-builder >= 0.4 && < 0.5,
bytestring >= 0.10 && < 0.11, bytestring >= 0.10 && < 0.11,
hashable >= 1.1 && < 1.3, hashable >= 1.1 && < 1.3,