From b4edc2680fc925dbfa7702d3f47a6e63c6502c30 Mon Sep 17 00:00:00 2001 From: Artyom Date: Sun, 22 May 2016 11:38:04 +0300 Subject: [PATCH 001/299] Add ilist --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 92107c85..d79942a9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1604,6 +1604,7 @@ packages: - cheapskate-highlight - Spock-lucid - charsetdetect-ae + - ilist "Takano Akio aljee@hyper.cx @takano-akio": - fast-builder From ed945d0801979f93c6801c41f48e59bcba0f4885 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 25 May 2016 13:00:10 +0300 Subject: [PATCH 002/299] Upper bound for #1477 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 09e8a77f..6274d940 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2215,6 +2215,9 @@ packages: # These are all temporary, and need to be removed before starting GHC 8 - data-default < 0.7 - data-default-class < 0.1 + + # https://github.com/fpco/stackage/issues/1477 + - gi-javascriptcore < 3.1 # end of packages From d3bda66eb97746fb940e4dfe5b4ad99b347ddee2 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 25 May 2016 13:01:45 +0300 Subject: [PATCH 003/299] Add back issue reference --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6274d940..64af3faf 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2212,7 +2212,7 @@ packages: - Win32 == 2.3.1.1 "Stackage upper bounds": - # These are all temporary, and need to be removed before starting GHC 8 + # https://github.com/fpco/stackage/issues/1469 - data-default < 0.7 - data-default-class < 0.1 From ce9db10bccc532d4e01e6a5a769d94f25037ab81 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 25 May 2016 13:22:11 +0300 Subject: [PATCH 004/299] Some minor cleanups --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 64af3faf..68671d48 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1517,8 +1517,7 @@ packages: "Matthew Pickering @mpickering": - refact - # https://github.com/fpco/stackage/issues/1452 - # - servant-pandoc + # GHC 8 - servant-pandoc # GHC 8 - ghc-exactprint # GHC 8 - apply-refact @@ -2690,6 +2689,7 @@ expected-test-failures: # Fails sporadically: https://github.com/fpco/stackage/issues/1125 - jose-jwt + # https://github.com/fpco/stackage/issues/1187 # openfile: does not exist - skein From f5599103231178eca37bd4bef76c042a2452a836 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 25 May 2016 15:59:23 +0300 Subject: [PATCH 005/299] Rename doc dir for GHC 8 --- debian-bootstrap.sh | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index 36768586..4fe8f8e5 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -24,6 +24,9 @@ add-apt-repository -y ppa:marutter/rrutter # not sure what this was needed for #add-apt-repository -y ppa:openstack-ubuntu-testing/icehouse +# Set the GHC version +GHCVER=8.0.1 + # Get Stack apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 575159689BEFB442 echo 'deb http://download.fpcomplete.com/ubuntu xenial main'|tee /etc/apt/sources.list.d/fpco.list @@ -31,8 +34,8 @@ echo 'deb http://download.fpcomplete.com/ubuntu xenial main'|tee /etc/apt/source apt-get update apt-get install -y \ build-essential \ - ghc-8.0.1 \ - ghc-8.0.1-htmldocs \ + ghc-$GHCVER \ + ghc-$GHCVER-htmldocs \ hscolour \ sudo \ curl \ @@ -108,6 +111,9 @@ apt-get install -y \ openjdk-8-jdk \ zlib1g-dev +# Put documentation where we expect it +mv /opt/ghc/$GHCVER/share/doc/ghc-$GHCVER/ /opt/ghc/$GHCVER/share/doc/ghc + # Buggy versions of ld.bfd fail to link some Haskell packages: # https://sourceware.org/bugzilla/show_bug.cgi?id=17689. Gold is # faster anyways and uses less RAM. From 5b788bf0ee899a5813d9c89105ab12dc287d0367 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 25 May 2016 15:59:33 +0300 Subject: [PATCH 006/299] Remove unneeded workaround for #1388 --- debian-bootstrap.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index 4fe8f8e5..8b3cfacb 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -119,6 +119,3 @@ mv /opt/ghc/$GHCVER/share/doc/ghc-$GHCVER/ /opt/ghc/$GHCVER/share/doc/ghc # faster anyways and uses less RAM. update-alternatives --install "/usr/bin/ld" "ld" "/usr/bin/ld.gold" 20 update-alternatives --install "/usr/bin/ld" "ld" "/usr/bin/ld.bfd" 10 - -# See: https://github.com/fpco/stackage/issues/1388 -ln -n /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server/libjvm.so /usr/lib From 6f736931c286126c87644de7bc8ce2fbbc23f4ac Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Wed, 25 May 2016 17:19:38 +0300 Subject: [PATCH 007/299] Expect Haddock failure conal/MemoTrie#10 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 68671d48..db257b35 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2819,6 +2819,9 @@ expected-haddock-failures: # uses all server memory - gi-gtk + + # https://github.com/conal/MemoTrie/issues/10 + - MemoTrie # end of expected-haddock-failures From 1f50bb874c7fcdc06ae5b27d01a7f6711ad2eb2a Mon Sep 17 00:00:00 2001 From: Ian Jeffries Date: Wed, 25 May 2016 13:58:50 -0400 Subject: [PATCH 008/299] Add hjsonpointer and hjsonschema. --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index db257b35..bfb42161 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2197,6 +2197,10 @@ packages: - gi-pango - haskell-gi + "Ian Grant Jeffries @seagreen": + - hjsonpointer + - hjsonschema + # If you stop maintaining a package you can move it here. # It will then be disabled if it starts causing problems. # See https://github.com/fpco/stackage/issues/1056 From 2b80b4d51ed831d232c05c2736613977b5456803 Mon Sep 17 00:00:00 2001 From: mrkkrp Date: Thu, 26 May 2016 01:25:06 +0700 Subject: [PATCH 009/299] =?UTF-8?q?Add=20the=20=E2=80=98JuicyPixels-extra?= =?UTF-8?q?=E2=80=99=20package?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index db257b35..1c21770d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1727,6 +1727,7 @@ packages: - hspec-megaparsec - plan-b - zip + - JuicyPixels-extra "Thomas Bereknyei ": [] From 43488f1aa6a948b3c6432115a679b9865da9e2e2 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 26 May 2016 19:22:23 +0900 Subject: [PATCH 010/299] reenable cabal-sort Henning released 0.0.5.3 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1c21770d..35cf6ccb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -870,7 +870,7 @@ packages: "Jens Petersen juhpetersen@gmail.com @juhp": - cabal-rpm - # GHC 8 - cabal-sort + - cabal-sort - ghcjs-codemirror - ghcjs-dom # GHC 8 - idris From 1f6dbae1386a0681bd077fefbab69cc2d66df2a9 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 26 May 2016 10:55:39 +0300 Subject: [PATCH 011/299] Block biophd BioHaskell/biophd#3 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 35cf6ccb..15819f62 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -593,7 +593,7 @@ packages: - blastxml - bioace # https://github.com/BioHaskell/biophd/issues/3 - - biophd + # - biophd - biopsl # https://github.com/ingolia/SamTools/issues/3 # - samtools From 9075473e392435b0b9d5c6a9e790724ff2cc2811 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 26 May 2016 14:23:46 +0300 Subject: [PATCH 012/299] More GHC 8 blocks --- build-constraints.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 15819f62..1ecd02b0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -749,7 +749,8 @@ packages: "Nikita Volkov ": - base-prelude - - cases + # https://github.com/nikita-volkov/cases/issues/2 + # GHC 8 - cases - focus # GHC 8 - hasql - list-t @@ -1917,7 +1918,8 @@ packages: - pgp-wordlist "Jeremy Shaw @stepcut": - - boomerang + # https://github.com/Happstack/boomerang/issues/2 + # GHC 8 - boomerang # GHC 8 - clckwrks # GHC 8 - clckwrks-cli # GHC 8 - clckwrks-plugin-page From 9ae879dc77ee61fc8c821339efbf6586f492d48e Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 26 May 2016 14:42:17 +0300 Subject: [PATCH 013/299] Add back cases --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1ecd02b0..93e255ca 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -749,8 +749,7 @@ packages: "Nikita Volkov ": - base-prelude - # https://github.com/nikita-volkov/cases/issues/2 - # GHC 8 - cases + - cases - focus # GHC 8 - hasql - list-t From 0250747756e9c56a8d668e4e5d55a02fcfd60848 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 26 May 2016 16:39:21 +0300 Subject: [PATCH 014/299] Some more GHC 8 blocked packages --- build-constraints.yaml | 28 ++++++++++++++++++++++------ 1 file changed, 22 insertions(+), 6 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 93e255ca..b71099c8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -532,7 +532,8 @@ packages: - tasty-quickcheck - tasty-smallcheck - tasty-html - - time-lens + # https://github.com/feuerbach/data-lens-light/issues/7 + # GHC 8 - time-lens # GHC 8 - timezone-olson # GHC 8 - timezone-series - traverse-with-class @@ -794,7 +795,8 @@ packages: #- elm-package - language-glsl - prettyclass - - QuasiText + # https://github.com/mikeplus64/QuasiText/issues/3 + # GHC 8 - QuasiText - union-find - zip-archive @@ -1168,7 +1170,9 @@ packages: # - inline-r "David Fox @ddssff": - - debian + [] + # https://github.com/ddssff/debian-haskell/issues/6 + # GHC 8 - debian # GHC 8 - cabal-debian "Stefan Saasen ": @@ -1360,7 +1364,8 @@ packages: - nationstates "Mathieu Boespflug @mboes": - - distributed-closure + # https://github.com/tweag/distributed-closure/issues/3 + # GHC 8 - distributed-closure # GHC 8 - H # GHC 8 - ihaskell-inline-r # GHC 8 - inline-r @@ -1800,8 +1805,10 @@ packages: # GHC 8 - engine-io-yesod "Tim McGilchrist @tmcgilchrist": + [] # GHC 8 - riak - - airship + # https://github.com/helium/airship/issues/101 + # GHC 8 - airship "Yuras Shumovich @Yuras": - pdf-toolbox-core @@ -1941,7 +1948,7 @@ packages: # GHC 8 - userid - web-plugins - web-routes - - web-routes-boomerang + # GHC 8 - web-routes-boomerang # GHC 8 - web-routes-happstack - web-routes-hsp - web-routes-th @@ -2759,6 +2766,12 @@ expected-test-failures: # https://github.com/fpco/stackage/issues/1459 - twitter-conduit + + # https://github.com/hspec/HUnit/issues/7 + - HUnit + + # https://github.com/IreneKnapp/direct-sqlite/issues/63 + - direct-sqlite # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run @@ -2824,6 +2837,9 @@ expected-haddock-failures: # https://github.com/conal/MemoTrie/issues/10 - MemoTrie + + # GHC 8 + - cassava # end of expected-haddock-failures From fe8fdaa6550a5be37e9c7edb44850e50825717b6 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 26 May 2016 16:56:49 +0300 Subject: [PATCH 015/299] And more --- build-constraints.yaml | 38 ++++++++++++++++++++++++++------------ 1 file changed, 26 insertions(+), 12 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b71099c8..35c7902e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -506,7 +506,8 @@ packages: # - hPDB-examples # GHC 8 - wordpass - - json-autotype + # https://github.com/nilcons/hflags/issues/17 + # GHC 8 - json-autotype - posix-realtime "Dominic Steinitz ": @@ -769,7 +770,8 @@ packages: # GHC 8 - Spock-digestive - Spock-worker - graph-core - - highjson + # https://github.com/agrafix/highjson/issues/1 + # GHC 8 - highjson - hvect - reroute - users @@ -778,7 +780,8 @@ packages: - users-test - validate-input - ignore - - elm-bridge + # https://github.com/agrafix/elm-bridge/issues/14 + # GHC 8 - elm-bridge # GHC 8 - hackmanager # GHC 8 - digestive-bootstrap - blaze-bootstrap @@ -874,7 +877,7 @@ packages: - cabal-rpm - cabal-sort - ghcjs-codemirror - - ghcjs-dom + # GHC 8 - ghcjs-dom # GHC 8 - idris # BLOCKED lens 4.14 - jsaddle # GHC 8 - leksah-server @@ -960,7 +963,8 @@ packages: - language-c-quote "Sönke Hahn soenkehahn@gmail.com @soenkehahn": - - generics-eot + # https://github.com/soenkehahn/generics-eot/issues/4 + # GHC 8 - generics-eot - getopt-generics - graph-wrapper - string-conversions @@ -1126,7 +1130,7 @@ packages: - kmeans # Not compatible with GHC 7.10.2 (yes, it's a regression in GHC) # - boolsimplifier - - cubicspline + # GHC 8 - cubicspline - maximal-cliques "Alexander Bondarenko @wiz": @@ -1138,9 +1142,10 @@ packages: - generics-sop "Vivian McPhail @amcphail": - - hmatrix-gsl-stats - - hsignal - - hstatistics + # https://github.com/albertoruiz/hmatrix/issues/192 + # GHC 8 - hmatrix-gsl-stats + # GHC 8 - hsignal + # GHC 8 - hstatistics # GHC 8 - plot # GHC 8 - plot-gtk # GHC 8 - plot-gtk3 @@ -1503,7 +1508,8 @@ packages: "Alexey Khudyakov @Shimuuar": - histogram-fill - fixed-vector - - fixed-vector-hetero + # https://github.com/Shimuuar/fixed-vector-hetero/issues/2 + # GHC 8 - fixed-vector-hetero - type-level-numbers "Ryan Scott @RyanGlScott": @@ -2022,7 +2028,9 @@ packages: - pure-cdb "Suhail Shergill @suhailshergill": - - extensible-effects + [] + # https://github.com/suhailshergill/extensible-effects/issues/64 + # GHC 8 - extensible-effects "Justus Adam @JustusAdam": - mustache @@ -2202,7 +2210,7 @@ packages: - gi-gio - gi-glib - gi-gobject - - gi-gtk + # GHC 8 - gi-gtk - gi-pango - haskell-gi @@ -2772,6 +2780,12 @@ expected-test-failures: # https://github.com/IreneKnapp/direct-sqlite/issues/63 - direct-sqlite + + # https://github.com/tfausak/flow/issues/10 + - flow + + # https://github.com/well-typed/hackage-security/issues/164 + - hackage-security # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 8c6e1ede18761f160368013ecab3d2c015295a34 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 26 May 2016 18:07:44 +0300 Subject: [PATCH 016/299] Add and remove a few things --- build-constraints.yaml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 35c7902e..0a1a5772 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -533,8 +533,7 @@ packages: - tasty-quickcheck - tasty-smallcheck - tasty-html - # https://github.com/feuerbach/data-lens-light/issues/7 - # GHC 8 - time-lens + - time-lens # GHC 8 - timezone-olson # GHC 8 - timezone-series - traverse-with-class @@ -1122,8 +1121,9 @@ packages: - cabal-file-th "Gershom Bazerman @gbaz": - - jmacro - - jmacro-rpc + # http://hub.darcs.net/gershomb/jmacro/issue/3 + # GHC 8 - jmacro + # GHC 8 - jmacro-rpc # GHC 8 - jmacro-rpc-happstack # GHC 8 - jmacro-rpc-snap - mbox @@ -1944,7 +1944,7 @@ packages: # GHC 8 - happstack-jmacro # GHC 8 - happstack-server # GHC 8 - happstack-server-tls - - hsx-jmacro + # GHC 8 - hsx-jmacro # GHC 8 - ixset - reform - reform-blaze @@ -2786,6 +2786,9 @@ expected-test-failures: # https://github.com/well-typed/hackage-security/issues/164 - hackage-security + + # GHC 8 issue not reported upstream since issue tracker disabled + - hspec-expectations-pretty-diff # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 515ca82e1a14e0e76e7dd844d4b0ad0e9d14321d Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 26 May 2016 18:22:14 +0300 Subject: [PATCH 017/299] Onward and downward --- build-constraints.yaml | 29 ++++++++++++++++++++++++++--- 1 file changed, 26 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0a1a5772..86ac3d19 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -536,7 +536,8 @@ packages: - time-lens # GHC 8 - timezone-olson # GHC 8 - timezone-series - - traverse-with-class + # https://github.com/feuerbach/traverse-with-class/issues/3 + # GHC 8 - traverse-with-class - tuples-homogenous-h98 "George Giorgidze ": @@ -1957,7 +1958,8 @@ packages: # GHC 8 - web-routes-boomerang # GHC 8 - web-routes-happstack - web-routes-hsp - - web-routes-th + # https://github.com/Happstack/web-routes-th/issues/1 + # GHC 8 - web-routes-th - web-routes-wai "Pedro Tacla Yamada @yamadapc": @@ -2180,7 +2182,7 @@ packages: - postgresql-transactional "Tom Murphy @amindfv": - - vivid + # GHC 8 - vivid # GHC 8 - midair - nano-erl @@ -2789,6 +2791,18 @@ expected-test-failures: # GHC 8 issue not reported upstream since issue tracker disabled - hspec-expectations-pretty-diff + + # https://github.com/clash-lang/clash-prelude/issues/57 + - clash-prelude + + # https://github.com/xmonad/xmonad/issues/36 + - xmonad + + # https://github.com/fpco/stackage/issues/1480 + - text + + # https://gitlab.com/twittner/swagger/issues/6 + - swagger # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run @@ -2823,6 +2837,9 @@ expected-benchmark-failures: # https://github.com/commercialhaskell/stack/issues/2153 - vector-binary-instances + + # GHC 8 + - cassava # end of expected-benchmark-failures @@ -2857,6 +2874,12 @@ expected-haddock-failures: # GHC 8 - cassava + + # https://github.com/GetShopTV/swagger2/issues/66 + - swagger2 + + # https://github.com/bos/statistics/issues/93 + - statistics # end of expected-haddock-failures From 4d9473a0efa049a826fcae2d39b19ed400a70039 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 26 May 2016 18:32:55 +0300 Subject: [PATCH 018/299] You shall not PAAASSSS --- build-constraints.yaml | 28 ++++++++++++++++++++-------- 1 file changed, 20 insertions(+), 8 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 86ac3d19..c0a64ff8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -39,7 +39,8 @@ packages: - mime-mail-ses - network-conduit-tls - persistent - - persistent-mysql + # https://github.com/bos/mysql/issues/20 + # GHC 8 - persistent-mysql - persistent-postgresql - persistent-sqlite - persistent-template @@ -1200,8 +1201,9 @@ packages: - lackey # GHC 8 - octane - optparse-generic # Maintained by @Gabriel439. - - ratel - - ratel-wai + # https://github.com/tfausak/ratel/issues/1 + # GHC 8 - ratel + # GHC 8 - ratel-wai # GHC 8 - strive # GHC 8 - wuss @@ -1216,7 +1218,8 @@ packages: "Will Coster @fimad": - prometheus-client - prometheus-metrics-ghc - - scalpel + # https://github.com/fimad/scalpel/issues/33 + # GHC 8 - scalpel - wai-middleware-prometheus "William Casarin @jb55": @@ -1428,9 +1431,10 @@ packages: # GHC 8 - xml-conduit-parse "Kostiantyn Rybnikov @k-bx": - - protocol-buffers - - hprotoc - - protocol-buffers-descriptor + # https://github.com/k-bx/protocol-buffers/issues/38 + # GHC 8 - protocol-buffers + # GHC 8 - hprotoc + # GHC 8 - protocol-buffers-descriptor # GHC 8 - ekg-core - digits - hbeanstalk @@ -1772,6 +1776,7 @@ packages: - flat-mcmc "Facundo Domínguez @facundominguez": + [] # GHC 8 - distributed-process # GHC 8 - distributed-process-async # GHC 8 - distributed-process-client-server @@ -1785,7 +1790,8 @@ packages: # GHC 8 - network-transport # GHC 8 - network-transport-tcp # GHC 8 - network-transport-composed - - rank1dynamic + # https://github.com/haskell-distributed/rank1dynamic/issues/15 + # GHC 8 - rank1dynamic "Alexander Vershilov @qnikst": [] @@ -2803,6 +2809,9 @@ expected-test-failures: # https://gitlab.com/twittner/swagger/issues/6 - swagger + + # https://github.com/peti/language-nix/issues/2 + - language-nix # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run @@ -2880,6 +2889,9 @@ expected-haddock-failures: # https://github.com/bos/statistics/issues/93 - statistics + + # https://github.com/aelve/microlens/issues/72 + - microlens # end of expected-haddock-failures From 108d43e24dab48a9dfdbd8a07ba54a6478146faa Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 26 May 2016 19:00:52 +0300 Subject: [PATCH 019/299] metrics --- build-constraints.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c0a64ff8..36a626ea 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -537,8 +537,7 @@ packages: - time-lens # GHC 8 - timezone-olson # GHC 8 - timezone-series - # https://github.com/feuerbach/traverse-with-class/issues/3 - # GHC 8 - traverse-with-class + - traverse-with-class - tuples-homogenous-h98 "George Giorgidze ": @@ -2892,6 +2891,9 @@ expected-haddock-failures: # https://github.com/aelve/microlens/issues/72 - microlens + + # https://github.com/iand675/metrics/issues/5 + - metrics # end of expected-haddock-failures From 4cb443bb13a53d9e333857ae7ab60b21e4e06091 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 26 May 2016 19:35:53 +0300 Subject: [PATCH 020/299] Have I left the valley of death? --- build-constraints.yaml | 28 ++++++++++++++++++++++------ 1 file changed, 22 insertions(+), 6 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 36a626ea..0b0ca66a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -816,8 +816,10 @@ packages: - language-ecmascript "Tom Ellis ": + [] # GHC 8 - opaleye - - product-profunctors + # https://github.com/tomjaguarpaw/product-profunctors/issues/16 + # GHC 8 - product-profunctors "Samplecount stefan@samplecount.com @kaoskorobase": - shake-language-c @@ -1199,7 +1201,8 @@ packages: # GHC 8 - github-release - lackey # GHC 8 - octane - - optparse-generic # Maintained by @Gabriel439. + # https://github.com/Gabriel439/Haskell-Optparse-Generic-Library/issues/23 + # GHC 8 - optparse-generic # Maintained by @Gabriel439. # https://github.com/tfausak/ratel/issues/1 # GHC 8 - ratel # GHC 8 - ratel-wai @@ -1830,7 +1833,8 @@ packages: - scanner "Stanislav Chernichkin @schernichkin": - - partial-isomorphisms + [] + # GHC 8 - partial-isomorphisms # GHC 8 - vinyl "Christoph Breitkopf @bokesan": @@ -2011,11 +2015,12 @@ packages: # GHC 8 - dawg-ord "Amit Levy @alevy": - - postgresql-orm + # https://github.com/alevy/postgresql-orm/issues/17 + # GHC 8 - postgresql-orm - simple - simple-templates - simple-session - - simple-postgresql-orm + # GHC 8 - simple-postgresql-orm "Sergey Astanin @astanin": [] @@ -2144,7 +2149,9 @@ packages: # GHC 8 - ghc-imported-from "Fraser Tweedale @frasertweedale": - - jose + [] + # https://github.com/frasertweedale/hs-jose/issues/14 + # GHC 8 - jose "Yutaka Nishimura @ynishi": - atndapi @@ -2811,6 +2818,12 @@ expected-test-failures: # https://github.com/peti/language-nix/issues/2 - language-nix + + # https://github.com/thoughtpolice/hs-ed25519/issues/15 + - ed25519 + + # https://github.com/twanvl/multiset/issues/18 + - multiset # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run @@ -2894,6 +2907,9 @@ expected-haddock-failures: # https://github.com/iand675/metrics/issues/5 - metrics + + # https://github.com/haskell/haddock/issues/516 + - haddock-api # end of expected-haddock-failures From 6b45af02f44076ae4dcab9b53e922d115fda3126 Mon Sep 17 00:00:00 2001 From: Gregory Schwartz Date: Thu, 26 May 2016 14:09:20 -0400 Subject: [PATCH 021/299] Added blosum package --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d5d6e6c3..9279e8e2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1725,6 +1725,7 @@ packages: - random-tree - clumpiness - find-clumpiness + - blosum "Simon Marechal @bartavelle": # GHC 8 - compactmap From d447b20abdc3bd10ba78bd784868724f5b5180a0 Mon Sep 17 00:00:00 2001 From: Michael Walker Date: Thu, 26 May 2016 20:00:15 +0100 Subject: [PATCH 022/299] GHC 8 compatibility --- build-constraints.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d5d6e6c3..f48de37f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1609,11 +1609,11 @@ packages: "Michael Walker @barrucadu": # GHC 8 - both - # GHC 8 - dpor - # GHC 8 - dejafu - # GHC 8 - async-dejafu - # GHC 8 - hunit-dejafu - # GHC 8 - tasty-dejafu + - dpor + - dejafu + - async-dejafu + - hunit-dejafu + - tasty-dejafu - irc-ctcp - irc-conduit # GHC 8 - irc-client From 32a850cdbf9cb2faafa2c2993f2c41dafd319f36 Mon Sep 17 00:00:00 2001 From: Omari Norman Date: Thu, 26 May 2016 17:28:58 -0400 Subject: [PATCH 023/299] Pinchot is GHC 8 compatible --- build-constraints.yaml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f48de37f..c22620aa 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -117,7 +117,7 @@ packages: - cartel - Earley - ofx - # GHC 8 - pinchot + - pinchot # GHC 8 - validation "Neil Mitchell": @@ -2324,11 +2324,6 @@ package-flags: jsaddle: gtk3: true - # Only necessary for template-haskell < 2.11, so please - # remove this when moving up to GHC 8.0 - pinchot: - oldtemplatehaskell: true - # end of package-flags # Special configure options for individual packages From 9e2b0352185214bbdbc68603c90cd85a8a02df65 Mon Sep 17 00:00:00 2001 From: Abhinav Gupta Date: Thu, 26 May 2016 16:15:03 -0700 Subject: [PATCH 024/299] Re-enable GHC 8-compatible packages All these have been built and tested locally against `nightly-2016-05-26` --- build-constraints.yaml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f48de37f..c6b5be65 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1030,11 +1030,10 @@ packages: - universe-reverse-instances "Abhinav Gupta @abhinav": - [] - # GHC 8 - farmhash - # GHC 8 - language-thrift - # GHC 8 - pinch - # GHC 8 - sandman + - farmhash + - pinch + - sandman + - language-thrift "Adam C. Foltzer acfoltzer@galois.com @acfoltzer": # GHC 8 - cryptol From a0e0cd3270b259a5e78994905c31f22e3dd32a20 Mon Sep 17 00:00:00 2001 From: Csongor Kiss Date: Fri, 27 May 2016 00:40:53 +0100 Subject: [PATCH 025/299] Add back wai-websockets and websockets for GHC 8 --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f48de37f..0f81afad 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -45,7 +45,7 @@ packages: - persistent-sqlite - persistent-template # GHC 8 - stm-conduit - # GHC 8 - wai-websockets + - wai-websockets - warp-tls - yackage - yesod @@ -153,7 +153,7 @@ packages: - stylish-haskell - profiteur - psqueues - # GHC 8 - websockets + - websockets # GHC 8 - websockets-snap "Sibi Prabakaran @psibi": From 9a911c67dfe250bbad63cd80e77c62b12e7550a6 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 27 May 2016 05:04:50 +0300 Subject: [PATCH 026/299] Remove test suite failure tfausak/flow#10 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fca0d4cd..ed18752d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2794,9 +2794,6 @@ expected-test-failures: # https://github.com/IreneKnapp/direct-sqlite/issues/63 - direct-sqlite - # https://github.com/tfausak/flow/issues/10 - - flow - # https://github.com/well-typed/hackage-security/issues/164 - hackage-security From 609653477fe1f1ecd7e80a51311204a4d292b17e Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 27 May 2016 05:27:03 +0300 Subject: [PATCH 027/299] Block blosum #1483 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ed18752d..5f5d76d3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1724,7 +1724,7 @@ packages: - random-tree - clumpiness - find-clumpiness - - blosum + # GHC 8 - blosum "Simon Marechal @bartavelle": # GHC 8 - compactmap From b52c69482fb82107153e6bebace221e0ae5a8520 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 27 May 2016 05:30:59 +0300 Subject: [PATCH 028/299] Add back extensible-effects --- build-constraints.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5f5d76d3..02abf854 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2040,9 +2040,7 @@ packages: - pure-cdb "Suhail Shergill @suhailshergill": - [] - # https://github.com/suhailshergill/extensible-effects/issues/64 - # GHC 8 - extensible-effects + - extensible-effects "Justus Adam @JustusAdam": - mustache From 4efd04e8216b7a3258f2f2136752c16540302b34 Mon Sep 17 00:00:00 2001 From: Tomas Carnecky Date: Thu, 26 May 2016 23:23:38 -0400 Subject: [PATCH 029/299] github-types is GHC 8 compatible --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 02abf854..13bf8eee 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -911,7 +911,7 @@ packages: # GHC 8 - avers-server # GHC 8 - css-syntax - etcd - # GHC 8 - github-types + - github-types # GHC 8 - github-webhook-handler # GHC 8 - github-webhook-handler-snap # GHC 8 - google-cloud From 967f07f0cb0a107250396935272153223a664376 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 27 May 2016 06:23:54 +0300 Subject: [PATCH 030/299] Add back scalpel fimad/scalpel#33 --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 02abf854..254be3b4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1219,8 +1219,7 @@ packages: "Will Coster @fimad": - prometheus-client - prometheus-metrics-ghc - # https://github.com/fimad/scalpel/issues/33 - # GHC 8 - scalpel + - scalpel - wai-middleware-prometheus "William Casarin @jb55": From 234b31684d250128bb0564e237f37409fa5af7e3 Mon Sep 17 00:00:00 2001 From: gbaz Date: Fri, 27 May 2016 02:00:16 -0400 Subject: [PATCH 031/299] reenable boolsimplifier as it works with ghc 8 --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 31357f17..89534041 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1130,8 +1130,7 @@ packages: # GHC 8 - jmacro-rpc-snap - mbox - kmeans - # Not compatible with GHC 7.10.2 (yes, it's a regression in GHC) - # - boolsimplifier + - boolsimplifier # GHC 8 - cubicspline - maximal-cliques From f337d9da083a3a6743d65a004b548ea8c2b15af8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?I=C3=B1aki=20Garc=C3=ADa=20Etxebarria?= Date: Fri, 27 May 2016 11:02:53 +0200 Subject: [PATCH 032/299] Pin gi-* bindings to versions with stack workaround Stack does not understand the "custom-setup" stanza introduced in cabal 1.24: https://github.com/commercialhaskell/stack/issues/2094 so pin the versions of the bindings to those using the "explicit-setup-deps" workaround. --- build-constraints.yaml | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 89534041..2e0ebe65 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2213,15 +2213,18 @@ packages: - telegram-api "Iñaki García Etxebarria @garetxe": - - gi-atk - - gi-cairo - - gi-gdk - - gi-gdkpixbuf - - gi-gio - - gi-glib - - gi-gobject - # GHC 8 - gi-gtk - - gi-pango + # Pinned to versions not using custom-setup, since stack does + # not understand that syntax yet: + # https://github.com/commercialhaskell/stack/issues/2094 + - gi-atk == 2.0.3 + - gi-cairo == 1.0.3 + - gi-gdk == 3.0.3 + - gi-gdkpixbuf == 2.0.3 + - gi-gio == 2.0.3 + - gi-glib == 2.0.3 + - gi-gobject == 2.0.3 + # GHC 8 - gi-gtk == 3.0.3 + - gi-pango == 1.0.3 - haskell-gi "Ian Grant Jeffries @seagreen": From 0b216b113d9839ec54086ba6de0602a699b4b303 Mon Sep 17 00:00:00 2001 From: Tomas Carnecky Date: Fri, 27 May 2016 06:54:57 -0400 Subject: [PATCH 033/299] publicsuffix is GHC 8 compatible --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2e0ebe65..90391cb9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -918,7 +918,7 @@ packages: # GHC 8 - kraken # GHC 8 - libinfluxdb # GHC 8 - mole - # GHC 8 - publicsuffix + - publicsuffix # GHC 8 - rethinkdb-client-driver "Alexandr Kurilin alex@kurilin.net @alex_kurilin": From 926cfd8ff95fc3efd9dfd5018cc9ffe3060b5148 Mon Sep 17 00:00:00 2001 From: Michel Boucey Date: Fri, 27 May 2016 14:37:15 +0200 Subject: [PATCH 034/299] upper bounds relaxed for cayley-client & ip6addr --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2e0ebe65..4569ce01 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1417,8 +1417,8 @@ packages: "Michel Boucey @MichelBoucey": - IPv6Addr - # GHC 8 - ip6addr - # GHC 8 - cayley-client + - ip6addr + - cayley-client - Spintax "koral koral@mailoo.org @k0ral": From 0c6d79183cbab8b996c3554aa41ac5906bd54576 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Fri, 27 May 2016 16:24:12 +0300 Subject: [PATCH 035/299] Temporarily block pinchot again #1485 --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d0a824d9..7063bbcb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -117,7 +117,8 @@ packages: - cartel - Earley - ofx - - pinchot + # https://github.com/fpco/stackage/pull/1485 + # GHC 8 - pinchot # GHC 8 - validation "Neil Mitchell": From 66876d26540abdffa15b6b8b48dd03f1f72f8c33 Mon Sep 17 00:00:00 2001 From: Douglas McClean Date: Fri, 27 May 2016 09:37:32 -0400 Subject: [PATCH 036/299] Re-enable dimensional and related packages These build on GHC 8 now. --- build-constraints.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7063bbcb..b0deacb1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2232,6 +2232,11 @@ packages: - hjsonpointer - hjsonschema + "Doug McClean ": + - dimensional + - exact-pi + - numtype-dk + # If you stop maintaining a package you can move it here. # It will then be disabled if it starts causing problems. # See https://github.com/fpco/stackage/issues/1056 From 38da3140fe1583379bb284714930ef6f7614a035 Mon Sep 17 00:00:00 2001 From: Hans-Christian Esperer Date: Fri, 27 May 2016 18:54:37 +0200 Subject: [PATCH 037/299] Re-enable wai-session-postgresql for ghc8 --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 09e8a77f..65fa9236 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1976,8 +1976,7 @@ packages: - yes-precure5-command "Hans-Christian Esperer @hce": - [] - # GHC 8 - wai-session-postgresql + - wai-session-postgresql "Haisheng Wu ": - hoauth2 From 5dce477699ec4734795e70cd8dc98eff0d2543f6 Mon Sep 17 00:00:00 2001 From: Lane Seppala Date: Fri, 27 May 2016 11:00:15 -0600 Subject: [PATCH 038/299] Add back airship for GHC 8 Removed unnecessary ImpredicativeTypes and now compiles under GHC 8. --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7063bbcb..05c3415d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1821,8 +1821,7 @@ packages: "Tim McGilchrist @tmcgilchrist": [] # GHC 8 - riak - # https://github.com/helium/airship/issues/101 - # GHC 8 - airship + - airship "Yuras Shumovich @Yuras": - pdf-toolbox-core From cb298e550ccf212d815b6b1c7ee4bc0d8067fea8 Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Fri, 27 May 2016 14:05:06 -0400 Subject: [PATCH 039/299] GHC 8.0: Add back wai-middleware-static --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7063bbcb..b1ffc086 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -64,7 +64,7 @@ packages: # GHC 8 - binary-conduit # GHC 8 - lzma-conduit # GHC 8 - mutable-containers - # GHC 8 - hpc-coveralls + - hpc-coveralls - monad-unlift # GHC 8 - monad-unlift-ref - yaml @@ -320,7 +320,7 @@ packages: "Andrew Farmer ": - scotty - # GHC 8 - wai-middleware-static + - wai-middleware-static "Simon Hengel ": - hspec @@ -2079,7 +2079,7 @@ packages: - rotating-log - ua-parser - hs-GeoIP - # GHC 8 - retry + - retry # GHC 8 - katip # GHC 8 - katip-elasticsearch From e6a6ccdb9cf8600d5c34854dcd75003091fc8363 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Fri, 27 May 2016 12:38:21 -0700 Subject: [PATCH 040/299] lens-family-th is now on GHC 8 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7063bbcb..f9bb2681 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -428,7 +428,7 @@ packages: - rev-state - runmemo - tardis - # GHC 8 - lens-family-th + - lens-family-th "Daniel Díaz dhelta.diaz@gmail.com @Daniel-Diaz": - bimap-server From 9f60483c3fa67678fefc9d735cb99ef6db73bfa5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20D=C3=ADaz?= Date: Fri, 27 May 2016 16:02:15 -0400 Subject: [PATCH 041/299] phantom-state should work with GHC-8 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f9bb2681..c4e8e9aa 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -442,7 +442,7 @@ packages: - include-file # GHC 8 - matrix - pcre-light - # GHC 8 - phantom-state + - phantom-state - post-mess-age - sorted-list From f972ad1442baa3cf8235b85a84dc09427631a543 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20D=C3=ADaz?= Date: Fri, 27 May 2016 16:06:07 -0400 Subject: [PATCH 042/299] grouped-list should work with GHC-8 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f9bb2681..c78fd6fd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -434,7 +434,7 @@ packages: - bimap-server # GHC 8 - binary-list - byteset - # GHC 8 - grouped-list + - grouped-list # GHC 8 - haskintex # GHC 8 - HaTeX # fails see #885 From 45aea93f312eea8eea696fdf6550171959dcc324 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niklas=20Hamb=C3=BCchen?= Date: Fri, 27 May 2016 22:16:31 +0200 Subject: [PATCH 043/299] Add loop --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f9bb2681..f25206e9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1597,6 +1597,7 @@ packages: "Niklas Hambüchen mail@nh2.me @nh2": - hidapi - iso8601-time + - loop - network-house # GHC 8 - reinterpret-cast From 04573afc7fadae81718169b7131031de11ef92f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niklas=20Hamb=C3=BCchen?= Date: Fri, 27 May 2016 22:25:56 +0200 Subject: [PATCH 044/299] Add back reinterpret-cast, checked compilation on GHC 8 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f25206e9..2d137f6b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1599,7 +1599,7 @@ packages: - iso8601-time - loop - network-house - # GHC 8 - reinterpret-cast + - reinterpret-cast "Brandon Martin @codedmart": [] From 617ebc04973135d906def66ed41cdb6f5c72db00 Mon Sep 17 00:00:00 2001 From: voidex Date: Sat, 28 May 2016 00:34:37 +0300 Subject: [PATCH 045/299] GHC 8: hdocs, hformat, hsdev, simple-log, text-region hsdev also passes test --- build-constraints.yaml | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f9bb2681..8c3e6305 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -847,12 +847,11 @@ packages: - servant-cassava "Alexandr Ruchkin voidex@live.com @mvoidex": - [] - # GHC 8 - hdocs - # GHC 8 - hformat - # GHC 8 - hsdev - # GHC 8 - simple-log - # GHC 8 - text-region + - hdocs + - hformat + - hsdev + - simple-log + - text-region "Aleksey Kliger aleksey@lambdageek.org @lambdageek": - unbound-generics @@ -2749,9 +2748,6 @@ expected-test-failures: - graphviz - zip - # Problem with v0.1.6.0: https://github.com/fpco/stackage/issues/1206 - - hsdev - # https://github.com/elaye/turtle-options/issues/3 - turtle-options From 5bf827d9e8b3f56ad031378aad01fdc3b5e27aca Mon Sep 17 00:00:00 2001 From: Brandon Martin Date: Fri, 27 May 2016 16:15:27 -0600 Subject: [PATCH 046/299] add rethinkdb for ghc 8 --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f9bb2681..80e7ae9b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1601,9 +1601,8 @@ packages: # GHC 8 - reinterpret-cast "Brandon Martin @codedmart": - [] # GHC 8 - engine-io-wai - # GHC 8 - rethinkdb + - rethinkdb "Michael Walker @barrucadu": # GHC 8 - both From 9f9d78dc5416c962829ab1f011f6af689f579503 Mon Sep 17 00:00:00 2001 From: gbaz Date: Fri, 27 May 2016 18:26:17 -0400 Subject: [PATCH 047/299] jmacro patched for ghc 8 jmacro-rpc now unblocked too. -happstack, -snap blocked on those two respectively, cubicspline blocked on hmatrix. --- build-constraints.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f9bb2681..52bb6d8c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1124,9 +1124,8 @@ packages: - cabal-file-th "Gershom Bazerman @gbaz": - # http://hub.darcs.net/gershomb/jmacro/issue/3 - # GHC 8 - jmacro - # GHC 8 - jmacro-rpc + - jmacro + - jmacro-rpc # GHC 8 - jmacro-rpc-happstack # GHC 8 - jmacro-rpc-snap - mbox From 24dd3f34219cfe0dae8ca047f96798c668a456c6 Mon Sep 17 00:00:00 2001 From: Drew Hess Date: Fri, 27 May 2016 17:54:13 -0700 Subject: [PATCH 048/299] Add hpio. --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f9bb2681..a5b5810b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2232,6 +2232,9 @@ packages: - hjsonpointer - hjsonschema + "Drew Hess @dhess": + - hpio + # If you stop maintaining a package you can move it here. # It will then be disabled if it starts causing problems. # See https://github.com/fpco/stackage/issues/1056 From 843a42c6615a18bdab9c9fa9ac640a45ed9ffd21 Mon Sep 17 00:00:00 2001 From: Tomas Carnecky Date: Sat, 28 May 2016 07:22:28 -0400 Subject: [PATCH 049/299] Re-enable packages which are compatible with GHC 8 --- build-constraints.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f9bb2681..6aaa45a1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -910,14 +910,14 @@ packages: # GHC 8 - avers # GHC 8 - avers-api # GHC 8 - avers-server - # GHC 8 - css-syntax + - css-syntax - etcd - github-types - # GHC 8 - github-webhook-handler + - github-webhook-handler # GHC 8 - github-webhook-handler-snap - # GHC 8 - google-cloud - # GHC 8 - kraken - # GHC 8 - libinfluxdb + - google-cloud + - kraken + - libinfluxdb # GHC 8 - mole - publicsuffix # GHC 8 - rethinkdb-client-driver From 777c90a2f3123f7c3ff614695e952992e7c3d787 Mon Sep 17 00:00:00 2001 From: mrkkrp Date: Sat, 28 May 2016 22:21:29 +0700 Subject: [PATCH 050/299] =?UTF-8?q?Add=20the=20=E2=80=98identicon=E2=80=99?= =?UTF-8?q?=20package?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f9bb2681..89842b56 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1745,6 +1745,7 @@ packages: - plan-b - zip - JuicyPixels-extra + - identicon "Thomas Bereknyei ": [] From 773df559dc66ad8cf430d6bfb703d4a86ef9cff8 Mon Sep 17 00:00:00 2001 From: Gabriel Gonzalez Date: Sat, 28 May 2016 09:55:35 -0700 Subject: [PATCH 051/299] Add `optparse-generic` to Stackage --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index f9bb2681..78f608d3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -447,6 +447,7 @@ packages: - sorted-list "Gabriel Gonzalez ": + - optparse-generic - pipes # GHC 8 - pipes-extras - pipes-parse From 8d4d7ff580c4f13b311584c51382dc009b6ba84a Mon Sep 17 00:00:00 2001 From: Jan Gerlinger Date: Sat, 28 May 2016 19:04:49 +0200 Subject: [PATCH 052/299] Re-add irc-dcc and xdcc (GHC 8) --- build-constraints.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f9bb2681..46a662c4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2159,9 +2159,8 @@ packages: - io-machine "Jan Gerlinger @JanGe": - [] - # GHC 8 - irc-dcc - # GHC 8 - xdcc + - irc-dcc + - xdcc "John Ky newhoggy@gmail.com @newhoggy": - hw-bits From e78275f8fc387a105dad1fb8b4dd593f670f6315 Mon Sep 17 00:00:00 2001 From: Jan Gerlinger Date: Sat, 28 May 2016 19:29:57 +0200 Subject: [PATCH 053/299] Remove xdcc again --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 46a662c4..fa2a4719 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2160,7 +2160,7 @@ packages: "Jan Gerlinger @JanGe": - irc-dcc - - xdcc + # GHC 8 - xdcc "John Ky newhoggy@gmail.com @newhoggy": - hw-bits From 8aa5bb65c13deaccf858caf156ce965943381219 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sat, 28 May 2016 21:45:49 +0300 Subject: [PATCH 054/299] Upper bounds for #1510 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3779e0a9..627a3773 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2254,6 +2254,9 @@ packages: # https://github.com/fpco/stackage/issues/1477 - gi-javascriptcore < 3.1 + + # https://github.com/fpco/stackage/issues/1510 + - pipes < 4.2 # end of packages From 1aa7761c9b594adc5e361bdd18872636f5a72e65 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sat, 28 May 2016 21:47:35 +0300 Subject: [PATCH 055/299] Relax some GHC 8 bounds --- build-constraints.yaml | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 627a3773..31fc5b1e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -817,10 +817,8 @@ packages: - language-ecmascript "Tom Ellis ": - [] # GHC 8 - opaleye - # https://github.com/tomjaguarpaw/product-profunctors/issues/16 - # GHC 8 - product-profunctors + - product-profunctors "Samplecount stefan@samplecount.com @kaoskorobase": - shake-language-c @@ -965,8 +963,7 @@ packages: - language-c-quote "Sönke Hahn soenkehahn@gmail.com @soenkehahn": - # https://github.com/soenkehahn/generics-eot/issues/4 - # GHC 8 - generics-eot + - generics-eot - getopt-generics - graph-wrapper - string-conversions @@ -1142,10 +1139,9 @@ packages: - generics-sop "Vivian McPhail @amcphail": - # https://github.com/albertoruiz/hmatrix/issues/192 - # GHC 8 - hmatrix-gsl-stats - # GHC 8 - hsignal - # GHC 8 - hstatistics + - hmatrix-gsl-stats + - hsignal + - hstatistics # GHC 8 - plot # GHC 8 - plot-gtk # GHC 8 - plot-gtk3 @@ -2814,9 +2810,6 @@ expected-test-failures: # https://gitlab.com/twittner/swagger/issues/6 - swagger - # https://github.com/peti/language-nix/issues/2 - - language-nix - # https://github.com/thoughtpolice/hs-ed25519/issues/15 - ed25519 From 136180e7f0f9de7d281714e0e88e3f04e8305086 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sat, 28 May 2016 21:50:45 +0300 Subject: [PATCH 056/299] Fix formatting --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5fff5be0..bb86039a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1815,7 +1815,6 @@ packages: # GHC 8 - engine-io-yesod "Tim McGilchrist @tmcgilchrist": - [] # GHC 8 - riak - airship From c833ba8bcd14cb5e641b8c71de23761cc45c6124 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sat, 28 May 2016 22:02:00 +0300 Subject: [PATCH 057/299] Temporary GHC 8 block for greydot/hdaemonize#3 --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ebd6d773..ed0a5a4f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -551,7 +551,8 @@ packages: - courier "Aycan iRiCAN ": - - hdaemonize + # https://github.com/greydot/hdaemonize/issues/3 + # GHC 8 - hdaemonize - hsyslog - hweblib From da4f7102ffc8db111c1a283bd86e5c528a8bf8cf Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sat, 28 May 2016 22:09:47 +0300 Subject: [PATCH 058/299] Expect test failure dhess/hpio#47 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ed0a5a4f..4204323b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2814,6 +2814,9 @@ expected-test-failures: # https://github.com/twanvl/multiset/issues/18 - multiset + + # https://github.com/dhess/hpio/issues/47 + - hpio # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 1eb759c5d4f58547d93540b84dbaf7c0306c6ad6 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sat, 28 May 2016 22:23:44 +0300 Subject: [PATCH 059/299] Temporary block for fpco/monad-logger-syslog#3 --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4204323b..d8eb5957 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -100,7 +100,8 @@ packages: - wai-middleware-consul - wai-middleware-crowd - monad-logger-json - - monad-logger-syslog + # https://github.com/fpco/monad-logger-syslog/issues/3 + # - monad-logger-syslog - fsnotify - hinotify From ce711efa4cb7de8dfd66a3f611eeb6aa6156dc82 Mon Sep 17 00:00:00 2001 From: Emanuel Borsboom Date: Sat, 28 May 2016 14:19:51 -0700 Subject: [PATCH 060/299] Add back here See tmhedberg/here#12 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d8eb5957..a8ecf945 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -732,7 +732,7 @@ packages: # GHC 8 - file-location - fuzzcheck - haddock-api - # GHC 8 - here + - here - hlibgit2 # GHC 8 - gitlib-libgit2 - hostname-validate From 99bd8937dad9e370195824297f84744ba5cb1a4f Mon Sep 17 00:00:00 2001 From: Omari Norman Date: Sat, 28 May 2016 17:56:18 -0400 Subject: [PATCH 061/299] Pinchot is GHC 8 compatible (retry) I uploaded a new version 0.18.0.2 which should fix the problem noted in pull request #1485. --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d8eb5957..064d30a3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -118,8 +118,7 @@ packages: - cartel - Earley - ofx - # https://github.com/fpco/stackage/pull/1485 - # GHC 8 - pinchot + - pinchot # GHC 8 - validation "Neil Mitchell": From ec26101ddfab9342884ec4712cb704d5d3e14f13 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 29 May 2016 08:16:25 +0300 Subject: [PATCH 062/299] Add back hdaemonize --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d8eb5957..c458e4fc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -552,8 +552,7 @@ packages: - courier "Aycan iRiCAN ": - # https://github.com/greydot/hdaemonize/issues/3 - # GHC 8 - hdaemonize + - hdaemonize - hsyslog - hweblib From 3520028a6738bfc31c2c57e0ba9e45524414e7c7 Mon Sep 17 00:00:00 2001 From: Kostiantyn Rybnikov Date: Sun, 29 May 2016 12:21:02 +0300 Subject: [PATCH 063/299] Add protocol-buffers and ekg-core --- build-constraints.yaml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9b8272ac..c2375ebd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1427,11 +1427,10 @@ packages: # GHC 8 - xml-conduit-parse "Kostiantyn Rybnikov @k-bx": - # https://github.com/k-bx/protocol-buffers/issues/38 - # GHC 8 - protocol-buffers - # GHC 8 - hprotoc - # GHC 8 - protocol-buffers-descriptor - # GHC 8 - ekg-core + - protocol-buffers + - hprotoc + - protocol-buffers-descriptor + - ekg-core - digits - hbeanstalk - iso3166-country-codes From 4a11276350213d3b889654f3253889f5d39cf76e Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 29 May 2016 18:06:17 +0300 Subject: [PATCH 064/299] multiset not expected to fail --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c458e4fc..167deaaa 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2812,9 +2812,6 @@ expected-test-failures: # https://github.com/thoughtpolice/hs-ed25519/issues/15 - ed25519 - # https://github.com/twanvl/multiset/issues/18 - - multiset - # https://github.com/dhess/hpio/issues/47 - hpio # end of expected-test-failures From 2c7968f97ca2a2756b27cf3288be8d956755a413 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 29 May 2016 18:07:49 +0300 Subject: [PATCH 065/299] Upper bound for #1515 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 38b8249f..13cffa3e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2250,6 +2250,9 @@ packages: # https://github.com/fpco/stackage/issues/1510 - pipes < 4.2 + + # https://github.com/fpco/stackage/issues/1515 + - hsyslog < 3 # end of packages From 0c57bc5951587f03d54a1bfed6e63ea670dbf6ad Mon Sep 17 00:00:00 2001 From: Marcin Mrotek Date: Sun, 29 May 2016 19:02:45 +0200 Subject: [PATCH 066/299] Added zoom-refs Added zoom-refs (works with both lts-6.0 and nightly-2016-05-29) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index a389f201..e88a623f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -826,6 +826,7 @@ packages: "Marcin Mrotek ": - type-list + - zoom-refs # GHC 8 - vinyl-utils "David Turner @davecturner": From 4adf7c2fb7ad236c925ee57009dad9287240aebf Mon Sep 17 00:00:00 2001 From: Oleg Grenrus Date: Sun, 29 May 2016 19:26:21 +0300 Subject: [PATCH 067/299] Enable tests on some packages lifted their bounds --- build-constraints.yaml | 21 +++------------------ 1 file changed, 3 insertions(+), 18 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a389f201..6156abac 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -281,7 +281,7 @@ packages: - kan-extensions - lca - lens - # GHC 8 - linear + - linear # GHC 8 - linear-accelerate # GHC 8 - log-domain # BLOCKED distributive 0.5 - machines @@ -2356,21 +2356,15 @@ skipped-tests: # Too lazy to keep the test dependencies up to date - cases - - hasql-postgres - - list-t - - postgresql-binary - - slave-thread - - stm-containers # Just a temporary package with a flimsy, inherited test suite - Cabal-ide-backend # QuickCheck 2.8 - - testpack - vector + + # requires testpack - https://github.com/jgoerzen/testpack/issues/11 - MissingH - # https://github.com/Soostone/retry/issues/30 - - retry # doctest < 0.10 # Closed due to inactivity: https://github.com/fpco/stackage/issues/622 @@ -2382,11 +2376,6 @@ skipped-tests: # https://github.com/kaizhang/clustering/issues/2 - clustering - # tasty < 0.11 - # Closed due to inactivity: https://github.com/fpco/stackage/issues/817 - - uuid - - uuid-types - # https://github.com/fpco/stackage/issues/934 - cacophony @@ -2442,7 +2431,6 @@ skipped-tests: # Closed due to inactivity: https://github.com/fpco/stackage/issues/1328 - ad - composition-tree - # GHC 8 - linear # GHC 8 - patches-vector - semigroupoids @@ -2458,9 +2446,6 @@ skipped-tests: - system-fileio - shelly - # doctest 0.11 - - linear - # end of skipped-tests # Tests which we should build and run, but which are expected to fail. We From 014b31ebba2114809c406a7ac84b043e9adbef47 Mon Sep 17 00:00:00 2001 From: bartavelle Date: Sun, 29 May 2016 19:35:40 +0200 Subject: [PATCH 068/299] Add bartavelle's packages --- build-constraints.yaml | 9 +++++---- debian-bootstrap.sh | 1 + 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a389f201..80cf3efe 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1721,12 +1721,13 @@ packages: # GHC 8 - blosum "Simon Marechal @bartavelle": - # GHC 8 - compactmap - # GHC 8 - stateWriter + - compactmap + - stateWriter - filecache - # GHC 8 - pcre-utils + - pcre-utils - strict-base-types - # GHC 8 - withdependencies + - withdependencies + - hruby # http-types # - stm-firehose # - hslogstash diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index 8b3cfacb..8d4469ce 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -105,6 +105,7 @@ apt-get install -y \ npm \ r-base \ r-base-dev \ + ruby-dev \ wget \ zip \ stack \ From f7c2890a96b8b684e1a8c21cddf10f0ad1ba45a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20D=C3=ADaz?= Date: Sun, 29 May 2016 13:46:56 -0400 Subject: [PATCH 069/299] Added matrix back, now compatible with GHC-8. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e88a623f..38731472 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -440,7 +440,7 @@ packages: # fails see #885 #- hatex-guide - include-file - # GHC 8 - matrix + - matrix - pcre-light - phantom-state - post-mess-age From cac6cd0f9750bd7244bc5ec76413f61f456c1f13 Mon Sep 17 00:00:00 2001 From: Tomas Carnecky Date: Sun, 29 May 2016 20:13:22 -0400 Subject: [PATCH 070/299] rethinkdb-client-driver builds with GHC 8 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3af2f7f7..aafe0396 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -919,7 +919,7 @@ packages: - libinfluxdb # GHC 8 - mole - publicsuffix - # GHC 8 - rethinkdb-client-driver + - rethinkdb-client-driver "Alexandr Kurilin alex@kurilin.net @alex_kurilin": - bcrypt From 20ba4a15fa4ad2826c0071e6863eb90e0d7fbabc Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 30 May 2016 07:02:29 +0300 Subject: [PATCH 071/299] Add back laziness-induced skipped tests --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3af2f7f7..f271f93c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2357,6 +2357,10 @@ skipped-tests: # Too lazy to keep the test dependencies up to date - cases + - list-t + - postgresql-binary + - slave-thread + - stm-containers # Just a temporary package with a flimsy, inherited test suite - Cabal-ide-backend From c09bffb0e8310f5c74a2bcf18f856e581a39f5a0 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 30 May 2016 09:03:25 +0300 Subject: [PATCH 072/299] Add back elm-bridge agrafix/elm-bridge#14 --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f271f93c..414f061b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -782,8 +782,7 @@ packages: - users-test - validate-input - ignore - # https://github.com/agrafix/elm-bridge/issues/14 - # GHC 8 - elm-bridge + - elm-bridge # GHC 8 - hackmanager # GHC 8 - digestive-bootstrap - blaze-bootstrap From 1f23bef8288fea8423f454a07e601e273154194d Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 30 May 2016 08:26:19 +0200 Subject: [PATCH 073/299] Expect multiset test-suite to fail twanvl/multiset#24 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9603ca87..0ff9b055 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2805,6 +2805,9 @@ expected-test-failures: # https://github.com/dhess/hpio/issues/47 - hpio + + # https://github.com/twanvl/multiset/issues/24 + - multiset # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 0762ed2af7607435d1742983449090d95dfc366f Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 30 May 2016 08:30:26 +0200 Subject: [PATCH 074/299] Upper bound for #1523 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0ff9b055..ce8b4b6c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2254,6 +2254,9 @@ packages: # https://github.com/fpco/stackage/issues/1515 - hsyslog < 3 + + # https://github.com/fpco/stackage/issues/1523 + - gtk2hs-buildtools < 0.13.2.0 # end of packages From 228f5b4cbd1bae56ae89e4257c966d3ab6c3f7ee Mon Sep 17 00:00:00 2001 From: Richard Eisenberg Date: Mon, 30 May 2016 09:19:35 -0400 Subject: [PATCH 075/299] Add Richard Eisenberg's packages --- build-constraints.yaml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 399e866e..5fbc6ec1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -92,8 +92,6 @@ packages: - th-expand-syns - criterion - th-lift - - singletons - - th-desugar - quickcheck-assertions # GHC 8 - hackage-mirror @@ -2228,6 +2226,14 @@ packages: "Drew Hess @dhess": - hpio + "Richard Eisenberg @goldfirere": + - th-desugar + - singletons + - units + - units-defs + - HUnit-approx + - units-parser + # If you stop maintaining a package you can move it here. # It will then be disabled if it starts causing problems. # See https://github.com/fpco/stackage/issues/1056 From 19809e6138046eaa86da503a9d15e869fe3367d6 Mon Sep 17 00:00:00 2001 From: Juan Pedro Villa Isaza Date: Mon, 30 May 2016 09:12:33 -0500 Subject: [PATCH 076/299] Re-add inflections (compatible with GHC 8) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 399e866e..b64e1574 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1478,7 +1478,7 @@ packages: "Stack Builders stackage@stackbuilders.com @stackbuilders": - atomic-write # GHC 8 - hapistrano - # GHC 8 - inflections + - inflections # GHC 8 - twitter-feed # BLOCKED megaparsec 5 - dotenv From ddbd68b7c282b60b5294ae1063d06ad6a9fec0ba Mon Sep 17 00:00:00 2001 From: Takayuki Muranushi Date: Tue, 31 May 2016 00:01:28 +0900 Subject: [PATCH 077/299] add unicode-show --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5fbc6ec1..9301d05d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2025,6 +2025,7 @@ packages: "Takayuki Muranushi @nushio3": - binary-search + - unicode-show "Jason Shipman @jship": # on behalf of Boris Sukholitko @bosu From 61404beffd949ae8abc807cb18d06e1dd85a8751 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 30 May 2016 18:15:41 +0300 Subject: [PATCH 078/299] Remove expected test failure acid-state/safecopy#25 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 399e866e..d5b99b8c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2606,9 +2606,6 @@ expected-test-failures: # https://github.com/lymar/hastache/issues/47 GHC 7.10 - hastache - # https://github.com/acid-state/safecopy/issues/25 GHC 7.10 - - safecopy - # https://github.com/haskell/ghc-events/issues/9 - ghc-events From 44d53e16f9895e6daf6edade68cad2cdfa683b78 Mon Sep 17 00:00:00 2001 From: Paul Rouse Date: Mon, 30 May 2016 18:32:59 +0100 Subject: [PATCH 079/299] Re-enable yesod-auth-hashdb for GHC 8 --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5423cc98..308a61cc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -690,8 +690,7 @@ packages: # GHC 8 - ekg-json "Paul Rouse ": - [] - # GHC 8 - yesod-auth-hashdb + - yesod-auth-hashdb "Toralf Wittner @twittner": - bytestring-conversion From 1ab6d40154c26bf8c798bfaf6e9421a5eca85925 Mon Sep 17 00:00:00 2001 From: koral Date: Mon, 30 May 2016 20:26:02 +0200 Subject: [PATCH 080/299] Register imm package --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5423cc98..e08317d1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1420,6 +1420,7 @@ packages: # GHC 8 - conduit-parse # GHC 8 - opml-conduit # GHC 8 - rss-conduit + - imm - timerep # GHC 8 - xml-conduit-parse From dd8e56dbc16e9f80c31661886c38ea8ae0687a68 Mon Sep 17 00:00:00 2001 From: Juan Pedro Villa Isaza Date: Mon, 30 May 2016 14:11:57 -0500 Subject: [PATCH 081/299] Re-add hapistrano and twitter-feed (compatible with GHC 8) --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5423cc98..b844ba4b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1475,9 +1475,9 @@ packages: "Stack Builders stackage@stackbuilders.com @stackbuilders": - atomic-write - # GHC 8 - hapistrano + - hapistrano - inflections - # GHC 8 - twitter-feed + - twitter-feed # BLOCKED megaparsec 5 - dotenv "Sergey Alirzaev ": From 175f935c204dfa76e6b23e66c9134cb52635aeac Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 30 May 2016 23:27:28 +0200 Subject: [PATCH 082/299] Upper bounds for #1523 --- build-constraints.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 308a61cc..4c933c52 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2263,6 +2263,13 @@ packages: # https://github.com/fpco/stackage/issues/1523 - gtk2hs-buildtools < 0.13.2.0 + - cairo < 0.13.3.0 + - gio < 0.13.3.0 + - glib < 0.13.4.0 + - gtk < 0.14.4 + - gtk3 < 0.14.4 + - pango < 0.13.3.0 + # end of packages From edff5ff9138f9bf3674d1a76c8fa4a147e0f54a7 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 31 May 2016 07:12:11 +0300 Subject: [PATCH 083/299] Don't expect test failure dhess/hpio#47 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ce4fa0f1..85a3b865 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2816,9 +2816,6 @@ expected-test-failures: # https://github.com/thoughtpolice/hs-ed25519/issues/15 - ed25519 - # https://github.com/dhess/hpio/issues/47 - - hpio - # https://github.com/twanvl/multiset/issues/24 - multiset # end of expected-test-failures From 2ace9c2107f034d5ae22361034d1f484901d39bf Mon Sep 17 00:00:00 2001 From: Georges Dubus Date: Tue, 31 May 2016 14:07:17 +0200 Subject: [PATCH 084/299] Add back webdriver The recently released webdriver-0.8.3 compiles fine on snapshot nightly-2016-05-30. --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 85a3b865..2514dca2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1842,8 +1842,7 @@ packages: - blake2 "Adam Curtis @kallisti-dev": - [] - # GHC 8 - webdriver + - webdriver "Luke Iannini @lukexi": [] From 064d669d4b412e76e26c1ab3b88750d048ff4fd4 Mon Sep 17 00:00:00 2001 From: Georges Dubus Date: Tue, 31 May 2016 14:34:06 +0200 Subject: [PATCH 085/299] Re-add servant-swagger (GHC 8) Release 1.1 is now compatible with GHC 8 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 85a3b865..196fed90 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1758,7 +1758,7 @@ packages: # https://github.com/fpco/stackage/issues/1290 #- smsaero - swagger2 - # GHC 8 - servant-swagger + - servant-swagger "Jared Tobin @jtobin": - mwc-probability From 29781067a5cce5f1189ba058f68226ec2b3df2ea Mon Sep 17 00:00:00 2001 From: Jan Gerlinger Date: Tue, 31 May 2016 15:36:38 +0200 Subject: [PATCH 086/299] Re-add xdcc (GHC 8) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2514dca2..bccf89cd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2151,7 +2151,7 @@ packages: "Jan Gerlinger @JanGe": - irc-dcc - # GHC 8 - xdcc + - xdcc "John Ky newhoggy@gmail.com @newhoggy": - hw-bits From f48638baa392b36931eeccdcf0bed138cbe778a6 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 31 May 2016 17:58:05 +0300 Subject: [PATCH 087/299] Add back some of my packages (pinging @bergmark) --- build-constraints.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 688e1ae2..4076bbfa 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -27,10 +27,10 @@ packages: "Michael Snoyman michael@snoyman.com @snoyberg": - bzlib-conduit - cabal-install - # GHC 8 - cabal-src + - cabal-src - case-insensitive - # GHC 8 - classy-prelude-yesod - # GHC 8 - conduit-combinators + - classy-prelude-yesod + - conduit-combinators - conduit-extra - hebrew-time - keter @@ -50,7 +50,7 @@ packages: - yackage - yesod - yesod-auth - # GHC 8 - authenticate-oauth + - authenticate-oauth - yesod-bin - yesod-eventsource # GHC 8 - yesod-fay @@ -59,14 +59,14 @@ packages: - yesod-sitemap - yesod-static - yesod-test - # GHC 8 - yesod-websockets + - yesod-websockets - cereal-conduit # GHC 8 - binary-conduit # GHC 8 - lzma-conduit - # GHC 8 - mutable-containers + - mutable-containers - hpc-coveralls - monad-unlift - # GHC 8 - monad-unlift-ref + - monad-unlift-ref - yaml - servius - cryptonite-conduit From e7b056251e0ac04cc3346b9f494a97db0db8c00a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20D=C3=ADaz?= Date: Tue, 31 May 2016 11:53:50 -0400 Subject: [PATCH 088/299] Get more Daniel-Diaz's packages back! --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4076bbfa..d2cb7171 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -430,11 +430,11 @@ packages: "Daniel Díaz dhelta.diaz@gmail.com @Daniel-Diaz": - bimap-server - # GHC 8 - binary-list + - binary-list - byteset - grouped-list - # GHC 8 - haskintex - # GHC 8 - HaTeX + - haskintex + - HaTeX # fails see #885 #- hatex-guide - include-file From e37058fde6bcad0574be515f0239c4bf8e33ed1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20D=C3=ADaz?= Date: Tue, 31 May 2016 11:56:13 -0400 Subject: [PATCH 089/299] Delay haskintex addition until hint is compatible with GHC 8, so that it can be tested. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d2cb7171..867a9e8c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -433,7 +433,7 @@ packages: - binary-list - byteset - grouped-list - - haskintex + # needs hint to work with GHC 8: - haskintex - HaTeX # fails see #885 #- hatex-guide From 774e34120333ac9ddecfa142b71d388ac331a22b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleksey=20Kliger=20=28=CE=BBgeek=29?= Date: Tue, 31 May 2016 11:59:29 -0400 Subject: [PATCH 090/299] Add indentation packages to Stackage indentation-core, indentation-parsec, indentation-trifecta --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4076bbfa..68893d04 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -851,6 +851,9 @@ packages: "Aleksey Kliger aleksey@lambdageek.org @lambdageek": - unbound-generics + - indentation-core + - indentation-parsec + - indentation-trifecta "Alois Cochard alois.cochard@gmail.com @aloiscochard": # GHC 8 - codex From b639d26dcb4de44e012fd6104dda9881bd90b7b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20D=C3=ADaz?= Date: Tue, 31 May 2016 12:41:55 -0400 Subject: [PATCH 091/299] Added Clipboard package --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 867a9e8c..bd32aad0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -432,6 +432,7 @@ packages: - bimap-server - binary-list - byteset + - Clipboard - grouped-list # needs hint to work with GHC 8: - haskintex - HaTeX From c20d88a3e977fbd573754642ffdca6ef9c868f59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20D=C3=ADaz?= Date: Tue, 31 May 2016 12:42:58 -0400 Subject: [PATCH 092/299] Do not add Clipboard to stackage yet! --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index bd32aad0..867a9e8c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -432,7 +432,6 @@ packages: - bimap-server - binary-list - byteset - - Clipboard - grouped-list # needs hint to work with GHC 8: - haskintex - HaTeX From 4ff6f2b269977fa24bcce4b058c431ff801fe12f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20D=C3=ADaz?= Date: Tue, 31 May 2016 13:41:13 -0400 Subject: [PATCH 093/299] Add Clipboard package to Stackage --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 867a9e8c..bd32aad0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -432,6 +432,7 @@ packages: - bimap-server - binary-list - byteset + - Clipboard - grouped-list # needs hint to work with GHC 8: - haskintex - HaTeX From 52be0e4a1786fa54e789b1dfdd4c8e35c662378b Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 1 Jun 2016 00:00:36 +0200 Subject: [PATCH 094/299] Expect phantom-state benchmarks to fail #1539 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 867a9e8c..084c1adf 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2854,6 +2854,9 @@ expected-benchmark-failures: # GHC 8 - cassava + + # https://github.com/fpco/stackage/issues/1539 + - phantom-state # end of expected-benchmark-failures From 9fd30316354e3b96a7af97ad96abfbddcc3d8bea Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 1 Jun 2016 00:04:02 +0200 Subject: [PATCH 095/299] Expect hpio tests to fail #1540 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 084c1adf..e6f36867 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2817,6 +2817,9 @@ expected-test-failures: # https://github.com/twanvl/multiset/issues/24 - multiset + + # https://github.com/fpco/stackage/issues/1540 + - hpio # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 94424a8f89b1044d65685e43caa39e949dae56c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20D=C3=ADaz?= Date: Tue, 31 May 2016 19:02:32 -0400 Subject: [PATCH 096/299] phantom-state is not expected to fail (Fix #1539) Since version 0.2.1.2 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e6f36867..d78a5b32 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2857,9 +2857,6 @@ expected-benchmark-failures: # GHC 8 - cassava - - # https://github.com/fpco/stackage/issues/1539 - - phantom-state # end of expected-benchmark-failures From b309cdfd05d7b27d19e66ff74c101855b694bd68 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 1 Jun 2016 11:43:40 +0200 Subject: [PATCH 097/299] Add libxrandr-dev for #1537 --- debian-bootstrap.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index 8d4469ce..d0446464 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -94,6 +94,7 @@ apt-get install -y \ libwebkitgtk-3.0-dev \ libxau-dev \ libxml2-dev \ + libxrandr-dev libxss-dev \ libyaml-dev \ libzip-dev \ From 5c6fb57212a2a10d98418097ad36acaab660193a Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 1 Jun 2016 12:20:59 +0200 Subject: [PATCH 098/299] Add missing newline escape #1537 --- debian-bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index d0446464..01eeece3 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -94,7 +94,7 @@ apt-get install -y \ libwebkitgtk-3.0-dev \ libxau-dev \ libxml2-dev \ - libxrandr-dev + libxrandr-dev \ libxss-dev \ libyaml-dev \ libzip-dev \ From a17de5f89f099f4447110637e799f9c2d67e1104 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleksey=20Kliger=20=28=CE=BBgeek=29?= Date: Wed, 1 Jun 2016 07:35:40 -0400 Subject: [PATCH 099/299] Just indenation-core and indentation-parsec Trifecta can wait. --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 68893d04..5a42f9af 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -853,7 +853,6 @@ packages: - unbound-generics - indentation-core - indentation-parsec - - indentation-trifecta "Alois Cochard alois.cochard@gmail.com @aloiscochard": # GHC 8 - codex From c4350e9a9b6914aaca381bba0b77e5d6f0b894ee Mon Sep 17 00:00:00 2001 From: Taylor Fausak Date: Wed, 1 Jun 2016 07:32:47 -0500 Subject: [PATCH 100/299] Enable octane It now builds with both lts-6.1 and nightly-2016-05-30. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 33de8bad..ce606db2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1192,7 +1192,7 @@ packages: - flow # GHC 8 - github-release - lackey - # GHC 8 - octane + - octane # https://github.com/Gabriel439/Haskell-Optparse-Generic-Library/issues/23 # GHC 8 - optparse-generic # Maintained by @Gabriel439. # https://github.com/tfausak/ratel/issues/1 From 49deb797bfc3a9374d673884edd382983599c4da Mon Sep 17 00:00:00 2001 From: Kostiantyn Rybnikov Date: Wed, 1 Jun 2016 16:13:01 +0300 Subject: [PATCH 101/299] partial-handler, slave-thread --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 33de8bad..8df832a9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -757,9 +757,9 @@ packages: - list-t - mtl-prelude - neat-interpolation - # GHC 8 - partial-handler + - partial-handler # GHC 8 - postgresql-binary - # GHC 8 - slave-thread + - slave-thread - stm-containers "Iustin Pop ": From 138cc9f6ecd08e556f3c1c1f23487a3f34484428 Mon Sep 17 00:00:00 2001 From: Douglas McClean Date: Fri, 27 May 2016 09:37:32 -0400 Subject: [PATCH 102/299] Re-enable dimensional and related packages These build on GHC 8 now. --- build-constraints.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e1ebd1df..4f23981a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2234,6 +2234,11 @@ packages: - HUnit-approx - units-parser + "Doug McClean ": + - dimensional + - exact-pi + - numtype-dk + # If you stop maintaining a package you can move it here. # It will then be disabled if it starts causing problems. # See https://github.com/fpco/stackage/issues/1056 From 9d086108e29e752e992640288dbf078859f56fe8 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 1 Jun 2016 23:48:31 +0200 Subject: [PATCH 103/299] Upper bound for #1545 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c99fe905..199e7e5a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2277,6 +2277,9 @@ packages: - gtk3 < 0.14.4 - pango < 0.13.3.0 + # https://github.com/fpco/stackage/issues/1545 + - cacophony < 0.7.0 + # end of packages From cb7e6239ef6333dfb04cd828023f1d1d76d6d464 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Thu, 2 Jun 2016 10:09:53 +0200 Subject: [PATCH 104/299] Remove upper bound and close #1545 This reverts commit 9d086108e29e752e992640288dbf078859f56fe8. --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 199e7e5a..c99fe905 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2277,9 +2277,6 @@ packages: - gtk3 < 0.14.4 - pango < 0.13.3.0 - # https://github.com/fpco/stackage/issues/1545 - - cacophony < 0.7.0 - # end of packages From 9e2796e556b11f915378a384094f6872972d1dec Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Thu, 2 Jun 2016 10:29:46 +0200 Subject: [PATCH 105/299] unix-compat upper bound for #1546 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index c99fe905..46da212d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2277,6 +2277,9 @@ packages: - gtk3 < 0.14.4 - pango < 0.13.3.0 + # https://github.com/fpco/stackage/issues/1546 + - unix-compat < 0.4.2.0 + # end of packages From b52d0f8ef210a329f452122e2ebf051e1059dc69 Mon Sep 17 00:00:00 2001 From: Chris Done Date: Thu, 2 Jun 2016 11:50:10 +0200 Subject: [PATCH 106/299] Add intero & weigh --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 46da212d..7f5c48ea 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -236,6 +236,8 @@ packages: - descriptive - wrap - path + - intero + - weigh # requires old haddock currently - haskell-docs # TODO: Add structured-haskell-mode once they've been ported to HSE 1.16. From 170237e2c764d1533c25a33dc48d8a5db51e8362 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 2 Jun 2016 13:25:01 +0300 Subject: [PATCH 107/299] Add back ersatz ekmett/ersatz#11 @bergmark --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7f5c48ea..981ae20f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -268,8 +268,7 @@ packages: - distributive - either - eq - # https://github.com/ekmett/ersatz/issues/11 GHC 7.10 - # - ersatz + - ersatz - exceptions - free - graphs From 1f8e13d520bb1c8782bf512236208456f0daa516 Mon Sep 17 00:00:00 2001 From: Toshio Ito Date: Thu, 2 Jun 2016 21:58:33 +0900 Subject: [PATCH 108/299] add wikicfp-scraper of debug-ito --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 981ae20f..a3449581 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2193,6 +2193,7 @@ packages: - fold-debounce - fold-debounce-conduit - stopwatch + - wikicfp-scraper "Cies Breijs @cies": - htoml From 5c19a11fbac9b7b5cbf92ee63febc7ca9a0a4a7c Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Thu, 2 Jun 2016 15:23:02 +0200 Subject: [PATCH 109/299] Try building ght2hs-buildtools again for #1523 --- build-constraints.yaml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a3449581..03b61d92 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2270,15 +2270,6 @@ packages: # https://github.com/fpco/stackage/issues/1515 - hsyslog < 3 - # https://github.com/fpco/stackage/issues/1523 - - gtk2hs-buildtools < 0.13.2.0 - - cairo < 0.13.3.0 - - gio < 0.13.3.0 - - glib < 0.13.4.0 - - gtk < 0.14.4 - - gtk3 < 0.14.4 - - pango < 0.13.3.0 - # https://github.com/fpco/stackage/issues/1546 - unix-compat < 0.4.2.0 From 69c4884c69f1d716f50062f59a5b434d4b2b7574 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Thu, 2 Jun 2016 16:28:29 +0200 Subject: [PATCH 110/299] Remove upper bound and close #1398 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 03b61d92..5df1f021 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2270,9 +2270,6 @@ packages: # https://github.com/fpco/stackage/issues/1515 - hsyslog < 3 - # https://github.com/fpco/stackage/issues/1546 - - unix-compat < 0.4.2.0 - # end of packages From 4acf90ebd6be9439376e7f02df098032f435edd3 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Thu, 2 Jun 2016 16:30:10 +0200 Subject: [PATCH 111/299] Revert "Try building ght2hs-buildtools again for #1523" This reverts commit 5c19a11fbac9b7b5cbf92ee63febc7ca9a0a4a7c. --- build-constraints.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5df1f021..e16cbcda 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2270,6 +2270,15 @@ packages: # https://github.com/fpco/stackage/issues/1515 - hsyslog < 3 + # https://github.com/fpco/stackage/issues/1523 + - gtk2hs-buildtools < 0.13.2.0 + - cairo < 0.13.3.0 + - gio < 0.13.3.0 + - glib < 0.13.4.0 + - gtk < 0.14.4 + - gtk3 < 0.14.4 + - pango < 0.13.3.0 + # end of packages From 4408f903af2c9dc179af33352fa44562676cae01 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Thu, 2 Jun 2016 16:34:33 +0200 Subject: [PATCH 112/299] Expect wikicfp-scraper tests to fail #1548 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e16cbcda..8c4d25d4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2830,6 +2830,9 @@ expected-test-failures: # https://github.com/fpco/stackage/issues/1540 - hpio + + # https://github.com/fpco/stackage/pull/1548 + - wikicfp-scraper # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 451281101760eaa4d42b58d4c51e2aa200e0df50 Mon Sep 17 00:00:00 2001 From: Alan Zimmerman Date: Thu, 2 Jun 2016 22:29:15 +0200 Subject: [PATCH 113/299] ghc-exactprint 0.5.1.0 supports GHC 8.0 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8c4d25d4..ee391ab8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1529,7 +1529,7 @@ packages: "Matthew Pickering @mpickering": - refact # GHC 8 - servant-pandoc - # GHC 8 - ghc-exactprint + - ghc-exactprint # GHC 8 - apply-refact "Andrew Gibiansky @gibiansky": From d16a94402d461ee40b2c78031f99162fb1bfede2 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Thu, 2 Jun 2016 23:02:18 +0200 Subject: [PATCH 114/299] Re-enable feed and through-text --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8c4d25d4..a4d36a4d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -475,10 +475,10 @@ packages: # GHC 8 - fay-jquery # GHC 8 - fay-text # GHC 8 - fay-uri - # GHC 8 - feed + - feed # GHC 8 - snaplet-fay - time-compat - # GHC 8 - through-text + - through-text "Sebastiaan Visser ": - clay From fa9ac736663813bb9405c79a3b78030c4cbbde12 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Fri, 3 Jun 2016 11:48:07 +0200 Subject: [PATCH 115/299] Revert "Expect wikicfp-scraper tests to fail #1548" This reverts commit 4408f903af2c9dc179af33352fa44562676cae01. --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6b1b608c..dbd25100 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2830,9 +2830,6 @@ expected-test-failures: # https://github.com/fpco/stackage/issues/1540 - hpio - - # https://github.com/fpco/stackage/pull/1548 - - wikicfp-scraper # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From dd2ef650b61ab961ae12907f4bbf02ae1a0219c7 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Fri, 3 Jun 2016 11:49:26 +0200 Subject: [PATCH 116/299] Remove upper bound and close #1523 --- build-constraints.yaml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index dbd25100..76370b68 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2270,15 +2270,6 @@ packages: # https://github.com/fpco/stackage/issues/1515 - hsyslog < 3 - # https://github.com/fpco/stackage/issues/1523 - - gtk2hs-buildtools < 0.13.2.0 - - cairo < 0.13.3.0 - - gio < 0.13.3.0 - - glib < 0.13.4.0 - - gtk < 0.14.4 - - gtk3 < 0.14.4 - - pango < 0.13.3.0 - # end of packages From c2b6de29a8b75d871111c64ddf1df6d6310ce24c Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Fri, 3 Jun 2016 12:03:11 +0200 Subject: [PATCH 117/299] Expect ghc-exactprint haddocks to fail #1549 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 76370b68..2311ea26 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2907,6 +2907,9 @@ expected-haddock-failures: # https://github.com/haskell/haddock/issues/516 - haddock-api + + # https://github.com/fpco/stackage/pull/1549 + - ghc-exactprint # end of expected-haddock-failures From 9e0f5816f4b600ab68935ca1c323582c772520a6 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Fri, 3 Jun 2016 14:08:44 +0200 Subject: [PATCH 118/299] multiset test-suite is fixed --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2311ea26..681bd8d1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2816,9 +2816,6 @@ expected-test-failures: # https://github.com/thoughtpolice/hs-ed25519/issues/15 - ed25519 - # https://github.com/twanvl/multiset/issues/24 - - multiset - # https://github.com/fpco/stackage/issues/1540 - hpio # end of expected-test-failures From 723bc50311d4c2407a188e8445351556ee927331 Mon Sep 17 00:00:00 2001 From: Jonathan Daugherty Date: Fri, 3 Jun 2016 10:54:21 -0700 Subject: [PATCH 119/299] Remove my packages from the stackage configuration --- build-constraints.yaml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 681bd8d1..340ab166 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -207,12 +207,6 @@ packages: - vhd - xenstore - "Jonathan Daugherty ": - - brick - # GHC 8 - dbmigrations - - text-zipper - - vty - "Chris Done": - ace - ical From 983303e86ea1f119a86c550019799929a5c56d80 Mon Sep 17 00:00:00 2001 From: Oleg Grenrus Date: Fri, 3 Jun 2016 19:56:39 +0300 Subject: [PATCH 120/299] Re-enable postgresql-simple-url, waitra, purescript and arithmoi --- build-constraints.yaml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 681bd8d1..ffe57a50 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -981,17 +981,17 @@ packages: - JuicyPixels-scale-dct - lattices - monad-http - # GHC 8 - postgresql-simple-url + - postgresql-simple-url - range-set-list - regex-applicative-text - servant-yaml - spdx - these # GHC 8 - time-parsers - # GHC 8 - waitra + - waitra # Not a maintainer - # GHC 8 - arithmoi + - arithmoi - hashable # GHC 8 - haxl - monad-time @@ -1018,7 +1018,7 @@ packages: - bower-json - boxes - pattern-arrows - # GHC 8 - purescript + - purescript # Universe - universe @@ -2660,9 +2660,6 @@ expected-test-failures: # https://github.com/kazu-yamamoto/logger/issues/42 - wai-logger - # https://github.com/purescript/purescript/issues/1336 - - purescript - # https://github.com/fpco/stackage/issues/733 - ide-backend From 740a3a561ffde662b8217ac43d2fef6a88993293 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Fri, 3 Jun 2016 23:32:38 +0200 Subject: [PATCH 121/299] Expect purescript tests to fail #1552 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e2d72900..ad2fc270 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2809,6 +2809,9 @@ expected-test-failures: # https://github.com/fpco/stackage/issues/1540 - hpio + + # https://github.com/fpco/stackage/issues/1552 + - purescript # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 973c2b0d5d020bd3e5eb8f305106a43e03ce7586 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 4 Jun 2016 19:51:46 +0200 Subject: [PATCH 122/299] CURATORS: Update name of script used to run nightlies --- CURATORS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CURATORS.md b/CURATORS.md index 9cdaa81b..c82a696e 100644 --- a/CURATORS.md +++ b/CURATORS.md @@ -94,7 +94,7 @@ we're just not there yet. ``` # Run a nightly build -/opt/stackage-build/stackage/automated/build.sh nightly-2015-07-08 +/opt/stackage-build/stackage/automated/run-nightly.sh # Run an LTS minor bump /opt/stackage-build/stackage/automated/build.sh lts-2.17 From 414c500a8d225b73a7cd44139b6cdb2b8ccb8ae0 Mon Sep 17 00:00:00 2001 From: "Michal J. Gajda" Date: Sun, 5 Jun 2016 14:50:30 +0800 Subject: [PATCH 123/299] Reactivate Michal's packages after uploading updated versions. --- build-constraints.yaml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ad2fc270..6703b0bc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -496,15 +496,13 @@ packages: "Michal J. Gajda ": - iterable - # GHC 8 - Octree + - Octree - FenwickTree - # GHC 8 - hPDB - # Build failure with GHC 7.10.2, see: https://ghc.haskell.org/trac/ghc/ticket/10565 - # - hPDB-examples - - # GHC 8 - wordpass - # https://github.com/nilcons/hflags/issues/17 - # GHC 8 - json-autotype + - hPDB + - hPDB-examples + - homplexity + #- wordpass + - json-autotype - posix-realtime "Dominic Steinitz ": From 5a4ef95cfeb4b7d89b0010132b0cf5b3e5e48158 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 5 Jun 2016 12:54:27 +0300 Subject: [PATCH 124/299] Add boomerange back --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6703b0bc..0a2888bd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1926,8 +1926,7 @@ packages: - pgp-wordlist "Jeremy Shaw @stepcut": - # https://github.com/Happstack/boomerang/issues/2 - # GHC 8 - boomerang + - boomerang # GHC 8 - clckwrks # GHC 8 - clckwrks-cli # GHC 8 - clckwrks-plugin-page From eaded7fc1ac557f01944957b90661f46d7b62a66 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 5 Jun 2016 16:03:41 +0300 Subject: [PATCH 125/299] Add back mikeplus64/QuasiText#3 --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0a2888bd..cbf6ffd0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -790,8 +790,7 @@ packages: #- elm-package - language-glsl - prettyclass - # https://github.com/mikeplus64/QuasiText/issues/3 - # GHC 8 - QuasiText + - QuasiText - union-find - zip-archive From af979186ea2ad74487bf33c7dc6436c849b3f53a Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 5 Jun 2016 16:04:43 +0300 Subject: [PATCH 126/299] Add back Happstack/web-routes-th#1 --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index cbf6ffd0..3fc560c8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1951,8 +1951,7 @@ packages: # GHC 8 - web-routes-boomerang # GHC 8 - web-routes-happstack - web-routes-hsp - # https://github.com/Happstack/web-routes-th/issues/1 - # GHC 8 - web-routes-th + - web-routes-th - web-routes-wai "Pedro Tacla Yamada @yamadapc": From ee078684b6f4f829c286f1d82745b604141b1911 Mon Sep 17 00:00:00 2001 From: Joachim Breitner Date: Mon, 6 Jun 2016 00:01:06 +0200 Subject: [PATCH 127/299] list-fusion-probe works with GHC 8.0 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3fc560c8..f06e4645 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -553,7 +553,7 @@ packages: # GHC 8 - ghc-heap-view # GHC 8 - tttool # GHC 8 - gipeda - # GHC 8 - list-fusion-probe + - list-fusion-probe - haskell-spacegoo # GHC 8 - tasty-expected-failure From c4131aa96a0e9137c1c643a82c22e754626967f1 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 6 Jun 2016 00:53:23 +0200 Subject: [PATCH 128/299] authenticate-oauth upper bound for #1555 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3fc560c8..85da6dd2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2259,6 +2259,9 @@ packages: # https://github.com/fpco/stackage/issues/1515 - hsyslog < 3 + # https://github.com/fpco/stackage/issues/1555 + - authenticate-oauth < 1.6 + # end of packages From f5ff5623cdcebd57d5ba517455371c66b1a860df Mon Sep 17 00:00:00 2001 From: "Trevor L. McDonell" Date: Mon, 6 Jun 2016 18:03:43 +1000 Subject: [PATCH 129/299] Add 'accelerate' --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d06d55a2..d71b47fc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -397,8 +397,7 @@ packages: - ChannelT "Trevor L. McDonell ": - [] - # GHC 8 - accelerate + - accelerate "Liam O'Connor ": [] From c13d1ae2200b6c62f648d36a487d61af186bddd5 Mon Sep 17 00:00:00 2001 From: Dominic Steinitz Date: Mon, 6 Jun 2016 09:43:54 +0100 Subject: [PATCH 130/299] Add random-fu. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d06d55a2..0f55d95a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -508,7 +508,7 @@ packages: "Dominic Steinitz ": # https://github.com/leventov/yarr/pull/7 # - yarr - [] + - random-fu "Ben Gamari ": - vector-fftw From 81db4549b07a216f73f27810033d92e51a61c335 Mon Sep 17 00:00:00 2001 From: Dominic Steinitz Date: Mon, 6 Jun 2016 10:12:29 +0100 Subject: [PATCH 131/299] Re-add yarr. --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0f55d95a..d25ddf52 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -506,8 +506,7 @@ packages: - posix-realtime "Dominic Steinitz ": - # https://github.com/leventov/yarr/pull/7 - # - yarr + - yarr - random-fu "Ben Gamari ": From 4fbf45669cbf346c42b68358193297d816643c7e Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 6 Jun 2016 12:43:55 +0300 Subject: [PATCH 132/299] Add note to README about package update delay Yes, it was already in the maintainer agreement, but enough people were confused about this point that it's worth putting front and center. --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index ebfd3735..83ebb2f5 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,11 @@ We welcome all packages, provided: Full details on how to add a package can be found in the [maintainers agreement](https://github.com/fpco/stackage/blob/master/MAINTAINERS.md#adding-a-package). +__NOTE__: There is an approximate 30 minute delay between a package uploading +to Hackage and being available to the Travis build script to check upper +bounds. If a pull request is marked as failed due to using an older version, +please close and reopen the PR to retrigger a Travis build. + Other repos ----------- From 6e6e701c3a7d8191e0b9058adddd735c07c56bfb Mon Sep 17 00:00:00 2001 From: Troels Henriksen Date: Fri, 27 May 2016 18:17:41 +0200 Subject: [PATCH 133/299] Bring back directory-tree. --- build-constraints.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d06d55a2..187f2bbe 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2212,6 +2212,9 @@ packages: - gi-pango == 1.0.3 - haskell-gi + "Brandon Simmons ": + - directory-tree + "Ian Grant Jeffries @seagreen": - hjsonpointer - hjsonschema @@ -2583,6 +2586,9 @@ expected-test-failures: # isn't always the case (e.g., build server) - happy + # https://github.com/jberryman/directory-tree/issues/4 + - directory-tree + # https://github.com/ndmitchell/hoogle/issues/101 - hoogle From c1a52b43b1e5716831f26c808234e33b578173d6 Mon Sep 17 00:00:00 2001 From: Joachim Breitner Date: Mon, 6 Jun 2016 15:32:32 +0200 Subject: [PATCH 134/299] Arbtt now works with GHC 8 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d06d55a2..1f9ee790 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -549,7 +549,7 @@ packages: "Joachim Breitner ": - circle-packing - # GHC 8 - arbtt + - arbtt # GHC 8 - ghc-heap-view # GHC 8 - tttool # GHC 8 - gipeda From c744873ba2d5bb2f7bb56dc4b0c592af003342d8 Mon Sep 17 00:00:00 2001 From: Fraser Tweedale Date: Mon, 6 Jun 2016 23:49:20 +1000 Subject: [PATCH 135/299] Re-add jose (GHC 8) --- build-constraints.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d06d55a2..e9ff5df7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2130,9 +2130,7 @@ packages: # GHC 8 - ghc-imported-from "Fraser Tweedale @frasertweedale": - [] - # https://github.com/frasertweedale/hs-jose/issues/14 - # GHC 8 - jose + - jose "Yutaka Nishimura @ynishi": - atndapi From 13845e475c1c1285aab7ae29d53052fe3ad7f5fc Mon Sep 17 00:00:00 2001 From: Greg Weber Date: Mon, 6 Jun 2016 14:26:33 -0700 Subject: [PATCH 136/299] enable amazonka --- build-constraints.yaml | 140 ++++++++++++++++++++--------------------- 1 file changed, 70 insertions(+), 70 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 535d4c5a..ef71b702 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1032,76 +1032,76 @@ packages: - jose-jwt "Brendan Hay brendan.g.hay@gmail.com @brendanhay": - # GHC 8 - amazonka - # GHC 8 - amazonka-core - # GHC 8 - amazonka-test - # GHC 8 - amazonka-apigateway - # GHC 8 - amazonka-autoscaling - # GHC 8 - amazonka-certificatemanager - # GHC 8 - amazonka-cloudformation - # GHC 8 - amazonka-cloudfront - # GHC 8 - amazonka-cloudhsm - # GHC 8 - amazonka-cloudsearch-domains - # GHC 8 - amazonka-cloudsearch - # GHC 8 - amazonka-cloudtrail - # GHC 8 - amazonka-cloudwatch-events - # GHC 8 - amazonka-cloudwatch-logs - # GHC 8 - amazonka-cloudwatch - # GHC 8 - amazonka-codecommit - # GHC 8 - amazonka-codedeploy - # GHC 8 - amazonka-codepipeline - # GHC 8 - amazonka-cognito-identity - # GHC 8 - amazonka-cognito-idp - # GHC 8 - amazonka-cognito-sync - # GHC 8 - amazonka-config - # GHC 8 - amazonka-datapipeline - # GHC 8 - amazonka-devicefarm - # GHC 8 - amazonka-directconnect - # GHC 8 - amazonka-dms - # GHC 8 - amazonka-ds - # GHC 8 - amazonka-dynamodb-streams - # GHC 8 - amazonka-dynamodb - # GHC 8 - amazonka-ec2 - # GHC 8 - amazonka-ecr - # GHC 8 - amazonka-ecs - # GHC 8 - amazonka-efs - # GHC 8 - amazonka-elasticache - # GHC 8 - amazonka-elasticbeanstalk - # GHC 8 - amazonka-elasticsearch - # GHC 8 - amazonka-elastictranscoder - # GHC 8 - amazonka-elb - # GHC 8 - amazonka-emr - # GHC 8 - amazonka-gamelift - # GHC 8 - amazonka-glacier - # GHC 8 - amazonka-iam - # GHC 8 - amazonka-importexport - # GHC 8 - amazonka-inspector - # GHC 8 - amazonka-iot-dataplane - # GHC 8 - amazonka-iot - # GHC 8 - amazonka-kinesis - # GHC 8 - amazonka-kinesis-firehose - # GHC 8 - amazonka-kms - # GHC 8 - amazonka-lambda - # GHC 8 - amazonka-marketplace-analytics - # GHC 8 - amazonka-marketplace-metering - # GHC 8 - amazonka-ml - # GHC 8 - amazonka-opsworks - # GHC 8 - amazonka-rds - # GHC 8 - amazonka-redshift - # GHC 8 - amazonka-route53-domains - # GHC 8 - amazonka-route53 - # GHC 8 - amazonka-s3 - # GHC 8 - amazonka-sdb - # GHC 8 - amazonka-ses - # GHC 8 - amazonka-sns - # GHC 8 - amazonka-sqs - # GHC 8 - amazonka-ssm - # GHC 8 - amazonka-storagegateway - # GHC 8 - amazonka-sts - # GHC 8 - amazonka-support - # GHC 8 - amazonka-swf - # GHC 8 - amazonka-waf - # GHC 8 - amazonka-workspaces + - amazonka + - amazonka-core + - amazonka-test + - amazonka-apigateway + - amazonka-autoscaling + - amazonka-certificatemanager + - amazonka-cloudformation + - amazonka-cloudfront + - amazonka-cloudhsm + - amazonka-cloudsearch-domains + - amazonka-cloudsearch + - amazonka-cloudtrail + - amazonka-cloudwatch-events + - amazonka-cloudwatch-logs + - amazonka-cloudwatch + - amazonka-codecommit + - amazonka-codedeploy + - amazonka-codepipeline + - amazonka-cognito-identity + - amazonka-cognito-idp + - amazonka-cognito-sync + - amazonka-config + - amazonka-datapipeline + - amazonka-devicefarm + - amazonka-directconnect + - amazonka-dms + - amazonka-ds + - amazonka-dynamodb-streams + - amazonka-dynamodb + - amazonka-ec2 + - amazonka-ecr + - amazonka-ecs + - amazonka-efs + - amazonka-elasticache + - amazonka-elasticbeanstalk + - amazonka-elasticsearch + - amazonka-elastictranscoder + - amazonka-elb + - amazonka-emr + - amazonka-gamelift + - amazonka-glacier + - amazonka-iam + - amazonka-importexport + - amazonka-inspector + - amazonka-iot-dataplane + - amazonka-iot + - amazonka-kinesis + - amazonka-kinesis-firehose + - amazonka-kms + - amazonka-lambda + - amazonka-marketplace-analytics + - amazonka-marketplace-metering + - amazonka-ml + - amazonka-opsworks + - amazonka-rds + - amazonka-redshift + - amazonka-route53-domains + - amazonka-route53 + - amazonka-s3 + - amazonka-sdb + - amazonka-ses + - amazonka-sns + - amazonka-sqs + - amazonka-ssm + - amazonka-storagegateway + - amazonka-sts + - amazonka-support + - amazonka-swf + - amazonka-waf + - amazonka-workspaces # GHC 8 - ede - pagerduty - semver From c396a83c0ce5c2d9f9bfb7435bce071c6b27b0ea Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Mon, 6 Jun 2016 23:42:52 -0700 Subject: [PATCH 137/299] Disable random-fu per #1561 --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d25010d4..7e193025 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -506,7 +506,8 @@ packages: "Dominic Steinitz ": - yarr - - random-fu + # https://github.com/fpco/stackage/issues/1561 + # - random-fu "Ben Gamari ": - vector-fftw From f471bc31f9284402a2c4c92463f5f8323def86aa Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Mon, 6 Jun 2016 23:52:59 -0700 Subject: [PATCH 138/299] Add constraints on haddock-api and haddock-library per #1562 --- build-constraints.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7e193025..d8377f1f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2262,6 +2262,10 @@ packages: # https://github.com/fpco/stackage/issues/1555 - authenticate-oauth < 1.6 + # https://github.com/fpco/stackage/issues/1562 + - haddock-api < 2.17.3 + - haddock-library < 1.4.2 + # end of packages From 93c4b3e6b0b443f61f2b48d9cd3a7fdaa470ade2 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Tue, 7 Jun 2016 00:09:44 -0700 Subject: [PATCH 139/299] Lift constraints, disable hdocs and hsdev per #1562 --- build-constraints.yaml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index d8377f1f..9693a081 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -835,9 +835,11 @@ packages: - servant-cassava "Alexandr Ruchkin voidex@live.com @mvoidex": - - hdocs + # https://github.com/fpco/stackage/issues/1562 + # - hdocs - hformat - - hsdev + # https://github.com/fpco/stackage/issues/1562 + # - hsdev - simple-log - text-region @@ -2262,10 +2264,6 @@ packages: # https://github.com/fpco/stackage/issues/1555 - authenticate-oauth < 1.6 - # https://github.com/fpco/stackage/issues/1562 - - haddock-api < 2.17.3 - - haddock-library < 1.4.2 - # end of packages From 27b75302b77fff05cfb6be235d441f96bfcf4742 Mon Sep 17 00:00:00 2001 From: Joachim Breitner Date: Tue, 7 Jun 2016 09:23:10 +0200 Subject: [PATCH 140/299] stm-conduit should work with GHC 8 now --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 17bd8ab6..6e81c0f1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -44,7 +44,7 @@ packages: - persistent-postgresql - persistent-sqlite - persistent-template - # GHC 8 - stm-conduit + - stm-conduit - wai-websockets - warp-tls - yackage From 865f55a1f7082cad482420081c8e668ffad04f19 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Tue, 7 Jun 2016 00:27:06 -0700 Subject: [PATCH 141/299] Re-enable random-fu, skip safecopy tests per #1561 --- build-constraints.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 17bd8ab6..81716dcb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -506,8 +506,7 @@ packages: "Dominic Steinitz ": - yarr - # https://github.com/fpco/stackage/issues/1561 - # - random-fu + - random-fu "Ben Gamari ": - vector-fftw @@ -2461,6 +2460,9 @@ skipped-tests: - system-fileio - shelly + # https://github.com/fpco/stackage/issues/1561 + - safecopy + # end of skipped-tests # Tests which we should build and run, but which are expected to fail. We From aebb4b76981a77b4b53840e0bd436907fd7a3e18 Mon Sep 17 00:00:00 2001 From: Joachim Breitner Date: Tue, 7 Jun 2016 12:59:42 +0200 Subject: [PATCH 142/299] tttool-1.6.1.1 should work with nightly. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 81716dcb..6210ebcc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -549,7 +549,7 @@ packages: - circle-packing - arbtt # GHC 8 - ghc-heap-view - # GHC 8 - tttool + - tttool # GHC 8 - gipeda - list-fusion-probe - haskell-spacegoo From c41b21f83e6c3f18989d9bc0cd3f2fd97fd015e7 Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Tue, 7 Jun 2016 10:48:42 -0400 Subject: [PATCH 143/299] Add back machines --- build-constraints.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 81716dcb..e886a0e5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -277,7 +277,7 @@ packages: - linear # GHC 8 - linear-accelerate # GHC 8 - log-domain - # BLOCKED distributive 0.5 - machines + - machines - monadic-arrays - monad-products - monad-products @@ -2385,7 +2385,6 @@ skipped-tests: - bound - heaps - hyphenation - # BLOCKED distributive 0.5 - machines # https://github.com/kaizhang/clustering/issues/2 - clustering @@ -2913,7 +2912,6 @@ expected-haddock-failures: # build benchmarks. The difference here will be whether dependencies for these # benchmarks are included or not. skipped-benchmarks: - - machines - criterion-plus - graphviz - lifted-base From cd41cfdfd7a8f34ca28495081aaef40085e87a49 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 7 Jun 2016 18:46:33 +0300 Subject: [PATCH 144/299] Remove expected doc failure haskell/haddock#516 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 81716dcb..14efc723 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2901,9 +2901,6 @@ expected-haddock-failures: # https://github.com/iand675/metrics/issues/5 - metrics - # https://github.com/haskell/haddock/issues/516 - - haddock-api - # https://github.com/fpco/stackage/pull/1549 - ghc-exactprint # end of expected-haddock-failures From ca82e8f6b21e239effb280bb2b172b1daa176716 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Tue, 7 Jun 2016 10:21:45 -0700 Subject: [PATCH 145/299] Add constraint "clash-lib < 0.6.16" per #1566 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 14efc723..4a9217cb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2263,6 +2263,9 @@ packages: # https://github.com/fpco/stackage/issues/1555 - authenticate-oauth < 1.6 + # https://github.com/fpco/stackage/issues/1566 + - clash-lib < 0.6.16 + # end of packages From 9ddaddedad140879a8084ca2fc046b50ec323962 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Tue, 7 Jun 2016 10:26:30 -0700 Subject: [PATCH 146/299] Add constraint "hackage-security < 0.5.2.0" per #1567 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4a9217cb..76215381 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2266,6 +2266,9 @@ packages: # https://github.com/fpco/stackage/issues/1566 - clash-lib < 0.6.16 + # https://github.com/fpco/stackage/issues/1567 + - hackage-security < 0.5.2.0 + # end of packages From 991aed936dd28687dcb06e98eed1754a1bc8f1bd Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 8 Jun 2016 11:14:33 +0900 Subject: [PATCH 147/299] re-enable pipes-safe, turtle, foldl --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 76215381..99004ad8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -445,9 +445,9 @@ packages: # GHC 8 - pipes-extras - pipes-parse - pipes-concurrency - # GHC 8 - pipes-safe - # GHC 8 - turtle - # GHC 8 - foldl + - pipes-safe + - turtle + - foldl # GHC 8 - morte "Andrew Thaddeus Martin ": From eae45c929fa4c8662686b2638e85afaf90e12e5b Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 8 Jun 2016 11:19:47 +0900 Subject: [PATCH 148/299] re-enable pandoc for ghc8 --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 99004ad8..db47fe74 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2043,8 +2043,8 @@ packages: - highlighting-kate - pandoc-types - zip-archive - # GHC 8 - pandoc - # GHC 8 - pandoc-citeproc + - pandoc + - pandoc-citeproc "Karun Ramakrishnan karun012@gmail.com @karun012": - doctest-discover From e80b3c19056bed36c22e94a720a2c2342c01448c Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 8 Jun 2016 11:20:05 +0900 Subject: [PATCH 149/299] re-enable Frames --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index db47fe74..1d0fe71c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2011,8 +2011,7 @@ packages: #- LibZip < 0.11 "Anthony Cowley @acowley": - [] - # GHC 8 - Frames + - Frames "Takayuki Muranushi @nushio3": - binary-search From 047016df14c402ca01b212c4b62f2acd970fbdba Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 8 Jun 2016 11:20:25 +0900 Subject: [PATCH 150/299] re-enable yi --- build-constraints.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1d0fe71c..2b1a010e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1626,10 +1626,10 @@ packages: - pointedlist - word-trie - xdg-basedir - # GHC 8 - yi - # GHC 8 - yi-fuzzy-open - # GHC 8 - yi-language - # GHC 8 - yi-rope + - yi + - yi-fuzzy-open + - yi-language + - yi-rope "Tobias Bexelius @tobbebex": [] From fc9194003caa14a73dcea67649afd0c5f745d7cb Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 8 Jun 2016 11:20:45 +0900 Subject: [PATCH 151/299] re-enable ghcjs-dom, jsaddle, vcswrapper --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2b1a010e..d99b796e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -870,14 +870,14 @@ packages: - cabal-rpm - cabal-sort - ghcjs-codemirror - # GHC 8 - ghcjs-dom + - ghcjs-dom # GHC 8 - idris - # BLOCKED lens 4.14 - jsaddle + - jsaddle # GHC 8 - leksah-server # GHC 8 - ltk - vado # GHC 8 - vcsgui - # GHC 8 - vcswrapper + - vcswrapper - cairo - gio From 3fd34955dd116fd5d14d4046e60a93733c85d7d2 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 8 Jun 2016 11:28:36 +0900 Subject: [PATCH 152/299] add hslua (osa1/hslua#44) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index d99b796e..3fdbf435 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -871,6 +871,7 @@ packages: - cabal-sort - ghcjs-codemirror - ghcjs-dom + - hslua # GHC 8 - idris - jsaddle # GHC 8 - leksah-server From 98445c898fafb28f1998c1e33cb64471f8770571 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Tue, 7 Jun 2016 22:28:03 -0700 Subject: [PATCH 153/299] Disable amazonka-iot and amazonka-lambda per #1568 --- build-constraints.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3fdbf435..e8e8d3b8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1080,11 +1080,13 @@ packages: - amazonka-importexport - amazonka-inspector - amazonka-iot-dataplane - - amazonka-iot + # https://github.com/fpco/stackage/issues/1568 + # - amazonka-iot - amazonka-kinesis - amazonka-kinesis-firehose - amazonka-kms - - amazonka-lambda + # https://github.com/fpco/stackage/issues/1568 + # - amazonka-lambda - amazonka-marketplace-analytics - amazonka-marketplace-metering - amazonka-ml From 3345014ccef04d3b19263c39dc3da29c05ec41bb Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Tue, 7 Jun 2016 22:31:50 -0700 Subject: [PATCH 154/299] Disable yi and yi-fuzzy-open per #1571 --- build-constraints.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index e8e8d3b8..9c93bf88 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1629,8 +1629,9 @@ packages: - pointedlist - word-trie - xdg-basedir - - yi - - yi-fuzzy-open + # https://github.com/fpco/stackage/issues/1571 + # - yi + # - yi-fuzzy-open - yi-language - yi-rope From d11183c874fe87e36fa95bf6cc11bf07d08b7b54 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Tue, 7 Jun 2016 22:38:23 -0700 Subject: [PATCH 155/299] Disable ghcjs-dom and jsaddle per #1569 --- build-constraints.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9c93bf88..313bccf3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -870,10 +870,12 @@ packages: - cabal-rpm - cabal-sort - ghcjs-codemirror - - ghcjs-dom + # https://github.com/fpco/stackage/issues/1569 + # - ghcjs-dom - hslua # GHC 8 - idris - - jsaddle + # https://github.com/fpco/stackage/issues/1569 + # - jsaddle # GHC 8 - leksah-server # GHC 8 - ltk - vado From f4e5d1026193a8fc0df08ff1d0db43f84b54e384 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Tue, 7 Jun 2016 22:45:26 -0700 Subject: [PATCH 156/299] Add constraint "xlsx < 0.2.2", suspected cause of #1570 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 313bccf3..681d0d73 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2274,6 +2274,9 @@ packages: # https://github.com/fpco/stackage/issues/1567 - hackage-security < 0.5.2.0 + # https://github.com/fpco/stackage/issues/1570 + - xlsx < 0.2.2 + # end of packages From 824d1703b360daca0b2d584cfd4bf494ad9f0c7b Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Tue, 7 Jun 2016 22:46:42 -0700 Subject: [PATCH 157/299] Remove constraint "hackage-security < 0.5.2.0", closes #1567 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 681d0d73..b8f09bdb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2271,9 +2271,6 @@ packages: # https://github.com/fpco/stackage/issues/1566 - clash-lib < 0.6.16 - # https://github.com/fpco/stackage/issues/1567 - - hackage-security < 0.5.2.0 - # https://github.com/fpco/stackage/issues/1570 - xlsx < 0.2.2 From 0824f6f82331b50a42df057aa380e8980c484864 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Tue, 7 Jun 2016 23:07:24 -0700 Subject: [PATCH 158/299] Relabel safecopy skipped test to acid-state/safecopy#45, closes #1561 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b8f09bdb..6f4c6614 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2471,7 +2471,7 @@ skipped-tests: - system-fileio - shelly - # https://github.com/fpco/stackage/issues/1561 + # https://github.com/acid-state/safecopy/issues/45 - safecopy # end of skipped-tests From d072f30d38a6da1581327d1973f471eb8147dbd2 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 8 Jun 2016 08:26:32 -0700 Subject: [PATCH 159/299] Remove constraint "clash-lib < 0.6.16", closes #1566 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3fea4a09..78f0440b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2268,9 +2268,6 @@ packages: # https://github.com/fpco/stackage/issues/1555 - authenticate-oauth < 1.6 - # https://github.com/fpco/stackage/issues/1566 - - clash-lib < 0.6.16 - # https://github.com/fpco/stackage/issues/1570 - xlsx < 0.2.2 From bbdb442ca83f77f7e3c99c395c6b972f4fc23aff Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 8 Jun 2016 08:28:37 -0700 Subject: [PATCH 160/299] Remove constraint "xlsx < 0.2.2", closes #1570 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 78f0440b..216b8e9b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2268,9 +2268,6 @@ packages: # https://github.com/fpco/stackage/issues/1555 - authenticate-oauth < 1.6 - # https://github.com/fpco/stackage/issues/1570 - - xlsx < 0.2.2 - # end of packages From 179375c4754fbb1fa7c97958ae9519291459ceb8 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 8 Jun 2016 08:30:23 -0700 Subject: [PATCH 161/299] Enable yi and yi-fuzzy-open, closes #1571 --- build-constraints.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 216b8e9b..eeab6712 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1631,9 +1631,8 @@ packages: - pointedlist - word-trie - xdg-basedir - # https://github.com/fpco/stackage/issues/1571 - # - yi - # - yi-fuzzy-open + - yi + - yi-fuzzy-open - yi-language - yi-rope From 2a83aadf63720375ce031bac6a002950b25ca2a6 Mon Sep 17 00:00:00 2001 From: Joachim Breitner Date: Wed, 8 Jun 2016 11:38:41 +0200 Subject: [PATCH 162/299] All my packages should work now with GHC 8 now --- build-constraints.yaml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index eeab6712..03464633 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -548,12 +548,12 @@ packages: "Joachim Breitner ": - circle-packing - arbtt - # GHC 8 - ghc-heap-view + - ghc-heap-view - tttool - # GHC 8 - gipeda + - gipeda - list-fusion-probe - haskell-spacegoo - # GHC 8 - tasty-expected-failure + - tasty-expected-failure "Aditya Bhargava Date: Wed, 8 Jun 2016 19:09:20 +0200 Subject: [PATCH 163/299] =?UTF-8?q?Refine=20ghc-heap-view=E2=80=99s=20patc?= =?UTF-8?q?h=20assignment?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 03464633..1dd3368e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2340,6 +2340,7 @@ package-flags: gtk3: true ghc-heap-view: + ghc_7_7: false ghc_8_0: true # end of package-flags From 1ce471510f59d63d0a30b2ae2cccddefaa69e77c Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 8 Jun 2016 10:21:21 -0700 Subject: [PATCH 164/299] apt-get install xclip, for hclip test suite (#1573) --- debian-bootstrap.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index 01eeece3..6cb773a4 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -41,6 +41,7 @@ apt-get install -y \ curl \ freeglut3-dev \ git \ + xclip \ libadns1-dev \ libasound2-dev \ libblas-dev \ From b62bf8f47475a5abf8d847cdedbf564e87bbb632 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 8 Jun 2016 10:28:38 -0700 Subject: [PATCH 165/299] Alphabetize apt-get installs --- debian-bootstrap.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index 6cb773a4..ae20a8b8 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -41,7 +41,6 @@ apt-get install -y \ curl \ freeglut3-dev \ git \ - xclip \ libadns1-dev \ libasound2-dev \ libblas-dev \ @@ -105,13 +104,14 @@ apt-get install -y \ nettle-dev \ nodejs \ npm \ + openjdk-8-jdk \ r-base \ r-base-dev \ ruby-dev \ - wget \ - zip \ stack \ - openjdk-8-jdk \ + wget \ + xclip \ + zip \ zlib1g-dev # Put documentation where we expect it From 3120dd2be33632fda1b4a172b4b3163cac374666 Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Wed, 8 Jun 2016 14:43:03 -0400 Subject: [PATCH 166/299] Add back packages with working Haddocks --- build-constraints.yaml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index eeab6712..b280d2f8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2874,9 +2874,6 @@ expected-haddock-failures: # https://github.com/fpco/stackage/issues/994 - Michelangelo - # https://github.com/ekmett/bifunctors/issues/42 - - bifunctors - # Problem with v0.1.6.0: https://github.com/fpco/stackage/issues/1206 - hsdev @@ -2895,9 +2892,6 @@ expected-haddock-failures: # https://github.com/GetShopTV/swagger2/issues/66 - swagger2 - # https://github.com/bos/statistics/issues/93 - - statistics - # https://github.com/aelve/microlens/issues/72 - microlens From e89a2388e46fdf02d527a310abe88ee0aa842d51 Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Wed, 8 Jun 2016 14:33:01 -0400 Subject: [PATCH 167/299] Add back benchmarks which now work --- build-constraints.yaml | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index eeab6712..d89bbe3b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2828,7 +2828,6 @@ expected-benchmark-failures: - Frames - attoparsec - bzlib-conduit - - cacophony - cipher-aes128 - cryptohash - dbus @@ -2839,20 +2838,18 @@ expected-benchmark-failures: - lens - lucid - mongoDB - - mutable-containers - picoparsec - rethinkdb - stateWriter - - streaming-commons - thyme - vinyl - warp - web-routing - xmlgen - - yesod-core - yi-rope # https://github.com/commercialhaskell/stack/issues/2153 + - scientific - vector-binary-instances # GHC 8 @@ -2914,11 +2911,8 @@ expected-haddock-failures: # benchmarks are included or not. skipped-benchmarks: - criterion-plus - - graphviz - lifted-base - - pandoc - stm-containers - - uuid # pulls in criterion-plus, which has restrictive upper bounds - cases @@ -2938,10 +2932,6 @@ skipped-benchmarks: # https://github.com/fpco/stackage/issues/494 - case-insensitive - postgresql-binary - - scientific - - # Old criterion - - acid-state # https://github.com/kaizhang/clustering/issues/2 - clustering From 4845dc29fcde0df8325aa733e5c65256ecc5a2eb Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 8 Jun 2016 13:38:47 -0700 Subject: [PATCH 168/299] Expect Hclip test suite to fail (jetho/Hclip#3) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 21e19952..37a7ba2b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2824,6 +2824,9 @@ expected-test-failures: # https://github.com/fpco/stackage/issues/1552 - purescript + + # https://github.com/jetho/Hclip/issues/3 + - Hclip # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 13b2c4a3a6016b70483a18ca4a3cab6c83dd17e7 Mon Sep 17 00:00:00 2001 From: tomjaguarpaw Date: Thu, 9 Jun 2016 10:13:50 +0100 Subject: [PATCH 169/299] Opaleye now works on GHC 8 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 37a7ba2b..3393b421 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -805,7 +805,7 @@ packages: - language-ecmascript "Tom Ellis ": - # GHC 8 - opaleye + - opaleye - product-profunctors "Samplecount stefan@samplecount.com @kaoskorobase": From cd0c5c794cdfb102c91121ca26af40ad46198aa3 Mon Sep 17 00:00:00 2001 From: bartavelle Date: Thu, 9 Jun 2016 11:17:24 +0200 Subject: [PATCH 170/299] Add the language-puppet package --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 37a7ba2b..c5114b8b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1725,6 +1725,7 @@ packages: - strict-base-types - withdependencies - hruby + - language-puppet # http-types # - stm-firehose # - hslogstash From f095ba6553a99816c994dcc12c16dc7fdf3504cb Mon Sep 17 00:00:00 2001 From: Henri Verroken Date: Thu, 9 Jun 2016 09:42:12 +0000 Subject: [PATCH 171/299] add cache --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 37a7ba2b..dd4b5203 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2237,6 +2237,9 @@ packages: - exact-pi - numtype-dk + "Henri Verroken @hverr": + - cache + # If you stop maintaining a package you can move it here. # It will then be disabled if it starts causing problems. # See https://github.com/fpco/stackage/issues/1056 From 45a2cec7fdc25865d60179862cde1c23845dcf94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Facundo=20Dom=C3=ADnguez?= Date: Thu, 9 Jun 2016 09:48:19 -0300 Subject: [PATCH 172/299] Add back some cloud haskell packages. --- build-constraints.yaml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 37a7ba2b..09c39c16 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1772,7 +1772,7 @@ packages: "Facundo Domínguez @facundominguez": [] - # GHC 8 - distributed-process + - GHC 8 - distributed-process # GHC 8 - distributed-process-async # GHC 8 - distributed-process-client-server # GHC 8 - distributed-process-execution @@ -1781,12 +1781,11 @@ packages: # GHC 8 - distributed-process-simplelocalnet # GHC 8 - distributed-process-supervisor # GHC 8 - distributed-process-task - # GHC 8 - distributed-static - # GHC 8 - network-transport - # GHC 8 - network-transport-tcp + - distributed-static + - network-transport + - network-transport-tcp # GHC 8 - network-transport-composed - # https://github.com/haskell-distributed/rank1dynamic/issues/15 - # GHC 8 - rank1dynamic + - rank1dynamic "Alexander Vershilov @qnikst": [] From 5a6594fbeb5820a915d90d8a651b1b41d4b23cb6 Mon Sep 17 00:00:00 2001 From: Pavel Ryzhov Date: Thu, 9 Jun 2016 14:53:27 +0200 Subject: [PATCH 173/299] Added packages hquantlib and persistent-redis --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 37a7ba2b..66b70b9a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2236,6 +2236,9 @@ packages: - dimensional - exact-pi - numtype-dk + "Pavel Ryzhov @paulrzcz": + - hquantlib + - persistent-redis # If you stop maintaining a package you can move it here. # It will then be disabled if it starts causing problems. From 0d4256b8a4209d2a6dc336a670a429666cf794b7 Mon Sep 17 00:00:00 2001 From: Cliff Harvey Date: Thu, 9 Jun 2016 15:01:09 +0200 Subject: [PATCH 174/299] Add myself as a library author --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 37a7ba2b..5eee5e5a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2237,6 +2237,9 @@ packages: - exact-pi - numtype-dk + "Cliff Harvey ": + - ansigraph + # If you stop maintaining a package you can move it here. # It will then be disabled if it starts causing problems. # See https://github.com/fpco/stackage/issues/1056 From c470364c7ca11538dd2884d3e72a8161c2bd0555 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 9 Jun 2016 15:38:52 +0200 Subject: [PATCH 175/299] hsdns: enable builds again The package is disabled due to https://github.com/fpco/stackage/issues/840, but that issue was fixed 9 months ago! --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 37a7ba2b..c6d31c98 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1690,8 +1690,7 @@ packages: - hackage-db # GHC 8 - hledger-interest - hopenssl - # https://github.com/fpco/stackage/issues/840 - # - hsdns + - hsdns - hsemail - hsyslog - language-nix From ec9bb1ad07c069381b20c0b85e252ab3d18cb18c Mon Sep 17 00:00:00 2001 From: Paul Rouse Date: Thu, 9 Jun 2016 14:50:33 +0100 Subject: [PATCH 176/299] Re-enable yesod-auth-oauth2 Fixed by https://github.com/thoughtbot/yesod-auth-oauth2/pull/63 release as version 0.1.9 --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 37a7ba2b..00b5f06b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -364,8 +364,7 @@ packages: - gravatar "Paul Harper ": - [] - # GHC 8 - yesod-auth-oauth2 + yesod-auth-oauth2 "Felipe Lessa @meteficha": - country-codes From 108996d4726051468d6fcc1d938f2bb1dd59f6bc Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 9 Jun 2016 15:47:22 +0200 Subject: [PATCH 177/299] hledger-interest: re-enable builds The package seems to compile fine with GHC 8.0.1: https://travis-ci.org/peti/hledger-interest/builds/136437417 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 37a7ba2b..4de3e35e 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1688,7 +1688,7 @@ packages: "Peter Simons simons@cryp.to @peti": - funcmp - hackage-db - # GHC 8 - hledger-interest + - hledger-interest - hopenssl # https://github.com/fpco/stackage/issues/840 # - hsdns From 6c31f6a2eaf65701a9ae8ed156aa5b2abd2cffe0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Facundo=20Dom=C3=ADnguez?= Date: Thu, 9 Jun 2016 11:06:43 -0300 Subject: [PATCH 178/299] Update build-constraints.yaml --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 09c39c16..c5126c81 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1771,7 +1771,6 @@ packages: - flat-mcmc "Facundo Domínguez @facundominguez": - [] - GHC 8 - distributed-process # GHC 8 - distributed-process-async # GHC 8 - distributed-process-client-server From afa0d5c4179438f633fdbfc1770cfb68e6ab433f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20D=C3=ADaz?= Date: Thu, 9 Jun 2016 11:15:41 -0400 Subject: [PATCH 179/299] add haskintex back haskintex should work again, now that the new hint has made it to stackage --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 37a7ba2b..72303bf6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -428,7 +428,7 @@ packages: - byteset - Clipboard - grouped-list - # needs hint to work with GHC 8: - haskintex + - haskintex - HaTeX # fails see #885 #- hatex-guide From 8703e5d5238474eb796fa24ba26ec6bdf3ae1c40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Facundo=20Dom=C3=ADnguez?= Date: Thu, 9 Jun 2016 12:29:31 -0300 Subject: [PATCH 180/299] Update build-constraints.yaml --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index c5126c81..f218ecfd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1771,7 +1771,7 @@ packages: - flat-mcmc "Facundo Domínguez @facundominguez": - - GHC 8 - distributed-process + - distributed-process # GHC 8 - distributed-process-async # GHC 8 - distributed-process-client-server # GHC 8 - distributed-process-execution From b844e863430e1c774c3343970db4f4dfb58849d4 Mon Sep 17 00:00:00 2001 From: Paul Rouse Date: Thu, 9 Jun 2016 16:31:07 +0100 Subject: [PATCH 181/299] Correct typo Duh! --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 00b5f06b..ceb2d7fe 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -364,7 +364,7 @@ packages: - gravatar "Paul Harper ": - yesod-auth-oauth2 + - yesod-auth-oauth2 "Felipe Lessa @meteficha": - country-codes From 1640557e374a2940fee5614def5f781639e02d1f Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Thu, 9 Jun 2016 10:14:54 -0700 Subject: [PATCH 182/299] Skip hledger-lib benchmarks per #1587 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 61db5fd8..e8837573 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2943,6 +2943,9 @@ skipped-benchmarks: # https://github.com/fpco/stackage/issues/1226 - unordered-containers + # https://github.com/fpco/stackage/issues/1587 + - hledger-lib + # end of skipped-benchmarks From cfe032ec51df3078ea790a395dea472a7a0541d2 Mon Sep 17 00:00:00 2001 From: Emanuel Borsboom Date: Thu, 9 Jun 2016 11:38:45 -0700 Subject: [PATCH 183/299] Add optparse-simple Dependency of `stack` (just waiting for https://github.com/sol/hpack/pull/110 to be merged and released, then `stack` can be added back). --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e13b95b9..56ee23b5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -734,6 +734,7 @@ packages: # GHC 8 - ghc-events - monad-extras # GHC 8 - stack < 9.9.9 + - optparse-simple "Michael Sloan ": - th-orphans From 8656ca429ccdf25add7b67e251e1747b1091be1f Mon Sep 17 00:00:00 2001 From: Siddharth Date: Fri, 10 Jun 2016 16:11:26 +0530 Subject: [PATCH 184/299] add symengine to stackage Add symEngine haskell bindings (https://github.com/symengine/symengine.hs) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 67bb2d06..52f68af9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1,6 +1,9 @@ ghc-major-version: "8.0" # Constraints for brand new builds packages: + "Siddharth Bhat @bollu": + - symengine + "alpheccar @alpheccar": - HPDF - hbayes From 2d277cfb18d8f3896934abf706847a069ec719ae Mon Sep 17 00:00:00 2001 From: Oleg Grenrus Date: Fri, 10 Jun 2016 15:46:31 +0300 Subject: [PATCH 185/299] Add servant-swagger-ui --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 67bb2d06..cfd265a8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -978,6 +978,7 @@ packages: - postgresql-simple-url - range-set-list - regex-applicative-text + - servant-swagger-ui - servant-yaml - spdx - these From 34e735fb6bdf2c699c4507741378ef47f52cd013 Mon Sep 17 00:00:00 2001 From: Emanuel Borsboom Date: Fri, 10 Jun 2016 08:03:08 -0700 Subject: [PATCH 186/299] Add back `stack` and add its dependency `hpack` --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 67bb2d06..324b3f64 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -733,8 +733,9 @@ packages: - Chart-cairo # GHC 8 - ghc-events - monad-extras - # GHC 8 - stack < 9.9.9 + - stack < 9.9.9 - optparse-simple + - hpack "Michael Sloan ": - th-orphans From 56f7a7426e0a0f3597c53fabc3f561ae25ff5c4c Mon Sep 17 00:00:00 2001 From: Sebastian Date: Fri, 10 Jun 2016 21:38:36 +0200 Subject: [PATCH 187/299] Re-enable hdevtools Compilation against GHC 8.0.1 should be fixed with https://github.com/hdevtools/hdevtools/pull/21, released to hackage as version 0.1.3.2 --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 400defe8..231e067c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -802,8 +802,7 @@ packages: - yesod-form-richtext "Sebastian Nagel @ch1bo": - [] - # GHC 8 - hdevtools + - hdevtools "Andrey Chudnov ": - language-ecmascript From 5ca70763a594895d1cb9d912b50873d72992747c Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Fri, 10 Jun 2016 13:38:44 -0700 Subject: [PATCH 188/299] Skip symengine test suite per missing C lib --- build-constraints.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 400defe8..289ae7c5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3,7 +3,7 @@ ghc-major-version: "8.0" packages: "Siddharth Bhat @bollu": - symengine - + "alpheccar @alpheccar": - HPDF - hbayes @@ -2479,6 +2479,9 @@ skipped-tests: # https://github.com/acid-state/safecopy/issues/45 - safecopy + # Missing C library: symengine + - symengine + # end of skipped-tests # Tests which we should build and run, but which are expected to fail. We From fcfd0475b455428df50f9d6d913fe01f3ab84351 Mon Sep 17 00:00:00 2001 From: Jeremy Shaw Date: Fri, 10 Jun 2016 21:36:28 -0500 Subject: [PATCH 189/299] Jeremy Shaw - reenable a bunch of packages which now build with GHC 8 --- build-constraints.yaml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 67bb2d06..5f0a89a0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1934,25 +1934,25 @@ packages: # GHC 8 - clckwrks-plugin-page # GHC 8 - clckwrks-plugin-media # GHC 8 - clckwrks-theme-bootstrap - # GHC 8 - hackage-whatsnew + - hackage-whatsnew # GHC 8 - happstack-authenticate - # GHC 8 - happstack-clientsession + - happstack-clientsession # GHC 8 - happstack-hsp - # GHC 8 - happstack-jmacro - # GHC 8 - happstack-server - # GHC 8 - happstack-server-tls - # GHC 8 - hsx-jmacro + - happstack-jmacro + - happstack-server + - happstack-server-tls + - hsx-jmacro # GHC 8 - ixset - reform - reform-blaze - reform-hamlet - # GHC 8 - reform-happstack - # GHC 8 - reform-hsp - # GHC 8 - userid + - reform-happstack + - reform-hsp + - userid - web-plugins - web-routes - # GHC 8 - web-routes-boomerang - # GHC 8 - web-routes-happstack + - web-routes-boomerang + - web-routes-happstack - web-routes-hsp - web-routes-th - web-routes-wai From 8f06b0cafd9e81a496cdb2e57b1863e94a8e8f3a Mon Sep 17 00:00:00 2001 From: Michael Walker Date: Sat, 11 Jun 2016 16:22:05 +0100 Subject: [PATCH 190/299] irc-client-0.4.0.0 is GHC 8 compatible. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 289ae7c5..fd903509 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1611,7 +1611,7 @@ packages: - tasty-dejafu - irc-ctcp - irc-conduit - # GHC 8 - irc-client + - irc-client "Trevor Elliott @elliottt": - irc From c3ad77e8b5b8ec783226d24ef61dbd633a2c468f Mon Sep 17 00:00:00 2001 From: Omari Norman Date: Sat, 11 Jun 2016 16:22:22 -0400 Subject: [PATCH 191/299] Change Omari Norman's packages for GHC 8 pipes-cliff should now work without changes, as the upstream packages are now working in GHC 8. No new release of validation has been made, so I split the interesting parts out into a new package, accuerr. --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1a6a16e2..50fa6525 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -112,7 +112,7 @@ packages: "Omari Norman ": - rainbow - rainbox - # GHC 8 - pipes-cliff + - pipes-cliff - anonymous-sums - multiarg - prednote @@ -120,7 +120,7 @@ packages: - Earley - ofx - pinchot - # GHC 8 - validation + - accuerr "Neil Mitchell": - hlint From 1cda891e01a63ace4c65b6a9a7589fbc665ca5e2 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sat, 11 Jun 2016 22:53:31 -0700 Subject: [PATCH 192/299] Add constraint "tagsoup < 0.14" per #1597 --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1a6a16e2..edbc27d9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2275,6 +2275,8 @@ packages: # https://github.com/fpco/stackage/issues/1555 - authenticate-oauth < 1.6 + # https://github.com/fpco/stackage/issues/1597 + - tagsoup < 0.14 # end of packages From 6006c05593cd48def0403a97c265b17ce0535453 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sun, 12 Jun 2016 00:11:14 -0700 Subject: [PATCH 193/299] Skipped rose-trees test suite per athanclark/rose-trees#5 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6dd64d49..58938eb9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2483,6 +2483,9 @@ skipped-tests: # Missing C library: symengine - symengine + # https://github.com/athanclark/rose-trees/pull/5 + - rose-trees + # end of skipped-tests # Tests which we should build and run, but which are expected to fail. We From 226f827015d4f348210d3d581c4f0f46c134780e Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sun, 12 Jun 2016 00:23:04 -0700 Subject: [PATCH 194/299] Skipped rose-trees benchmarks per athanclark/rose-trees#5 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 58938eb9..f9adb89d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2960,6 +2960,9 @@ skipped-benchmarks: # https://github.com/fpco/stackage/issues/1587 - hledger-lib + # https://github.com/athanclark/rose-trees/pull/5 + - rose-trees + # end of skipped-benchmarks From a55b6410cee1e76f0d557f7713e27f283744c42c Mon Sep 17 00:00:00 2001 From: Index Int Date: Sun, 12 Jun 2016 17:44:36 +0300 Subject: [PATCH 195/299] Unblock union for GHC 8 --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f9adb89d..19820e84 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1474,7 +1474,7 @@ packages: "Index Int ": - transformers-lift - ether - # GHC 8 - union + - union "Stack Builders stackage@stackbuilders.com @stackbuilders": - atomic-write From 925438a29bc8f5b7808f3e07649c005a799c00af Mon Sep 17 00:00:00 2001 From: John Lenz Date: Sun, 12 Jun 2016 12:46:40 -0500 Subject: [PATCH 196/299] Allow hspec-webdriver and webdriver-angular for GHC 8 I have tested these with nightly-2016-06-12 and they both work with GHC 8.0.1 --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 19820e84..8588abe8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1454,8 +1454,8 @@ packages: "John Lenz @wuzzeb": - yesod-auth-account - yesod-static-angular - # GHC 8 - hspec-webdriver - # GHC 8 - webdriver-angular + - hspec-webdriver + - webdriver-angular "Sven Heyll @sheyll": - b9 From 270971781f92173216eb30508c064438876b49c3 Mon Sep 17 00:00:00 2001 From: Artyom Date: Sun, 12 Jun 2016 22:38:37 +0300 Subject: [PATCH 197/299] Add text-all --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 19820e84..6462a499 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1577,6 +1577,7 @@ packages: - Spock-lucid - charsetdetect-ae - ilist + - text-all "Takano Akio aljee@hyper.cx @takano-akio": # GHC 8 - fast-builder From dacfefd6cad37dd5a8cda8496a417dac2aa8bcd6 Mon Sep 17 00:00:00 2001 From: Marco Zocca Date: Sun, 12 Jun 2016 23:47:44 +0200 Subject: [PATCH 198/299] `ad-4.3.2.1` is compatible with GHC 8 --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 19820e84..b12a8edb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -245,7 +245,8 @@ packages: - MFlow "Edward Kmett ": - # BLOCKED comonad 5 - ad + # BLOCKED comonad 5 + - ad - adjunctions # GHC 8 - approximate - bifunctors From 5fe2285d570d6a1c24516ec6882d7b730f822a73 Mon Sep 17 00:00:00 2001 From: Gabriel Gonzalez Date: Sun, 12 Jun 2016 16:50:04 -0700 Subject: [PATCH 199/299] Enable `morte` and `pipes-extras` `morte-1.6.1` and `pipes-extras-1.0.4` now build against Stackage nightly --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 19820e84..3b2fedd7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -444,13 +444,13 @@ packages: "Gabriel Gonzalez ": - optparse-generic - pipes - # GHC 8 - pipes-extras + - pipes-extras - pipes-parse - pipes-concurrency - pipes-safe - turtle - foldl - # GHC 8 - morte + - morte "Andrew Thaddeus Martin ": - yesod-table From 81a7de095d19a0bab6e4b1399b6662ff4cb49410 Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Mon, 13 Jun 2016 09:48:08 -0400 Subject: [PATCH 200/299] Add back previously broken benchmarks --- build-constraints.yaml | 3 --- debian-bootstrap.sh | 12 +++++++++++- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 19820e84..60620810 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2850,7 +2850,6 @@ expected-test-failures: expected-benchmark-failures: - Frames - attoparsec - - bzlib-conduit - cipher-aes128 - cryptohash - dbus @@ -2863,9 +2862,7 @@ expected-benchmark-failures: - mongoDB - picoparsec - rethinkdb - - stateWriter - thyme - - vinyl - warp - web-routing - xmlgen diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index ae20a8b8..db1f6273 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -99,7 +99,9 @@ apt-get install -y \ libyaml-dev \ libzip-dev \ libzmq3-dev \ - llvm \ + # The LLVM version should be kept in sync with what GHC requires for its + # LLVM backend (see below for more information). + llvm-3.7 \ m4 \ nettle-dev \ nodejs \ @@ -122,3 +124,11 @@ mv /opt/ghc/$GHCVER/share/doc/ghc-$GHCVER/ /opt/ghc/$GHCVER/share/doc/ghc # faster anyways and uses less RAM. update-alternatives --install "/usr/bin/ld" "ld" "/usr/bin/ld.gold" 20 update-alternatives --install "/usr/bin/ld" "ld" "/usr/bin/ld.bfd" 10 + +# GHC requires a specific LLVM version on the system PATH for its LLVM backend. +# This version is tracked here: +# https://ghc.haskell.org/trac/ghc/wiki/Commentary/Compiler/Backends/LLVM/Installing +# +# GHC 8.0 requires LLVM 3.7 tools (specifically, llc-3.7 and opt-3.7). +update-alternatives --install "/usr/bin/llc" "llc" "/usr/bin/llc-3.7" 50 +update-alternatives --install "/usr/bin/opt" "opt" "/usr/bin/opt-3.7" 50 From a7dd3f0161056379e6f6c760f95614fae77dd4f7 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Mon, 13 Jun 2016 08:03:16 -0700 Subject: [PATCH 201/299] Skip union benchmarks per int-index/union#4 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 19820e84..eba63c1d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2963,6 +2963,9 @@ skipped-benchmarks: # https://github.com/athanclark/rose-trees/pull/5 - rose-trees + # https://github.com/int-index/union/issues/4 + - union + # end of skipped-benchmarks From a0177bbf9513462cd13107b4e409eb9f002eb32a Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Mon, 13 Jun 2016 08:33:54 -0700 Subject: [PATCH 202/299] delete outdated comment --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7564acf7..3c1e00db 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -245,7 +245,6 @@ packages: - MFlow "Edward Kmett ": - # BLOCKED comonad 5 - ad - adjunctions # GHC 8 - approximate From e12f27be9f10c1c7d8a14d45d7ac9596ca42fc5f Mon Sep 17 00:00:00 2001 From: Index Int Date: Tue, 14 Jun 2016 00:34:46 +0300 Subject: [PATCH 203/299] Restore union bench This reverts commit a7dd3f0161056379e6f6c760f95614fae77dd4f7. --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3c1e00db..5b4da6a4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2964,9 +2964,6 @@ skipped-benchmarks: # https://github.com/athanclark/rose-trees/pull/5 - rose-trees - # https://github.com/int-index/union/issues/4 - - union - # end of skipped-benchmarks From 33241c13997d9780c8c431fb21391b912466d235 Mon Sep 17 00:00:00 2001 From: David Reaver Date: Mon, 13 Jun 2016 15:07:46 -0700 Subject: [PATCH 204/299] Unblock stratosphere for GHC 8 --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3c1e00db..d7ae252d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2196,8 +2196,7 @@ packages: - protobuf-simple "David Reaver @jdreaver": - [] - # BLOCKED comonad 5 - stratosphere + - stratosphere "Alexey Rodiontsev @klappvisor": - telegram-api From 6730b5160192b1e4d5d0046bcb144cb3892f7526 Mon Sep 17 00:00:00 2001 From: Oleg Grenrus Date: Tue, 14 Jun 2016 11:23:50 +0300 Subject: [PATCH 205/299] Add generics-sop-lens and friendly-time --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 75ff38c0..2b482c62 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -973,6 +973,7 @@ packages: - binary-orphans - binary-tagged - edit-distance + - generics-sop-lens # GHC 8 - github - insert-ordered-containers - JuicyPixels-scale-dct @@ -990,6 +991,7 @@ packages: # Not a maintainer - arithmoi + - friendly-time - hashable # GHC 8 - haxl - monad-time From e8bcf48579b1e5ae23f75c0679b1748a7e5c9fbb Mon Sep 17 00:00:00 2001 From: Marco Zocca Date: Tue, 14 Jun 2016 22:40:39 +0200 Subject: [PATCH 206/299] Propose `parsers` for inclusion --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 75ff38c0..539d5d63 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -288,7 +288,8 @@ packages: - mtl - nats - numeric-extras - # GHC 8 - parsers + # GHC 8 + - parsers - pointed - prelude-extras - profunctor-extras From 7d58bfa8c9dbc0ab3cd91d45b69089602dae1340 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 15 Jun 2016 12:50:45 +0900 Subject: [PATCH 207/299] debian-bootstrap.sh: remove comment from apt-get install --- debian-bootstrap.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/debian-bootstrap.sh b/debian-bootstrap.sh index db1f6273..0a77511f 100755 --- a/debian-bootstrap.sh +++ b/debian-bootstrap.sh @@ -99,8 +99,6 @@ apt-get install -y \ libyaml-dev \ libzip-dev \ libzmq3-dev \ - # The LLVM version should be kept in sync with what GHC requires for its - # LLVM backend (see below for more information). llvm-3.7 \ m4 \ nettle-dev \ From 2eeb2102b3dbc775d999160a36cf66be2ccefaf8 Mon Sep 17 00:00:00 2001 From: Greg Hurrell Date: Wed, 15 Jun 2016 00:01:59 -0700 Subject: [PATCH 208/299] Proprose docvim inclusion --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index fcc1ba7b..1a2e6af6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2248,6 +2248,9 @@ packages: "Cliff Harvey ": - ansigraph + "Greg Hurrell ": + - docvim + # If you stop maintaining a package you can move it here. # It will then be disabled if it starts causing problems. # See https://github.com/fpco/stackage/issues/1056 From 06d4f942109aa6f46895bead79ae14de96516a6a Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 15 Jun 2016 17:01:27 +0900 Subject: [PATCH 209/299] Revert "Disable amazonka-iot and amazonka-lambda per #1568" fixed in 1.4.3 --- build-constraints.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index fcc1ba7b..87c2af1d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1089,13 +1089,11 @@ packages: - amazonka-importexport - amazonka-inspector - amazonka-iot-dataplane - # https://github.com/fpco/stackage/issues/1568 - # - amazonka-iot + - amazonka-iot - amazonka-kinesis - amazonka-kinesis-firehose - amazonka-kms - # https://github.com/fpco/stackage/issues/1568 - # - amazonka-lambda + - amazonka-lambda - amazonka-marketplace-analytics - amazonka-marketplace-metering - amazonka-ml From eeb515f05b238db1cc09872372c60ddac4a1ba6e Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 15 Jun 2016 17:41:57 +0900 Subject: [PATCH 210/299] revert "Expect hpio tests to fail #1540" fixed in 0.8.0.2 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 87c2af1d..78d2964c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2836,9 +2836,6 @@ expected-test-failures: # https://github.com/thoughtpolice/hs-ed25519/issues/15 - ed25519 - # https://github.com/fpco/stackage/issues/1540 - - hpio - # https://github.com/fpco/stackage/issues/1552 - purescript From ef2014d57c11681b4de85bc44c37910ce0791edd Mon Sep 17 00:00:00 2001 From: Marco Zocca Date: Wed, 15 Jun 2016 14:51:26 +0200 Subject: [PATCH 211/299] latest inline-c is 8.0.1 ready --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 78d2964c..0d641f04 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1850,7 +1850,8 @@ packages: "Luke Iannini @lukexi": [] - # GHC 8 - inline-c + # GHC 8 + - inline-c # GHC 8 - inline-c-cpp # GHC 8 - ekg From a2e72209b8bcfc14675547113e7c72aa62ddce47 Mon Sep 17 00:00:00 2001 From: Marco Zocca Date: Wed, 15 Jun 2016 15:38:15 +0200 Subject: [PATCH 212/299] Update build-constraints.yaml fixed typo --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0d641f04..5c830d0f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1849,7 +1849,6 @@ packages: - webdriver "Luke Iannini @lukexi": - [] # GHC 8 - inline-c # GHC 8 - inline-c-cpp From e73a009a3f0b5331df0d0c6fa01373d4a1b485f0 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 15 Jun 2016 15:40:44 +0200 Subject: [PATCH 213/299] build-constraints.yaml: add new distribution-nixpkgs package --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 78d2964c..e735938b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1692,6 +1692,7 @@ packages: - nagios-check "Peter Simons simons@cryp.to @peti": + - distribution-nixpkgs - funcmp - hackage-db - hledger-interest From d5bd392f05ad8676d854c5863addfec58e266a4b Mon Sep 17 00:00:00 2001 From: Tebello Thejane Date: Wed, 15 Jun 2016 16:45:43 +0200 Subject: [PATCH 214/299] Add bitx-bitcoin. --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 78d2964c..e45712b5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2245,6 +2245,9 @@ packages: "Cliff Harvey ": - ansigraph + + "Tebello Thejane @tebello-thejane": + - bitx-bitcoin # If you stop maintaining a package you can move it here. # It will then be disabled if it starts causing problems. From cfb31f06ad990fdcba78a75d892cac308cdcebf7 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Wed, 15 Jun 2016 10:49:11 -0700 Subject: [PATCH 215/299] Re-enable bloodhound --- build-constraints.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 78d2964c..9ab398ec 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -459,9 +459,8 @@ packages: "Arash Rouhani ": - yesod-text-markdown - # https://github.com/fpco/stackage/issues/1155 - # "Chris Allen ": - # - bloodhound + "Chris Allen ": + - bloodhound "Adam Bergmark @bergmark": - aeson From 9fb0b613bb3a0bbfda923aa80ad45f7c59510026 Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Wed, 15 Jun 2016 19:31:06 -0400 Subject: [PATCH 216/299] Add back bits, semigroupoids, and streams --- build-constraints.yaml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9ab398ec..26ae0704 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -249,7 +249,7 @@ packages: - adjunctions # GHC 8 - approximate - bifunctors - # GHC 8 - bits + - bits # GHC 8 - bound - bytes - charset @@ -288,7 +288,6 @@ packages: - mtl - nats - numeric-extras - # GHC 8 - parsers - pointed - prelude-extras @@ -301,7 +300,7 @@ packages: - semigroupoids - semigroups - speculation - # BLOCKED comonad 5 - streams + - streams - tagged - vector-instances - void @@ -2463,7 +2462,6 @@ skipped-tests: - ad - composition-tree # GHC 8 - patches-vector - - semigroupoids # GHC 8 (bytestring-handle) - tar @@ -2563,9 +2561,6 @@ expected-test-failures: # Requires SAT solver and old QuickCheck - ersatz - # Failing doctests - - bits - # No server running - amqp From 0c6d30de5630d5b7a4186a6252c27f210d98698a Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 16 Jun 2016 11:49:22 +0900 Subject: [PATCH 217/299] add stackage-cli to Dan's packages to allow stackage-curator to stack build --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 02af192e..2b2d64b6 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -423,6 +423,7 @@ packages: - runmemo - tardis - lens-family-th + - stackage-cli "Daniel Díaz dhelta.diaz@gmail.com @Daniel-Diaz": - bimap-server From 8109086487b3ff390ab5716514a61de9b80a9aae Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 16 Jun 2016 11:51:44 +0900 Subject: [PATCH 218/299] semigroupoids-5.0.1 should build without tests (#1615) --- build-constraints.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 2b2d64b6..0a267cd8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2284,6 +2284,9 @@ packages: # https://github.com/fpco/stackage/issues/1597 - tagsoup < 0.14 + + # https://github.com/fpco/stackage/issues/1615 + - semigroupoids < 5.1 # end of packages @@ -2492,6 +2495,8 @@ skipped-tests: # https://github.com/athanclark/rose-trees/pull/5 - rose-trees + # https://github.com/fpco/stackage/issues/1615 + - semigroupoids # end of skipped-tests # Tests which we should build and run, but which are expected to fail. We From bf633b26eedd007b04630a54978cccbceb0a5e14 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 16 Jun 2016 12:16:16 +0900 Subject: [PATCH 219/299] add back stackage-curator stackage-cli is deprecated --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0a267cd8..faaafd85 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -47,6 +47,7 @@ packages: - persistent-postgresql - persistent-sqlite - persistent-template + - stackage-curator - stm-conduit - wai-websockets - warp-tls @@ -423,7 +424,6 @@ packages: - runmemo - tardis - lens-family-th - - stackage-cli "Daniel Díaz dhelta.diaz@gmail.com @Daniel-Diaz": - bimap-server From 06808c13656709a7ac2466e65cfbcb7637e2777c Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 16 Jun 2016 12:41:45 +0900 Subject: [PATCH 220/299] distribution-nixpkgs link problem (#1616) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Ambiguous interface for ‘Text.PrettyPrint.HughesPJClass’ --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index faaafd85..afb27a3c 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2848,6 +2848,9 @@ expected-test-failures: # https://github.com/jetho/Hclip/issues/3 - Hclip + + # https://github.com/fpco/stackage/issues/1616 + - distribution-nixpkgs # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From a51873e079959781a60087a09dc56d4ffda3248e Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 16 Jun 2016 12:49:25 +0900 Subject: [PATCH 221/299] docvim test failing (wincent/docvim#25) --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index afb27a3c..3f3257e2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2851,6 +2851,9 @@ expected-test-failures: # https://github.com/fpco/stackage/issues/1616 - distribution-nixpkgs + + # https://github.com/wincent/docvim/issues/25 + - docvim # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 8dbc8574422921807114d89f2e0b809ceaff88d6 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 16 Jun 2016 12:54:01 +0900 Subject: [PATCH 222/299] Revert "latest inline-c is 8.0.1 ready" This reverts commit ef2014d57c11681b4de85bc44c37910ce0791edd. --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3f3257e2..618d8bc1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1849,8 +1849,8 @@ packages: - webdriver "Luke Iannini @lukexi": - # GHC 8 - - inline-c + [] + # GHC 8 - inline-c # GHC 8 - inline-c-cpp # GHC 8 - ekg From 7390b82cb949e4c5f1a7e02f71e4eea080313f9c Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 16 Jun 2016 15:18:49 +0900 Subject: [PATCH 223/299] disable stackage-curator again (stackage-curator#20) --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 618d8bc1..dfd969b9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -47,7 +47,8 @@ packages: - persistent-postgresql - persistent-sqlite - persistent-template - - stackage-curator + # https://github.com/fpco/stackage-curator/pull/20 + #- stackage-curator - stm-conduit - wai-websockets - warp-tls From c7c8087c4b386f41dc1ab38b2e9a4c0e60f7407b Mon Sep 17 00:00:00 2001 From: Marco Zocca Date: Thu, 16 Jun 2016 16:26:41 +0200 Subject: [PATCH 224/299] inline-c 0.5.5.3 is GHC 8.0.1 ready --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index dfd969b9..a4cdf7cc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1850,8 +1850,7 @@ packages: - webdriver "Luke Iannini @lukexi": - [] - # GHC 8 - inline-c + - inline-c # GHC 8 - inline-c-cpp # GHC 8 - ekg From c3adc57d5834b1cb3b4db51bc7570df08f1f2731 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 17 Jun 2016 15:02:50 +0900 Subject: [PATCH 225/299] Reverting "semigroupoids-5.0.1 should build without tests (#1615)" This reverts commit 8109086487b3ff390ab5716514a61de9b80a9aae. --- build-constraints.yaml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index a4cdf7cc..8826dd8f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2284,9 +2284,6 @@ packages: # https://github.com/fpco/stackage/issues/1597 - tagsoup < 0.14 - - # https://github.com/fpco/stackage/issues/1615 - - semigroupoids < 5.1 # end of packages @@ -2495,8 +2492,6 @@ skipped-tests: # https://github.com/athanclark/rose-trees/pull/5 - rose-trees - # https://github.com/fpco/stackage/issues/1615 - - semigroupoids # end of skipped-tests # Tests which we should build and run, but which are expected to fail. We From 74e65a8f6054ec1098c83de8493e2eb60e97a9d3 Mon Sep 17 00:00:00 2001 From: Greg Hurrell Date: Fri, 17 Jun 2016 01:36:45 -0700 Subject: [PATCH 226/299] Remove docvim from list of expected failures According to Travis, the latest 0.3.1.3 release should be clean/passing. https://travis-ci.org/wincent/docvim/builds/138283565 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8826dd8f..b5a3863f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2846,9 +2846,6 @@ expected-test-failures: # https://github.com/fpco/stackage/issues/1616 - distribution-nixpkgs - - # https://github.com/wincent/docvim/issues/25 - - docvim # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From cac7da2dd3d3c75652eea740d5ac77a27e9225b1 Mon Sep 17 00:00:00 2001 From: Nickolay Kudasov Date: Fri, 17 Jun 2016 17:51:45 +0400 Subject: [PATCH 227/299] Add smsaero back to Stackage `smsaero-0.5` now supports `servant-0.7` which was the problem in https://github.com/fpco/stackage/issues/1290 --- build-constraints.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8826dd8f..ba25a7e2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1762,8 +1762,7 @@ packages: "Nickolay Kudasov @fizruk": - http-api-data - # https://github.com/fpco/stackage/issues/1290 - #- smsaero + - smsaero - swagger2 - servant-swagger From 7b8631786dcc885fbc2db706f8a3a9a278a2df07 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Fri, 17 Jun 2016 11:25:57 -0700 Subject: [PATCH 228/299] re-enable hledger packages As best I can figure out, stackage will build these successfully in GHC8 nightlies now. --- build-constraints.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8826dd8f..8b84dc50 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -640,10 +640,10 @@ packages: "Simon Michael @simonmichael": - regex-compat-tdfa # GHC 8 - darcs - # GHC 8 - hledger - # GHC 8 - hledger-lib - # GHC 8 - hledger-ui - # GHC 8 - hledger-web + - hledger + - hledger-lib + - hledger-ui + - hledger-web # GHC 8 - shelltestrunner "Mihai Maruseac ": From 54d9a31971f0221136e0d7570d291dfadf611d5d Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Fri, 17 Jun 2016 11:49:54 -0700 Subject: [PATCH 229/299] hledger-ui/web aren't ready yet --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8b84dc50..d8a43939 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -642,8 +642,8 @@ packages: # GHC 8 - darcs - hledger - hledger-lib - - hledger-ui - - hledger-web + # - hledger-ui + # - hledger-web # GHC 8 - shelltestrunner "Mihai Maruseac ": From ac5e11ac80f757ebccbf173ab7b2a8a7169e2572 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sat, 18 Jun 2016 20:04:54 -0700 Subject: [PATCH 230/299] Disable docvim per outdated deps --- build-constraints.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 8826dd8f..209fe78d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2245,12 +2245,13 @@ packages: "Cliff Harvey ": - ansigraph - + "Tebello Thejane @tebello-thejane": - bitx-bitcoin - "Greg Hurrell ": - - docvim + # incompatible with lens 4.14, process 1.4.2.0 + # "Greg Hurrell ": + # - docvim # If you stop maintaining a package you can move it here. # It will then be disabled if it starts causing problems. From bf827969e8c9a59cfe292274599deee9f87d1955 Mon Sep 17 00:00:00 2001 From: Justin Le Date: Sat, 18 Jun 2016 22:30:18 -0700 Subject: [PATCH 231/299] Update build-constraints.yaml re-added 'uncertain' because dependencies are back on stackage! :) --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 209fe78d..2d910613 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1318,7 +1318,7 @@ packages: - prompt - tagged-binary - typelits-witnesses - # BLOCKED comonad 5 - uncertain + - uncertain "Ian Duncan @iand675": - feature-flags From 24c970ee522962f63517702aa124b0680bcd1b7e Mon Sep 17 00:00:00 2001 From: Greg Hurrell Date: Sat, 18 Jun 2016 22:38:49 -0700 Subject: [PATCH 232/299] Re-enable docvim Again compatible with latest lens and process packages. Had inadvertently become incompatible as a result of switching to use the `lts-6.3` resolver instead of a recent nightly in https://github.com/wincent/docvim/commit/65c8615c82422fac3f9cd88bd5f343514ce2b496, and starting to use `--pvp-bounds both` in https://github.com/wincent/docvim/commit/29650e24d40bcdc5c3dd3eb2a0948925e421dd9e. Fixed in the 0.3.1.6 release: https://hackage.haskell.org/package/docvim-0.3.1.6 --- build-constraints.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 209fe78d..4a21628d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2249,9 +2249,8 @@ packages: "Tebello Thejane @tebello-thejane": - bitx-bitcoin - # incompatible with lens 4.14, process 1.4.2.0 - # "Greg Hurrell ": - # - docvim + "Greg Hurrell ": + - docvim # If you stop maintaining a package you can move it here. # It will then be disabled if it starts causing problems. From 24b62a326ce27e63774f5f9b92786eebace92981 Mon Sep 17 00:00:00 2001 From: Bodigrim Date: Sun, 19 Jun 2016 17:31:57 +0300 Subject: [PATCH 233/299] add exp-pairs --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 209fe78d..852edcdd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2248,6 +2248,9 @@ packages: "Tebello Thejane @tebello-thejane": - bitx-bitcoin + + "Andrew Lelechenko @Bodigrim": + - exp-pairs # incompatible with lens 4.14, process 1.4.2.0 # "Greg Hurrell ": From d9bb934acb005e79b776995ac64a171bd893e140 Mon Sep 17 00:00:00 2001 From: Kei Hibino Date: Sun, 19 Jun 2016 23:34:44 +0900 Subject: [PATCH 234/299] packages about relational-record are GHC 8.0.1 ready --- build-constraints.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 209fe78d..23c30f67 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2114,10 +2114,10 @@ packages: # GHC 8 - tidal "Kei Hibino @khibino": - # GHC 8 - relational-query - # GHC 8 - relational-query-HDBC - # GHC 8 - persistable-types-HDBC-pg - # GHC 8 - relational-record + - relational-query + - relational-query-HDBC + - persistable-types-HDBC-pg + - relational-record - text-ldap - debian-build From 733073fb7594d38ebee17b67ceb4233bb172dbae Mon Sep 17 00:00:00 2001 From: Yorick Laupa Date: Sun, 19 Jun 2016 17:13:10 +0200 Subject: [PATCH 235/299] Add eventstore package back `eventstore` compiles with GHC 8 now --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 209fe78d..13d944e2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1906,7 +1906,7 @@ packages: # GHC 8 - lentil "Yorick Laupa yo.eight@gmail.com @YoEight": - # GHC 8 - eventstore + - eventstore - dotnet-timespan "Sebastian Dröge slomo@coaxion.net @sdroege": From 8a4434c9375ea27844e4b69b94433f071f205284 Mon Sep 17 00:00:00 2001 From: Kei Hibino Date: Mon, 20 Jun 2016 00:21:18 +0900 Subject: [PATCH 236/299] add package-flags for GHC 8. --- build-constraints.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 23c30f67..99c1f6fd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2332,6 +2332,11 @@ package-flags: time-locale-compat: old-locale: false + th-data-compat: + template-haskell-210: false + th-reify-compat: + template-haskell-210: false + HsOpenSSL: fast-bignum: false From 62f9e688e66622ebc1cb545f48fa6c14653df029 Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Sun, 19 Jun 2016 11:40:33 -0700 Subject: [PATCH 237/299] Add constraint "singletons < 2.2" per #1627 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 209fe78d..43183bd5 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2285,6 +2285,9 @@ packages: # https://github.com/fpco/stackage/issues/1597 - tagsoup < 0.14 + + # https://github.com/fpco/stackage/issues/1627 + - singletons < 2.2 # end of packages From 29d814ff6ae43ab910b4f4be35f03476cc55f712 Mon Sep 17 00:00:00 2001 From: Mathieu Boespflug Date: Sun, 19 Jun 2016 23:27:30 +0200 Subject: [PATCH 238/299] Reenable distributed-closure + add cassette. --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0211318f..83f9d764 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1370,11 +1370,11 @@ packages: - nationstates "Mathieu Boespflug @mboes": - # https://github.com/tweag/distributed-closure/issues/3 - # GHC 8 - distributed-closure # GHC 8 - H # GHC 8 - ihaskell-inline-r # GHC 8 - inline-r + - cassette + - distributed-closure - th-lift "Christopher Reichert @creichert": From fa3180b740053425a221034a2443d88992244600 Mon Sep 17 00:00:00 2001 From: Kei Hibino Date: Mon, 20 Jun 2016 09:19:42 +0900 Subject: [PATCH 239/299] disable packages which depend on HDBC. --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 99c1f6fd..11e70f41 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2115,9 +2115,9 @@ packages: "Kei Hibino @khibino": - relational-query - - relational-query-HDBC - - persistable-types-HDBC-pg - - relational-record + # GHC 8 HDBC - relational-query-HDBC + # GHC 8 HDBC - persistable-types-HDBC-pg + # GHC 8 HDBC - relational-record - text-ldap - debian-build From aa89cc86efea3cd3db3365e509a680cec92b0c1b Mon Sep 17 00:00:00 2001 From: Mathieu Boespflug Date: Mon, 20 Jun 2016 13:17:01 +0200 Subject: [PATCH 240/299] Reenable most HaskellR packages. Except ihaskell-inline-r, because package blocked by IHaskell not supporting GHC 8. --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ad656e0c..ad59bfd8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1370,11 +1370,11 @@ packages: - nationstates "Mathieu Boespflug @mboes": - # GHC 8 - H - # GHC 8 - ihaskell-inline-r - # GHC 8 - inline-r + # BLOCKED ihaskell support for GHC 8 - ihaskell-inline-r - cassette - distributed-closure + - H + - inline-r - th-lift "Christopher Reichert @creichert": From ff341de31b9795431b7b4c009447c5847ba07cf2 Mon Sep 17 00:00:00 2001 From: Alp Mestanogullari Date: Mon, 20 Jun 2016 19:54:33 +0200 Subject: [PATCH 241/299] add inline-java and sparkle, with appropriate configure flags for JDK --- build-constraints.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ad656e0c..da2fb79d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2104,9 +2104,8 @@ packages: "Alp Mestanogullari alpmestan@gmail.com @alpmestan": - taggy - taggy-lens - # https://github.com/fpco/stackage/issues/1388 - #- inline-java - #- sparkle + - inline-java + - sparkle "Alex McLean @yaxu": [] @@ -2376,7 +2375,8 @@ package-flags: configure-args: inline-java: - - "--FIXME" + - "--extra-lib-dirs /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server" + - "--extra-include-dirs /usr/lib/jvm/java-8-openjdk-amd64/include" # end of configure-args From 79110fb8b71f63fb43e47255df18c300df46324b Mon Sep 17 00:00:00 2001 From: Brendan Hay Date: Tue, 21 Jun 2016 08:31:50 +0200 Subject: [PATCH 242/299] Add amazonka-application-autoscaling and amazonka-discovery --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ad656e0c..9189b037 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1048,6 +1048,7 @@ packages: - amazonka-core - amazonka-test - amazonka-apigateway + - amazonka-application-autoscaling - amazonka-autoscaling - amazonka-certificatemanager - amazonka-cloudformation @@ -1069,6 +1070,7 @@ packages: - amazonka-datapipeline - amazonka-devicefarm - amazonka-directconnect + - amazonka-discovery - amazonka-dms - amazonka-ds - amazonka-dynamodb-streams From a4354a50af50ea856f95c22c09ac1104300f9488 Mon Sep 17 00:00:00 2001 From: Brendan Hay Date: Tue, 21 Jun 2016 08:36:33 +0200 Subject: [PATCH 243/299] Add gogol libraries --- build-constraints.yaml | 97 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 97 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index ad656e0c..7011ecbd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1114,6 +1114,103 @@ packages: - amazonka-swf - amazonka-waf - amazonka-workspaces + - gogol + - gogol-core + - gogol-adexchange-buyer + - gogol-adexchange-seller + - gogol-admin-datatransfer + - gogol-admin-directory + - gogol-admin-emailmigration + - gogol-admin-reports + - gogol-adsense + - gogol-adsense-host + - gogol-affiliates + - gogol-analytics + - gogol-android-enterprise + - gogol-android-publisher + - gogol-appengine + - gogol-apps-activity + - gogol-apps-calendar + - gogol-apps-licensing + - gogol-apps-reseller + - gogol-apps-tasks + - gogol-appstate + - gogol-autoscaler + - gogol-bigquery + - gogol-billing + - gogol-blogger + - gogol-books + - gogol-civicinfo + - gogol-classroom + - gogol-cloudmonitoring + - gogol-cloudtrace + - gogol-compute + - gogol-container + - gogol-customsearch + - gogol-dataflow + - gogol-dataproc + - gogol-datastore + - gogol-debugger + - gogol-deploymentmanager + - gogol-dfareporting + - gogol-discovery + - gogol-dns + - gogol-doubleclick-bids + - gogol-doubleclick-search + - gogol-drive + - gogol-firebase-rules + - gogol-fitness + - gogol-fonts + - gogol-freebasesearch + - gogol-fusiontables + - gogol-games + - gogol-games-configuration + - gogol-games-management + - gogol-genomics + - gogol-gmail + - gogol-groups-migration + - gogol-groups-settings + - gogol-identity-toolkit + - gogol-kgsearch + - gogol-latencytest + - gogol-logging + - gogol-maps-coordinate + - gogol-maps-engine + - gogol-mirror + - gogol-monitoring + - gogol-oauth2 + - gogol-pagespeed + - gogol-partners + - gogol-people + - gogol-play-moviespartner + - gogol-plus + - gogol-plus-domains + - gogol-prediction + - gogol-proximitybeacon + - gogol-pubsub + - gogol-qpxexpress + - gogol-replicapool + - gogol-replicapool-updater + - gogol-resourcemanager + - gogol-resourceviews + - gogol-script + - gogol-sheets + - gogol-shopping-content + - gogol-siteverification + - gogol-spectrum + - gogol-sqladmin + - gogol-storage + - gogol-storage-transfer + - gogol-tagmanager + - gogol-taskqueue + - gogol-translate + - gogol-urlshortener + - gogol-useraccounts + - gogol-vision + - gogol-webmaster-tools + - gogol-youtube + - gogol-youtube-analytics + - gogol-youtube-reporting # GHC 8 - ede - pagerduty - semver From c2b50ee456b2c575bcaf0dcfdc19ac12de26e5d0 Mon Sep 17 00:00:00 2001 From: Chris Done Date: Tue, 21 Jun 2016 09:52:01 +0200 Subject: [PATCH 244/299] Remove upper bound on singletons<2.2 (fixes #1627) --- build-constraints.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ad656e0c..7e135510 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2247,7 +2247,7 @@ packages: "Tebello Thejane @tebello-thejane": - bitx-bitcoin - + "Andrew Lelechenko @Bodigrim": - exp-pairs @@ -2287,8 +2287,6 @@ packages: # https://github.com/fpco/stackage/issues/1597 - tagsoup < 0.14 - # https://github.com/fpco/stackage/issues/1627 - - singletons < 2.2 # end of packages From d812041f78ca796c4f178dba6d85965b4421042f Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Tue, 21 Jun 2016 15:26:54 +0200 Subject: [PATCH 245/299] Re-enable fay and friends --- build-constraints.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7e135510..6d0c6538 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -465,12 +465,12 @@ packages: "Adam Bergmark @bergmark": - aeson - # GHC 8 - fay - # GHC 8 - fay-base - # GHC 8 - fay-dom - # GHC 8 - fay-jquery - # GHC 8 - fay-text - # GHC 8 - fay-uri + - fay + - fay-base + - fay-dom + - fay-jquery + - fay-text + - fay-uri - feed # GHC 8 - snaplet-fay - time-compat From 02757730c85d6eae57f9750fa65a68ef4bde5492 Mon Sep 17 00:00:00 2001 From: Kei Hibino Date: Wed, 22 Jun 2016 01:14:12 +0900 Subject: [PATCH 246/299] packages about relational-record depends on HDBC --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7e135510..8d6ca999 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2114,9 +2114,9 @@ packages: "Kei Hibino @khibino": - relational-query - # GHC 8 HDBC - relational-query-HDBC - # GHC 8 HDBC - persistable-types-HDBC-pg - # GHC 8 HDBC - relational-record + - relational-query-HDBC + - persistable-types-HDBC-pg + - relational-record - text-ldap - debian-build From c3e972f93bec315dfd340a9b3cca5751f6e55344 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D1=80=D1=82=D1=83=D1=80=20=D0=A4=D0=B0=D0=B9=D0=B7?= =?UTF-8?q?=D1=80=D0=B0=D1=85=D0=BC=D0=B0=D0=BD=D0=BE=D0=B2?= Date: Wed, 22 Jun 2016 00:47:09 +0500 Subject: [PATCH 247/299] Update build-constraints.yaml --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7e135510..1c5d19df 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -801,6 +801,7 @@ packages: "Arthur Fayzrakhmanov ": # GHC 8 - sodium - yesod-form-richtext + - ghcjs-perch "Sebastian Nagel @ch1bo": - hdevtools From 29585db243dece606543d448bfe3594991881a24 Mon Sep 17 00:00:00 2001 From: Ashley Yakeley Date: Tue, 21 Jun 2016 22:38:00 -0700 Subject: [PATCH 248/299] Update build-constraints.yaml --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7e135510..aae5c910 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2253,6 +2253,9 @@ packages: "Greg Hurrell ": - docvim + + "Ashley Yakeley " + - countable # If you stop maintaining a package you can move it here. # It will then be disabled if it starts causing problems. From 7e7d9f94f2d983bf07d9f45d4efbda453a00c416 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?I=C3=B1aki=20Garc=C3=ADa=20Etxebarria?= Date: Wed, 22 Jun 2016 21:04:41 +0200 Subject: [PATCH 249/299] Add webkit bindings, and re-add Gtk bindings There is a new version of haskell-gi in stackage that improves the binding compilation time in an important way, so re-add gi-gtk to stackage. Perhaps this will help with https://github.com/fpco/stackage/issues/1569 . Also add gi-webkit to stackage, with the appropriate dependencies. This could help with https://github.com/fpco/stackage/issues/1477 . --- build-constraints.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7e135510..0f915af3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2212,8 +2212,11 @@ packages: - gi-gio == 2.0.3 - gi-glib == 2.0.3 - gi-gobject == 2.0.3 - # GHC 8 - gi-gtk == 3.0.3 + - gi-gtk == 3.0.3 - gi-pango == 1.0.3 + - gi-soup == 2.4.3 + - gi-javascriptcore == 3.0.3 + - gi-webkit == 3.0.3 - haskell-gi "Brandon Simmons ": @@ -2272,9 +2275,6 @@ packages: - data-default < 0.7 - data-default-class < 0.1 - # https://github.com/fpco/stackage/issues/1477 - - gi-javascriptcore < 3.1 - # https://github.com/fpco/stackage/issues/1510 - pipes < 4.2 From 68f1af655759ec35255c8ef57cf2947494976748 Mon Sep 17 00:00:00 2001 From: Ryan Mulligan Date: Wed, 22 Jun 2016 12:52:20 -0700 Subject: [PATCH 250/299] remove HDBC blocks HDBC has been fixed, so remove the comment blocks. --- build-constraints.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7e135510..8d6ca999 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2114,9 +2114,9 @@ packages: "Kei Hibino @khibino": - relational-query - # GHC 8 HDBC - relational-query-HDBC - # GHC 8 HDBC - persistable-types-HDBC-pg - # GHC 8 HDBC - relational-record + - relational-query-HDBC + - persistable-types-HDBC-pg + - relational-record - text-ldap - debian-build From 8c361270b26e6d4895e3b5072ad3ece4c2cae498 Mon Sep 17 00:00:00 2001 From: Ashley Yakeley Date: Wed, 22 Jun 2016 16:03:42 -0700 Subject: [PATCH 251/299] Update build-constraints.yaml add missing colon --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index aae5c910..6e62eddc 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2254,7 +2254,7 @@ packages: "Greg Hurrell ": - docvim - "Ashley Yakeley " + "Ashley Yakeley ": - countable # If you stop maintaining a package you can move it here. From 28209dffe475259ebf1ea310e961aa6a42b40670 Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Wed, 22 Jun 2016 19:20:58 -0400 Subject: [PATCH 252/299] Add back linear-accelerate and wl-pprint-terminfo --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7e135510..81eba311 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -280,7 +280,7 @@ packages: - lca - lens - linear - # GHC 8 - linear-accelerate + - linear-accelerate # GHC 8 - log-domain - machines - monadic-arrays @@ -307,7 +307,7 @@ packages: - vector-instances - void - wl-pprint-extras - # GHC 8 - wl-pprint-terminfo + - wl-pprint-terminfo - zippers - fixed - half From 29381468b5bc984e642b1acc9c26a81f60e683e1 Mon Sep 17 00:00:00 2001 From: Jeremy Shaw Date: Thu, 23 Jun 2016 09:48:10 -0500 Subject: [PATCH 253/299] renabled ixset and clckwrks for GHC 8 --- build-constraints.yaml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7e135510..41bba8ae 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1934,20 +1934,20 @@ packages: "Jeremy Shaw @stepcut": - boomerang - # GHC 8 - clckwrks - # GHC 8 - clckwrks-cli - # GHC 8 - clckwrks-plugin-page - # GHC 8 - clckwrks-plugin-media - # GHC 8 - clckwrks-theme-bootstrap + - clckwrks + - clckwrks-cli + - clckwrks-plugin-page + - clckwrks-plugin-media + - clckwrks-theme-bootstrap - hackage-whatsnew - # GHC 8 - happstack-authenticate + - happstack-authenticate - happstack-clientsession - # GHC 8 - happstack-hsp + - happstack-hsp - happstack-jmacro - happstack-server - happstack-server-tls - hsx-jmacro - # GHC 8 - ixset + - ixset - reform - reform-blaze - reform-hamlet From 50e17838ba72039d4a9c49da31c1d3808d3e1446 Mon Sep 17 00:00:00 2001 From: mrkkrp Date: Fri, 24 Jun 2016 10:52:46 +0300 Subject: [PATCH 254/299] =?UTF-8?q?Add=20the=20=E2=80=98cassava-megaparsec?= =?UTF-8?q?=E2=80=99=20package?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build-constraints.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7e135510..46c50f55 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1482,6 +1482,7 @@ packages: - hapistrano - inflections - twitter-feed + - cassava-megaparsec # BLOCKED megaparsec 5 - dotenv "Sergey Alirzaev ": @@ -3026,6 +3027,7 @@ github-users: - jsl - jpvillaisaza - jsantos17 + - mrkkrp scotty-web: - RyanGlScott - xich From 601ad7ca446ab0aa8e1fb9a4412ac849aa366a62 Mon Sep 17 00:00:00 2001 From: Michael Xavier Date: Fri, 24 Jun 2016 11:20:26 -0700 Subject: [PATCH 255/299] reenable uri-bytestring It is now building on ghc-8. --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7e135510..6a8c869b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1337,7 +1337,7 @@ packages: "Michael Xavier @MichaelXavier": - angel - # GHC 8 - uri-bytestring + - uri-bytestring # https://github.com/MichaelXavier/phash/issues/5 #- phash - cron From ba654a72ed887da5bb2d60f4103dd19bfe5ddf7f Mon Sep 17 00:00:00 2001 From: Dan Burton Date: Fri, 24 Jun 2016 17:19:30 -0700 Subject: [PATCH 256/299] Add constraint "semigroups < 0.18.2" per #1645 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7e135510..989d6590 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2287,6 +2287,9 @@ packages: # https://github.com/fpco/stackage/issues/1597 - tagsoup < 0.14 + # https:/github.com/fpco/stackage/issues/1645 + - semigroups < 0.18.2 + # end of packages From ab86d230b8386209def46216eb3c38904ac7ad46 Mon Sep 17 00:00:00 2001 From: Victor Denisov Date: Sat, 25 Jun 2016 00:53:17 -0700 Subject: [PATCH 257/299] Add mongoDB --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7e135510..fadb5890 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2254,6 +2254,9 @@ packages: "Greg Hurrell ": - docvim + "Victor Denisov @VictorDenisov": + - mongoDB + # If you stop maintaining a package you can move it here. # It will then be disabled if it starts causing problems. # See https://github.com/fpco/stackage/issues/1056 From 631ed01519938c40add4a0f2a0adc74ac0a8a96f Mon Sep 17 00:00:00 2001 From: Paul Rouse Date: Sat, 25 Jun 2016 11:03:32 +0100 Subject: [PATCH 258/299] Add back sphinx client --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 989d6590..06d32eeb 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -685,6 +685,7 @@ packages: # GHC 8 - ekg-json "Paul Rouse ": + - sphinx - yesod-auth-hashdb "Toralf Wittner @twittner": From f4109251ab6cf1a7b14f8086e8522b7b0eb90e42 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 25 Jun 2016 22:43:36 +0200 Subject: [PATCH 259/299] Re-enable bumper and fay-builder --- build-constraints.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9ff3fef3..e3c962dd 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -617,9 +617,9 @@ packages: - aeson-utils - arrow-list - attoparsec-expr - # GHC 8 - bumper + - bumper - code-builder - # GHC 8 - fay-builder + - fay-builder - generic-aeson - generic-xmlpickler - hxt-pickle-utils @@ -629,7 +629,7 @@ packages: - rest-client - rest-core - rest-gen - # GHC 8 - rest-happstack + - rest-happstack # GHC 8 - rest-snap - rest-stringmap - rest-types @@ -2356,7 +2356,7 @@ packages: "Greg Hurrell ": - docvim - + "Ashley Yakeley ": - countable From e7d6a7c5a95ccac04bd8a63a667dd2deff74eab9 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 25 Jun 2016 22:49:51 +0200 Subject: [PATCH 260/299] Expect mongoDB tests to fail --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index e3c962dd..19fea8f4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2964,6 +2964,9 @@ expected-test-failures: # https://github.com/fpco/stackage/issues/1616 - distribution-nixpkgs + + # https://github.com/mongodb-haskell/mongodb/issues/61 + - mongoDB # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 2ff51b4a9ffe1784789b7578eb4b81625d0c7a5e Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 25 Jun 2016 22:53:03 +0200 Subject: [PATCH 261/299] Disable sparkle and inline-java #1630 --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 19fea8f4..c5862578 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2205,8 +2205,8 @@ packages: "Alp Mestanogullari alpmestan@gmail.com @alpmestan": - taggy - taggy-lens - - inline-java - - sparkle + # - inline-java + # - sparkle "Alex McLean @yaxu": [] From b4055188c087666fe7ccffb4f10ffa7df168fbcf Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 25 Jun 2016 23:30:26 +0200 Subject: [PATCH 262/299] Add docvim upper bound #1648 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 9c24b51b..1ee0e9c9 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2401,6 +2401,9 @@ packages: # https:/github.com/fpco/stackage/issues/1645 - semigroups < 0.18.2 + # https://github.com/fpco/stackage/issues/1648 + - docvim < 0.3.2.0 + # end of packages From 3c03d3ac3b70b24b2d4affd6e2a272787f9ba58f Mon Sep 17 00:00:00 2001 From: Victor Denisov Date: Sat, 25 Jun 2016 16:17:04 -0700 Subject: [PATCH 263/299] Add bson --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1ee0e9c9..2beb5f04 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2367,6 +2367,7 @@ packages: "Victor Denisov @VictorDenisov": - mongoDB + - bson # If you stop maintaining a package you can move it here. # It will then be disabled if it starts causing problems. From 4beb79a4be3f80e3874b9d96a8e4500c20af5484 Mon Sep 17 00:00:00 2001 From: Greg Hurrell Date: Sat, 25 Jun 2016 23:34:11 -0700 Subject: [PATCH 264/299] Remove docvim constraint The issue (https://github.com/fpco/stackage/issues/1648) is fixed by https://github.com/wincent/docvim/commit/e47358de959d3d88f647db782da3550050cbf8f5 which is in the 0.3.2.1 release. Tested with: ``` $ cabal update $ cabal get docvim-0.3.2.0 $ cd docvim-0.3.2.0 $ stack --resolver nightly init $ stack test # repro failure $ # apply fix $ stack test # see failure is no more ``` --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1ee0e9c9..9c24b51b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2401,9 +2401,6 @@ packages: # https:/github.com/fpco/stackage/issues/1645 - semigroups < 0.18.2 - # https://github.com/fpco/stackage/issues/1648 - - docvim < 0.3.2.0 - # end of packages From 1e8b2dc138903e4a96422b27ba0fad2660f1effb Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 26 Jun 2016 11:34:10 +0200 Subject: [PATCH 265/299] data-default-instances-base upper bound for #1469 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 1ee0e9c9..5714f641 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2385,6 +2385,7 @@ packages: # https://github.com/fpco/stackage/issues/1469 - data-default < 0.7 - data-default-class < 0.1 + - data-default-instances-base < 0.1.0.1 # https://github.com/fpco/stackage/issues/1510 - pipes < 4.2 From dbd1e3c65056f3f6f1e67f78851148c0f2745af0 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 26 Jun 2016 11:53:19 +0200 Subject: [PATCH 266/299] Note about expecting mongoDB tests to fail --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5c7ac256..069be39f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2975,7 +2975,7 @@ expected-test-failures: # https://github.com/fpco/stackage/issues/1616 - distribution-nixpkgs - # https://github.com/mongodb-haskell/mongodb/issues/61 + # Requires running mongoDB - https://github.com/mongodb-haskell/mongodb/issues/61 - mongoDB # end of expected-test-failures From 335f014099d19599e0a58ee967cf88761ea4e6fc Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 26 Jun 2016 11:57:50 +0200 Subject: [PATCH 267/299] Expect persistent-redis tests to fail #1581 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 069be39f..b6e44b5b 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2977,6 +2977,9 @@ expected-test-failures: # Requires running mongoDB - https://github.com/mongodb-haskell/mongodb/issues/61 - mongoDB + + # Requries running redis - https://github.com/fpco/stackage/pull/1581 + - persistent-redis # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 80c0f972f47977df62beb0f0f7033d2cd19d54db Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 26 Jun 2016 12:22:19 +0200 Subject: [PATCH 268/299] Expect opml-conduit tests to fail k0ral/opml-conduit#4 --- build-constraints.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 645070f4..843f0c8d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1523,7 +1523,7 @@ packages: "koral koral@mailoo.org @k0ral": # GHC 8 - atom-conduit # GHC 8 - conduit-parse - # GHC 8 - opml-conduit + - opml-conduit # GHC 8 - rss-conduit - imm - timerep @@ -2977,6 +2977,9 @@ expected-test-failures: # Requries running redis - https://github.com/fpco/stackage/pull/1581 - persistent-redis + + # https://github.com/k0ral/opml-conduit/issues/4 + - opml-conduit # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 96335e489c1242f55e7899992c33ddf73c3b0857 Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Sun, 26 Jun 2016 12:10:00 +0100 Subject: [PATCH 269/299] Add optparse-text --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 843f0c8d..87a00738 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2083,6 +2083,7 @@ packages: "Pascal Hartig @passy": - giphy-api + - optparse-text "rightfold @rightfold": - open-browser From f01803daa23847e65dba16ca321822bbed832303 Mon Sep 17 00:00:00 2001 From: koral Date: Sun, 26 Jun 2016 21:02:38 +0200 Subject: [PATCH 270/299] Fix opml-conduit test suite --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 87a00738..7c461a11 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2978,9 +2978,6 @@ expected-test-failures: # Requries running redis - https://github.com/fpco/stackage/pull/1581 - persistent-redis - - # https://github.com/k0ral/opml-conduit/issues/4 - - opml-conduit # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 40f649dc44a9ba8819c235af541e607bec6e4922 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sun, 26 Jun 2016 23:31:21 +0200 Subject: [PATCH 271/299] Revert "Fix opml-conduit test suite" --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 7c461a11..87a00738 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2978,6 +2978,9 @@ expected-test-failures: # Requries running redis - https://github.com/fpco/stackage/pull/1581 - persistent-redis + + # https://github.com/k0ral/opml-conduit/issues/4 + - opml-conduit # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 2e02e025675375d3b22816861c23d75526d44371 Mon Sep 17 00:00:00 2001 From: koral Date: Sun, 26 Jun 2016 23:58:22 +0200 Subject: [PATCH 272/299] Fix opml-conduit test suite --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 87a00738..7c461a11 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2978,9 +2978,6 @@ expected-test-failures: # Requries running redis - https://github.com/fpco/stackage/pull/1581 - persistent-redis - - # https://github.com/k0ral/opml-conduit/issues/4 - - opml-conduit # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 920ce2873d4b4d5248949d520f3ac54e8c3e49a2 Mon Sep 17 00:00:00 2001 From: Michael Thompson Date: Mon, 27 Jun 2016 03:04:55 +0200 Subject: [PATCH 273/299] reinstate pipes-text/lens-family/streaming These all work with ghc-8 on travis, and I was able to compile them with `resolver: nightly-2016-06-21` --- build-constraints.yaml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 87a00738..ea9cc1f3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1404,13 +1404,12 @@ packages: - tasty-silver "Michael Thompson @michaelt": - [] - # GHC 8 - pipes-text - # GHC 8 - lens-simple - # GHC 8 - lens-family-core - # GHC 8 - lens-family - # GHC 8 - streaming - # GHC 8 - streaming-bytestring + - pipes-text + - lens-simple + - lens-family-core + - lens-family + - streaming + - streaming-bytestring "Justin Le @mstksg": From 0a1169eba7c3ae9f1bf64315d749eb4c449eec54 Mon Sep 17 00:00:00 2001 From: Alp Mestanogullari Date: Mon, 27 Jun 2016 14:51:47 +0200 Subject: [PATCH 274/299] add inline-java and sparkle, with appropriate configure flags --- build-constraints.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index ea9cc1f3..761444f0 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2207,8 +2207,8 @@ packages: "Alp Mestanogullari alpmestan@gmail.com @alpmestan": - taggy - taggy-lens - # - inline-java - # - sparkle + - inline-java + - sparkle "Alex McLean @yaxu": [] @@ -2490,8 +2490,8 @@ package-flags: configure-args: inline-java: - - "--extra-lib-dirs /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server" - - "--extra-include-dirs /usr/lib/jvm/java-8-openjdk-amd64/include" + - --extra-lib-dirs /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server + - --extra-include-dirs /usr/lib/jvm/java-8-openjdk-amd64/include # end of configure-args From aeb812706b469e6a62f9509ad34a5deb1b28be5b Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Tue, 28 Jun 2016 00:18:01 +0200 Subject: [PATCH 275/299] Expect octane doctest to fail due to ambiguous imports tfausak/octane#35 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 04de2f8d..56d444d1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2977,6 +2977,9 @@ expected-test-failures: # Requries running redis - https://github.com/fpco/stackage/pull/1581 - persistent-redis + + # https://github.com/tfausak/octane/issues/35 + - octane # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From ec80b44a61db018c55a3bdaf7911e046041cdf28 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Tue, 28 Jun 2016 00:22:51 +0200 Subject: [PATCH 276/299] Another inline-java attempt This reverts commit 0a1169eba7c3ae9f1bf64315d749eb4c449eec54. --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 56d444d1..4884fc99 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2490,8 +2490,8 @@ package-flags: configure-args: inline-java: - - --extra-lib-dirs /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server - - --extra-include-dirs /usr/lib/jvm/java-8-openjdk-amd64/include + - "--extra-lib-dirs /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server" + - "--extra-include-dirs /usr/lib/jvm/java-8-openjdk-amd64/include" # end of configure-args From 229523ce60cf822f3b208f59f0d9aa73d9549043 Mon Sep 17 00:00:00 2001 From: Cliff Harvey Date: Tue, 28 Jun 2016 02:09:39 +0200 Subject: [PATCH 277/299] Add quantum-random package --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4884fc99..72bd8184 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2352,6 +2352,7 @@ packages: "Cliff Harvey ": - ansigraph + - quantum-random "Tebello Thejane @tebello-thejane": - bitx-bitcoin From 8535acd662dfeb6e85205d1286ec2053f235aa69 Mon Sep 17 00:00:00 2001 From: mrkkrp Date: Tue, 28 Jun 2016 10:14:27 +0300 Subject: [PATCH 278/299] =?UTF-8?q?Enable=20the=20=E2=80=98dotenv=E2=80=99?= =?UTF-8?q?=20package?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build-constraints.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4884fc99..f338b669 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1584,7 +1584,7 @@ packages: - inflections - twitter-feed - cassava-megaparsec - # BLOCKED megaparsec 5 - dotenv + - dotenv "Sergey Alirzaev ": - monad-peel From 91bcabc1fe51fafc30ed722eef27a47c9e876c3e Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 28 Jun 2016 13:08:29 +0300 Subject: [PATCH 279/299] Add safe-exceptions (pinging @bergmark) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4884fc99..34ac7cf2 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -103,6 +103,7 @@ packages: - wai-middleware-consul - wai-middleware-crowd - monad-logger-json + - safe-exceptions # https://github.com/fpco/monad-logger-syslog/issues/3 # - monad-logger-syslog From 41294d8b17fe484177b05838f26eeac3e604012d Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Tue, 28 Jun 2016 12:41:56 +0200 Subject: [PATCH 280/299] Another attempt at building inline-java --- build-constraints.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 34ac7cf2..22cff5b1 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2491,8 +2491,8 @@ package-flags: configure-args: inline-java: - - "--extra-lib-dirs /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server" - - "--extra-include-dirs /usr/lib/jvm/java-8-openjdk-amd64/include" + - --extra-lib-dirs /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server + - --extra-include-dirs /usr/lib/jvm/java-8-openjdk-amd64/include # end of configure-args From 89a07a12786d3b14156d5eb27b648f87dd725a22 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 28 Jun 2016 14:18:54 +0300 Subject: [PATCH 281/299] Put each inline-java option separately (pinging @bergmark) --- build-constraints.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 6bff78c6..887eadd7 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2492,8 +2492,10 @@ package-flags: configure-args: inline-java: - - --extra-lib-dirs /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server - - --extra-include-dirs /usr/lib/jvm/java-8-openjdk-amd64/include + - --extra-lib-dirs + - /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server + - --extra-include-dirs + - /usr/lib/jvm/java-8-openjdk-amd64/include # end of configure-args From cad5cde87e4ffbe691922c60ebf5730f28eea4d5 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 28 Jun 2016 14:23:12 +0300 Subject: [PATCH 282/299] Block inline-java and sparkle for #1660 --- build-constraints.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 887eadd7..b9b5765d 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2208,8 +2208,9 @@ packages: "Alp Mestanogullari alpmestan@gmail.com @alpmestan": - taggy - taggy-lens - - inline-java - - sparkle + # https://github.com/fpco/stackage/issues/1660 + # - inline-java + # - sparkle "Alex McLean @yaxu": [] From c2454f85ce8f154a8b29246e54d2d4398eaae577 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Tue, 28 Jun 2016 19:35:16 +0200 Subject: [PATCH 283/299] Skip Glob test-suite Deewiant/glob#1 --- build-constraints.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b9b5765d..235d17b4 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2572,9 +2572,10 @@ skipped-tests: - terminal-progress-bar - threads - yesod-static-angular - # https://github.com/fpco/stackage/pull/906 - HaRe + # https://github.com/Deewiant/glob/issues/1 + - Glob # https://github.com/haskell/zlib/issues/2 - zlib From fb301721348bda5015d4511ef60cb54cc03968d1 Mon Sep 17 00:00:00 2001 From: Oleg Grenrus Date: Tue, 28 Jun 2016 23:04:41 +0300 Subject: [PATCH 284/299] Resolve #1645 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 235d17b4..7e7fb478 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2403,9 +2403,6 @@ packages: # https://github.com/fpco/stackage/issues/1597 - tagsoup < 0.14 - # https:/github.com/fpco/stackage/issues/1645 - - semigroups < 0.18.2 - # end of packages From 9145d80d04be4859d48c569a032ef0a03734d2da Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Tue, 28 Jun 2016 22:40:59 +0200 Subject: [PATCH 285/299] distribution-nixpkgs test suite should be fixed, closes #1616 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 235d17b4..4c5e7158 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2975,9 +2975,6 @@ expected-test-failures: # https://github.com/jetho/Hclip/issues/3 - Hclip - # https://github.com/fpco/stackage/issues/1616 - - distribution-nixpkgs - # Requires running mongoDB - https://github.com/mongodb-haskell/mongodb/issues/61 - mongoDB From c99efc7490e9eafd6cac3c830d1ac1b71df06871 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 29 Jun 2016 15:32:36 +0900 Subject: [PATCH 286/299] add hoodle (wavewave/hoodle#55) --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index cd677e7a..f2fa03a3 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -888,6 +888,7 @@ packages: - vado # GHC 8 - vcsgui - vcswrapper + - hoodle - cairo - gio From d7dbc445316d2b1d1d986a527c62a86b519a689c Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 29 Jun 2016 23:39:33 +0200 Subject: [PATCH 287/299] Revert "add hoodle (wavewave/hoodle#55)" --- build-constraints.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index f2fa03a3..cd677e7a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -888,7 +888,6 @@ packages: - vado # GHC 8 - vcsgui - vcswrapper - - hoodle - cairo - gio From ae69b5941d970301eda4f26a7015451138ca1e6e Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Wed, 29 Jun 2016 23:46:44 +0200 Subject: [PATCH 288/299] cartel upper bound for #1664 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index cd677e7a..0af22c77 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2403,6 +2403,9 @@ packages: # https://github.com/fpco/stackage/issues/1597 - tagsoup < 0.14 + # https://github.com/fpco/stackage/issues/1664 + - cartel < 0.18.0.0 + # end of packages From 4ca7ff94dc1e65175ed740bd6b3ac58cd4cb4753 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Facundo=20Dom=C3=ADnguez?= Date: Wed, 29 Jun 2016 19:27:22 -0300 Subject: [PATCH 289/299] Update build-constraints.yaml --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0af22c77..3795c890 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1892,6 +1892,7 @@ packages: - distributed-static - network-transport - network-transport-tcp + - network-transport-inmemory # GHC 8 - network-transport-composed - rank1dynamic From 23b4f5b7c926ac367cb96aacce6beb4a4aeaf5d8 Mon Sep 17 00:00:00 2001 From: Alexis King Date: Wed, 29 Jun 2016 16:00:26 -0700 Subject: [PATCH 290/299] Add test-fixture --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3795c890..d9edaa69 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2373,6 +2373,9 @@ packages: - mongoDB - bson + "Alexis King @lexi-lambda": + - test-fixture + # If you stop maintaining a package you can move it here. # It will then be disabled if it starts causing problems. # See https://github.com/fpco/stackage/issues/1056 From cf11086fc52021c8dba3e605757d86cf0d2c48d4 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Thu, 30 Jun 2016 09:36:22 +0200 Subject: [PATCH 291/299] Remove upper bound and close #1664 --- build-constraints.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index 3795c890..b8832d24 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2404,9 +2404,6 @@ packages: # https://github.com/fpco/stackage/issues/1597 - tagsoup < 0.14 - # https://github.com/fpco/stackage/issues/1664 - - cartel < 0.18.0.0 - # end of packages From 20ff9fab1173ce24ceb1df77e865553ab776f797 Mon Sep 17 00:00:00 2001 From: Omari Norman Date: Thu, 30 Jun 2016 08:49:47 -0400 Subject: [PATCH 292/299] Add timelens to Omari Norman's packages --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b8832d24..e4af0574 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -124,6 +124,7 @@ packages: - ofx - pinchot - accuerr + - timelens "Neil Mitchell": - hlint From e9c7d77dc5c60ba7760f40b7e15204f8a02b5110 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Fri, 1 Jul 2016 00:11:02 +0200 Subject: [PATCH 293/299] aeson-pretty upper bound for #1668 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 5e950082..fbe50043 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2408,6 +2408,9 @@ packages: # https://github.com/fpco/stackage/issues/1597 - tagsoup < 0.14 + # https://github.com/fpco/stackage/issues/1668 + - aeson-pretty < 0.8.0 + # end of packages From 5fd0de2cfa5a7ca49d7bada699559fcdf6b9f622 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Fri, 1 Jul 2016 12:07:42 +0200 Subject: [PATCH 294/299] stratosphere upper bound for #1668 --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index fbe50043..4cd8b541 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2410,6 +2410,7 @@ packages: # https://github.com/fpco/stackage/issues/1668 - aeson-pretty < 0.8.0 + - stratosphere < 0.1.3 # end of packages From 30caac62e2563c54f975d96eb0a98847f4222eb5 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sat, 2 Jul 2016 21:43:38 +0300 Subject: [PATCH 295/299] Expected Haddock failure thoughtbot/yesod-auth-oauth2#67 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 4cd8b541..49b0b615 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -3063,6 +3063,9 @@ expected-haddock-failures: # https://github.com/fpco/stackage/pull/1549 - ghc-exactprint + + # https://github.com/thoughtbot/yesod-auth-oauth2/issues/67 + - yesod-auth-oauth2 # end of expected-haddock-failures From 99711e1062b9aad739a05bcea863348426fce270 Mon Sep 17 00:00:00 2001 From: "(cdep)illabout" Date: Mon, 4 Jul 2016 01:25:01 +0900 Subject: [PATCH 296/299] Adding yahoo-finance-api package. --- build-constraints.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 49b0b615..b32955d8 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1727,6 +1727,7 @@ packages: - natural-transformation # GHC 8 - opaleye-trans - read-env-var + - yahoo-finance-api "Franklin Chen @FranklinChen": - Ebnf2ps From 9c52a6e96d4cedcc5317c6a94869e5be6a34307b Mon Sep 17 00:00:00 2001 From: Colin Woodbury Date: Sun, 3 Jul 2016 20:46:30 -0700 Subject: [PATCH 297/299] Add versions, vectortiles, and pipes-random All have been updated for GHC8 support. --- build-constraints.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build-constraints.yaml b/build-constraints.yaml index b32955d8..8d4b764f 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -581,8 +581,10 @@ packages: "Colin Woodbury @fosskers": - microlens-aeson + - versions + - vectortiles + - pipes-random # GHC 8 - kanji - # GHC 8 - versions "Ketil Malde": - biocore From 1fd0ec5636dfd8afa655f7e56275a5023cf5bca3 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 4 Jul 2016 16:39:52 +0300 Subject: [PATCH 298/299] Expected test failure fosskers/vectortiles#2 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index 0c137643..b8142d3a 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2992,6 +2992,9 @@ expected-test-failures: # https://github.com/tfausak/octane/issues/35 - octane + + # https://github.com/fosskers/vectortiles/issues/2 + - vectortiles # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run From 0cddb70235c2b2b08f22bd06ec96f575c67ca661 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Mon, 4 Jul 2016 16:41:26 +0300 Subject: [PATCH 299/299] Expected test failure pikajude/th-printf#3 --- build-constraints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-constraints.yaml b/build-constraints.yaml index b8142d3a..4a584d27 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -2995,6 +2995,9 @@ expected-test-failures: # https://github.com/fosskers/vectortiles/issues/2 - vectortiles + + # https://github.com/pikajude/th-printf/issues/3 + - th-printf # end of expected-test-failures # Benchmarks which are known not to build. Note that, currently we do not run