roundtrip-aeson 0.2.0.0 → 0.2.0.1
raw patch · 7 files changed
+9/−77 lines, 7 filesdep ~basenew-uploader
Dependency ranges changed: base
Files
- .travis.yml +0/−45
- ChangeLog +3/−0
- lib/Data/Aeson/Roundtrip.hs +1/−1
- roundtrip-aeson.cabal +5/−13
- stack-2.14.yaml +0/−6
- stack-2.18.yaml +0/−6
- stack-2.20.yaml +0/−6
− .travis.yml
@@ -1,45 +0,0 @@-# Use the docker infrastructure.-sudo: false--# for cabal-language: haskell-ghc: 7.8--cache:- directories:- - $HOME/.stack--notifications:- email:- on_success: change- on_failure: change--env:- matrix:- - STACK_YAML=stack-2.14.yaml- - STACK_YAML=stack-2.18.yaml- - STACK_YAML=stack-2.20.yaml--install:- - travis_retry wget https://github.com/commercialhaskell/stack/releases/download/v0.1.2.0/stack-0.1.2.0-x86_64-linux.gz- - gunzip stack-0.1.2.0-x86_64-linux.gz- - mv stack-0.1.2.0-x86_64-linux stack- - chmod +x stack--# Here starts the actual work to be performed for the package under test; any-# command which exits with a non-zero exit code causes the build to fail.-script:- - cabal check- - cabal sdist- - export SRC=$(cabal info . | awk '{print $2;exit}')- - tar -xzf "dist/$SRC.tar.gz"- - cd "$SRC"- - cp ../$STACK_YAML .- - cp ../stack .- - travis_retry ./stack setup- - travis_retry ./stack install --only-snapshot -j4 --verbosity info- - ./stack build- - ./stack test- - ./stack haddock --no-haddock-deps- - export DIST_DIR=$(./stack path --dist-dir --stack-yaml $STACK_YAML)- - echo $DIST_DIR
+ ChangeLog view
@@ -0,0 +1,3 @@+Tue Oct 9 20:06:26 AEDT 2018++Fixed build under ghc-8.2.2 and nix
lib/Data/Aeson/Roundtrip.hs view
@@ -44,7 +44,7 @@ import Data.Text (Text) import Data.Vector ((!?)) import qualified Data.Vector as V-import Prelude hiding ((.))+import Prelude hiding ((.), (<$>)) -- curse the symbols of tyrrany import Text.Roundtrip.Classes
roundtrip-aeson.cabal view
@@ -1,38 +1,30 @@ name: roundtrip-aeson-version: 0.2.0.0+version: 0.2.0.1 synopsis: Un-/parse JSON with roundtrip invertible syntax definitions. description: Un-/parse JSON with roundtrip invertible syntax definitions. homepage: https://github.com/anchor/roundtrip-aeson license: BSD3 license-file: LICENSE author: Thomas Sutton <me@thomas-sutton.id.au>, Christian Marie <christian@ponies.io>-maintainer: Anchor Engineering <engineering@anchor.net.au>+maintainer: Christian Marie copyright: Copyright 2014-2015 Anchor Systems and others. category: Data build-type: Simple cabal-version: >=1.10 extra-source-files: HLint.hs+ ChangeLog README.md- stack-2.14.yaml- stack-2.18.yaml- stack-2.20.yaml- .travis.yml source-repository HEAD type: git location: https://github.com/anchor/roundtrip-aeson -source-repository this- type: git- location: https://github.com/anchor/roundtrip-aeson- tag: release-0.2.0.0- library default-language: Haskell2010 hs-source-dirs: lib exposed-modules: Data.Aeson.Roundtrip- build-depends: base >=4.7 && <4.8+ build-depends: base >=4.7 && <5 , aeson , bytestring , containers >=0.5 && <0.6@@ -49,7 +41,7 @@ default-language: Haskell2010 hs-source-dirs: tests main-is: demo.hs- build-depends: base >=4.7 && <4.8+ build-depends: base >=4.7 , aeson , bytestring , lens-aeson
− stack-2.14.yaml
@@ -1,6 +0,0 @@-flags: {}-packages:-- '.'-extra-deps:-- roundtrip-0.2.0.3-resolver: lts-2.20
− stack-2.18.yaml
@@ -1,6 +0,0 @@-flags: {}-packages:-- '.'-extra-deps:-- roundtrip-0.2.0.3-resolver: lts-2.20
− stack-2.20.yaml
@@ -1,6 +0,0 @@-flags: {}-packages:-- '.'-extra-deps:-- roundtrip-0.2.0.3-resolver: lts-2.20